From 7a4c9014c88d035759f37886fd9c67709a8eb9ac Mon Sep 17 00:00:00 2001 From: CrispyPin Date: Wed, 2 Apr 2025 23:12:19 +0200 Subject: [PATCH] replace raylib key and mouse button types with own enum --- src/input.rs | 482 +++++++++++++++++++++++++++++---------------------- 1 file changed, 279 insertions(+), 203 deletions(-) diff --git a/src/input.rs b/src/input.rs index ada150b..d150754 100644 --- a/src/input.rs +++ b/src/input.rs @@ -27,32 +27,28 @@ pub enum ActionId { StopSim, StepSim, // just like in C, because this way doesn't need more dependencies - _ActionIdSize, + _EnumSize, } impl Default for Input { fn default() -> Self { - use KeyboardKey::*; + use Button::*; let mut bindings = [(); ActionId::SIZE].map(|_| Vec::new()); - let mut bind_key = |action, mods, key| { + let mut bind_key = |action, mods, trigger| { bindings[action as usize].push(Binding { modifiers: mods, - trigger: InputTrigger::Key(key), + trigger, }); }; - bind_key(ActionId::Undo, vec![KEY_LEFT_CONTROL], KEY_Z); - bind_key(ActionId::Redo, vec![KEY_LEFT_CONTROL], KEY_Y); - bind_key( - ActionId::Redo, - vec![KEY_LEFT_CONTROL, KEY_LEFT_SHIFT], - KEY_Z, - ); - bind_key(ActionId::Copy, vec![KEY_LEFT_CONTROL], KEY_C); - bind_key(ActionId::Paste, vec![KEY_LEFT_CONTROL], KEY_V); - bind_key(ActionId::ToggleMenu, vec![], KEY_ESCAPE); - bind_key(ActionId::StartSim, vec![], KEY_ENTER); - bind_key(ActionId::StopSim, vec![], KEY_ENTER); - bind_key(ActionId::StepSim, vec![], KEY_SPACE); + bind_key(ActionId::Undo, vec![LCtrl], Z); + bind_key(ActionId::Redo, vec![LCtrl], Y); + bind_key(ActionId::Redo, vec![LCtrl, LShift], Z); + bind_key(ActionId::Copy, vec![LCtrl], C); + bind_key(ActionId::Paste, vec![LCtrl], V); + bind_key(ActionId::ToggleMenu, vec![], Escape); + bind_key(ActionId::StartSim, vec![], Enter); + bind_key(ActionId::StopSim, vec![], Enter); + bind_key(ActionId::StepSim, vec![], Space); Self { bindings, @@ -137,11 +133,8 @@ impl Input { let bindings = &self.bindings[i]; let mut is_active = false; for binding in bindings { - if binding.modifiers.iter().all(|&m| rl.is_key_down(m)) { - is_active |= match binding.trigger { - InputTrigger::Mouse(btn) => rl.is_mouse_button_down(btn), - InputTrigger::Key(key) => rl.is_key_down(key), - } + if binding.modifiers.iter().all(|&m| m.is_down(rl)) { + is_active |= binding.trigger.is_down(rl); } } let state = &mut self.states[i]; @@ -174,11 +167,11 @@ impl Input { } impl ActionId { - pub const SIZE: usize = Self::_ActionIdSize as usize; + pub const SIZE: usize = Self::_EnumSize as usize; fn from_usize(val: usize) -> Option { if val < Self::SIZE { - Some(unsafe { transmute::(val as u8) }) + Some(unsafe { transmute::(val as u8) }) } else { None } @@ -186,20 +179,11 @@ impl ActionId { } #[derive(Clone, Debug, Serialize, Deserialize)] -#[serde(from = "BindingSerde", into = "BindingSerde")] pub struct Binding { - modifiers: Vec, - trigger: InputTrigger, + modifiers: Vec