1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
//! # L3D Core Types
//!
//! This module contains the core types for representing L3D file structures.
//!
//! ## XML Structure Types
//!
//! These types map directly to the L3D XML schema:
//! - [`Luminaire`] - Root element containing the complete luminaire definition
//! - [`Header`] - Metadata (name, description, creation info)
//! - [`GeometryDefinitions`] - List of geometry file references
//! - [`Structure`] - Hierarchical geometry with positions and rotations
//!
//! ## 3D Model Types
//!
//! These types are used for 3D rendering:
//! - [`L3d`] - Complete parsed L3D data (file contents + model)
//! - [`L3dModel`] - Collection of geometry parts with transforms
//! - [`L3dPart`] - Single geometry part with transformation matrix
//! - [`Mat4`] - 4x4 transformation matrix (column-major `[f32; 16]`)
//!
//! ## Matrix Utilities
//!
//! Self-contained matrix functions (no external dependencies):
//! - [`mat4_mul`] - Matrix multiplication
//! - [`mat4_translation`], [`mat4_scale`] - Basic transforms
//! - [`mat4_rotate_x`], [`mat4_rotate_y`], [`mat4_rotate_z`] - Rotations
//! - [`build_transform`] - Build transform from position and rotation
use ;
pub use ;
pub use Header;
pub use ;
pub use ;
/// Root element representing a complete luminaire definition
///
/// This is the top-level structure parsed from `structure.xml` in an L3D file.
/// It contains:
/// - Header metadata (name, description, creation info)
/// - Geometry file definitions (references to OBJ files)
/// - Hierarchical structure with positions and rotations
///
/// # Example
///
/// ```no_run
/// use l3d_rs::Luminaire;
///
/// // Load from file
/// let luminaire = Luminaire::load_l3d("luminaire.l3d").unwrap();
///
/// // Convert to JSON for web transmission
/// let json = luminaire.to_json().unwrap();
///
/// // Parse back from JSON
/// let restored = Luminaire::from_json(&json).unwrap();
/// ```
// ============================================================================
// L3D Model Types (for 3D rendering without three-d dependency)
// ============================================================================
/// 4x4 transformation matrix in column-major order
///
/// This is a standard OpenGL-compatible matrix format stored as `[f32; 16]`.
/// The layout is:
///
/// ```text
/// [ m0 m4 m8 m12 ] [ Xx Yx Zx Tx ]
/// [ m1 m5 m9 m13 ] = [ Xy Yy Zy Ty ]
/// [ m2 m6 m10 m14 ] [ Xz Yz Zz Tz ]
/// [ m3 m7 m11 m15 ] [ 0 0 0 1 ]
/// ```
///
/// # Conversion to three-d
///
/// ```ignore
/// use three_d::Mat4 as ThreeDMat4;
/// use l3d_rs::Mat4;
///
/// fn to_three_d(mat: &Mat4) -> ThreeDMat4 {
/// ThreeDMat4::from_cols_array(mat)
/// }
/// ```
pub type Mat4 = ;
/// Identity matrix constant
///
/// Use this as the starting point for transformation chains:
///
/// ```
/// use l3d_rs::{MAT4_IDENTITY, mat4_mul, mat4_translation};
///
/// let transform = mat4_mul(&MAT4_IDENTITY, &mat4_translation(1.0, 2.0, 3.0));
/// ```
pub const MAT4_IDENTITY: Mat4 = ;
/// A single geometry part with its world transformation
///
/// Each part represents one OBJ file that should be rendered with the
/// given transformation matrix applied.
///
/// # Fields
///
/// - `path` - Path to the OBJ file within the L3D archive (e.g., "geom_1/luminaire.obj")
/// - `mat` - 4x4 transformation matrix including position, rotation, and scale
///
/// # Example
///
/// ```ignore
/// use l3d_rs::L3dPart;
/// use three_d::Mat4 as ThreeDMat4;
///
/// fn render_part(part: &L3dPart, assets: &RawAssets) {
/// let model = assets.deserialize::<CpuModel>(&part.path).unwrap();
/// let transform = ThreeDMat4::from_cols_array(&part.mat);
/// // Apply transform to model...
/// }
/// ```
/// Collection of geometry parts that make up the 3D model
///
/// This is the result of parsing the L3D structure and computing
/// transformation matrices for each geometry part.
///
/// # Example
///
/// ```no_run
/// use l3d_rs::from_buffer;
///
/// let l3d = from_buffer(&std::fs::read("luminaire.l3d").unwrap());
///
/// println!("Model has {} parts:", l3d.model.parts.len());
/// for part in &l3d.model.parts {
/// println!(" - {}", part.path);
/// }
/// ```
/// A file extracted from the L3D ZIP archive
///
/// This represents any file from the archive except `structure.xml`,
/// typically OBJ geometry files, MTL material files, or textures.
///
/// # Example
///
/// ```ignore
/// use l3d_rs::BufFile;
/// use three_d_asset::io::RawAssets;
///
/// fn load_assets(assets: &[BufFile]) -> RawAssets {
/// let mut raw = RawAssets::new();
/// for asset in assets {
/// raw.insert(&asset.name, asset.content.clone());
/// }
/// raw
/// }
/// ```
/// Raw L3D file contents extracted from the ZIP archive
///
/// Contains both the structure XML and all asset files.
///
/// # Fields
///
/// - `structure` - The raw XML content from `structure.xml`
/// - `assets` - All other files (OBJ, MTL, textures, etc.)
/// Complete L3D data with both raw file contents and parsed 3D model
///
/// This is the main result type from [`crate::from_buffer`]. It contains:
/// - The raw file data for asset loading
/// - The parsed model with pre-computed transformation matrices
///
/// # Example
///
/// ```no_run
/// use l3d_rs::{from_buffer, L3d};
///
/// let bytes = std::fs::read("luminaire.l3d").unwrap();
/// let l3d: L3d = from_buffer(&bytes);
///
/// // Check if parsing succeeded
/// if l3d.model.parts.is_empty() {
/// eprintln!("Failed to parse L3D or no geometry found");
/// }
///
/// // Access raw structure XML
/// println!("Structure: {} bytes", l3d.file.structure.len());
///
/// // List assets
/// for asset in &l3d.file.assets {
/// println!("Asset: {} ({} bytes)", asset.name, asset.size);
/// }
///
/// // Render each part
/// for part in &l3d.model.parts {
/// println!("Render {} with matrix {:?}", part.path, part.mat);
/// }
/// ```
// ============================================================================
// Matrix Operations (no external dependencies)
// ============================================================================
/// Multiply two 4x4 matrices
///
/// Performs standard matrix multiplication: `result = a * b`
///
/// Both matrices must be in column-major order.
///
/// # Example
///
/// ```
/// use l3d_rs::{mat4_mul, mat4_translation, mat4_rotate_z};
///
/// // Combine translation and rotation
/// let translate = mat4_translation(1.0, 0.0, 0.0);
/// let rotate = mat4_rotate_z(45.0);
/// let combined = mat4_mul(&translate, &rotate);
/// ```
/// Create a translation matrix
///
/// # Arguments
///
/// * `x`, `y`, `z` - Translation offset in each axis
///
/// # Example
///
/// ```
/// use l3d_rs::mat4_translation;
///
/// let translate = mat4_translation(1.0, 2.0, 3.0);
/// // Position at (1, 2, 3)
/// ```
/// Create a uniform scale matrix
///
/// # Arguments
///
/// * `s` - Scale factor (1.0 = no change, 0.5 = half size, 2.0 = double)
///
/// # Example
///
/// ```
/// use l3d_rs::mat4_scale;
///
/// let half_size = mat4_scale(0.5);
/// let double_size = mat4_scale(2.0);
/// ```
/// Create a rotation matrix around the X axis
///
/// # Arguments
///
/// * `deg` - Rotation angle in degrees (positive = counter-clockwise when looking down the axis)
///
/// # Example
///
/// ```
/// use l3d_rs::mat4_rotate_x;
///
/// let rotate_90 = mat4_rotate_x(90.0);
/// ```
/// Create a rotation matrix around the Y axis
///
/// # Arguments
///
/// * `deg` - Rotation angle in degrees
///
/// # Example
///
/// ```
/// use l3d_rs::mat4_rotate_y;
///
/// let rotate_45 = mat4_rotate_y(45.0);
/// ```
/// Create a rotation matrix around the Z axis
///
/// # Arguments
///
/// * `deg` - Rotation angle in degrees
///
/// # Example
///
/// ```
/// use l3d_rs::mat4_rotate_z;
///
/// let rotate_180 = mat4_rotate_z(180.0);
/// ```
/// Convert a unit string to a scale factor
///
/// L3D files can specify geometry in different units. This function
/// returns the scale factor to convert to meters.
///
/// # Supported Units
///
/// - `"mm"` → 0.001 (millimeters to meters)
/// - `"in"` → 0.0254 (inches to meters)
/// - `"m"` or any other → 1.0 (already in meters)
///
/// # Example
///
/// ```
/// use l3d_rs::get_scale;
///
/// assert_eq!(get_scale("mm"), 0.001);
/// assert_eq!(get_scale("in"), 0.0254);
/// assert_eq!(get_scale("m"), 1.0);
/// ```
/// Build a transformation matrix from position and rotation vectors
///
/// Creates a combined transformation by:
/// 1. Translating to position (x, y, z)
/// 2. Rotating around X axis
/// 3. Rotating around Y axis
/// 4. Rotating around Z axis
///
/// This matches the L3D specification for how position and rotation
/// are combined.
///
/// # Arguments
///
/// * `pos` - Position vector (translation)
/// * `rot` - Rotation vector (Euler angles in degrees)
///
/// # Example
///
/// ```
/// use l3d_rs::{build_transform, Vec3f};
///
/// // Note: In real code, Vec3f comes from parsing
/// // This is just for illustration
/// ```