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
use amethyst_core::{
ecs::{Component, DenseVecStorage, Entities, Join, Read, ReadStorage, System, WriteStorage},
timing::Time,
};
use log::error;
use serde::{Deserialize, Serialize};
#[cfg(feature = "profiler")]
use thread_profiler::profile_scope;
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DestroyAtTime {
pub time: f64,
}
impl Component for DestroyAtTime {
type Storage = DenseVecStorage<Self>;
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DestroyInTime {
pub timer: f64,
}
impl Component for DestroyInTime {
type Storage = DenseVecStorage<Self>;
}
#[derive(Debug)]
pub struct DestroyAtTimeSystem;
impl<'a> System<'a> for DestroyAtTimeSystem {
type SystemData = (Entities<'a>, ReadStorage<'a, DestroyAtTime>, Read<'a, Time>);
fn run(&mut self, (entities, dat, time): Self::SystemData) {
#[cfg(feature = "profiler")]
profile_scope!("destroy_at_time_system");
for (e, d) in (&entities, &dat).join() {
if time.absolute_time_seconds() > d.time {
if let Err(err) = entities.delete(e) {
error!("Failed to delete entity: {:?}", err);
}
}
}
}
}
#[derive(Debug)]
pub struct DestroyInTimeSystem;
impl<'a> System<'a> for DestroyInTimeSystem {
type SystemData = (
Entities<'a>,
WriteStorage<'a, DestroyInTime>,
Read<'a, Time>,
);
fn run(&mut self, (entities, mut dit, time): Self::SystemData) {
#[cfg(feature = "profiler")]
profile_scope!("destroy_in_time_system");
for (e, d) in (&entities, &mut dit).join() {
if d.timer <= 0.0 {
if let Err(err) = entities.delete(e) {
error!("Failed to delete entity: {:?}", err);
}
}
d.timer -= f64::from(time.delta_seconds());
}
}
}