Vanilla Input System Integration
This commit is contained in:
parent
0d7e360c79
commit
39e8be3872
4135
Cargo.lock
generated
Normal file
4135
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -10,7 +10,7 @@ repository = "https://github.com/exvacuum/bevy_terminal_display"
|
|||||||
crossbeam-channel = "0.5"
|
crossbeam-channel = "0.5"
|
||||||
downcast-rs = "1.2"
|
downcast-rs = "1.2"
|
||||||
once_cell = "1.19"
|
once_cell = "1.19"
|
||||||
ratatui = "0.28"
|
ratatui = "0.29"
|
||||||
color-eyre = "0.6"
|
color-eyre = "0.6"
|
||||||
leafwing-input-manager = "0.15"
|
leafwing-input-manager = "0.15"
|
||||||
serde = "1.0"
|
serde = "1.0"
|
||||||
|
@ -1,56 +1,7 @@
|
|||||||
use bevy::{prelude::*, utils::HashSet};
|
use bevy::prelude::*;
|
||||||
use crossterm::event::{Event, KeyCode};
|
use crossterm::event::Event;
|
||||||
use std::sync::{Arc, Mutex};
|
use std::sync::{Arc, Mutex};
|
||||||
|
|
||||||
// /// Resource containing currently pressed and released keys
|
|
||||||
// #[derive(Resource, Default)]
|
|
||||||
// pub struct TerminalInput {
|
|
||||||
// pressed_keys: HashSet<KeyCode>,
|
|
||||||
// just_pressed_keys: HashSet<KeyCode>,
|
|
||||||
// just_released_keys: HashSet<KeyCode>,
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// impl TerminalInput {
|
|
||||||
// /// Gets whether the given key is pressed
|
|
||||||
// pub fn is_pressed(&self, code: KeyCode) -> bool {
|
|
||||||
// self.pressed_keys.contains(&code)
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// /// Gets whether the given key was just pressed
|
|
||||||
// pub fn just_pressed(&self, code: KeyCode) -> bool {
|
|
||||||
// self.just_pressed_keys.contains(&code)
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// /// Gets whether the given key was just released
|
|
||||||
// pub fn just_released(&self, code: KeyCode) -> bool {
|
|
||||||
// self.just_released_keys.contains(&code)
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// /// Sets given key to pressed
|
|
||||||
// pub(super) fn press(&mut self, code: KeyCode) {
|
|
||||||
// if !self.pressed_keys.contains(&code) {
|
|
||||||
// self.pressed_keys.insert(code);
|
|
||||||
// self.just_pressed_keys.insert(code);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// /// Sets given key to released and removes pressed state
|
|
||||||
// pub(super) fn release(&mut self, code: KeyCode) {
|
|
||||||
// self.pressed_keys.remove(&code);
|
|
||||||
// self.just_released_keys.insert(code);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// /// Clears all just released keys
|
|
||||||
// pub(super) fn clear_just_released(&mut self) {
|
|
||||||
// self.just_released_keys.clear();
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// /// Clears all just pressed keys
|
|
||||||
// pub(super) fn clear_just_pressed(&mut self) {
|
|
||||||
// self.just_pressed_keys.clear();
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
/// Event queue for crossterm input event thread
|
/// Event queue for crossterm input event thread
|
||||||
#[derive(Resource, Default)]
|
#[derive(Resource, Default)]
|
||||||
pub(crate) struct EventQueue(pub(super) Arc<Mutex<Vec<Event>>>);
|
pub(crate) struct EventQueue(pub(super) Arc<Mutex<Vec<Event>>>);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user