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
|
//! Component events.
use std::fmt::{Debug, Formatter};
use std::marker::PhantomData;
use ecs_macros::Component;
use crate::component::{Component, Id as ComponentId};
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(ComponentId::of::<ComponentT>()))
}
}
pub fn create_added_id(component_id: ComponentId) -> Id
{
Id::new::<Added<ComponentForId>, _>(Some(component_id))
}
pub struct ComponentToAddedEvent;
impl<ComponentT: Component, Accumulator>
TupleReduceElement<Accumulator, ComponentToAddedEvent> for ComponentT
where
Accumulator: TupleWith<Added<Self>>,
{
type Return = Accumulator::With;
}
use crate as ecs;
#[derive(Debug, Component)]
struct ComponentForId;
|