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
use std::marker::PhantomData;
use amethyst_assets::PrefabData;
use amethyst_core::ecs::{
shred::{ResourceId, SystemData},
Component, Entities, Entity, Join, NullStorage, ReadStorage, World, WriteStorage,
};
use amethyst_derive::PrefabData;
use amethyst_error::Error;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Serialize, Deserialize, PrefabData)]
#[serde(default)]
#[prefab(Component)]
pub struct Tag<T>
where
T: Clone + Send + Sync + 'static,
{
_m: PhantomData<T>,
}
impl<T> Default for Tag<T>
where
T: Clone + Send + Sync + 'static,
{
fn default() -> Self {
Tag { _m: PhantomData }
}
}
impl<T> Component for Tag<T>
where
T: Clone + Send + Sync + 'static,
{
type Storage = NullStorage<Self>;
}
#[derive(SystemData)]
#[allow(missing_debug_implementations)]
pub struct TagFinder<'a, T>
where
T: Clone + Send + Sync + 'static,
{
pub entities: Entities<'a>,
pub tags: ReadStorage<'a, Tag<T>>,
}
impl<'a, T> TagFinder<'a, T>
where
T: Clone + Send + Sync + 'static,
{
pub fn find(&self) -> Option<Entity> {
(&*self.entities, &self.tags)
.join()
.map(|(entity, _)| entity)
.next()
}
}