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
//! Provides a small simple tag component for identifying entities.

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};

/// Tag component that can be used with a custom type to tag entities for processing
#[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>;
}

/// Utility lookup for tag components
#[derive(SystemData)]
#[allow(missing_debug_implementations)]
pub struct TagFinder<'a, T>
where
    T: Clone + Send + Sync + 'static,
{
    /// The `EntitiesRes` from the ECS used to lookup tags.
    pub entities: Entities<'a>,
    /// The component storage for the tags being searched.
    pub tags: ReadStorage<'a, Tag<T>>,
}

impl<'a, T> TagFinder<'a, T>
where
    T: Clone + Send + Sync + 'static,
{
    /// Returns the first entity found with the tag in question.
    pub fn find(&self) -> Option<Entity> {
        (&*self.entities, &self.tags)
            .join()
            .map(|(entity, _)| entity)
            .next()
    }
}