From 4ac795c982ac25a554e6737bb7f63ebfa1676f17 Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Sun, 9 May 2021 18:25:52 +0300 Subject: [PATCH 1/2] Add species to /spawn auto-complete --- common/src/cmd.rs | 38 ++++++++++++++++++++++++++++++++++---- common/src/comp/body.rs | 2 ++ 2 files changed, 36 insertions(+), 4 deletions(-) diff --git a/common/src/cmd.rs b/common/src/cmd.rs index 1f2fa1365d..cf9033494b 100644 --- a/common/src/cmd.rs +++ b/common/src/cmd.rs @@ -209,10 +209,40 @@ lazy_static! { /// TODO: Make this use hot-reloading static ref ENTITIES: Vec = { let npc_names = &*npc::NPC_NAMES.read(); - npc::ALL_NPCS - .iter() - .map(|&npc| npc_names[npc].keyword.clone()) - .collect() + let mut souls = Vec::new(); + macro_rules! push_souls { + ($species:tt) => { + for s in comp::$species::ALL_SPECIES.iter() { + souls.push(npc_names.$species.species[s].keyword.clone()) + } + }; + ($base:tt, $($species:tt),+ $(,)?) => { + push_souls!($base); + push_souls!($($species),+); + } + } + for npc in npc::ALL_NPCS.iter() { + souls.push(npc_names[*npc].keyword.clone()) + } + + // See `[AllBodies](crate::comp::body::AllBodies)` + push_souls!( + humanoid, + quadruped_small, + quadruped_medium, + quadruped_low, + bird_medium, + bird_large, + fish_small, + fish_medium, + biped_small, + biped_large, + theropod, + dragon, + golem, + ); + + souls }; static ref OBJECTS: Vec = comp::object::ALL_OBJECTS .iter() diff --git a/common/src/comp/body.rs b/common/src/comp/body.rs index 87237bef92..1f3a3dabbe 100644 --- a/common/src/comp/body.rs +++ b/common/src/comp/body.rs @@ -65,6 +65,8 @@ pub struct BodyData { /// stored for each species for each body. /// /// NOTE: Deliberately don't (yet?) implement serialize. +/// NOTE: If you are adding new body kind and it should be spawned via /spawn +/// please add it to `[ENTITIES](crate::cmd::ENTITIES)` #[derive(Clone, Debug, Deserialize)] pub struct AllBodies { pub humanoid: BodyData>, From 173abedfcab1fa73c70ba26847212a5bdf625b2d Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Sun, 9 May 2021 20:37:25 +0300 Subject: [PATCH 2/2] update CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fa8b6d415..c672f86e68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -122,6 +122,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Villagers in safezones no longer spam messages upon seeing an enemy - Wolf AI will no longer circle into walls and will instead use the power of raycasts to stop early - Squirrels are no longer immune to arrows at some angles. +- /spawn command's auto-complete now works for species names ## [0.9.0] - 2021-03-20