ABC_ECS/
macros.rs

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
use crate::*;

/// This trait is used to get a tuple of references to components
/// it is automatically implemented for tuples of components
pub trait ComponentsRef<'a> {
    /// The type of the result
    type Result;

    /// Returns a tuple of references to the components
    fn get_components(
        entities_and_components: &'a EntitiesAndComponents,
        entity: Entity,
    ) -> Self::Result;
}

macro_rules! impl_components {
    ($($generic_name: ident),*) => {
        impl<'b, $($generic_name: 'static),*> ComponentsRef<'b> for ($($generic_name,)*) {
            type Result = ($(&'b $generic_name,)*);

            fn get_components(entities_and_components: &'b EntitiesAndComponents, entity: Entity) -> Self::Result {
                let components = entities_and_components
                .components
                .get(entity.entity_id);

                if components.is_none() {
                    println!("//////////////////////////////////////////////////////////////");
                    entities_and_components.tree(0);
                    panic!("Entity ID {entity:?} does not exist, was the Entity ID edited?");
                }

                let components = components.unwrap();

                (
                    $(
                        components
                            .get::<Box<$generic_name>>()
                            .unwrap_or_else(||{
                                let type_name = std::any::type_name::<$generic_name>();
                                panic!(
                                    "Component {type_name} does not exist on the object, was the Component added to the entity?"
                                )
                            }),
                    )*
                )
            }
        }
    };
}

/// This trait is used to get a tuple of references to components
/// it is automatically implemented for tuples of components
pub trait TryComponentsRef<'a> {
    /// The type of the result
    type Result;

    /// Returns a tuple of references to the components
    fn try_get_components(
        entities_and_components: &'a EntitiesAndComponents,
        entity: Entity,
    ) -> Self::Result;
}

macro_rules! impl_try_components {
    ($($generic_name: ident),*) => {
        impl<'b, $($generic_name: 'static),*> TryComponentsRef<'b> for ($($generic_name,)*) {
            type Result = ($(Option<&'b $generic_name>,)*);
            fn try_get_components(entities_and_components: &'b EntitiesAndComponents, entity: Entity) -> ($(Option<&'b $generic_name>,)*) {
                let components = entities_and_components
                .components
                .get(entity.entity_id);

                if components.is_none() {
                    println!("//////////////////////////////////////////////////////////////");
                    entities_and_components.tree(0);
                    panic!("Entity ID {entity:?} does not exist, was the Entity ID edited?");
                }

                let components = components.unwrap();


                (
                    $(
                        components
                            .get::<Box<$generic_name>>().map(|boxed_t1|{ &**boxed_t1}),
                    )*
                )
            }
        }
    };
}

/// This trait is used to get a tuple of mutable references to components
/// it is automatically implemented for tuples of components
pub trait ComponentsMut<'a> {
    /// The type of the result
    type Result;

    /// Returns a tuple of mutable references to the components
    fn get_components_mut(
        entities_and_components: &'a mut EntitiesAndComponents,
        entity: Entity,
    ) -> Self::Result;
}

macro_rules! impl_components_mut {
    ($($generic_name: ident),*) => {
        impl<'b, $($generic_name: 'static),*> ComponentsMut<'b> for ($($generic_name,)*) {
            type Result = ($(&'b mut $generic_name,)*);

            fn get_components_mut(entities_and_components: &'b mut EntitiesAndComponents, entity: Entity) -> Self::Result {

                // make sure that the same component is not borrowed mutably more than once
                let all_types = [
                    $(
                        std::any::TypeId::of::<$generic_name>(),
                    )*
                ];

                for i in 0..all_types.len() {
                    for j in i+1..all_types.len() {
                        assert_ne!(all_types[i], all_types[j], "You cannot borrow the same component mutably more than once!");
                    }
                }

                let components = entities_and_components
                .components
                .get_mut(entity.entity_id);

                if components.is_none() {
                    println!("//////////////////////////////////////////////////////////////");
                    entities_and_components.tree(0);
                    panic!("Entity ID {entity:?} does not exist, was the Entity ID edited?");
                }

                let components = components.unwrap();

                (
                    $(
                        {
                            let pointer: *mut $generic_name = &mut **components
                                .get_mut::<Box<$generic_name>>()
                                .unwrap_or_else(||{
                                    let type_name = std::any::type_name::<$generic_name>();
                                    panic!(
                                        "Component {type_name} does not exist on the object, was the Component added to the entity?"
                                    )
                                });
                            // SAFETY: We just checked that the component exists
                            // and that the component is not borrowed mutably more than once
                            // and lifetimes are checked at compile time to make sure that the component still exists
                            // so it is safe to return a mutable reference to the component
                            let reference = unsafe { &mut *pointer };
                            reference
                        },
                    )*
                )
            }
        }
    };
}

/// This trait is used to get a tuple of mutable references to components
/// it is automatically implemented for tuples of components
pub trait TryComponentsMut<'a> {
    /// The type of the result
    type Result;

    /// Returns a tuple of mutable references to the components
    fn try_get_components_mut(
        entities_and_components: &'a mut EntitiesAndComponents,
        entity: Entity,
    ) -> Self::Result;
}

macro_rules! impl_try_components_mut {
    ($($generic_name: ident),*) => {
        impl<'b, $($generic_name: 'static),*> TryComponentsMut<'b> for ($($generic_name,)*) {
            type Result = ($(Option<&'b mut $generic_name>,)*);

            fn try_get_components_mut(entities_and_components: &'b mut EntitiesAndComponents, entity: Entity) -> Self::Result {

                // make sure that the same component is not borrowed mutably more than once
                let all_types = [
                    $(
                        std::any::TypeId::of::<$generic_name>(),
                    )*
                ];

                for i in 0..all_types.len() {
                    for j in i+1..all_types.len() {
                        assert_ne!(all_types[i], all_types[j], "You cannot borrow the same component mutably more than once!");
                    }
                }

                let components = entities_and_components
                    .components
                    .get_mut(entity.entity_id);

                if components.is_none() {
                    println!("//////////////////////////////////////////////////////////////");
                    entities_and_components.tree(0);
                    panic!("Entity ID {entity:?} does not exist, was the Entity ID edited?");
                }

                let components = components.unwrap();

                (
                    $(
                        {
                            let original_reference = components
                                .get_mut::<Box<$generic_name>>();
                            match original_reference {
                                Some(reference) => {
                                    let pointer: *mut $generic_name = &mut **reference;
                                    // SAFETY: We just checked that the component exists
                                    // and that the component is not borrowed mutably more than once
                                    // and lifetimes are checked at compile time to make sure that the component still exists
                                    // so it is safe to return a mutable reference to the component
                                    let reference = unsafe { &mut *pointer };
                                    Some(reference)
                                },
                                None => None,
                            }
                        },
                    )*
                )
            }
        }
    };
}

/// This trait is used to get a tuple of owned components
/// it is automatically implemented for tuples of components
pub trait OwnedComponents {
    /// The type of the input
    type Input;

    /// Returns a tuple of owned components
    fn make_entity_with_components(
        entities_and_components: &mut EntitiesAndComponents,
        components: Self::Input,
    ) -> Entity;
}

macro_rules! impl_owned_components {
    ($($generic_name: ident, $component_num: tt),*) => {
        impl<$($generic_name: 'static),*> OwnedComponents for ($($generic_name,)*) {
            type Input = ($($generic_name,)*);

            fn make_entity_with_components(
                entities_and_components: &mut EntitiesAndComponents,
                components: Self::Input,
            ) -> Entity {
                let entity = entities_and_components.add_entity();

                $(
                    entities_and_components.add_component_to(entity, (components.$component_num));
                )*

                entity
            }
        }
    };
}

// it would be nice to have a macro that generates this code
impl_components!(T1);
impl_components!(T1, T2);
impl_components!(T1, T2, T3);
impl_components!(T1, T2, T3, T4);
impl_components!(T1, T2, T3, T4, T5);
impl_components!(T1, T2, T3, T4, T5, T6);
impl_components!(T1, T2, T3, T4, T5, T6, T7);
impl_components!(T1, T2, T3, T4, T5, T6, T7, T8);
impl_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9);
impl_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10);
impl_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11);
impl_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12);
impl_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13);
impl_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14);
impl_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15);
impl_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16);
impl_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17);
impl_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18);
impl_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19
);
impl_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20
);
impl_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21
);
impl_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22
);
impl_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23
);
impl_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24
);
impl_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25
);
impl_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26
);
impl_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27
);
impl_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28
);
impl_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29
);
impl_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29, T30
);
impl_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29, T30, T31
);
impl_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32
);

impl_try_components!(T1);
impl_try_components!(T1, T2);
impl_try_components!(T1, T2, T3);
impl_try_components!(T1, T2, T3, T4);
impl_try_components!(T1, T2, T3, T4, T5);
impl_try_components!(T1, T2, T3, T4, T5, T6);
impl_try_components!(T1, T2, T3, T4, T5, T6, T7);
impl_try_components!(T1, T2, T3, T4, T5, T6, T7, T8);
impl_try_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9);
impl_try_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10);
impl_try_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11);
impl_try_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12);
impl_try_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13);
impl_try_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14);
impl_try_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15);
impl_try_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16);
impl_try_components!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18
);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19
);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20
);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21
);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22
);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23
);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24
);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25
);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26
);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27
);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28
);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29
);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29, T30
);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29, T30, T31
);
impl_try_components!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32
);

impl_components_mut!(T1);
impl_components_mut!(T1, T2);
impl_components_mut!(T1, T2, T3);
impl_components_mut!(T1, T2, T3, T4);
impl_components_mut!(T1, T2, T3, T4, T5);
impl_components_mut!(T1, T2, T3, T4, T5, T6);
impl_components_mut!(T1, T2, T3, T4, T5, T6, T7);
impl_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8);
impl_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9);
impl_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10);
impl_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11);
impl_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12);
impl_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13);
impl_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14);
impl_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15);
impl_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16);
impl_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18
);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19
);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20
);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21
);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22
);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23
);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24
);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25
);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26
);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27
);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28
);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29
);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29, T30
);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29, T30, T31
);
impl_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32
);

impl_try_components_mut!(T1);
impl_try_components_mut!(T1, T2);
impl_try_components_mut!(T1, T2, T3);
impl_try_components_mut!(T1, T2, T3, T4);
impl_try_components_mut!(T1, T2, T3, T4, T5);
impl_try_components_mut!(T1, T2, T3, T4, T5, T6);
impl_try_components_mut!(T1, T2, T3, T4, T5, T6, T7);
impl_try_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8);
impl_try_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9);
impl_try_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10);
impl_try_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11);
impl_try_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12);
impl_try_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13);
impl_try_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14);
impl_try_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15);
impl_try_components_mut!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29, T30
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29, T30, T31
);
impl_try_components_mut!(
    T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21,
    T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32
);

impl_owned_components!(T1, 0);
impl_owned_components!(T1, 0, T2, 1);
impl_owned_components!(T1, 0, T2, 1, T3, 2);
impl_owned_components!(T1, 0, T2, 1, T3, 2, T4, 3);
impl_owned_components!(T1, 0, T2, 1, T3, 2, T4, 3, T5, 4);
impl_owned_components!(T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5);
impl_owned_components!(T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6);
impl_owned_components!(T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7);
impl_owned_components!(T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8);
impl_owned_components!(T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17, T19, 18
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17, T19, 18, T20, 19
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17, T19, 18, T20, 19, T21, 20
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17, T19, 18, T20, 19, T21, 20, T22, 21
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17, T19, 18, T20, 19, T21, 20, T22, 21, T23, 22
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17, T19, 18, T20, 19, T21, 20, T22, 21, T23, 22,
    T24, 23
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17, T19, 18, T20, 19, T21, 20, T22, 21, T23, 22,
    T24, 23, T25, 24
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17, T19, 18, T20, 19, T21, 20, T22, 21, T23, 22,
    T24, 23, T25, 24, T26, 25
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17, T19, 18, T20, 19, T21, 20, T22, 21, T23, 22,
    T24, 23, T25, 24, T26, 25, T27, 26
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17, T19, 18, T20, 19, T21, 20, T22, 21, T23, 22,
    T24, 23, T25, 24, T26, 25, T27, 26, T28, 27
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17, T19, 18, T20, 19, T21, 20, T22, 21, T23, 22,
    T24, 23, T25, 24, T26, 25, T27, 26, T28, 27, T29, 28
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17, T19, 18, T20, 19, T21, 20, T22, 21, T23, 22,
    T24, 23, T25, 24, T26, 25, T27, 26, T28, 27, T29, 28, T30, 29
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17, T19, 18, T20, 19, T21, 20, T22, 21, T23, 22,
    T24, 23, T25, 24, T26, 25, T27, 26, T28, 27, T29, 28, T30, 29, T31, 30
);
impl_owned_components!(
    T1, 0, T2, 1, T3, 2, T4, 3, T5, 4, T6, 5, T7, 6, T8, 7, T9, 8, T10, 9, T11, 10, T12, 11, T13,
    12, T14, 13, T15, 14, T16, 15, T17, 16, T18, 17, T19, 18, T20, 19, T21, 20, T22, 21, T23, 22,
    T24, 23, T25, 24, T26, 25, T27, 26, T28, 27, T29, 28, T30, 29, T31, 30, T32, 31
);