mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
69 lines
1.4 KiB
Rust
69 lines
1.4 KiB
Rust
|
use specs::{Component, FlaggedStorage, HashMapStorage};
|
||
|
use specs_idvs::IDVStorage;
|
||
|
use std::time::Duration;
|
||
|
|
||
|
#[derive(Clone, Copy, Debug, PartialEq, Serialize, Deserialize)]
|
||
|
pub enum MovementState {
|
||
|
Stand,
|
||
|
Run,
|
||
|
Jump,
|
||
|
Glide,
|
||
|
Roll { time_left: Duration },
|
||
|
//Swim,
|
||
|
}
|
||
|
|
||
|
impl MovementState {
|
||
|
pub fn is_roll(&self) -> bool {
|
||
|
if let Self::Roll { .. } = self {
|
||
|
true
|
||
|
} else {
|
||
|
false
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[derive(Clone, Copy, Debug, PartialEq, Serialize, Deserialize)]
|
||
|
pub enum ActionState {
|
||
|
Idle,
|
||
|
Wield { time_left: Duration },
|
||
|
Attack { time_left: Duration, applied: bool },
|
||
|
//Carry,
|
||
|
}
|
||
|
|
||
|
impl ActionState {
|
||
|
pub fn is_wield(&self) -> bool {
|
||
|
if let Self::Wield { .. } = self {
|
||
|
true
|
||
|
} else {
|
||
|
false
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub fn is_attack(&self) -> bool {
|
||
|
if let Self::Attack { .. } = self {
|
||
|
true
|
||
|
} else {
|
||
|
false
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[derive(Clone, Copy, Debug, PartialEq, Serialize, Deserialize)]
|
||
|
pub struct CharacterState {
|
||
|
pub movement: MovementState,
|
||
|
pub action: ActionState,
|
||
|
}
|
||
|
|
||
|
impl Default for CharacterState {
|
||
|
fn default() -> Self {
|
||
|
Self {
|
||
|
movement: MovementState::Jump,
|
||
|
action: ActionState::Idle,
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl Component for CharacterState {
|
||
|
type Storage = FlaggedStorage<Self, HashMapStorage<Self>>;
|
||
|
}
|