about summary refs log blame commit diff
path: root/src/entities/raws.rs
blob: 2c4a8203cb174503e5cb2afbfbeffabd09511354 (plain) (tree)
1
2
3
4
5
                                                                        

                              
             
                                                                            
















                                                                                   




                                                            










                                                     
pub use crate::entities::raw_types::{CreatureType, EntityRaw, ItemType};
use std::collections::HashMap;

static_cfg! {
    static ref RAWS: Vec<EntityRaw<'static>> = cfg_dir("src/entities/raws");
}

lazy_static! {
    static ref RAWS_BY_NAME: HashMap<&'static str, &'static EntityRaw<'static>> = {
        let mut hm = HashMap::new();
        for er in RAWS.iter() {
            if hm.contains_key(er.name()) {
                panic!("Duplicate entity: {}", er.name())
            }

            hm.insert(er.name(), er);
        }
        hm
    };
}

pub fn raw(name: &'static str) -> &'static EntityRaw<'static> {
    RAWS_BY_NAME
        .get(name)
        .map(|e| *e)
        .expect(format!("Raw not found: {}", name).as_str())
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_raws() {
        RAWS_BY_NAME.keys();
        assert_eq!(raw("noodles").name(), "noodles");
    }
}