2020-02-11 15:42:17 +00:00
|
|
|
use crate::{
|
2020-12-06 02:29:46 +00:00
|
|
|
comp::{
|
|
|
|
Attacking, CharacterState, EnergyChange, EnergySource, PoiseChange, PoiseSource,
|
|
|
|
StateUpdate,
|
|
|
|
},
|
2020-12-01 00:28:00 +00:00
|
|
|
states::{
|
|
|
|
behavior::{CharacterBehavior, JoinData},
|
|
|
|
utils::*,
|
|
|
|
},
|
2020-11-04 02:01:12 +00:00
|
|
|
Damage, DamageSource, GroupTarget, Knockback,
|
2020-02-11 15:42:17 +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;
|
2019-12-26 14:43:59 +00:00
|
|
|
|
2020-10-17 02:29:14 +00:00
|
|
|
/// Separated out to condense update portions of character state
|
2020-03-22 15:25:47 +00:00
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)]
|
2020-10-17 02:29:14 +00:00
|
|
|
pub struct StaticData {
|
2020-03-14 18:50:07 +00:00
|
|
|
/// How long until state should deal damage
|
|
|
|
pub buildup_duration: Duration,
|
2020-10-17 02:29:14 +00:00
|
|
|
/// How long the state is swinging for
|
|
|
|
pub swing_duration: Duration,
|
2020-03-14 18:50:07 +00:00
|
|
|
/// How long the state has until exiting
|
|
|
|
pub recover_duration: Duration,
|
2020-10-17 02:29:14 +00:00
|
|
|
/// Base damage
|
|
|
|
pub base_damage: u32,
|
2020-12-05 18:23:45 +00:00
|
|
|
/// Base poise reduction
|
|
|
|
pub base_poise_damage: u32,
|
2020-08-05 22:49:04 +00:00
|
|
|
/// Knockback
|
|
|
|
pub knockback: f32,
|
2020-03-22 15:25:47 +00:00
|
|
|
/// Max range
|
|
|
|
pub range: f32,
|
|
|
|
/// Max angle (45.0 will give you a 90.0 angle window)
|
|
|
|
pub max_angle: f32,
|
2020-11-20 17:30:48 +00:00
|
|
|
/// What key is used to press ability
|
|
|
|
pub ability_key: AbilityKey,
|
2020-10-17 02:29:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[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,
|
|
|
|
/// What section the character stage is in
|
|
|
|
pub stage_section: StageSection,
|
2020-03-14 18:50:07 +00:00
|
|
|
/// 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 {
|
2020-03-21 21:16:26 +00:00
|
|
|
let mut update = StateUpdate::from(data);
|
2020-01-05 23:17:22 +00:00
|
|
|
|
2020-03-26 19:02:01 +00:00
|
|
|
handle_move(data, &mut update, 0.7);
|
2020-03-26 13:46:08 +00:00
|
|
|
handle_jump(data, &mut update);
|
2020-11-20 17:30:48 +00:00
|
|
|
if !ability_key_is_pressed(data, self.static_data.ability_key) {
|
2020-11-20 17:54:56 +00:00
|
|
|
handle_interrupt(data, &mut update, false);
|
2020-11-20 17:30:48 +00:00
|
|
|
match update.character {
|
|
|
|
CharacterState::BasicMelee(_) => {},
|
|
|
|
_ => {
|
|
|
|
return update;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2020-02-24 13:32:12 +00:00
|
|
|
|
2020-10-17 02:29:14 +00:00
|
|
|
match self.stage_section {
|
|
|
|
StageSection::Buildup => {
|
|
|
|
if self.timer < self.static_data.buildup_duration {
|
|
|
|
// Build up
|
|
|
|
update.character = CharacterState::BasicMelee(Data {
|
|
|
|
timer: self
|
|
|
|
.timer
|
|
|
|
.checked_add(Duration::from_secs_f32(data.dt.0))
|
|
|
|
.unwrap_or_default(),
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2020-10-17 02:29:14 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// Transitions to swing section of stage
|
|
|
|
update.character = CharacterState::BasicMelee(Data {
|
|
|
|
timer: Duration::default(),
|
|
|
|
stage_section: StageSection::Swing,
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2020-10-17 02:29:14 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
StageSection::Swing => {
|
|
|
|
if !self.exhausted {
|
|
|
|
update.character = CharacterState::BasicMelee(Data {
|
|
|
|
timer: Duration::default(),
|
|
|
|
exhausted: true,
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2020-10-17 02:29:14 +00:00
|
|
|
});
|
2020-02-24 13:32:12 +00:00
|
|
|
|
2020-10-17 02:29:14 +00:00
|
|
|
// Hit attempt
|
|
|
|
data.updater.insert(data.entity, Attacking {
|
2020-12-06 02:29:46 +00:00
|
|
|
effects: vec![(
|
|
|
|
Some(GroupTarget::OutOfGroup),
|
|
|
|
Damage {
|
|
|
|
source: DamageSource::Melee,
|
|
|
|
value: self.static_data.base_damage as f32,
|
|
|
|
},
|
|
|
|
PoiseChange {
|
|
|
|
amount: -(self.static_data.base_poise_damage as i32),
|
2021-01-27 03:05:13 +00:00
|
|
|
source: PoiseSource::Attack,
|
2020-12-06 02:29:46 +00:00
|
|
|
},
|
|
|
|
)],
|
2020-10-17 02:29:14 +00:00
|
|
|
range: self.static_data.range,
|
|
|
|
max_angle: 180_f32.to_radians(),
|
|
|
|
applied: false,
|
|
|
|
hit_count: 0,
|
2020-10-18 18:21:58 +00:00
|
|
|
knockback: Knockback::Away(self.static_data.knockback),
|
2020-10-17 02:29:14 +00:00
|
|
|
});
|
|
|
|
} else if self.timer < self.static_data.swing_duration {
|
|
|
|
// Swings
|
|
|
|
update.character = CharacterState::BasicMelee(Data {
|
|
|
|
timer: self
|
|
|
|
.timer
|
|
|
|
.checked_add(Duration::from_secs_f32(data.dt.0))
|
|
|
|
.unwrap_or_default(),
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2020-10-17 02:29:14 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// Transitions to recover section of stage
|
|
|
|
update.character = CharacterState::BasicMelee(Data {
|
|
|
|
timer: Duration::default(),
|
|
|
|
stage_section: StageSection::Recover,
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2020-10-17 02:29:14 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
StageSection::Recover => {
|
|
|
|
if self.timer < self.static_data.recover_duration {
|
|
|
|
// Recovery
|
|
|
|
update.character = CharacterState::BasicMelee(Data {
|
|
|
|
timer: self
|
|
|
|
.timer
|
|
|
|
.checked_add(Duration::from_secs_f32(data.dt.0))
|
|
|
|
.unwrap_or_default(),
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2020-10-17 02:29:14 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// Done
|
|
|
|
update.character = CharacterState::Wielding;
|
|
|
|
// Make sure attack component is removed
|
|
|
|
data.updater.remove::<Attacking>(data.entity);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {
|
|
|
|
// If it somehow ends up in an incorrect stage section
|
|
|
|
update.character = CharacterState::Wielding;
|
|
|
|
// Make sure attack component is removed
|
|
|
|
data.updater.remove::<Attacking>(data.entity);
|
|
|
|
},
|
2020-03-14 15:40:29 +00:00
|
|
|
}
|
2020-03-14 21:33:20 +00:00
|
|
|
|
|
|
|
// Grant 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);
|
2020-10-30 21:49:58 +00:00
|
|
|
update.energy.change_by(EnergyChange {
|
|
|
|
amount: 50,
|
|
|
|
source: EnergySource::HitEnemy,
|
|
|
|
});
|
2020-03-14 15:40:29 +00:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|