diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:19 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:19 +0100 |
commit | b4266e59e5b0ced3fcd74a4b0871a5b32e46e0ac (patch) | |
tree | d0da751d9bc6982e47f637b0f8b0bff90d91c5b3 /stockton-types/src | |
parent | b2fbd5116b66a3560639bdcbad914c52b43e878e (diff) |
feat(types): allow entity mapper to fail and fix possible ent_map! panic
Diffstat (limited to 'stockton-types/src')
-rw-r--r-- | stockton-types/src/ent_map.rs | 25 | ||||
-rw-r--r-- | stockton-types/src/world.rs | 13 |
2 files changed, 26 insertions, 12 deletions
diff --git a/stockton-types/src/ent_map.rs b/stockton-types/src/ent_map.rs index 213e481..e2eedcc 100644 --- a/stockton-types/src/ent_map.rs +++ b/stockton-types/src/ent_map.rs @@ -20,15 +20,30 @@ macro_rules! ent_map { { use stockton_bsp::lumps::entities::Entity as BSPEntity; use stockton_types::Entity; - |ent: &BSPEntity| -> Box<dyn Entity> { + |ent: &BSPEntity| -> Option<Box<dyn Entity>> { $( if ent.attributes["classname"] == $name { - return Box::new($type { - $( $target : ent.attributes[$key].into() ),* - }); + let mut valid = true; + { + $(let mut $target = false;);* + for key in ent.attributes.keys() { + $(if key == &$key { + $target = true; + continue; + });* + } + $(if !$target { + valid = false; + });* + } + if valid { + return Some(Box::new($type { + $( $target : ent.attributes[$key].into() ),* + })); + } } );* - panic!("Unrecognised Entity type: {:?}", ent); + None } } } diff --git a/stockton-types/src/world.rs b/stockton-types/src/world.rs index 18a0edf..1196592 100644 --- a/stockton-types/src/world.rs +++ b/stockton-types/src/world.rs @@ -35,21 +35,20 @@ impl<'a> World<'a> { /// /// `mapper` is called for each BSPEntity to map it to a concrete rust type. pub fn new<F>(bsp: Pin<Box<BSPFile<'a>>>, mut mapper: F) -> Option<World<'a>> - where F: FnMut(&BSPEntity) -> (Box<Entity>, String) { + where F: FnMut(&BSPEntity) -> Option<(Box<Entity>, String)> { let mut entities: Vec<(Box<Entity>, String)> = Vec::with_capacity(bsp.entities.entities.len()); for bsp_ent in bsp.entities.entities.iter() { - entities.push(mapper(&bsp_ent)); + if let Some(result) = mapper(&bsp_ent) { + entities.push(result); + } } - let store = EntityStore::from_entities(entities); - if store.is_none() { - return None; - } + let store = EntityStore::from_entities(entities)?; Some(World { map: bsp, - live_entities: store.unwrap() + live_entities: store }) } }
\ No newline at end of file |