mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
819c2767bc
* impl From<JoinData> for StateUpdate
38 lines
1.1 KiB
Rust
38 lines
1.1 KiB
Rust
use super::utils::*;
|
|
use crate::{
|
|
comp::{CharacterState, StateUpdate},
|
|
sys::character_behavior::{CharacterBehavior, JoinData},
|
|
};
|
|
use std::time::Duration;
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize, Eq, Hash)]
|
|
pub struct Data {
|
|
/// Time left before next state
|
|
pub time_left: Duration,
|
|
}
|
|
|
|
impl CharacterBehavior for Data {
|
|
fn behavior(&self, data: &JoinData) -> StateUpdate {
|
|
let mut update = StateUpdate::from(data);
|
|
|
|
handle_move(&data, &mut update);
|
|
handle_jump(&data, &mut update);
|
|
|
|
if self.time_left == Duration::default() {
|
|
// Wield delay has expired
|
|
update.character = CharacterState::Wielding;
|
|
} else {
|
|
// Wield delay hasn't expired yet
|
|
// Update wield delay
|
|
update.character = CharacterState::Equipping(Data {
|
|
time_left: self
|
|
.time_left
|
|
.checked_sub(Duration::from_secs_f32(data.dt.0))
|
|
.unwrap_or_default(),
|
|
});
|
|
}
|
|
|
|
update
|
|
}
|
|
}
|