veloren/voxygen/src/key_state.rs
2020-03-10 21:00:13 +00:00

39 lines
879 B
Rust

use vek::Vec2;
pub struct KeyState {
pub right: bool,
pub left: bool,
pub up: bool,
pub down: bool,
pub analog_matrix: Vec2<f32>,
}
impl KeyState {
pub fn new() -> KeyState {
KeyState {
right: false,
left: false,
up: false,
down: false,
analog_matrix: Vec2::zero(),
}
}
pub fn dir_vec(&self) -> Vec2<f32> {
let dir = if self.analog_matrix == Vec2::zero() {
Vec2::<f32>::new(
if self.right { 1.0 } else { 0.0 } + if self.left { -1.0 } else { 0.0 },
if self.up { 1.0 } else { 0.0 } + if self.down { -1.0 } else { 0.0 },
)
} else {
self.analog_matrix
};
if dir.magnitude_squared() <= 1.0 {
dir
} else {
dir.normalized()
}
}
}