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
use amethyst_assets::PrefabData;
use amethyst_core::ecs::prelude::{Component, Entity, HashMapStorage, NullStorage, WriteStorage};
use amethyst_error::Error;
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Copy, Default, Serialize, Deserialize)]
pub struct FlyControlTag;
impl Component for FlyControlTag {
type Storage = NullStorage<FlyControlTag>;
}
#[derive(Debug, Clone)]
pub struct ArcBallControlTag {
pub target: Entity,
pub distance: f32,
}
impl Component for ArcBallControlTag {
type Storage = HashMapStorage<ArcBallControlTag>;
}
#[derive(Debug, Default, Clone, Deserialize, Serialize)]
pub struct ControlTagPrefab {
pub arc_ball: Option<(usize, f32)>,
}
impl<'a> PrefabData<'a> for ControlTagPrefab {
type SystemData = (
WriteStorage<'a, FlyControlTag>,
WriteStorage<'a, ArcBallControlTag>,
);
type Result = ();
fn add_to_entity(
&self,
entity: Entity,
system_data: &mut Self::SystemData,
entities: &[Entity],
_: &[Entity],
) -> Result<(), Error> {
system_data.0.insert(entity, FlyControlTag)?;
if let Some((index, distance)) = self.arc_ball {
system_data.1.insert(
entity,
ArcBallControlTag {
target: entities[index],
distance,
},
)?;
}
Ok(())
}
}