veloren/common/src/states/charged_melee.rs

230 lines
9.3 KiB
Rust
Raw Normal View History

use crate::{
2020-12-06 02:29:46 +00:00
comp::{
Attacking, CharacterState, EnergyChange, EnergySource, PoiseChange, PoiseSource,
StateUpdate,
},
states::{
behavior::{CharacterBehavior, JoinData},
utils::{StageSection, *},
},
Damage, DamageSource, GroupTarget, Knockback, KnockbackDir,
};
use serde::{Deserialize, Serialize};
use std::time::Duration;
2020-09-28 01:58:49 +00:00
#[derive(Clone, Copy, Debug, PartialEq, Serialize, Deserialize)]
/// Separated out to condense update portions of character state
pub struct StaticData {
/// How much energy is drained per second when charging
pub energy_drain: u32,
2020-10-06 05:21:22 +00:00
/// Energy cost per attack
pub energy_cost: u32,
/// How much damage is dealt with no charge
pub initial_damage: u32,
/// How much the damage is scaled by
pub scaled_damage: u32,
2020-12-16 23:30:33 +00:00
/// How much poise damage is dealt with no charge
pub initial_poise_damage: u32,
/// How much poise damage is scaled by
pub scaled_poise_damage: u32,
/// How much knockback there is with no charge
pub initial_knockback: f32,
/// How much the knockback is scaled by
pub scaled_knockback: f32,
/// Max range
pub range: f32,
/// Max angle (45.0 will give you a 90.0 angle window)
pub max_angle: f32,
/// Speed stat of the weapon
pub speed: f32,
2020-09-28 01:58:49 +00:00
/// How long it takes to charge the weapon to max damage and knockback
pub charge_duration: Duration,
/// How long the weapon is swinging for
pub swing_duration: Duration,
/// At what fraction of the swing duration to apply the melee "hit"
pub hit_timing: f32,
2020-09-28 01:58:49 +00:00
/// How long the state has until exiting
pub recover_duration: Duration,
2020-10-31 18:44:00 +00:00
/// What key is used to press ability
pub ability_key: AbilityKey,
2020-09-28 01:58:49 +00:00
}
#[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,
/// Checks what section a stage is in
pub stage_section: StageSection,
/// Timer for each stage
pub timer: Duration,
/// Whether the attack fired already
pub exhausted: bool,
/// How much the attack charged by
pub charge_amount: f32,
}
impl CharacterBehavior for Data {
fn behavior(&self, data: &JoinData) -> StateUpdate {
let mut update = StateUpdate::from(data);
2020-10-06 05:21:22 +00:00
handle_move(data, &mut update, 0.7);
handle_jump(data, &mut update);
2020-11-20 17:30:48 +00:00
if !ability_key_is_pressed(data, self.static_data.ability_key) {
handle_interrupt(data, &mut update, false);
2020-11-20 17:30:48 +00:00
match update.character {
CharacterState::ChargedMelee(_) => {},
_ => {
return update;
},
}
}
2020-09-28 01:58:49 +00:00
match self.stage_section {
StageSection::Charge => {
2020-10-31 18:44:00 +00:00
if ability_key_is_pressed(data, self.static_data.ability_key)
2020-10-06 05:21:22 +00:00
&& update.energy.current() >= self.static_data.energy_cost
2020-09-28 01:58:49 +00:00
&& self.timer < self.static_data.charge_duration
{
let charge = (self.timer.as_secs_f32()
/ self.static_data.charge_duration.as_secs_f32())
.min(1.0);
// Charge the attack
update.character = CharacterState::ChargedMelee(Data {
timer: self
.timer
.checked_add(Duration::from_secs_f32(
data.dt.0 * self.static_data.speed,
))
2020-09-28 01:58:49 +00:00
.unwrap_or_default(),
charge_amount: charge,
2020-10-27 22:16:17 +00:00
..*self
2020-09-28 01:58:49 +00:00
});
// Consumes energy if there's enough left and RMB is held down
2020-10-30 21:49:58 +00:00
update.energy.change_by(EnergyChange {
amount: -(self.static_data.energy_drain as f32
* data.dt.0
* self.static_data.speed) as i32,
2020-10-30 21:49:58 +00:00
source: EnergySource::Ability,
});
2020-10-31 18:44:00 +00:00
} else if ability_key_is_pressed(data, self.static_data.ability_key)
2020-10-06 05:21:22 +00:00
&& update.energy.current() >= self.static_data.energy_cost
{
2020-09-28 01:58:49 +00:00
// Maintains charge
update.character = CharacterState::ChargedMelee(Data {
timer: self
.timer
.checked_add(Duration::from_secs_f32(
data.dt.0 * self.static_data.speed,
))
2020-09-28 01:58:49 +00:00
.unwrap_or_default(),
2020-10-27 22:16:17 +00:00
..*self
2020-09-28 01:58:49 +00:00
});
2020-09-28 01:58:49 +00:00
// Consumes energy if there's enough left and RMB is held down
2020-10-30 21:49:58 +00:00
update.energy.change_by(EnergyChange {
amount: -(self.static_data.energy_drain as f32
* data.dt.0
* self.static_data.speed
/ 5.0) as i32,
2020-10-30 21:49:58 +00:00
source: EnergySource::Ability,
});
2020-09-28 01:58:49 +00:00
} else {
// Transitions to swing
update.character = CharacterState::ChargedMelee(Data {
stage_section: StageSection::Swing,
timer: Duration::default(),
2020-10-27 22:16:17 +00:00
..*self
2020-09-28 01:58:49 +00:00
});
}
},
StageSection::Swing => {
2020-11-16 05:57:13 +00:00
if self.timer.as_millis() as f32
> self.static_data.hit_timing
* self.static_data.swing_duration.as_millis() as f32
2020-11-16 05:57:13 +00:00
&& !self.exhausted
{
// Swing
update.character = CharacterState::ChargedMelee(Data {
timer: self
.timer
.checked_add(Duration::from_secs_f32(data.dt.0))
.unwrap_or_default(),
exhausted: true,
..*self
});
let damage = Damage {
source: DamageSource::Melee,
value: self.static_data.initial_damage as f32
+ self.charge_amount * self.static_data.scaled_damage as f32,
2020-12-06 02:29:46 +00:00
};
2020-12-16 23:30:33 +00:00
let poise_damage = PoiseChange {
amount: -(self.static_data.initial_poise_damage as f32
+ self.charge_amount * self.static_data.scaled_poise_damage as f32)
as i32,
source: PoiseSource::Attack,
};
2020-09-28 01:58:49 +00:00
let knockback = self.static_data.initial_knockback
+ self.charge_amount * self.static_data.scaled_knockback;
2020-09-28 01:58:49 +00:00
// Hit attempt
data.updater.insert(data.entity, Attacking {
2020-12-06 02:29:46 +00:00
effects: vec![(Some(GroupTarget::OutOfGroup), damage, poise_damage)],
2020-09-28 01:58:49 +00:00
range: self.static_data.range,
max_angle: self.static_data.max_angle.to_radians(),
applied: false,
hit_count: 0,
knockback: Knockback {
strength: knockback,
direction: KnockbackDir::Away,
},
2020-09-28 01:58:49 +00:00
});
} else if self.timer < self.static_data.swing_duration {
// Swings
update.character = CharacterState::ChargedMelee(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-09-28 01:58:49 +00:00
});
} else {
// Transitions to recover
update.character = CharacterState::ChargedMelee(Data {
stage_section: StageSection::Recover,
timer: Duration::default(),
2020-10-27 22:16:17 +00:00
..*self
2020-09-28 01:58:49 +00:00
});
}
},
StageSection::Recover => {
if self.timer < self.static_data.recover_duration {
// Recovers
update.character = CharacterState::ChargedMelee(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-09-28 01:58:49 +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);
},
}
update
}
}