mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
49 lines
1.4 KiB
Rust
49 lines
1.4 KiB
Rust
use super::utils::*;
|
|
use crate::{
|
|
comp::{CharacterState, StateUpdate},
|
|
sys::character_behavior::{CharacterBehavior, JoinData},
|
|
};
|
|
use serde::{Deserialize, Serialize};
|
|
use std::time::Duration;
|
|
|
|
/// Separated out to condense update portions of character state
|
|
#[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct StaticData {
|
|
/// Time required to draw weapon
|
|
pub buildup_duration: Duration,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct Data {
|
|
/// Struct containing data that does not change over the course of the
|
|
/// character state
|
|
pub static_data: StaticData,
|
|
/// Timer for each stage
|
|
pub timer: Duration,
|
|
}
|
|
|
|
impl CharacterBehavior for Data {
|
|
fn behavior(&self, data: &JoinData) -> StateUpdate {
|
|
let mut update = StateUpdate::from(data);
|
|
|
|
handle_move(&data, &mut update, 1.0);
|
|
handle_jump(&data, &mut update);
|
|
|
|
if self.timer < self.static_data.buildup_duration {
|
|
// Draw weapon
|
|
update.character = CharacterState::Equipping(Data {
|
|
static_data: self.static_data,
|
|
timer: self
|
|
.timer
|
|
.checked_add(Duration::from_secs_f32(data.dt.0))
|
|
.unwrap_or_default(),
|
|
});
|
|
} else {
|
|
// Done
|
|
update.character = CharacterState::Wielding;
|
|
}
|
|
|
|
update
|
|
}
|
|
}
|