summaryrefslogtreecommitdiff
path: root/ecs/src/event/component.rs
blob: 5b40c39bad14f3642e9daa6d6309721284a77147 (plain)
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
//! Component events.

use std::fmt::{Debug, Formatter};
use std::marker::PhantomData;

use ecs_macros::Component;

use crate::component::Component;

/// Event emitted when:
/// a) A entity with component `ComponentT` is spawned.
/// b) A component `ComponentT` is added to a entity.
#[derive(Clone, Component)]
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 }
    }
}

/// Event emitted when a `ComponentT` component is removed from a entity.
#[derive(Clone, Component)]
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 }
    }
}