2020-07-03 15:40:12 +00:00
|
|
|
use crate::{
|
2021-01-28 01:44:49 +00:00
|
|
|
combat::{Attack, AttackEffect, CombatBuff, DamageComponent},
|
2021-01-26 00:31:06 +00:00
|
|
|
comp::{CharacterState, MeleeAttack, PoiseChange, PoiseSource, StateUpdate},
|
2020-12-01 00:28:00 +00:00
|
|
|
states::{
|
|
|
|
behavior::{CharacterBehavior, JoinData},
|
|
|
|
utils::{StageSection, *},
|
|
|
|
},
|
2021-01-25 22:46:43 +00:00
|
|
|
Damage, DamageSource, GroupTarget, Knockback, KnockbackDir,
|
2020-07-03 15:40:12 +00:00
|
|
|
};
|
2020-07-06 14:23:08 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-07-03 15:40:12 +00:00
|
|
|
use std::time::Duration;
|
|
|
|
|
2020-09-28 23:55:38 +00:00
|
|
|
/// Separated out to condense update portions of character state
|
2020-09-21 04:16:52 +00:00
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)]
|
2020-09-28 23:55:38 +00:00
|
|
|
pub struct StaticData {
|
2020-07-03 15:40:12 +00:00
|
|
|
/// How long the state is moving
|
|
|
|
pub movement_duration: Duration,
|
|
|
|
/// How long until state should deal damage
|
|
|
|
pub buildup_duration: Duration,
|
2020-09-28 23:55:38 +00:00
|
|
|
/// How long the weapon swings
|
|
|
|
pub swing_duration: Duration,
|
2020-07-03 15:40:12 +00:00
|
|
|
/// How long the state has until exiting
|
|
|
|
pub recover_duration: Duration,
|
|
|
|
/// Base damage
|
|
|
|
pub base_damage: u32,
|
2020-12-05 18:23:45 +00:00
|
|
|
/// Base poise damage
|
|
|
|
pub base_poise_damage: u32,
|
2020-09-28 23:55:38 +00:00
|
|
|
/// Knockback
|
|
|
|
pub knockback: f32,
|
2020-09-21 04:16:52 +00:00
|
|
|
/// Max range
|
|
|
|
pub range: f32,
|
|
|
|
/// Max angle (45.0 will give you a 90.0 angle window)
|
|
|
|
pub max_angle: f32,
|
2020-09-28 23:55:38 +00:00
|
|
|
/// Affects how far forward the player leaps
|
|
|
|
pub forward_leap_strength: f32,
|
|
|
|
/// Affects how high the player leaps
|
|
|
|
pub vertical_leap_strength: f32,
|
2020-11-20 17:30:48 +00:00
|
|
|
/// What key is used to press ability
|
|
|
|
pub ability_key: AbilityKey,
|
2020-09-28 23:55:38 +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,
|
|
|
|
/// Whether the attack can deal more damage
|
|
|
|
pub exhausted: bool,
|
2020-07-03 15:40:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl CharacterBehavior for Data {
|
|
|
|
fn behavior(&self, data: &JoinData) -> StateUpdate {
|
|
|
|
let mut update = StateUpdate::from(data);
|
|
|
|
|
2020-09-28 23:55:38 +00:00
|
|
|
handle_move(data, &mut update, 0.3);
|
|
|
|
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::LeapMelee(_) => {},
|
|
|
|
_ => {
|
|
|
|
return update;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2020-07-03 15:40:12 +00:00
|
|
|
|
2020-09-28 23:55:38 +00:00
|
|
|
match self.stage_section {
|
2020-10-24 20:15:19 +00:00
|
|
|
// Delay before leaping into the air
|
2020-09-28 23:55:38 +00:00
|
|
|
StageSection::Buildup => {
|
2020-10-24 20:15:19 +00:00
|
|
|
// Wait for `buildup_duration` to expire
|
2020-09-28 23:55:38 +00:00
|
|
|
if self.timer < self.static_data.buildup_duration {
|
|
|
|
update.character = CharacterState::LeapMelee(Data {
|
|
|
|
timer: self
|
|
|
|
.timer
|
|
|
|
.checked_add(Duration::from_secs_f32(data.dt.0))
|
|
|
|
.unwrap_or_default(),
|
2020-10-24 20:15:19 +00:00
|
|
|
..*self
|
2020-09-28 23:55:38 +00:00
|
|
|
});
|
|
|
|
} else {
|
2020-10-24 20:15:19 +00:00
|
|
|
// Transitions to leap portion of state after buildup delay
|
2020-09-28 23:55:38 +00:00
|
|
|
update.character = CharacterState::LeapMelee(Data {
|
|
|
|
timer: Duration::default(),
|
|
|
|
stage_section: StageSection::Movement,
|
2020-10-24 20:15:19 +00:00
|
|
|
..*self
|
2020-09-28 23:55:38 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
StageSection::Movement => {
|
|
|
|
if self.timer < self.static_data.movement_duration {
|
2020-10-25 20:22:40 +00:00
|
|
|
// Apply jumping force
|
|
|
|
let progress = 1.0
|
|
|
|
- self.timer.as_secs_f32()
|
|
|
|
/ self.static_data.movement_duration.as_secs_f32();
|
|
|
|
handle_forced_movement(
|
|
|
|
data,
|
|
|
|
&mut update,
|
|
|
|
ForcedMovement::Leap {
|
|
|
|
vertical: self.static_data.vertical_leap_strength,
|
|
|
|
forward: self.static_data.forward_leap_strength,
|
|
|
|
progress,
|
2020-11-27 00:23:15 +00:00
|
|
|
direction: MovementDirection::Look,
|
2020-10-25 20:22:40 +00:00
|
|
|
},
|
|
|
|
0.15,
|
|
|
|
);
|
2020-10-24 20:15:19 +00:00
|
|
|
|
|
|
|
// Increment duration
|
|
|
|
// If we were to set a timeout for state, this would be
|
|
|
|
// outside if block and have else check for > movement
|
|
|
|
// duration * some multiplier
|
2020-09-28 23:55:38 +00:00
|
|
|
update.character = CharacterState::LeapMelee(Data {
|
|
|
|
timer: self
|
|
|
|
.timer
|
|
|
|
.checked_add(Duration::from_secs_f32(data.dt.0))
|
|
|
|
.unwrap_or_default(),
|
2020-10-24 20:15:19 +00:00
|
|
|
..*self
|
2020-09-28 23:55:38 +00:00
|
|
|
});
|
2020-10-24 20:15:19 +00:00
|
|
|
} else if data.physics.on_ground {
|
|
|
|
// Transitions to swing portion of state upon hitting ground
|
2020-09-28 23:55:38 +00:00
|
|
|
update.character = CharacterState::LeapMelee(Data {
|
|
|
|
timer: Duration::default(),
|
|
|
|
stage_section: StageSection::Swing,
|
2020-10-24 20:15:19 +00:00
|
|
|
..*self
|
2020-09-28 23:55:38 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
StageSection::Swing => {
|
|
|
|
if self.timer < self.static_data.swing_duration {
|
|
|
|
// Swings weapons
|
|
|
|
update.character = CharacterState::LeapMelee(Data {
|
|
|
|
timer: self
|
|
|
|
.timer
|
|
|
|
.checked_add(Duration::from_secs_f32(data.dt.0))
|
|
|
|
.unwrap_or_default(),
|
2020-10-24 20:15:19 +00:00
|
|
|
..*self
|
2020-09-28 23:55:38 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// Transitions to recover portion
|
|
|
|
update.character = CharacterState::LeapMelee(Data {
|
|
|
|
timer: Duration::default(),
|
|
|
|
stage_section: StageSection::Recover,
|
2020-10-24 20:15:19 +00:00
|
|
|
..*self
|
2020-09-28 23:55:38 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
StageSection::Recover => {
|
2020-10-24 20:15:19 +00:00
|
|
|
if !self.exhausted {
|
2021-01-26 02:50:16 +00:00
|
|
|
let damage = Damage {
|
|
|
|
source: DamageSource::Melee,
|
|
|
|
value: self.static_data.base_damage as f32,
|
|
|
|
};
|
|
|
|
let knockback = AttackEffect::Knockback(Knockback {
|
|
|
|
strength: self.static_data.knockback,
|
|
|
|
direction: KnockbackDir::Away,
|
|
|
|
});
|
2021-01-28 01:44:49 +00:00
|
|
|
let buff = AttackEffect::Buff(CombatBuff::default_melee());
|
2021-01-26 02:50:16 +00:00
|
|
|
let damage = DamageComponent::new(damage, Some(GroupTarget::OutOfGroup))
|
2021-01-28 01:44:49 +00:00
|
|
|
.with_effect(knockback)
|
|
|
|
.with_effect(buff);
|
2021-01-26 03:53:52 +00:00
|
|
|
let attack = Attack::default().with_damage(damage).with_crit(0.5, 1.3);
|
2021-01-26 02:50:16 +00:00
|
|
|
|
2020-10-24 20:15:19 +00:00
|
|
|
// Hit attempt, when animation plays
|
2021-01-26 00:31:06 +00:00
|
|
|
data.updater.insert(data.entity, MeleeAttack {
|
2021-01-26 02:50:16 +00:00
|
|
|
attack,
|
2020-09-28 23:55:38 +00:00
|
|
|
range: self.static_data.range,
|
|
|
|
max_angle: self.static_data.max_angle.to_radians(),
|
|
|
|
applied: false,
|
|
|
|
hit_count: 0,
|
|
|
|
});
|
2020-07-03 15:40:12 +00:00
|
|
|
|
2020-09-28 23:55:38 +00:00
|
|
|
update.character = CharacterState::LeapMelee(Data {
|
|
|
|
timer: self
|
|
|
|
.timer
|
|
|
|
.checked_add(Duration::from_secs_f32(data.dt.0))
|
|
|
|
.unwrap_or_default(),
|
|
|
|
exhausted: true,
|
2020-10-24 20:15:19 +00:00
|
|
|
..*self
|
2020-09-28 23:55:38 +00:00
|
|
|
});
|
|
|
|
} else if self.timer < self.static_data.recover_duration {
|
2020-10-24 20:15:19 +00:00
|
|
|
// Complete recovery delay before finishing state
|
2020-09-28 23:55:38 +00:00
|
|
|
update.character = CharacterState::LeapMelee(Data {
|
|
|
|
timer: self
|
|
|
|
.timer
|
|
|
|
.checked_add(Duration::from_secs_f32(data.dt.0))
|
|
|
|
.unwrap_or_default(),
|
2020-10-24 20:15:19 +00:00
|
|
|
..*self
|
2020-09-28 23:55:38 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// Done
|
|
|
|
update.character = CharacterState::Wielding;
|
|
|
|
// Make sure attack component is removed
|
2021-01-26 00:31:06 +00:00
|
|
|
data.updater.remove::<MeleeAttack>(data.entity);
|
2020-09-28 23:55:38 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {
|
|
|
|
// If it somehow ends up in an incorrect stage section
|
|
|
|
update.character = CharacterState::Wielding;
|
|
|
|
// Make sure attack component is removed
|
2021-01-26 00:31:06 +00:00
|
|
|
data.updater.remove::<MeleeAttack>(data.entity);
|
2020-09-28 23:55:38 +00:00
|
|
|
},
|
2020-07-03 15:40:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
update
|
|
|
|
}
|
|
|
|
}
|