2020-02-11 15:42:17 +00:00
|
|
|
use crate::{
|
2020-03-14 21:17:27 +00:00
|
|
|
comp::{Attacking, CharacterState, EnergySource, StateUpdate},
|
|
|
|
states::{utils::*, wielding},
|
2020-03-14 18:50:07 +00:00
|
|
|
sys::character_behavior::*,
|
2020-02-11 15:42:17 +00:00
|
|
|
};
|
|
|
|
use std::{collections::VecDeque, time::Duration};
|
2019-12-26 14:43:59 +00:00
|
|
|
|
2020-03-14 18:50:07 +00:00
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize, Eq, Hash)]
|
2020-03-14 21:17:27 +00:00
|
|
|
pub struct Data {
|
2020-03-14 18:50:07 +00:00
|
|
|
/// How long until state should deal damage
|
|
|
|
pub buildup_duration: Duration,
|
|
|
|
/// How long the state has until exiting
|
|
|
|
pub recover_duration: Duration,
|
|
|
|
/// Whether the attack can deal more damage
|
|
|
|
pub exhausted: bool,
|
|
|
|
}
|
|
|
|
|
2020-03-14 21:17:27 +00:00
|
|
|
impl CharacterBehavior for Data {
|
2020-03-14 18:50:07 +00:00
|
|
|
fn behavior(&self, data: &JoinData) -> StateUpdate {
|
|
|
|
let mut update = StateUpdate {
|
|
|
|
pos: *data.pos,
|
|
|
|
vel: *data.vel,
|
|
|
|
ori: *data.ori,
|
|
|
|
energy: *data.energy,
|
|
|
|
character: *data.character,
|
|
|
|
local_events: VecDeque::new(),
|
|
|
|
server_events: VecDeque::new(),
|
|
|
|
};
|
2020-01-05 23:17:22 +00:00
|
|
|
|
2020-03-14 15:40:29 +00:00
|
|
|
handle_move(data, &mut update);
|
2020-02-24 13:32:12 +00:00
|
|
|
|
2020-03-14 18:50:07 +00:00
|
|
|
// Build up window
|
|
|
|
if self.buildup_duration != Duration::default() {
|
2020-03-14 15:40:29 +00:00
|
|
|
// Start to swing
|
2020-03-14 21:17:27 +00:00
|
|
|
update.character = CharacterState::BasicAttack(Data {
|
2020-03-14 18:50:07 +00:00
|
|
|
buildup_duration: self
|
|
|
|
.buildup_duration
|
2020-03-14 15:40:29 +00:00
|
|
|
.checked_sub(Duration::from_secs_f32(data.dt.0))
|
|
|
|
.unwrap_or_default(),
|
2020-03-14 18:50:07 +00:00
|
|
|
recover_duration: self.recover_duration,
|
2020-03-14 15:40:29 +00:00
|
|
|
exhausted: false,
|
2020-03-14 18:50:07 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
// Hit attempt window
|
|
|
|
else if !self.exhausted {
|
2020-03-14 15:40:29 +00:00
|
|
|
// Swing hits
|
2020-03-14 18:50:07 +00:00
|
|
|
if let Some(tool) = unwrap_tool_data(data) {
|
2020-03-10 17:54:59 +00:00
|
|
|
data.updater.insert(data.entity, Attacking {
|
|
|
|
weapon: Some(tool),
|
|
|
|
applied: false,
|
|
|
|
hit_count: 0,
|
|
|
|
});
|
|
|
|
}
|
2020-02-24 13:32:12 +00:00
|
|
|
|
2020-03-14 21:17:27 +00:00
|
|
|
update.character = CharacterState::BasicAttack(Data {
|
2020-03-14 18:50:07 +00:00
|
|
|
buildup_duration: self.buildup_duration,
|
|
|
|
recover_duration: self.recover_duration,
|
2020-03-14 15:40:29 +00:00
|
|
|
exhausted: true,
|
2020-03-14 18:50:07 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
// Swing recovery window
|
|
|
|
else if self.recover_duration != Duration::default() {
|
2020-03-14 21:17:27 +00:00
|
|
|
update.character = CharacterState::BasicAttack(Data {
|
2020-03-14 18:50:07 +00:00
|
|
|
buildup_duration: self.buildup_duration,
|
|
|
|
recover_duration: self
|
|
|
|
.recover_duration
|
2020-03-14 15:40:29 +00:00
|
|
|
.checked_sub(Duration::from_secs_f32(data.dt.0))
|
|
|
|
.unwrap_or_default(),
|
|
|
|
exhausted: true,
|
2020-03-14 18:50:07 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
// Done
|
|
|
|
else {
|
|
|
|
if let Some(tool) = unwrap_tool_data(data) {
|
2020-03-14 21:17:27 +00:00
|
|
|
update.character = CharacterState::Wielding(wielding::Data { tool });
|
2020-03-14 18:50:07 +00:00
|
|
|
// Make sure attack component is removed
|
2020-03-10 19:40:54 +00:00
|
|
|
data.updater.remove::<Attacking>(data.entity);
|
2020-03-14 15:40:29 +00:00
|
|
|
} else {
|
|
|
|
update.character = CharacterState::Idle;
|
2020-03-10 19:40:54 +00:00
|
|
|
}
|
2020-03-14 15:40:29 +00:00
|
|
|
}
|
2020-03-14 18:50:07 +00:00
|
|
|
// Subtract energy on successful hit
|
2020-03-14 15:40:29 +00:00
|
|
|
if let Some(attack) = data.attacking {
|
|
|
|
if attack.applied && attack.hit_count > 0 {
|
|
|
|
data.updater.remove::<Attacking>(data.entity);
|
|
|
|
update.energy.change_by(100, EnergySource::HitEnemy);
|
|
|
|
}
|
2020-03-10 19:40:54 +00:00
|
|
|
}
|
2020-03-14 15:40:29 +00:00
|
|
|
|
2020-01-12 23:14:08 +00:00
|
|
|
update
|
2019-12-26 14:43:59 +00:00
|
|
|
}
|
|
|
|
}
|