bevy_lunex 0.2.4

Blazingly fast path based retained layout engine for Bevy entities, built around vanilla Bevy ECS
Documentation
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
use crate::*;
use bevy::{render::primitives::Aabb, sprite::{Anchor, Material2d, Mesh2dHandle, SpriteSource}, text::{Text2dBounds, TextLayoutInfo}};


// #=====================#
// #=== STATE STRUCTS ===#

/// Trait for creating new UI states
pub trait UiState where Self: Send + Sync + 'static {
    const INDEX: usize;
}


/// UI state of a component, this is the normal default
#[derive(Component, Debug, Copy, Clone, PartialEq, Eq)]
pub struct Base;
impl UiState for Base {
    const INDEX: usize = 0;
}

/// UI state of a component, is active on hover
#[derive(Component, Debug, Copy, Clone, PartialEq, Eq)]
pub struct Hover;
impl UiState for Hover {
    const INDEX: usize = 1;
}

/// UI state of a component, is active when clicked
#[derive(Component, Debug, Copy, Clone, PartialEq, Eq)]
pub struct Clicked;
impl UiState for Clicked {
    const INDEX: usize = 2;
}

/// UI state of a component, is active when selected
#[derive(Component, Debug, Copy, Clone, PartialEq, Eq)]
pub struct Selected;
impl UiState for Selected {
    const INDEX: usize = 3;
}

/// UI state of a component, is active after entity is spawned
#[derive(Component, Debug, Copy, Clone, PartialEq, Eq)]
pub struct Intro;
impl UiState for Intro {
    const INDEX: usize = 4;
}

/// UI state of a component, is active before entity is despawned
#[derive(Component, Debug, Copy, Clone, PartialEq, Eq)]
pub struct Outro;
impl UiState for Outro {
    const INDEX: usize = 5;
}


// #=========================#
// #=== MARKER COMPONENTS ===#

/// This struct marks [`UiTree`] entity to receive piped [`Camera`] size and position to its [`Dimension`] and [`Transform`] component.
#[derive(Component, Debug, Default, Clone, Copy, PartialEq)]
pub struct SourceFromCamera;

/// This struct is used to mark linked UI entities as elements for easier rendering.
/// They are picked up by different systems, that ensure their piped [`Transform`] is centered,
/// instead of being aligned in a top-left corner like the normal UI entities.
#[derive(Component, Debug, Default, Clone, Copy, PartialEq)]
pub struct Element;


// #======================#
// #=== STD COMPONENTS ===#

/// This struct holds rectangular data. If the component covers some kind of 2D area, it should be stored in this component.
/// Lunex uses this component to mirror node size in & out from parent [`UiTree`].
#[derive(Component, Debug, Default, Clone, Copy, PartialEq, Reflect)]
pub struct Dimension {
    pub size: Vec2,
}
impl Dimension {
    pub fn new(size: impl Into<Vec2>) -> Self {
        Dimension {
            size: size.into()
        }
    }
}

/// # WIP - used for Div layout
#[derive(Component, Debug, Default, Clone, Copy, PartialEq, Reflect)]
pub struct UiContent {
    pub size: Vec2,
}
impl UiContent {
    pub fn new(size: impl Into<Vec2>) -> Self {
        UiContent { size: size.into() }
    }
}


/// This struct is used to specify size of the font in UI.
#[derive(Component, Debug, Clone, Copy, PartialEq, Reflect)]
pub struct UiTextSize {
    /// The unit type and scale value of the text height
    pub size: UiValueType<f32>,
}
impl Default for UiTextSize {
    fn default() -> Self {
        Self { size: Rh(1.0).into() }
    }
}
impl UiTextSize {
    /// Creates new instance from default
    pub fn new() -> Self {
        Default::default()
    }
    /// Specify the height of the font
    pub fn size(mut self, size: impl Into<UiValueType<f32>>) -> Self {
        self.size = size.into();
        self
    }
}

// #=======================#
// #=== MAIN COMPONENTS ===#

#[derive(Component, Debug, Copy, Clone, PartialEq, Reflect)]
pub struct UiLayout<S = Base> {
    pub layout: Layout,
    state: PhantomData<S>,
}
impl UiLayout {
    /// **Boundary** - Declarative layout type that is defined by its top-left corner and bottom-right corner.
    /// Nodes with this layout are not included in the ui flow.
    /// ## 🛠️ Example
    /// ```
    /// # use lunex_engine::{UiLayout, Rl};
    /// let layout: UiLayout = UiLayout::boundary().pos1(Rl(20.0)).pos2(Rl(80.0)).pack();
    /// ```
    pub fn boundary() -> ui::Boundary {
        ui::Boundary::new()
    }
    /// **Window** - Declarative layout type that is defined by its size and position.
    /// Nodes with this layout are not included in the ui flow.
    /// ## 🛠️ Example
    /// ```
    /// # use lunex_engine::{UiLayout, Ab, Rl};
    /// let layout: UiLayout = UiLayout::window().pos(Ab(100.0)).size(Rl(50.0)).pack();
    /// ```
    pub fn window() -> ui::Window {
        ui::Window::new()
    }
    /// **Window** (full) - Declarative layout type that is defined by its size and position.
    /// Nodes with this layout are not included in the ui flow.
    /// ## 🛠️ Example
    /// ```
    /// # use lunex_engine::{UiLayout, Rl};
    /// let layout: UiLayout = UiLayout::window().size(Rl(100.0)).pack(); // Same as UiLayout::window_full()
    /// ```
    pub fn window_full() -> ui::Window {
        ui::Window::full()
    }
    /// **Solid** - Declarative layout type that is defined by its width and height ratio.
    /// Scales in a way to fit itself inside parent container. It never deforms.
    /// Nodes with this layout are not included in the ui flow.
    /// ## 🛠️ Example
    /// ```
    /// # use lunex_engine::UiLayout;
    /// let layout: UiLayout = UiLayout::solid().size((4.0, 3.0)).align_x(-0.8).pack();
    /// ```
    pub fn solid() -> ui::Solid {
        ui::Solid::new()
    }
    /// **Div** - Parametric layout type that is defined by margin, border and padding. Its location and size
    /// is based on the surrounding nodes, like HTML. It is also the only node layout that uses the [`Sp`] unit.
    /// You can use this unit for alignment and justification.
    /// ## 🛠️ Example
    /// ```
    /// # use lunex_engine::{UiLayout, Sp};
    /// let layout: UiLayout = UiLayout::new().pad_x(2.0).margin_y(Sp(1.0)).br().pack();
    /// ```
    pub fn div() -> ui::Div {
        ui::Div::new()
    }
}
impl <S> UiLayout<S> {
    /// Creates struct from layout
    pub fn from(layout: impl Into<Layout>) -> UiLayout<S> {
        UiLayout {
            layout: layout.into(),
            state: PhantomData,
        }
    }
}
impl <S> Default for UiLayout<S> {
    fn default() -> Self {
        UiLayout {
            layout: Layout::default(),
            state: PhantomData,
        }
    }
}

pub trait PackageLayout {
    fn pack<S>(self) -> UiLayout<S>;
}

// Implement packaging 
impl <S> From<ui::Boundary> for UiLayout<S> {
    fn from(val: ui::Boundary) -> Self {
        val.pack::<S>()
    }
}
impl PackageLayout for ui::Boundary {
    fn pack<S>(self) -> UiLayout<S> {
        UiLayout::<S>::from(self)
    }
}
impl <S> From<ui::Window> for UiLayout<S> {
    fn from(val: ui::Window) -> Self {
        val.pack::<S>()
    }
}
impl PackageLayout for ui::Window {
    fn pack<S>(self) -> UiLayout<S> {
        UiLayout::<S>::from(self)
    }
}
impl <S> From<ui::Solid> for UiLayout<S> {
    fn from(val: ui::Solid) -> Self {
        val.pack::<S>()
    }
}
impl PackageLayout for ui::Solid {
    fn pack<S>(self) -> UiLayout<S> {
        UiLayout::<S>::from(self)
    }
}
impl <S> From<ui::Div> for UiLayout<S> {
    fn from(val: ui::Div) -> Self {
        val.pack::<S>()
    }
}
impl PackageLayout for ui::Div {
    fn pack<S>(self) -> UiLayout<S> {
        UiLayout::<S>::from(self)
    }
}

/// This struct controls what 2 layouts should be computed and lerped between.
#[derive(Component, Debug, Clone, PartialEq)]
pub struct UiLayoutController {
    /// Indexes of the two layouts to tween between
    pub index: [usize; 2],
    /// The transition ranging from 0.0 to 1.0
    pub tween: f32,
    /// The method called for smoothing the tween value
    pub method: fn(f32) -> f32,
}
impl Default for UiLayoutController {
    fn default() -> Self {
        UiLayoutController { 
            index: [0, 0],
            tween: 0.0,
            method: |i|{i},
        }
    }
}


/// This struct is a string reference to a specific node in a parent [`UiTree`].
/// Lunex uses this component to locate what data this entity should be working with.
#[derive(Component, Debug, Clone, PartialEq, Reflect)]
pub struct UiLink<T = MainUi> {
    pub path: String,
    marker: PhantomData<T>,
}
impl <T> UiLink<T> {
    pub fn path( path: impl Borrow<str>) -> Self {
        UiLink {
            path: path.borrow().to_string(),
            marker: PhantomData,
        }
    }
    pub fn add( &self, path: impl Borrow<str>) -> Self {
        UiLink {
            path: format!("{}/{}", self.path, path.borrow()),
            marker: PhantomData,
        }
    }
    pub fn new() -> Self {
        UiLink {
            path: "/".to_string(),
            marker: PhantomData,
        }
    }
}
impl <T> Default for UiLink<T> {
    fn default() -> Self {
        UiLink {
            path: "/".to_string(),
            marker: PhantomData,
        }
    }
}


/// This struct holds depth bias that will be relatively added to `depth` in the layout calculation.
/// Nodes with higher depth bias will be placed on top of nodes with lower depth bias.
/// It is recursive.
#[derive(Component, Debug, Default, Clone, Copy, PartialEq, Reflect)]
pub struct UiDepthBias (pub f32);


// #====================#
// #=== MAIN BUNDLES ===#

/// Main bundle for spawning `UiTree` entity
#[derive(Bundle, Debug, Clone)]
pub struct UiTreeBundle <T:Component = MainUi, N:Default + Component = NoData> {
    /// Required to be picked up by compute system.
    pub link: UiLink<T>,
    /// The ui layout data of the entity and it's children.
    pub tree: UiTree<T, N>,
    /// Contains the ui node size.
    pub dimension: Dimension,
    /// The visibility of the entity.
    pub visibility: Visibility,
    /// The inherited visibility of the entity.
    pub inherited_visibility: InheritedVisibility,
    /// The view visibility of the entity.
    pub view_visibility: ViewVisibility,
    /// The transform of the entity.
    pub transform: Transform,
    /// The global transform of the entity.
    pub global_transform: GlobalTransform,
}
impl <T:Component, N:Default + Component> From<UiTree<T, N>> for UiTreeBundle<T, N> {
    fn from(value: UiTree<T, N>) -> Self {
        UiTreeBundle::<T, N> {
            tree: value,
            ..default()
        }
    }
}
impl <T:Component, N:Default + Component> Default for UiTreeBundle<T, N> {
    fn default() -> Self {
        UiTreeBundle {
            link: Default::default(),
            tree: Default::default(),
            dimension: Default::default(),
            visibility: Default::default(),
            inherited_visibility: Default::default(),
            view_visibility: Default::default(),
            transform: Default::default(),
            global_transform: Default::default(),
        }
    }
}


/// Main bundle for spawning `UiNode` entity as a child of [`UiTree`] entity.
/// All this does is defines the layout within [`UiTree`]. Use additional
/// bundles for further functionality.
#[derive(Bundle, Debug, Clone, Default)]
pub struct UiNodeBundle<T: Component = MainUi> {
    /// The corresponding path that leads to the node data in parent UiTree entity.
    pub link: UiLink<T>,
    /// The layout to use when computing this node.
    pub layout: UiLayout,
}


/// Additional bundle for `UiNode` entity.
/// This is used for entities that have a mesh or a sprite.
/// For this purpose [`Element`] component is provided which centers
/// the anchor for piped position from node.
#[derive(Bundle, Debug, Clone, Default)]
pub struct UiElementBundle {
    /// Marks this as node element.
    pub element: Element,
    /// Contains the ui node size.
    pub dimension: Dimension,
    /// The visibility of the entity.
    pub visibility: Visibility,
    /// The inherited visibility of the entity.
    pub inherited_visibility: InheritedVisibility,
    /// The view visibility of the entity.
    pub view_visibility: ViewVisibility,
    /// The transform of the entity.
    pub transform: Transform,
    /// The global transform of the entity.
    pub global_transform: GlobalTransform,
}


/// Additional bundle for `UiNode` entity.
/// This is used for entities that don't have a mesh or a sprite,
/// but still needs to be pickable.
#[derive(Bundle, Default)]
pub struct UiZoneBundle {
    /// The required bundle to make entity pickable
    pub pickable: PickableBundle,
    /// This component is required for picking to work on non-sprite entities
    pub sprite_source: SpriteSource,
    /// Contains the ui node size.
    pub dimension: Dimension,
    /// The visibility of the entity.
    pub visibility: Visibility,
    /// The inherited visibility of the entity.
    pub inherited_visibility: InheritedVisibility,
    /// The view visibility of the entity.
    pub view_visibility: ViewVisibility,
    /// The transform of the entity.
    pub transform: Transform,
    /// The global transform of the entity.
    pub global_transform: GlobalTransform,
}


/// Additional bundle for `UiNode` entity.
/// This is required by any UI entity that needs to exist in worldspace.
#[derive(Bundle, Debug, Clone, Default)]
pub struct UiSpatialBundle {
    /// Contains the ui node size.
    pub dimension: Dimension,
    /// The visibility of the entity.
    pub visibility: Visibility,
    /// The inherited visibility of the entity.
    pub inherited_visibility: InheritedVisibility,
    /// The view visibility of the entity.
    pub view_visibility: ViewVisibility,
    /// The transform of the entity.
    pub transform: Transform,
    /// The global transform of the entity.
    pub global_transform: GlobalTransform,
}


// #=======================#
// #=== SPECIAL BUNDLES ===#

/// Additional bundle for `UiNode` entity.
/// Provides functionality to bind sprite in 3D on a plane mesh to `UiNode`.
#[derive(Bundle, Debug, Default, Clone)]
pub struct UiMaterial3dBundle {
    /// Quad mesh that is generated every time node is changed.
    pub mesh: Handle<Mesh>,
    /// The material used for the quad.
    pub material: Handle<StandardMaterial>,
    /// Image boundary for culling.
    pub aabb: Aabb,
    /// Marks this as node element.
    pub element: Element,
    /// Contains the ui node size.
    pub dimension: Dimension,
    /// The visibility of the entity.
    pub visibility: Visibility,
    /// The inherited visibility of the entity.
    pub inherited_visibility: InheritedVisibility,
    /// The view visibility of the entity.
    pub view_visibility: ViewVisibility,
    /// The transform of the entity.
    pub transform: Transform,
    /// The global transform of the entity.
    pub global_transform: GlobalTransform,
}
impl From<Handle<StandardMaterial>> for UiMaterial3dBundle {
    fn from(value: Handle<StandardMaterial>) -> Self {
        UiMaterial3dBundle {
            material: value,
            ..default()
        }
    }
}
impl UiMaterial3dBundle {
    pub fn from_image(materials: &mut ResMut<'_, Assets<StandardMaterial>>, value: Handle<Image>) -> Self {
        UiMaterial3dBundle {
            material: materials.add(StandardMaterial { base_color_texture: Some(value), unlit: true, ..default() }),
            ..default()
        }
    }
    pub fn from_transparent_image(materials: &mut ResMut<'_, Assets<StandardMaterial>>, value: Handle<Image>) -> Self {
        UiMaterial3dBundle {
            material: materials.add(StandardMaterial { base_color_texture: Some(value), unlit: true, alpha_mode: AlphaMode::Blend, ..default() }),
            ..default()
        }
    }
}


/// Additional bundle for `UiNode` entity.
/// Provides functionality to bind mesh in 2D to a `UiNode`.
#[derive(Bundle, Default, Clone)]
pub struct UiMaterial2dBundle<M: Material2d> {
    /// The mesh
    pub mesh: Mesh2dHandle,
    /// Material of the mesh
    pub material: Handle<M>,
    /// Marks this as node element.
    pub element: Element,
    /// Contains the ui node size.
    pub dimension: Dimension,
    /// The visibility of the entity.
    pub visibility: Visibility,
    /// The inherited visibility of the entity.
    pub inherited_visibility: InheritedVisibility,
    /// The view visibility of the entity.
    pub view_visibility: ViewVisibility,
    /// The transform of the entity.
    pub transform: Transform,
    /// The global transform of the entity.
    pub global_transform: GlobalTransform,
}


/// Additional bundle for `UiNode` entity.
/// Provides functionality to bind sprite to `UiNode`.
#[derive(Bundle, Clone, Debug, Default)]
pub struct UiImage2dBundle {
    /// Image properties.
    pub sprite: Sprite,
    /// Image texture.
    pub texture: Handle<Image>,
    /// Image boundary for culling.
    pub aabb: Aabb,
    /// Marks this as node element.
    pub element: Element,
    /// Contains the ui node size.
    pub dimension: Dimension,
    /// The visibility of the entity.
    pub visibility: Visibility,
    /// The inherited visibility of the entity.
    pub inherited_visibility: InheritedVisibility,
    /// The view visibility of the entity.
    pub view_visibility: ViewVisibility,
    /// The transform of the entity.
    pub transform: Transform,
    /// The global transform of the entity.
    pub global_transform: GlobalTransform,
}
impl From<Handle<Image>> for UiImage2dBundle {
    fn from(value: Handle<Image>) -> Self {
        UiImage2dBundle {
            texture: value,
            ..default()
        }
    }
}


/// Additional bundle for `UiNode` entity.
/// Provides functionality to bind text to `UiNode`.
#[derive(Bundle, Clone, Debug, Default)]
pub struct UiText2dBundle {
    /// Contains the text.
    pub text: Text,
    /// This is needed for visibility computation to work properly.
    pub sprite_source: SpriteSource,
    /// How the text is positioned relative to its transform.
    pub text_anchor: Anchor,
    /// The maximum width and height of the text.
    pub text_2d_bounds: Text2dBounds,
    /// Contains the size of the text and its glyph's position and scale data. Generated via [`TextPipeline::queue_text`]
    pub text_layout_info: TextLayoutInfo,
    /// Marks this as node element.
    pub element: Element,
    /// Contains the ui node size.
    pub dimension: Dimension,
    /// The visibility of the entity.
    pub visibility: Visibility,
    /// The inherited visibility of the entity.
    pub inherited_visibility: InheritedVisibility,
    /// The view visibility of the entity.
    pub view_visibility: ViewVisibility,
    /// The transform of the entity.
    pub transform: Transform,
    /// The global transform of the entity.
    pub global_transform: GlobalTransform,
}