diff options
author | HampusM <hampus@hampusmat.com> | 2024-05-18 23:35:41 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-05-18 23:35:41 +0200 |
commit | 3884f9bdd775afd3a40503286eb5d06ef72eeb1a (patch) | |
tree | ed8b5a39fbf485a71be31ba6fd30bef58dea34f6 /engine/src/input.rs | |
parent | bcf1e9c00e3959c3db047d2d8b3ac7d6c4853796 (diff) |
fix(engine): prevent camera moving when window regains focus
Diffstat (limited to 'engine/src/input.rs')
-rw-r--r-- | engine/src/input.rs | 85 |
1 files changed, 78 insertions, 7 deletions
diff --git a/engine/src/input.rs b/engine/src/input.rs index f64d93e..7bd664f 100644 --- a/engine/src/input.rs +++ b/engine/src/input.rs @@ -4,7 +4,7 @@ use ecs::extension::Collector as ExtensionCollector; use ecs::sole::Single; use ecs::Sole; -use crate::event::Start as StartEvent; +use crate::event::{PreUpdate as PreUpdateEvent, Start as StartEvent}; use crate::vector::Vec2; use crate::window::{Key, KeyState, Window}; @@ -49,19 +49,48 @@ impl Keys } } -#[derive(Debug, Clone, Default, Sole)] +#[derive(Debug, Default, Clone, Sole)] pub struct Cursor { pub position: Vec2<f64>, pub has_moved: bool, } -impl Cursor +#[derive(Debug, Clone, Sole)] +pub struct CursorFlags { - #[must_use] - pub fn new() -> Self + /// This flag is set in two situations: + /// A: The window has just started + /// B: The window has gained focus again after losing focus. + /// + /// This flag only lasts a single tick then it is cleared (at the beginning of the + /// next tick). + pub is_first_move: CursorFlag, +} + +impl Default for CursorFlags +{ + fn default() -> Self { - Self::default() + Self { + is_first_move: CursorFlag { flag: true, ..Default::default() }, + } + } +} + +#[derive(Debug, Default, Clone)] +pub struct CursorFlag +{ + pub flag: bool, + pub pending_clear: bool, +} + +impl CursorFlag +{ + pub fn clear(&mut self) + { + self.flag = false; + self.pending_clear = false; } } @@ -74,13 +103,20 @@ impl ecs::extension::Extension for Extension fn collect(self, mut collector: ExtensionCollector<'_>) { collector.add_system(StartEvent, initialize); + collector.add_system(PreUpdateEvent, maybe_clear_cursor_is_first_move); collector.add_sole(Keys::default()).ok(); collector.add_sole(Cursor::default()).ok(); + collector.add_sole(CursorFlags::default()).ok(); } } -fn initialize(keys: Single<Keys>, cursor: Single<Cursor>, window: Single<Window>) +fn initialize( + keys: Single<Keys>, + cursor: Single<Cursor>, + cursor_flags: Single<CursorFlags>, + window: Single<Window>, +) { let keys_weak_ref = keys.to_weak_ref(); @@ -110,4 +146,39 @@ fn initialize(keys: Single<Keys>, cursor: Single<Cursor>, window: Single<Window> cursor.has_moved = true; }); + + let cursor_flags_weak_ref = cursor_flags.to_weak_ref(); + + window.set_focus_callback(move |is_focused| { + #[cfg(feature = "debug")] + tracing::trace!("Window is focused: {is_focused}"); + + let cursor_flags_ref = cursor_flags_weak_ref.access().expect("No world"); + + cursor_flags_ref.to_single().is_first_move.flag = is_focused; + }); +} + +fn maybe_clear_cursor_is_first_move( + cursor: Single<Cursor>, + mut cursor_flags: Single<CursorFlags>, +) +{ + if cursor_flags.is_first_move.pending_clear { + #[cfg(feature = "debug")] + tracing::trace!("Clearing is_first_move"); + + // This flag was set for the whole previous tick so it can be cleared now + cursor_flags.is_first_move.clear(); + + return; + } + + if cursor.has_moved && cursor_flags.is_first_move.flag { + #[cfg(feature = "debug")] + tracing::trace!("Setting flag to clear is_first_move next tick"); + + // Make this system clear is_first_move the next time it runs + cursor_flags.is_first_move.pending_clear = true; + } } |