mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
29 lines
599 B
Rust
29 lines
599 B
Rust
|
use vek::Vec2;
|
||
|
|
||
|
pub struct KeyState {
|
||
|
pub right: bool,
|
||
|
pub left: bool,
|
||
|
pub up: bool,
|
||
|
pub down: bool,
|
||
|
pub jump: bool,
|
||
|
}
|
||
|
|
||
|
impl KeyState {
|
||
|
pub fn new() -> KeyState {
|
||
|
KeyState {
|
||
|
right: false,
|
||
|
left: false,
|
||
|
up: false,
|
||
|
down: false,
|
||
|
jump: false,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub fn dir_vec(&self) -> Vec2<f32> {
|
||
|
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 },
|
||
|
)
|
||
|
}
|
||
|
}
|