You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
688 B
35 lines
688 B
use std::collections::HashSet;
|
|
use sfml::window::{Key, Event};
|
|
|
|
|
|
pub struct Input {
|
|
held_keys: HashSet<Key>
|
|
}
|
|
|
|
impl Input {
|
|
pub fn new() -> Input {
|
|
|
|
let mut container = HashSet::new();
|
|
|
|
Input {
|
|
held_keys: container,
|
|
}
|
|
}
|
|
|
|
pub fn is_held(&self, key: Key) -> bool{
|
|
self.held_keys.contains(&key)
|
|
}
|
|
|
|
pub fn ingest(&mut self, event: &Event) {
|
|
match event {
|
|
Event::KeyPressed { code, .. } => {
|
|
self.held_keys.insert(code.clone());
|
|
}
|
|
Event::KeyReleased { code, .. } => {
|
|
self.held_keys.remove(code);
|
|
}
|
|
_ => {}
|
|
}
|
|
}
|
|
}
|