2020-09-04 01:54:59 +00:00
|
|
|
use crate::{
|
2021-02-02 18:02:40 +00:00
|
|
|
combat::{Attack, AttackDamage, AttackEffect, CombatBuff, CombatEffect, CombatRequirement},
|
2021-03-14 15:19:22 +00:00
|
|
|
comp::{CharacterState, Melee, StateUpdate},
|
2020-12-01 00:28:00 +00:00
|
|
|
states::{
|
|
|
|
behavior::{CharacterBehavior, JoinData},
|
|
|
|
utils::*,
|
|
|
|
},
|
2021-01-25 22:46:43 +00:00
|
|
|
Damage, DamageSource, GroupTarget, Knockback, KnockbackDir,
|
2020-09-04 01:54:59 +00:00
|
|
|
};
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use std::time::Duration;
|
|
|
|
|
2020-11-13 03:24:19 +00:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Serialize, Deserialize)]
|
2020-11-11 01:49:05 +00:00
|
|
|
pub struct Stage<T> {
|
2020-09-04 01:54:59 +00:00
|
|
|
/// Specifies which stage the combo attack is in
|
|
|
|
pub stage: u32,
|
|
|
|
/// Initial damage of stage
|
2021-02-05 01:39:12 +00:00
|
|
|
pub base_damage: f32,
|
2020-09-04 01:54:59 +00:00
|
|
|
/// Damage scaling per combo
|
2021-02-05 01:39:12 +00:00
|
|
|
pub damage_increase: f32,
|
2020-12-05 18:23:45 +00:00
|
|
|
/// Initial poise damage of stage
|
2021-02-05 01:39:12 +00:00
|
|
|
pub base_poise_damage: f32,
|
2020-12-16 23:30:33 +00:00
|
|
|
/// Poise damage scaling per combo
|
2021-02-05 01:39:12 +00:00
|
|
|
pub poise_damage_increase: f32,
|
2020-09-04 01:54:59 +00:00
|
|
|
/// Knockback of stage
|
|
|
|
pub knockback: f32,
|
|
|
|
/// Range of attack
|
|
|
|
pub range: f32,
|
|
|
|
/// Angle of attack
|
|
|
|
pub angle: f32,
|
|
|
|
/// Initial buildup duration of stage (how long until state can deal damage)
|
2020-11-11 01:49:05 +00:00
|
|
|
pub base_buildup_duration: T,
|
2020-09-08 00:16:55 +00:00
|
|
|
/// Duration of stage spent in swing (controls animation stuff, and can also
|
|
|
|
/// be used to handle movement separately to buildup)
|
2020-11-11 01:49:05 +00:00
|
|
|
pub base_swing_duration: T,
|
2020-09-04 01:54:59 +00:00
|
|
|
/// Initial recover duration of stage (how long until character exits state)
|
2020-11-11 01:49:05 +00:00
|
|
|
pub base_recover_duration: T,
|
2020-09-09 00:28:59 +00:00
|
|
|
/// How much forward movement there is in the swing portion of the stage
|
|
|
|
pub forward_movement: f32,
|
2020-09-06 21:46:53 +00:00
|
|
|
}
|
|
|
|
|
2021-02-05 01:39:12 +00:00
|
|
|
impl Stage<f32> {
|
2020-11-11 01:49:05 +00:00
|
|
|
pub fn to_duration(self) -> Stage<Duration> {
|
|
|
|
Stage::<Duration> {
|
|
|
|
stage: self.stage,
|
|
|
|
base_damage: self.base_damage,
|
|
|
|
damage_increase: self.damage_increase,
|
2020-12-05 18:23:45 +00:00
|
|
|
base_poise_damage: self.base_poise_damage,
|
2020-12-16 23:30:33 +00:00
|
|
|
poise_damage_increase: self.poise_damage_increase,
|
2020-11-11 01:49:05 +00:00
|
|
|
knockback: self.knockback,
|
|
|
|
range: self.range,
|
|
|
|
angle: self.angle,
|
2021-02-05 01:39:12 +00:00
|
|
|
base_buildup_duration: Duration::from_secs_f32(self.base_buildup_duration),
|
|
|
|
base_swing_duration: Duration::from_secs_f32(self.base_swing_duration),
|
|
|
|
base_recover_duration: Duration::from_secs_f32(self.base_recover_duration),
|
2020-11-11 01:49:05 +00:00
|
|
|
forward_movement: self.forward_movement,
|
|
|
|
}
|
|
|
|
}
|
2020-11-13 03:24:19 +00:00
|
|
|
|
2021-01-27 03:05:13 +00:00
|
|
|
pub fn adjusted_by_stats(mut self, power: f32, poise_strength: f32, speed: f32) -> Self {
|
2021-02-05 01:39:12 +00:00
|
|
|
self.base_damage *= power;
|
|
|
|
self.damage_increase *= power;
|
|
|
|
self.base_poise_damage *= poise_strength;
|
|
|
|
self.poise_damage_increase *= poise_strength;
|
|
|
|
self.base_buildup_duration /= speed;
|
|
|
|
self.base_swing_duration /= speed;
|
|
|
|
self.base_recover_duration /= speed;
|
2020-11-13 03:24:19 +00:00
|
|
|
self
|
|
|
|
}
|
2020-12-20 22:28:17 +00:00
|
|
|
|
|
|
|
pub fn modify_strike(mut self, knockback_mult: f32) -> Self {
|
|
|
|
self.knockback *= knockback_mult;
|
|
|
|
self
|
|
|
|
}
|
2020-11-11 01:49:05 +00:00
|
|
|
}
|
|
|
|
|
2020-09-04 01:54:59 +00:00
|
|
|
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
|
2020-09-21 22:38:01 +00:00
|
|
|
/// Separated out to condense update portions of character state
|
|
|
|
pub struct StaticData {
|
2020-09-04 01:54:59 +00:00
|
|
|
/// Indicates number of stages in combo
|
|
|
|
pub num_stages: u32,
|
2020-09-12 16:46:21 +00:00
|
|
|
/// Data for each stage
|
2020-11-11 01:49:05 +00:00
|
|
|
pub stage_data: Vec<Stage<Duration>>,
|
2020-09-04 01:54:59 +00:00
|
|
|
/// Initial energy gain per strike
|
2021-02-05 01:39:12 +00:00
|
|
|
pub initial_energy_gain: f32,
|
2020-09-04 01:54:59 +00:00
|
|
|
/// Max energy gain per strike
|
2021-02-05 01:39:12 +00:00
|
|
|
pub max_energy_gain: f32,
|
2020-09-04 01:54:59 +00:00
|
|
|
/// Energy gain increase per combo
|
2021-02-05 01:39:12 +00:00
|
|
|
pub energy_increase: f32,
|
2020-09-12 16:46:21 +00:00
|
|
|
/// (100% - speed_increase) is percentage speed increases from current to
|
2020-12-07 03:35:29 +00:00
|
|
|
/// max per combo increase
|
2020-09-11 19:24:55 +00:00
|
|
|
pub speed_increase: f32,
|
2020-12-07 03:35:29 +00:00
|
|
|
/// This value is the highest percentage speed can increase from the base
|
|
|
|
/// speed
|
2020-09-11 19:24:55 +00:00
|
|
|
pub max_speed_increase: f32,
|
2020-12-08 04:00:24 +00:00
|
|
|
/// Number of times damage scales with combo
|
|
|
|
pub scales_from_combo: u32,
|
2020-09-12 16:46:21 +00:00
|
|
|
/// Whether the state can be interrupted by other abilities
|
|
|
|
pub is_interruptible: bool,
|
2020-10-31 18:44:00 +00:00
|
|
|
/// What key is used to press ability
|
2021-02-14 06:01:53 +00:00
|
|
|
pub ability_info: AbilityInfo,
|
2020-09-04 01:54:59 +00:00
|
|
|
}
|
2020-09-21 22:38:01 +00:00
|
|
|
/// A sequence of attacks that can incrementally become faster and more
|
|
|
|
/// damaging.
|
|
|
|
#[derive(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,
|
|
|
|
/// Indicates what stage the combo is in
|
|
|
|
pub stage: u32,
|
|
|
|
/// Timer for each stage
|
|
|
|
pub timer: Duration,
|
|
|
|
/// Checks what section a stage is in
|
|
|
|
pub stage_section: StageSection,
|
|
|
|
}
|
2020-09-04 01:54:59 +00:00
|
|
|
|
|
|
|
impl CharacterBehavior for Data {
|
|
|
|
fn behavior(&self, data: &JoinData) -> StateUpdate {
|
|
|
|
let mut update = StateUpdate::from(data);
|
|
|
|
|
2020-09-09 00:28:59 +00:00
|
|
|
handle_orientation(data, &mut update, 1.0);
|
2020-09-12 16:46:21 +00:00
|
|
|
handle_move(data, &mut update, 0.3);
|
2021-02-14 06:01:53 +00:00
|
|
|
if !ability_key_is_pressed(data, self.static_data.ability_info.key) {
|
2020-11-20 17:54:56 +00:00
|
|
|
handle_interrupt(data, &mut update, self.static_data.is_interruptible);
|
2020-09-13 01:33:46 +00:00
|
|
|
match update.character {
|
|
|
|
CharacterState::ComboMelee(_) => {},
|
|
|
|
_ => {
|
|
|
|
return update;
|
|
|
|
},
|
2020-09-12 16:46:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-20 17:30:48 +00:00
|
|
|
let stage_index = (self.stage - 1) as usize;
|
|
|
|
|
2020-11-09 01:27:44 +00:00
|
|
|
let speed_modifer = 1.0
|
|
|
|
+ self.static_data.max_speed_increase
|
2021-02-27 23:01:07 +00:00
|
|
|
* (1.0
|
|
|
|
- self
|
|
|
|
.static_data
|
|
|
|
.speed_increase
|
|
|
|
.powi(data.combo.counter() as i32));
|
2020-11-09 00:11:53 +00:00
|
|
|
|
2020-09-21 22:38:01 +00:00
|
|
|
match self.stage_section {
|
|
|
|
StageSection::Buildup => {
|
|
|
|
if self.timer < self.static_data.stage_data[stage_index].base_buildup_duration {
|
|
|
|
// Build up
|
|
|
|
update.character = CharacterState::ComboMelee(Data {
|
|
|
|
static_data: self.static_data.clone(),
|
|
|
|
timer: self
|
|
|
|
.timer
|
2020-11-09 00:11:53 +00:00
|
|
|
.checked_add(Duration::from_secs_f32(data.dt.0 * speed_modifer))
|
2020-09-21 22:38:01 +00:00
|
|
|
.unwrap_or_default(),
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2020-09-21 22:38:01 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// Transitions to swing section of stage
|
|
|
|
update.character = CharacterState::ComboMelee(Data {
|
|
|
|
static_data: self.static_data.clone(),
|
|
|
|
timer: Duration::default(),
|
|
|
|
stage_section: StageSection::Swing,
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2020-09-21 22:38:01 +00:00
|
|
|
});
|
2020-09-11 18:29:42 +00:00
|
|
|
|
2020-09-21 22:38:01 +00:00
|
|
|
// Hit attempt
|
2020-12-08 04:00:24 +00:00
|
|
|
let damage = self.static_data.stage_data[stage_index].base_damage
|
2021-02-05 01:39:12 +00:00
|
|
|
+ (self
|
2020-12-08 04:00:24 +00:00
|
|
|
.static_data
|
|
|
|
.scales_from_combo
|
2021-02-27 23:01:07 +00:00
|
|
|
.min(data.combo.counter() / self.static_data.num_stages)
|
2021-02-05 01:39:12 +00:00
|
|
|
as f32)
|
2020-12-08 04:00:24 +00:00
|
|
|
* self.static_data.stage_data[stage_index].damage_increase;
|
2021-02-05 01:39:12 +00:00
|
|
|
|
2021-01-30 04:40:03 +00:00
|
|
|
let poise = self.static_data.stage_data[stage_index].base_poise_damage
|
2021-02-05 01:39:12 +00:00
|
|
|
+ (self
|
2020-12-16 23:30:33 +00:00
|
|
|
.static_data
|
|
|
|
.scales_from_combo
|
2021-02-27 23:01:07 +00:00
|
|
|
.min(data.combo.counter() / self.static_data.num_stages)
|
2021-02-05 01:39:12 +00:00
|
|
|
as f32)
|
2020-12-16 23:30:33 +00:00
|
|
|
* self.static_data.stage_data[stage_index].poise_damage_increase;
|
2021-02-02 18:02:40 +00:00
|
|
|
let poise = AttackEffect::new(
|
|
|
|
Some(GroupTarget::OutOfGroup),
|
2021-02-05 01:39:12 +00:00
|
|
|
CombatEffect::Poise(poise),
|
2021-02-02 18:02:40 +00:00
|
|
|
)
|
|
|
|
.with_requirement(CombatRequirement::AnyDamage);
|
|
|
|
let knockback = AttackEffect::new(
|
|
|
|
Some(GroupTarget::OutOfGroup),
|
|
|
|
CombatEffect::Knockback(Knockback {
|
|
|
|
strength: self.static_data.stage_data[stage_index].knockback,
|
|
|
|
direction: KnockbackDir::Away,
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
.with_requirement(CombatRequirement::AnyDamage);
|
2021-01-26 17:58:52 +00:00
|
|
|
let energy = self.static_data.max_energy_gain.min(
|
|
|
|
self.static_data.initial_energy_gain
|
2021-02-27 23:01:07 +00:00
|
|
|
+ data.combo.counter() as f32 * self.static_data.energy_increase,
|
2021-01-26 17:58:52 +00:00
|
|
|
);
|
2021-02-02 18:02:40 +00:00
|
|
|
let energy = AttackEffect::new(None, CombatEffect::EnergyReward(energy))
|
2021-01-28 18:50:56 +00:00
|
|
|
.with_requirement(CombatRequirement::AnyDamage);
|
2021-02-02 18:02:40 +00:00
|
|
|
let buff = CombatEffect::Buff(CombatBuff::default_physical());
|
|
|
|
let damage = AttackDamage::new(
|
|
|
|
Damage {
|
|
|
|
source: DamageSource::Melee,
|
|
|
|
value: damage as f32,
|
|
|
|
},
|
|
|
|
Some(GroupTarget::OutOfGroup),
|
|
|
|
)
|
|
|
|
.with_effect(buff);
|
2021-03-09 03:53:58 +00:00
|
|
|
let (crit_chance, crit_mult) =
|
|
|
|
get_crit_data(data, self.static_data.ability_info);
|
2021-01-28 18:50:56 +00:00
|
|
|
let attack = Attack::default()
|
|
|
|
.with_damage(damage)
|
2021-03-09 03:53:58 +00:00
|
|
|
.with_crit(crit_chance, crit_mult)
|
2021-01-30 04:40:03 +00:00
|
|
|
.with_effect(energy)
|
2021-01-31 17:33:22 +00:00
|
|
|
.with_effect(poise)
|
2021-02-27 19:55:06 +00:00
|
|
|
.with_effect(knockback)
|
|
|
|
.with_combo_increment();
|
2021-01-26 03:53:52 +00:00
|
|
|
|
2021-02-02 18:02:40 +00:00
|
|
|
data.updater.insert(data.entity, Melee {
|
2021-01-26 02:50:16 +00:00
|
|
|
attack,
|
2020-09-21 22:38:01 +00:00
|
|
|
range: self.static_data.stage_data[stage_index].range,
|
|
|
|
max_angle: self.static_data.stage_data[stage_index].angle.to_radians(),
|
|
|
|
applied: false,
|
|
|
|
hit_count: 0,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
StageSection::Swing => {
|
|
|
|
if self.timer < self.static_data.stage_data[stage_index].base_swing_duration {
|
|
|
|
// Forward movement
|
2020-10-25 20:22:40 +00:00
|
|
|
handle_forced_movement(
|
2020-09-21 22:38:01 +00:00
|
|
|
data,
|
|
|
|
&mut update,
|
2020-10-25 20:22:40 +00:00
|
|
|
ForcedMovement::Forward {
|
|
|
|
strength: self.static_data.stage_data[stage_index].forward_movement,
|
|
|
|
},
|
2020-09-21 22:38:01 +00:00
|
|
|
0.3,
|
|
|
|
);
|
2020-09-10 02:58:28 +00:00
|
|
|
|
2020-09-21 22:38:01 +00:00
|
|
|
// Swings
|
|
|
|
update.character = CharacterState::ComboMelee(Data {
|
|
|
|
static_data: self.static_data.clone(),
|
|
|
|
timer: self
|
|
|
|
.timer
|
2020-11-09 00:11:53 +00:00
|
|
|
.checked_add(Duration::from_secs_f32(data.dt.0 * speed_modifer))
|
2020-09-21 22:38:01 +00:00
|
|
|
.unwrap_or_default(),
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2020-09-21 22:38:01 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// Transitions to recover section of stage
|
|
|
|
update.character = CharacterState::ComboMelee(Data {
|
|
|
|
static_data: self.static_data.clone(),
|
|
|
|
timer: Duration::default(),
|
|
|
|
stage_section: StageSection::Recover,
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2020-09-21 22:38:01 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
StageSection::Recover => {
|
|
|
|
if self.timer < self.static_data.stage_data[stage_index].base_recover_duration {
|
|
|
|
// Recovers
|
|
|
|
update.character = CharacterState::ComboMelee(Data {
|
|
|
|
static_data: self.static_data.clone(),
|
2021-03-12 21:01:30 +00:00
|
|
|
timer: self
|
|
|
|
.timer
|
|
|
|
.checked_add(Duration::from_secs_f32(data.dt.0 * speed_modifer))
|
|
|
|
.unwrap_or_default(),
|
|
|
|
..*self
|
2020-09-21 22:38:01 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// Done
|
2021-03-14 15:19:22 +00:00
|
|
|
if input_is_pressed(data, self.static_data.ability_info) {
|
2021-03-12 21:01:30 +00:00
|
|
|
reset_state(self, data, &mut update);
|
2021-03-14 15:19:22 +00:00
|
|
|
} else {
|
|
|
|
update.character = CharacterState::Wielding;
|
2021-03-12 21:01:30 +00:00
|
|
|
}
|
2020-09-21 22:38:01 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {
|
|
|
|
// If it somehow ends up in an incorrect stage section
|
|
|
|
update.character = CharacterState::Wielding;
|
|
|
|
// Make sure attack component is removed
|
2021-02-02 18:02:40 +00:00
|
|
|
data.updater.remove::<Melee>(data.entity);
|
2020-09-21 22:38:01 +00:00
|
|
|
},
|
2020-09-04 01:54:59 +00:00
|
|
|
}
|
|
|
|
|
2021-03-12 21:01:30 +00:00
|
|
|
update
|
|
|
|
}
|
2020-09-04 01:54:59 +00:00
|
|
|
}
|
2021-03-12 21:01:30 +00:00
|
|
|
|
|
|
|
fn reset_state(data: &Data, join: &JoinData, update: &mut StateUpdate) {
|
|
|
|
handle_input(join, update, data.static_data.ability_info.input.unwrap());
|
|
|
|
|
|
|
|
if let CharacterState::ComboMelee(c) = &mut update.character {
|
|
|
|
c.stage = (data.stage % data.static_data.num_stages) + 1;
|
|
|
|
}
|
|
|
|
}
|