veloren/common/src/states/shockwave.rs

173 lines
6.5 KiB
Rust
Raw Normal View History

2020-08-08 20:53:55 +00:00
use crate::{
2021-01-30 17:11:57 +00:00
combat::{
2021-02-02 18:02:40 +00:00
Attack, AttackDamage, AttackEffect, CombatEffect, CombatRequirement, Damage, DamageSource,
GroupTarget, Knockback,
2021-01-30 17:11:57 +00:00
},
comp::{shockwave, CharacterState, StateUpdate},
2020-08-08 20:53:55 +00:00
event::ServerEvent,
states::{
behavior::{CharacterBehavior, JoinData},
utils::*,
},
2020-08-08 20:53:55 +00:00
};
use serde::{Deserialize, Serialize};
use std::time::Duration;
/// Separated out to condense update portions of character state
2020-08-08 20:53:55 +00:00
#[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct StaticData {
2020-08-08 20:53:55 +00:00
/// How long until state should deal damage
pub buildup_duration: Duration,
/// How long the state is swinging for
pub swing_duration: Duration,
2020-08-08 20:53:55 +00:00
/// How long the state has until exiting
pub recover_duration: Duration,
/// Base damage
pub damage: u32,
/// Base poise damage
pub poise_damage: u32,
2020-08-08 20:53:55 +00:00
/// Knockback
2020-10-18 18:21:58 +00:00
pub knockback: Knockback,
2020-08-08 20:53:55 +00:00
/// Angle of the shockwave
pub shockwave_angle: f32,
2020-10-12 22:55:55 +00:00
/// Vertical angle of the shockwave
pub shockwave_vertical_angle: f32,
2020-08-08 20:53:55 +00:00
/// Speed of the shockwave
pub shockwave_speed: f32,
/// How long the shockwave travels for
pub shockwave_duration: Duration,
2020-09-19 16:55:31 +00:00
/// Whether the shockwave requires the target to be on the ground
pub requires_ground: bool,
2020-10-09 17:42:15 +00:00
/// Movement speed efficiency
pub move_efficiency: f32,
2020-11-20 17:30:48 +00:00
/// What key is used to press ability
pub ability_key: AbilityKey,
2020-08-08 20:53:55 +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-08-08 20:53:55 +00:00
impl CharacterBehavior for Data {
fn behavior(&self, data: &JoinData) -> StateUpdate {
let mut update = StateUpdate::from(data);
2020-10-09 17:42:15 +00:00
handle_move(data, &mut update, self.static_data.move_efficiency);
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::Shockwave(_) => {},
_ => {
return update;
},
}
}
2020-08-08 20:53:55 +00:00
match self.stage_section {
StageSection::Buildup => {
if self.timer < self.static_data.buildup_duration {
// Build up
update.character = CharacterState::Shockwave(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
});
} else {
// Attack
2021-02-02 18:02:40 +00:00
let poise = AttackEffect::new(
Some(GroupTarget::OutOfGroup),
CombatEffect::Poise(self.static_data.poise_damage as f32),
)
.with_requirement(CombatRequirement::AnyDamage);
let knockback = AttackEffect::new(
Some(GroupTarget::OutOfGroup),
CombatEffect::Knockback(self.static_data.knockback),
)
.with_requirement(CombatRequirement::AnyDamage);
let damage = AttackDamage::new(
Damage {
source: DamageSource::Shockwave,
value: self.static_data.damage as f32,
},
Some(GroupTarget::OutOfGroup),
);
let attack = Attack::default()
.with_damage(damage)
.with_effect(poise)
2021-01-30 17:11:57 +00:00
.with_effect(knockback);
let properties = shockwave::Properties {
angle: self.static_data.shockwave_angle,
2020-10-12 22:55:55 +00:00
vertical_angle: self.static_data.shockwave_vertical_angle,
speed: self.static_data.shockwave_speed,
duration: self.static_data.shockwave_duration,
2021-01-30 17:11:57 +00:00
attack,
requires_ground: self.static_data.requires_ground,
owner: Some(*data.uid),
};
update.server_events.push_front(ServerEvent::Shockwave {
properties,
pos: *data.pos,
ori: *data.ori,
});
2020-08-08 20:53:55 +00:00
// Transitions to swing
update.character = CharacterState::Shockwave(Data {
timer: Duration::default(),
stage_section: StageSection::Swing,
2020-10-27 22:16:17 +00:00
..*self
});
}
},
StageSection::Swing => {
if self.timer < self.static_data.swing_duration {
// Swings
update.character = CharacterState::Shockwave(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
});
} else {
// Transitions to recover
update.character = CharacterState::Shockwave(Data {
timer: Duration::default(),
stage_section: StageSection::Recover,
2020-10-27 22:16:17 +00:00
..*self
});
}
},
StageSection::Recover => {
if self.timer < self.static_data.swing_duration {
// Recovers
update.character = CharacterState::Shockwave(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
});
} else {
// Done
update.character = CharacterState::Wielding;
}
},
_ => {
// If it somehow ends up in an incorrect stage section
update.character = CharacterState::Wielding;
},
2020-08-08 20:53:55 +00:00
}
update
}
}