mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
970d57f905
ECS & Diary info synchronization See merge request veloren/veloren!2771
373 lines
15 KiB
Rust
373 lines
15 KiB
Rust
use crate::{
|
|
combat::{Attack, AttackDamage, AttackEffect, CombatBuff, CombatEffect, CombatRequirement},
|
|
comp::{
|
|
tool::{Stats, ToolKind},
|
|
CharacterState, Melee, StateUpdate,
|
|
},
|
|
states::{
|
|
behavior::{CharacterBehavior, JoinData},
|
|
utils::*,
|
|
},
|
|
Damage, DamageKind, DamageSource, GroupTarget, Knockback, KnockbackDir,
|
|
};
|
|
use serde::{Deserialize, Serialize};
|
|
use std::time::Duration;
|
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct Stage<T> {
|
|
/// Specifies which stage the combo attack is in
|
|
pub stage: u32,
|
|
/// Initial damage of stage
|
|
pub base_damage: f32,
|
|
/// Damage scaling per combo
|
|
pub damage_increase: f32,
|
|
/// Initial poise damage of stage
|
|
pub base_poise_damage: f32,
|
|
/// Poise damage scaling per combo
|
|
pub poise_damage_increase: f32,
|
|
/// 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)
|
|
pub base_buildup_duration: T,
|
|
/// Duration of stage spent in swing (controls animation stuff, and can also
|
|
/// be used to handle movement separately to buildup)
|
|
pub base_swing_duration: T,
|
|
/// At what fraction of the swing duration to apply the melee "hit"
|
|
pub hit_timing: f32,
|
|
/// Initial recover duration of stage (how long until character exits state)
|
|
pub base_recover_duration: T,
|
|
/// How much forward movement there is in the swing portion of the stage
|
|
pub forward_movement: f32,
|
|
/// What kind of damage this stage of the attack does
|
|
pub damage_kind: DamageKind,
|
|
/// Adds an effect onto the main damage of the attack
|
|
pub damage_effect: Option<CombatEffect>,
|
|
}
|
|
|
|
impl Stage<f32> {
|
|
pub fn to_duration(self) -> Stage<Duration> {
|
|
Stage::<Duration> {
|
|
stage: self.stage,
|
|
base_damage: self.base_damage,
|
|
damage_increase: self.damage_increase,
|
|
base_poise_damage: self.base_poise_damage,
|
|
poise_damage_increase: self.poise_damage_increase,
|
|
knockback: self.knockback,
|
|
range: self.range,
|
|
angle: self.angle,
|
|
base_buildup_duration: Duration::from_secs_f32(self.base_buildup_duration),
|
|
hit_timing: self.hit_timing,
|
|
base_swing_duration: Duration::from_secs_f32(self.base_swing_duration),
|
|
base_recover_duration: Duration::from_secs_f32(self.base_recover_duration),
|
|
forward_movement: self.forward_movement,
|
|
damage_kind: self.damage_kind,
|
|
damage_effect: self.damage_effect,
|
|
}
|
|
}
|
|
|
|
pub fn adjusted_by_stats(mut self, stats: Stats) -> Self {
|
|
if let Some(CombatEffect::Buff(CombatBuff {
|
|
kind: _,
|
|
dur_secs: _,
|
|
ref mut strength,
|
|
chance: _,
|
|
})) = self.damage_effect
|
|
{
|
|
*strength *= stats.buff_strength;
|
|
}
|
|
Self {
|
|
stage: self.stage,
|
|
base_damage: self.base_damage * stats.power,
|
|
damage_increase: self.damage_increase * stats.power,
|
|
base_poise_damage: self.base_poise_damage * stats.effect_power,
|
|
poise_damage_increase: self.poise_damage_increase * stats.effect_power,
|
|
knockback: self.knockback,
|
|
range: self.range * stats.range,
|
|
angle: self.angle,
|
|
base_buildup_duration: self.base_buildup_duration / stats.speed,
|
|
base_swing_duration: self.base_swing_duration / stats.speed,
|
|
hit_timing: self.hit_timing,
|
|
base_recover_duration: self.base_recover_duration / stats.speed,
|
|
forward_movement: self.forward_movement,
|
|
damage_kind: self.damage_kind,
|
|
damage_effect: self.damage_effect,
|
|
}
|
|
}
|
|
|
|
// TODO: name it as using knockback
|
|
pub fn modify_strike(mut self, knockback_mult: f32) -> Self {
|
|
self.knockback *= knockback_mult;
|
|
self
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
|
|
/// Separated out to condense update portions of character state
|
|
pub struct StaticData {
|
|
/// Indicates number of stages in combo
|
|
pub num_stages: u32,
|
|
/// Data for each stage
|
|
pub stage_data: Vec<Stage<Duration>>,
|
|
/// Initial energy gain per strike
|
|
pub initial_energy_gain: f32,
|
|
/// Max energy gain per strike
|
|
pub max_energy_gain: f32,
|
|
/// Energy gain increase per combo
|
|
pub energy_increase: f32,
|
|
/// (100% - speed_increase) is percentage speed increases from current to
|
|
/// max per combo increase
|
|
pub speed_increase: f32,
|
|
/// This value is the highest percentage speed can increase from the base
|
|
/// speed
|
|
pub max_speed_increase: f32,
|
|
/// Number of times damage scales with combo
|
|
pub scales_from_combo: u32,
|
|
/// Whether the state can be interrupted by other abilities
|
|
pub is_interruptible: bool,
|
|
/// Adjusts turning rate during the attack
|
|
pub ori_modifier: f32,
|
|
/// What key is used to press ability
|
|
pub ability_info: AbilityInfo,
|
|
}
|
|
/// 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,
|
|
/// Whether the attack was executed already
|
|
pub exhausted: bool,
|
|
/// 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,
|
|
}
|
|
|
|
impl CharacterBehavior for Data {
|
|
fn behavior(&self, data: &JoinData) -> StateUpdate {
|
|
let mut update = StateUpdate::from(data);
|
|
|
|
handle_move(data, &mut update, 0.4);
|
|
|
|
// Index should be `self.stage - 1`, however in cases of client-server desync
|
|
// this can cause panics. This ensures that `self.stage - 1` is valid, and if it
|
|
// isn't, index of 0 is used, which is always safe.
|
|
let stage_index = self
|
|
.static_data
|
|
.stage_data
|
|
.get(self.stage as usize - 1)
|
|
.map_or(0, |_| self.stage as usize - 1);
|
|
|
|
let speed_modifer = 1.0
|
|
+ self.static_data.max_speed_increase
|
|
* (1.0
|
|
- self
|
|
.static_data
|
|
.speed_increase
|
|
.powi(data.combo.counter() as i32));
|
|
|
|
match self.stage_section {
|
|
StageSection::Buildup => {
|
|
if self.timer < self.static_data.stage_data[stage_index].base_buildup_duration {
|
|
handle_orientation(
|
|
data,
|
|
&mut update,
|
|
0.4 * self.static_data.ori_modifier,
|
|
None,
|
|
);
|
|
|
|
// Build up
|
|
update.character = CharacterState::ComboMelee(Data {
|
|
static_data: self.static_data.clone(),
|
|
timer: tick_attack_or_default(data, self.timer, Some(speed_modifer)),
|
|
..*self
|
|
});
|
|
} else {
|
|
// Transitions to swing section of stage
|
|
update.character = CharacterState::ComboMelee(Data {
|
|
static_data: self.static_data.clone(),
|
|
timer: Duration::default(),
|
|
stage_section: StageSection::Action,
|
|
..*self
|
|
});
|
|
}
|
|
},
|
|
StageSection::Action => {
|
|
if self.timer.as_secs_f32()
|
|
> self.static_data.stage_data[stage_index].hit_timing
|
|
* self.static_data.stage_data[stage_index]
|
|
.base_swing_duration
|
|
.as_secs_f32()
|
|
&& !self.exhausted
|
|
{
|
|
// Swing
|
|
update.character = CharacterState::ComboMelee(Data {
|
|
static_data: self.static_data.clone(),
|
|
timer: tick_attack_or_default(data, self.timer, None),
|
|
exhausted: true,
|
|
..*self
|
|
});
|
|
|
|
let damage = self.static_data.stage_data[stage_index].base_damage
|
|
+ (self
|
|
.static_data
|
|
.scales_from_combo
|
|
.min(data.combo.counter() / self.static_data.num_stages)
|
|
as f32)
|
|
* self.static_data.stage_data[stage_index].damage_increase;
|
|
|
|
let poise = self.static_data.stage_data[stage_index].base_poise_damage
|
|
+ (self
|
|
.static_data
|
|
.scales_from_combo
|
|
.min(data.combo.counter() / self.static_data.num_stages)
|
|
as f32)
|
|
* self.static_data.stage_data[stage_index].poise_damage_increase;
|
|
let poise = AttackEffect::new(
|
|
Some(GroupTarget::OutOfGroup),
|
|
CombatEffect::Poise(poise),
|
|
)
|
|
.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);
|
|
|
|
let energy = self.static_data.max_energy_gain.min(
|
|
self.static_data.initial_energy_gain
|
|
+ data.combo.counter() as f32 * self.static_data.energy_increase,
|
|
);
|
|
|
|
let energy = AttackEffect::new(None, CombatEffect::EnergyReward(energy))
|
|
.with_requirement(CombatRequirement::AnyDamage);
|
|
|
|
let mut damage = AttackDamage::new(
|
|
Damage {
|
|
source: DamageSource::Melee,
|
|
kind: self.static_data.stage_data[stage_index].damage_kind,
|
|
value: damage as f32,
|
|
},
|
|
Some(GroupTarget::OutOfGroup),
|
|
);
|
|
if let Some(effect) = self.static_data.stage_data[stage_index].damage_effect {
|
|
damage = damage.with_effect(effect);
|
|
}
|
|
|
|
let (crit_chance, crit_mult) =
|
|
get_crit_data(data, self.static_data.ability_info);
|
|
|
|
let attack = Attack::default()
|
|
.with_damage(damage)
|
|
.with_crit(crit_chance, crit_mult)
|
|
.with_effect(energy)
|
|
.with_effect(poise)
|
|
.with_effect(knockback)
|
|
.with_combo_increment();
|
|
|
|
data.updater.insert(data.entity, Melee {
|
|
attack,
|
|
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,
|
|
break_block: data
|
|
.inputs
|
|
.select_pos
|
|
.map(|p| {
|
|
(
|
|
p.map(|e| e.floor() as i32),
|
|
self.static_data.ability_info.tool,
|
|
)
|
|
})
|
|
.filter(|(_, tool)| tool == &Some(ToolKind::Pick)),
|
|
});
|
|
} else if self.timer < self.static_data.stage_data[stage_index].base_swing_duration
|
|
{
|
|
handle_orientation(
|
|
data,
|
|
&mut update,
|
|
0.4 * self.static_data.ori_modifier,
|
|
None,
|
|
);
|
|
|
|
// Forward movement
|
|
handle_forced_movement(data, &mut update, ForcedMovement::Forward {
|
|
strength: self.static_data.stage_data[stage_index].forward_movement,
|
|
});
|
|
|
|
// Swings
|
|
update.character = CharacterState::ComboMelee(Data {
|
|
static_data: self.static_data.clone(),
|
|
timer: tick_attack_or_default(data, self.timer, Some(speed_modifer)),
|
|
..*self
|
|
});
|
|
} 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,
|
|
..*self
|
|
});
|
|
}
|
|
},
|
|
StageSection::Recover => {
|
|
if self.timer < self.static_data.stage_data[stage_index].base_recover_duration {
|
|
handle_orientation(
|
|
data,
|
|
&mut update,
|
|
0.8 * self.static_data.ori_modifier,
|
|
None,
|
|
);
|
|
// Recovers
|
|
update.character = CharacterState::ComboMelee(Data {
|
|
static_data: self.static_data.clone(),
|
|
timer: tick_attack_or_default(data, self.timer, Some(speed_modifer)),
|
|
..*self
|
|
});
|
|
} else {
|
|
// Done
|
|
if input_is_pressed(data, self.static_data.ability_info.input) {
|
|
reset_state(self, data, &mut update);
|
|
} else {
|
|
update.character = CharacterState::Wielding;
|
|
}
|
|
}
|
|
},
|
|
_ => {
|
|
// If it somehow ends up in an incorrect stage section
|
|
update.character = CharacterState::Wielding;
|
|
// Make sure attack component is removed
|
|
data.updater.remove::<Melee>(data.entity);
|
|
},
|
|
}
|
|
|
|
// At end of state logic so an interrupt isn't overwritten
|
|
if !input_is_pressed(data, self.static_data.ability_info.input) {
|
|
handle_state_interrupt(data, &mut update, self.static_data.is_interruptible);
|
|
}
|
|
|
|
update
|
|
}
|
|
}
|
|
|
|
fn reset_state(data: &Data, join: &JoinData, update: &mut StateUpdate) {
|
|
handle_input(join, update, data.static_data.ability_info.input);
|
|
|
|
if let CharacterState::ComboMelee(c) = &mut update.character {
|
|
c.stage = (data.stage % data.static_data.num_stages) + 1;
|
|
}
|
|
}
|