2020-03-07 18:15:02 +00:00
|
|
|
use super::utils::*;
|
|
|
|
use crate::{
|
2021-10-13 02:03:18 +00:00
|
|
|
comp::{character_state::OutputEvents, CharacterState, StateUpdate},
|
2021-10-05 00:15:58 +00:00
|
|
|
states::{
|
|
|
|
behavior::{CharacterBehavior, JoinData},
|
|
|
|
wielding,
|
|
|
|
},
|
2020-03-07 18:15:02 +00:00
|
|
|
};
|
2020-07-06 14:23:08 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-03-21 21:16:26 +00:00
|
|
|
use std::time::Duration;
|
2020-03-07 18:15:02 +00:00
|
|
|
|
2020-10-17 02:29:14 +00:00
|
|
|
/// 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)]
|
2020-03-14 21:17:27 +00:00
|
|
|
pub struct Data {
|
2020-10-17 02:29:14 +00:00
|
|
|
/// 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,
|
2021-10-05 00:15:58 +00:00
|
|
|
pub is_sneaking: bool,
|
2020-03-14 21:17:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl CharacterBehavior for Data {
|
2021-10-13 02:03:18 +00:00
|
|
|
fn behavior(&self, data: &JoinData, output_events: &mut OutputEvents) -> StateUpdate {
|
2020-03-21 21:16:26 +00:00
|
|
|
let mut update = StateUpdate::from(data);
|
2020-03-07 18:15:02 +00:00
|
|
|
|
2021-08-29 23:23:34 +00:00
|
|
|
handle_orientation(data, &mut update, 1.0, None);
|
2021-10-05 00:15:58 +00:00
|
|
|
handle_move(data, &mut update, if self.is_sneaking { 0.4 } else { 1.0 });
|
2021-10-13 02:03:18 +00:00
|
|
|
handle_jump(data, output_events, &mut update, 1.0);
|
2020-03-07 18:15:02 +00:00
|
|
|
|
2020-10-17 02:29:14 +00:00
|
|
|
if self.timer < self.static_data.buildup_duration {
|
|
|
|
// Draw weapon
|
2020-03-14 21:17:27 +00:00
|
|
|
update.character = CharacterState::Equipping(Data {
|
2021-05-30 19:39:30 +00:00
|
|
|
timer: tick_attack_or_default(data, self.timer, None),
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2020-03-14 21:17:27 +00:00
|
|
|
});
|
2020-10-17 02:29:14 +00:00
|
|
|
} else {
|
|
|
|
// Done
|
2021-10-05 00:15:58 +00:00
|
|
|
update.character = CharacterState::Wielding(wielding::Data {
|
|
|
|
is_sneaking: self.is_sneaking,
|
|
|
|
});
|
2020-03-07 18:15:02 +00:00
|
|
|
}
|
2020-03-14 21:17:27 +00:00
|
|
|
|
|
|
|
update
|
2020-03-07 18:15:02 +00:00
|
|
|
}
|
|
|
|
}
|