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
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
extern crate oxygengine_core as core;

use core::{
    app::AppBuilder,
    ecs::{
        commands::{SpawnEntity, UniverseCommands},
        components::Name,
        hierarchy::{Hierarchy, Parent},
        pipeline::{PipelineBuilder, PipelineBuilderError},
        Component, Entity, EntityBuilder, Query, Universe, World,
    },
    scripting::{
        intuicio::{core::prelude::*, data::prelude::*},
        ScriptFunctionReference, Scripting,
    },
};
use std::borrow::Cow;

const DEFAULT_CAPACITY: usize = 10240;

#[derive(Default, Clone)]
pub struct ScriptedNodeEntity(AsyncShared<Option<Entity>>);

impl ScriptedNodeEntity {
    pub fn new(entity: Entity) -> Self {
        Self(AsyncShared::new(Some(entity)))
    }

    pub fn find(path: &str, hierarchy: &Hierarchy) -> Self {
        if let Some(entity) = hierarchy.entity_by_name(path) {
            Self::new(entity)
        } else {
            Self::default()
        }
    }

    pub fn find_raw(path: &str, hierarchy: &Hierarchy) -> Option<Entity> {
        hierarchy.entity_by_name(path)
    }

    pub fn find_all_of_type<T: 'static>(world: &World) -> Vec<Self> {
        world
            .query::<&ScriptedNode>()
            .iter()
            .filter_map(move |(entity, node)| {
                if node.is::<T>() {
                    Some(Self::new(entity))
                } else {
                    None
                }
            })
            .collect()
    }

    pub fn find_all_of_type_raw<T: 'static>(world: &World) -> Vec<Entity> {
        world
            .query::<&ScriptedNode>()
            .iter()
            .filter_map(
                move |(entity, node)| {
                    if node.is::<T>() {
                        Some(entity)
                    } else {
                        None
                    }
                },
            )
            .collect()
    }

    pub fn set(&mut self, entity: Entity) {
        if let Some(mut data) = self.0.write() {
            *data = Some(entity);
        }
    }

    pub fn get(&self) -> Option<Entity> {
        self.0.read().and_then(|data| data.as_ref().copied())
    }

    pub fn is_valid(&self) -> bool {
        self.0.read().map(|data| data.is_some()).unwrap_or_default()
    }

    pub fn take(&mut self) -> Option<Entity> {
        self.0.write().and_then(|mut data| data.take())
    }

    pub fn node<Q: Query, R>(
        &self,
        world: &World,
        mut f: impl FnMut(&ScriptedNode, Q::Item<'_>) -> R,
    ) -> Option<R> {
        let entity = *self.0.read()?.as_ref()?;
        let mut query = world.query_one::<(&ScriptedNode, Q)>(entity).ok()?;
        let (node, query) = query.get()?;
        Some(f(node, query))
    }

    pub fn node_mut<Q: Query, R>(
        &self,
        world: &World,
        mut f: impl FnMut(&mut ScriptedNode, Q::Item<'_>) -> R,
    ) -> Option<R> {
        let entity = *self.0.read()?.as_ref()?;
        let mut query = world.query_one::<(&mut ScriptedNode, Q)>(entity).ok()?;
        let (node, query) = query.get()?;
        Some(f(node, query))
    }

    pub fn with<T: 'static, Q: Query, R>(
        &self,
        world: &World,
        mut f: impl FnMut(&T, Q::Item<'_>) -> R,
    ) -> Option<R> {
        let entity = *self.0.read()?.as_ref()?;
        let mut query = world.query_one::<(&ScriptedNode, Q)>(entity).ok()?;
        let (node, query) = query.get()?;
        let node = node.read::<T>()?;
        Some(f(&node, query))
    }

    pub fn with_mut<T: 'static, Q: Query, R>(
        &self,
        world: &World,
        mut f: impl FnMut(&mut T, Q::Item<'_>) -> R,
    ) -> Option<R> {
        let entity = *self.0.read()?.as_ref()?;
        let mut query = world.query_one::<(&mut ScriptedNode, Q)>(entity).ok()?;
        let (node, query) = query.get()?;
        let mut node = node.write::<T>()?;
        Some(f(&mut node, query))
    }
}

impl std::fmt::Debug for ScriptedNodeEntity {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut result = f.debug_struct("ScriptedNodeEntity");
        match self.get() {
            Some(entity) => result.field("entity", &entity).finish(),
            None => result.finish_non_exhaustive(),
        }
    }
}

pub enum ScriptedNodesParam {
    Owned(DynamicManaged),
    Ref(DynamicManagedRef),
    RefMut(DynamicManagedRefMut),
    ScopedRef(DynamicManagedRef, Lifetime),
    ScopedRefMut(DynamicManagedRefMut, Lifetime),
}

impl ScriptedNodesParam {
    pub fn owned<T: 'static>(value: T) -> Self {
        Self::Owned(DynamicManaged::new(value))
    }

    pub fn scoped_ref<'a, T: 'static>(value: &'a T) -> Self
    where
        Self: 'a,
    {
        let lifetime = Lifetime::default();
        let data = DynamicManagedRef::new(value, lifetime.borrow().unwrap());
        Self::ScopedRef(data, lifetime)
    }

    pub fn scoped_ref_mut<'a, T: 'static>(value: &'a mut T) -> Self
    where
        Self: 'a,
    {
        let lifetime = Lifetime::default();
        let data = DynamicManagedRefMut::new(value, lifetime.borrow_mut().unwrap());
        Self::ScopedRefMut(data, lifetime)
    }
}

impl From<DynamicManaged> for ScriptedNodesParam {
    fn from(value: DynamicManaged) -> Self {
        Self::Owned(value)
    }
}

impl From<DynamicManagedRef> for ScriptedNodesParam {
    fn from(value: DynamicManagedRef) -> Self {
        Self::Ref(value)
    }
}

impl From<DynamicManagedRefMut> for ScriptedNodesParam {
    fn from(value: DynamicManagedRefMut) -> Self {
        Self::RefMut(value)
    }
}

impl<T: 'static> From<&T> for ScriptedNodesParam {
    fn from(value: &T) -> Self {
        Self::scoped_ref(value)
    }
}

impl<T: 'static> From<&mut T> for ScriptedNodesParam {
    fn from(value: &mut T) -> Self {
        Self::scoped_ref_mut(value)
    }
}

pub struct ScriptedNode {
    pub active: bool,
    pub object: DynamicManaged,
}

impl ScriptedNode {
    pub fn new<T: 'static>(data: T) -> Self {
        Self::new_raw(DynamicManaged::new(data))
    }

    pub fn new_raw(object: DynamicManaged) -> Self {
        Self {
            active: true,
            object,
        }
    }

    pub fn with_active(mut self, value: bool) -> Self {
        self.active = value;
        self
    }

    pub fn is<T: 'static>(&self) -> bool {
        self.object.is::<T>()
    }

    pub fn read<T: 'static>(&self) -> Option<ValueReadAccess<T>> {
        self.object.read::<T>()
    }

    pub fn write<T: 'static>(&mut self) -> Option<ValueWriteAccess<T>> {
        self.object.write::<T>()
    }
}

pub struct ScriptedNodeSignal {
    entity: Option<Entity>,
    function: ScriptFunctionReference,
    arguments: Vec<ScriptedNodesParam>,
    broadcast: bool,
    bubble: bool,
    ignore_me: bool,
}

impl ScriptedNodeSignal {
    pub fn parse(entity: Option<Entity>, content: &str) -> Result<Self, String> {
        Ok(Self::new(entity, ScriptFunctionReference::parse(content)?))
    }

    pub fn new(entity: Option<Entity>, function: ScriptFunctionReference) -> Self {
        Self {
            entity,
            function,
            arguments: Default::default(),
            broadcast: false,
            bubble: false,
            ignore_me: false,
        }
    }

    pub fn arg(mut self, data: impl Into<ScriptedNodesParam>) -> Self {
        self.arguments.push(data.into());
        self
    }

    pub fn broadcast(mut self) -> Self {
        self.broadcast = true;
        self
    }

    pub fn bubble(mut self) -> Self {
        self.bubble = true;
        self
    }

    pub fn ignore_me(mut self) -> Self {
        self.ignore_me = true;
        self
    }

    pub fn dispatch<T: ScriptedNodeComponentPack>(&self, universe: &Universe) {
        let world = universe.world();
        let mut nodes = universe.expect_resource_mut::<ScriptedNodes>();
        let scripting = universe.expect_resource::<Scripting>();
        let hierarchy = universe.expect_resource::<Hierarchy>();

        if let Some(entity) = self.entity {
            Self::execute::<T>(
                entity,
                &self.function,
                &self.arguments,
                self.broadcast,
                self.bubble,
                self.ignore_me,
                &world,
                &mut nodes,
                &scripting,
                &hierarchy,
            );
        } else {
            for (entity, _) in world
                .query::<()>()
                .with::<&ScriptedNode>()
                .without::<&Parent>()
                .iter()
            {
                Self::execute::<T>(
                    entity,
                    &self.function,
                    &self.arguments,
                    self.broadcast,
                    self.bubble,
                    self.ignore_me,
                    &world,
                    &mut nodes,
                    &scripting,
                    &hierarchy,
                );
            }
        }
    }

    #[allow(clippy::too_many_arguments)]
    pub fn execute<T: ScriptedNodeComponentPack>(
        entity: Entity,
        function_ref: &ScriptFunctionReference,
        args: &[ScriptedNodesParam],
        broadcast: bool,
        bubble: bool,
        ignore_me: bool,
        world: &World,
        nodes: &mut ScriptedNodes,
        scripting: &Scripting,
        hierarchy: &Hierarchy,
    ) {
        let token = nodes.context.stack().store();
        let result = if !ignore_me {
            if let Ok(mut query) = world.query_one::<(&mut ScriptedNode, T)>(entity) {
                if let Some((node, pack)) = query.get() {
                    let mut query = function_ref.query();
                    if query.struct_query.is_none() {
                        query.struct_query = Some(StructQuery {
                            type_hash: Some(*node.object.type_hash()),
                            ..Default::default()
                        });
                    }
                    if let Some(function) = scripting.registry.find_function(query) {
                        if let Some(handle) = &function.signature().struct_handle {
                            if node.object.type_hash() != &handle.type_hash() {
                                return;
                            }
                        }
                        nodes.context.stack().push(DynamicManaged::new(entity));
                        let mut compontents_params = vec![];
                        T::query_param(pack, &mut compontents_params);
                        for arg in compontents_params.iter().chain(args.iter()).rev() {
                            match arg {
                                ScriptedNodesParam::Owned(arg) => {
                                    nodes.context.stack().push(arg.borrow().unwrap());
                                }
                                ScriptedNodesParam::Ref(arg) => {
                                    nodes.context.stack().push(arg.borrow().unwrap());
                                }
                                ScriptedNodesParam::RefMut(arg) => {
                                    nodes.context.stack().push(arg.borrow_mut().unwrap());
                                }
                                ScriptedNodesParam::ScopedRef(arg, _) => {
                                    nodes.context.stack().push(arg.borrow().unwrap());
                                }
                                ScriptedNodesParam::ScopedRefMut(arg, _) => {
                                    nodes.context.stack().push(arg.borrow_mut().unwrap());
                                }
                            }
                        }
                        nodes
                            .context
                            .stack()
                            .push(node.object.borrow_mut().unwrap());
                        Some((function, compontents_params))
                    } else {
                        None
                    }
                } else {
                    None
                }
            } else {
                None
            }
        } else {
            None
        };
        if let Some((function, _)) = result {
            function.invoke(&mut nodes.context, &scripting.registry);
        }
        nodes.context.stack().restore(token);
        if broadcast {
            if let Some(iter) = hierarchy.children(entity) {
                for entity in iter {
                    Self::execute::<T>(
                        entity,
                        function_ref,
                        args,
                        true,
                        false,
                        false,
                        world,
                        nodes,
                        scripting,
                        hierarchy,
                    );
                }
            }
        }
        if bubble {
            if let Some(entity) = hierarchy.parent(entity) {
                Self::execute::<T>(
                    entity,
                    function_ref,
                    args,
                    false,
                    true,
                    false,
                    world,
                    nodes,
                    scripting,
                    hierarchy,
                );
            }
        }
    }
}

#[derive(Default)]
pub struct ScriptedNodesSpawns {
    spawns: Vec<(ScriptedNodesTree, Option<Entity>)>,
}

impl ScriptedNodesSpawns {
    pub fn spawn(&mut self, tree: ScriptedNodesTree, parent: Option<Entity>) {
        self.spawns.push((tree, parent));
    }

    pub fn spawn_root(&mut self, tree: ScriptedNodesTree) {
        self.spawn(tree, None)
    }
}

#[derive(Default)]
pub struct ScriptedNodesSignals {
    #[allow(clippy::type_complexity)]
    signals: Vec<Box<dyn FnOnce(&Universe) + Send + Sync>>,
}

impl ScriptedNodesSignals {
    pub fn signal<T: ScriptedNodeComponentPack>(&mut self, signal: ScriptedNodeSignal) {
        self.signals
            .push(Box::new(move |universe| signal.dispatch::<T>(universe)));
    }
}

pub struct ScriptedNodes {
    context: Context,
}

impl Default for ScriptedNodes {
    fn default() -> Self {
        Self::new(DEFAULT_CAPACITY, DEFAULT_CAPACITY, DEFAULT_CAPACITY)
    }
}

impl ScriptedNodes {
    pub fn new(
        stack_capacity: usize,
        registers_capacity: usize,
        heap_page_capacity: usize,
    ) -> Self {
        Self {
            context: Context::new(stack_capacity, registers_capacity, heap_page_capacity),
        }
    }

    pub fn maintain(universe: &Universe) {
        {
            let mut signals = universe.expect_resource_mut::<ScriptedNodesSignals>();
            for signal in std::mem::take(&mut signals.signals) {
                signal(universe);
            }
        }
        {
            let mut commands = universe.expect_resource_mut::<UniverseCommands>();
            let mut spawns = universe.expect_resource_mut::<ScriptedNodesSpawns>();
            for (tree, parent) in std::mem::take(&mut spawns.spawns) {
                Self::execute_spawn(tree, parent, &mut commands);
            }
        }
    }

    fn execute_spawn(
        tree: ScriptedNodesTree,
        parent: Option<Entity>,
        commands: &mut UniverseCommands,
    ) {
        let ScriptedNodesTree {
            active,
            object,
            children,
            mut components,
            setup,
            bind,
        } = tree;
        if let Some(entity) = parent {
            components.add(Parent(entity));
        }
        components.add(ScriptedNode { active, object });
        commands.schedule(
            SpawnEntity::new(components).on_complete(move |universe, entity| {
                if let Some(function) = setup {
                    let mut signals = universe.expect_resource_mut::<ScriptedNodesSignals>();
                    signals.signal::<()>(ScriptedNodeSignal::new(Some(entity), function));
                }
                if let Some(bind) = bind {
                    (bind)(entity);
                }
                let mut commands = universe.expect_resource_mut::<UniverseCommands>();
                for child in children {
                    Self::execute_spawn((child)(), Some(entity), &mut commands);
                }
            }),
        );
    }

    pub fn dispatch<T: ScriptedNodeComponentPack>(
        &mut self,
        universe: &Universe,
        function: ScriptFunctionReference,
        args: &[ScriptedNodesParam],
    ) {
        let world = universe.world();
        let scripting = universe.expect_resource::<Scripting>();
        let hierarchy = universe.expect_resource::<Hierarchy>();

        for (entity, _) in world
            .query::<()>()
            .with::<&ScriptedNode>()
            .without::<&Parent>()
            .iter()
        {
            self.execute::<T>(entity, &function, args, &world, &scripting, &hierarchy);
        }
    }

    pub fn execute<T: ScriptedNodeComponentPack>(
        &mut self,
        entity: Entity,
        function_ref: &ScriptFunctionReference,
        args: &[ScriptedNodesParam],
        world: &World,
        scripting: &Scripting,
        hierarchy: &Hierarchy,
    ) {
        if let Ok(mut query) = world.query_one::<&ScriptedNode>(entity) {
            if let Some(node) = query.get() {
                if !node.active {
                    return;
                }
            }
        }
        let token = self.context.stack().store();
        let result = if let Ok(mut query) = world.query_one::<(&mut ScriptedNode, T)>(entity) {
            if let Some((node, pack)) = query.get() {
                let mut query = function_ref.query();
                if query.struct_query.is_none() {
                    query.struct_query = Some(StructQuery {
                        type_hash: Some(*node.object.type_hash()),
                        ..Default::default()
                    });
                }
                if let Some(function) = scripting.registry.find_function(query) {
                    if let Some(handle) = &function.signature().struct_handle {
                        if node.object.type_hash() != &handle.type_hash() {
                            return;
                        }
                    }
                    self.context.stack().push(DynamicManaged::new(entity));
                    let mut compontents_params = vec![];
                    T::query_param(pack, &mut compontents_params);
                    for arg in compontents_params.iter().chain(args.iter()).rev() {
                        match arg {
                            ScriptedNodesParam::Owned(arg) => {
                                self.context.stack().push(arg.borrow().unwrap());
                            }
                            ScriptedNodesParam::Ref(arg) => {
                                self.context.stack().push(arg.borrow().unwrap());
                            }
                            ScriptedNodesParam::RefMut(arg) => {
                                self.context.stack().push(arg.borrow_mut().unwrap());
                            }
                            ScriptedNodesParam::ScopedRef(arg, _) => {
                                self.context.stack().push(arg.borrow().unwrap());
                            }
                            ScriptedNodesParam::ScopedRefMut(arg, _) => {
                                self.context.stack().push(arg.borrow_mut().unwrap());
                            }
                        }
                    }
                    self.context.stack().push(node.object.borrow_mut().unwrap());
                    Some((function, compontents_params))
                } else {
                    None
                }
            } else {
                None
            }
        } else {
            None
        };
        if let Some((function, _)) = result {
            function.invoke(&mut self.context, &scripting.registry);
        }
        self.context.stack().restore(token);
        if let Some(iter) = hierarchy.children(entity) {
            for entity in iter {
                self.execute::<T>(entity, function_ref, args, world, scripting, hierarchy);
            }
        }
    }
}

pub struct ScriptedNodesTree {
    active: bool,
    object: DynamicManaged,
    components: EntityBuilder,
    children: Vec<Box<dyn FnOnce() -> Self + Send + Sync>>,
    setup: Option<ScriptFunctionReference>,
    bind: Option<Box<dyn FnOnce(Entity) + Send + Sync>>,
}

impl ScriptedNodesTree {
    pub fn empty() -> Self {
        Self::new(())
    }

    pub fn new<T: 'static>(data: T) -> Self {
        Self::new_raw(DynamicManaged::new(data))
    }

    pub fn new_raw(object: DynamicManaged) -> Self {
        Self {
            active: true,
            object,
            children: Default::default(),
            components: Default::default(),
            setup: None,
            bind: None,
        }
    }

    pub fn name(mut self, name: impl Into<Cow<'static, str>>) -> Self {
        self.components.add(Name(name.into()));
        self
    }

    pub fn inactive(mut self) -> Self {
        self.active = false;
        self
    }

    pub fn component<T: Component>(mut self, component: T) -> Self {
        self.components.add(component);
        self
    }

    pub fn child(mut self, f: impl FnOnce() -> Self + Send + Sync + 'static) -> Self {
        self.children.push(Box::new(f));
        self
    }

    pub fn setup(mut self, function: ScriptFunctionReference) -> Self {
        self.setup = Some(function);
        self
    }

    pub fn bind(mut self, f: impl FnOnce(Entity) + Send + Sync + 'static) -> Self {
        self.bind = Some(Box::new(f));
        self
    }
}

pub trait ScriptedNodeComponentPack: Query {
    fn query_param(pack: Self::Item<'_>, list: &mut Vec<ScriptedNodesParam>);
}

impl ScriptedNodeComponentPack for () {
    fn query_param(_: (), _: &mut Vec<ScriptedNodesParam>) {}
}

impl<T: Component> ScriptedNodeComponentPack for &T {
    fn query_param(pack: Self::Item<'_>, list: &mut Vec<ScriptedNodesParam>) {
        list.push(ScriptedNodesParam::scoped_ref(pack));
    }
}

impl<T: Component> ScriptedNodeComponentPack for &mut T {
    fn query_param(pack: Self::Item<'_>, list: &mut Vec<ScriptedNodesParam>) {
        list.push(ScriptedNodesParam::scoped_ref_mut(pack));
    }
}

macro_rules! impl_component_tuple {
    ($($type:ident),+) => {
        impl<$($type: ScriptedNodeComponentPack),+> ScriptedNodeComponentPack for ($($type,)+) {
            fn query_param(pack: Self::Item<'_>, list: &mut Vec<ScriptedNodesParam>) {
                #[allow(non_snake_case)]
                let ( $($type,)+ ) = pack;
                $(
                    $type::query_param($type, list);
                )+
            }
        }
    };
}

impl_component_tuple!(A);
impl_component_tuple!(A, B);
impl_component_tuple!(A, B, C);
impl_component_tuple!(A, B, C, D);
impl_component_tuple!(A, B, C, D, E);
impl_component_tuple!(A, B, C, D, E, F);
impl_component_tuple!(A, B, C, D, E, F, G);
impl_component_tuple!(A, B, C, D, E, F, G, H);
impl_component_tuple!(A, B, C, D, E, F, G, H, I);
impl_component_tuple!(A, B, C, D, E, F, G, H, I, J);
impl_component_tuple!(A, B, C, D, E, F, G, H, I, J, K);
impl_component_tuple!(A, B, C, D, E, F, G, H, I, J, K, L);
impl_component_tuple!(A, B, C, D, E, F, G, H, I, J, K, L, M);
impl_component_tuple!(A, B, C, D, E, F, G, H, I, J, K, L, M, N);
impl_component_tuple!(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O);

pub fn bundle_installer<PB>(
    builder: &mut AppBuilder<PB>,
    nodes: ScriptedNodes,
) -> Result<(), PipelineBuilderError>
where
    PB: PipelineBuilder,
{
    builder.install_resource(nodes);
    builder.install_resource(ScriptedNodesSpawns::default());
    builder.install_resource(ScriptedNodesSignals::default());
    Ok(())
}