veloren/common/src/states/shockwave.rs

137 lines
5.2 KiB
Rust
Raw Normal View History

2020-08-08 20:53:55 +00:00
use crate::{
comp::{shockwave, CharacterState, StateUpdate},
2020-08-08 20:53:55 +00:00
event::ServerEvent,
states::utils::*,
2020-09-30 00:47:11 +00:00
sys::character_behavior::{CharacterBehavior, JoinData},
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,
/// Knockback
pub knockback: f32,
/// 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-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-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 {
static_data: self.static_data,
timer: self
.timer
.checked_add(Duration::from_secs_f32(data.dt.0))
.unwrap_or_default(),
stage_section: self.stage_section,
});
} else {
// Attack
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,
damage: self.static_data.damage,
knockback: self.static_data.knockback,
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 {
static_data: self.static_data,
timer: Duration::default(),
stage_section: StageSection::Swing,
});
}
},
StageSection::Swing => {
if self.timer < self.static_data.swing_duration {
// Swings
update.character = CharacterState::Shockwave(Data {
static_data: self.static_data,
timer: self
.timer
.checked_add(Duration::from_secs_f32(data.dt.0))
.unwrap_or_default(),
stage_section: self.stage_section,
});
} else {
// Transitions to recover
update.character = CharacterState::Shockwave(Data {
static_data: self.static_data,
timer: Duration::default(),
stage_section: StageSection::Recover,
});
}
},
StageSection::Recover => {
if self.timer < self.static_data.swing_duration {
// Recovers
update.character = CharacterState::Shockwave(Data {
static_data: self.static_data,
timer: self
.timer
.checked_add(Duration::from_secs_f32(data.dt.0))
.unwrap_or_default(),
stage_section: self.stage_section,
});
} 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
}
}