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
|
//! Component events.
use std::fmt::{Debug, Formatter};
use std::marker::PhantomData;
use ecs_macros::Component;
use crate::component::Component;
use crate::uid::Uid;
use crate::event::{Event, Id};
use crate::tuple::{ReduceElement as TupleReduceElement, With as TupleWith};
/// Event emitted when:
/// a) A entity with component `ComponentT` is spawned.
/// b) A component `ComponentT` is added to a entity.
pub struct Added<ComponentT>
where
ComponentT: Component,
{
_pd: PhantomData<ComponentT>,
}
impl<ComponentT> Debug for Added<ComponentT>
where
ComponentT: Component,
{
fn fmt(&self, formatter: &mut Formatter<'_>) -> std::fmt::Result
{
formatter
.debug_struct("Added")
.field("_pd", &self._pd)
.finish()
}
}
impl<ComponentT> Default for Added<ComponentT>
where
ComponentT: Component,
{
fn default() -> Self
{
Self { _pd: PhantomData }
}
}
impl<ComponentT> Event for Added<ComponentT>
where
ComponentT: Component,
{
fn id() -> Id
where
Self: Sized,
{
Id::new::<Added<ComponentForId>, _>(Some(ComponentT::id()))
}
}
/// Event emitted when a `ComponentT` component is removed from a entity.
pub struct Removed<ComponentT>
where
ComponentT: Component,
{
_pd: PhantomData<ComponentT>,
}
impl<ComponentT> Debug for Removed<ComponentT>
where
ComponentT: Component,
{
fn fmt(&self, formatter: &mut Formatter<'_>) -> std::fmt::Result
{
formatter
.debug_struct("Removed")
.field("_pd", &self._pd)
.finish()
}
}
impl<ComponentT> Default for Removed<ComponentT>
where
ComponentT: Component,
{
fn default() -> Self
{
Self { _pd: PhantomData }
}
}
impl<ComponentT> Event for Removed<ComponentT>
where
ComponentT: Component,
{
fn id() -> Id
where
Self: Sized,
{
Id::new::<Removed<ComponentForId>, _>(Some(ComponentT::id()))
}
}
#[must_use]
pub fn create_added_id(component_id: Uid) -> Id
{
Id::new::<Added<ComponentForId>, _>(Some(component_id))
}
#[must_use]
pub fn create_removed_id(component_id: Uid) -> Id
{
Id::new::<Removed<ComponentForId>, _>(Some(component_id))
}
pub struct TypeTransformComponentsToAddedEvents;
impl<ComponentT: Component, Accumulator>
TupleReduceElement<Accumulator, TypeTransformComponentsToAddedEvents> for ComponentT
where
Accumulator: TupleWith<Added<Self>>,
{
type Return = Accumulator::With;
}
#[derive(Debug, Component)]
struct ComponentForId;
|