2020-03-16 11:32:57 +00:00
|
|
|
use crate::{
|
2020-03-24 19:31:54 +00:00
|
|
|
comp::{Body, CharacterState, Gravity, LightEmitter, Projectile, StateUpdate},
|
2020-03-16 11:32:57 +00:00
|
|
|
event::ServerEvent,
|
2020-03-20 14:45:36 +00:00
|
|
|
states::utils::*,
|
2020-09-30 00:47:11 +00:00
|
|
|
sys::character_behavior::{CharacterBehavior, JoinData},
|
2020-03-16 11:32:57 +00:00
|
|
|
};
|
2020-07-06 14:23:08 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-03-21 21:16:26 +00:00
|
|
|
use std::time::Duration;
|
2020-03-16 11:32:57 +00:00
|
|
|
|
2020-10-17 02:29:14 +00:00
|
|
|
/// Separated out to condense update portions of character state
|
2020-03-16 11:32:57 +00:00
|
|
|
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
|
2020-10-17 02:29:14 +00:00
|
|
|
pub struct StaticData {
|
|
|
|
/// How much buildup is required before the attack
|
|
|
|
pub buildup_duration: Duration,
|
2020-03-16 11:32:57 +00:00
|
|
|
/// How long the state has until exiting
|
|
|
|
pub recover_duration: Duration,
|
2020-10-17 02:29:14 +00:00
|
|
|
/// Projectile variables
|
2020-03-16 11:32:57 +00:00
|
|
|
pub projectile: Projectile,
|
|
|
|
pub projectile_body: Body,
|
2020-03-24 19:31:54 +00:00
|
|
|
pub projectile_light: Option<LightEmitter>,
|
|
|
|
pub projectile_gravity: Option<Gravity>,
|
2020-08-06 18:17:38 +00:00
|
|
|
pub projectile_speed: f32,
|
2020-10-08 02:12:44 +00:00
|
|
|
/// What key is used to press ability
|
|
|
|
pub ability_key: AbilityKey,
|
2020-11-08 19:06:44 +00:00
|
|
|
/// Whether or not the ability can auto continue
|
|
|
|
pub can_continue: bool,
|
2020-03-16 11:32:57 +00:00
|
|
|
}
|
|
|
|
|
2020-10-17 02:29:14 +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,
|
|
|
|
/// Timer for each stage
|
|
|
|
pub timer: Duration,
|
|
|
|
/// What section the character stage is in
|
|
|
|
pub stage_section: StageSection,
|
|
|
|
/// Whether the attack fired already
|
|
|
|
pub exhausted: bool,
|
2020-11-08 19:06:44 +00:00
|
|
|
/// If in buildup, whether the attack has continued form previous attack; if in recover, whether the attack will continue to a new attack
|
|
|
|
pub continue_next: bool,
|
2020-10-17 02:29:14 +00:00
|
|
|
}
|
|
|
|
|
2020-03-16 11:32:57 +00:00
|
|
|
impl CharacterBehavior for Data {
|
|
|
|
fn behavior(&self, data: &JoinData) -> StateUpdate {
|
2020-03-21 21:16:26 +00:00
|
|
|
let mut update = StateUpdate::from(data);
|
2020-03-16 11:32:57 +00:00
|
|
|
|
2020-03-27 17:17:41 +00:00
|
|
|
handle_move(data, &mut update, 0.3);
|
2020-03-16 11:32:57 +00:00
|
|
|
handle_jump(data, &mut update);
|
|
|
|
|
2020-10-17 02:29:14 +00:00
|
|
|
match self.stage_section {
|
|
|
|
StageSection::Buildup => {
|
|
|
|
if self.timer < self.static_data.buildup_duration {
|
|
|
|
// Build up
|
|
|
|
update.character = CharacterState::BasicRanged(Data {
|
|
|
|
static_data: self.static_data.clone(),
|
|
|
|
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-10-17 02:29:14 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// Transitions to recover section of stage
|
|
|
|
update.character = CharacterState::BasicRanged(Data {
|
|
|
|
static_data: self.static_data.clone(),
|
|
|
|
timer: Duration::default(),
|
|
|
|
stage_section: StageSection::Recover,
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2020-10-17 02:29:14 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
StageSection::Recover => {
|
|
|
|
if !self.exhausted {
|
|
|
|
// Fire
|
|
|
|
let mut projectile = self.static_data.projectile.clone();
|
|
|
|
projectile.owner = Some(*data.uid);
|
|
|
|
update.server_events.push_front(ServerEvent::Shoot {
|
|
|
|
entity: data.entity,
|
|
|
|
dir: data.inputs.look_dir,
|
|
|
|
body: self.static_data.projectile_body,
|
|
|
|
projectile,
|
|
|
|
light: self.static_data.projectile_light,
|
|
|
|
gravity: self.static_data.projectile_gravity,
|
|
|
|
speed: self.static_data.projectile_speed,
|
|
|
|
});
|
2020-03-16 11:32:57 +00:00
|
|
|
|
2020-10-17 02:29:14 +00:00
|
|
|
update.character = CharacterState::BasicRanged(Data {
|
|
|
|
static_data: self.static_data.clone(),
|
|
|
|
exhausted: true,
|
2020-11-08 19:06:44 +00:00
|
|
|
continue_next: false,
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2020-10-17 02:29:14 +00:00
|
|
|
});
|
|
|
|
} else if self.timer < self.static_data.recover_duration {
|
2020-11-08 19:06:44 +00:00
|
|
|
if ability_key_is_pressed(data, self.static_data.ability_key) {
|
|
|
|
// Recovers
|
|
|
|
update.character = CharacterState::BasicRanged(Data {
|
|
|
|
static_data: self.static_data.clone(),
|
|
|
|
timer: self
|
|
|
|
.timer
|
|
|
|
.checked_add(Duration::from_secs_f32(data.dt.0))
|
|
|
|
.unwrap_or_default(),
|
|
|
|
continue_next: self.static_data.can_continue,
|
|
|
|
..*self
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// Recovers
|
|
|
|
update.character = CharacterState::BasicRanged(Data {
|
|
|
|
static_data: self.static_data.clone(),
|
|
|
|
timer: self
|
|
|
|
.timer
|
|
|
|
.checked_add(Duration::from_secs_f32(data.dt.0))
|
|
|
|
.unwrap_or_default(),
|
|
|
|
..*self
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else if self.continue_next {
|
|
|
|
// Restarts character state
|
2020-10-17 02:29:14 +00:00
|
|
|
update.character = CharacterState::BasicRanged(Data {
|
|
|
|
static_data: self.static_data.clone(),
|
2020-11-08 19:06:44 +00:00
|
|
|
timer: Duration::default(),
|
|
|
|
stage_section: StageSection::Buildup,
|
|
|
|
exhausted: false,
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2020-11-08 19:06:44 +00:00
|
|
|
})
|
2020-10-17 02:29:14 +00:00
|
|
|
} else {
|
|
|
|
// Done
|
|
|
|
update.character = CharacterState::Wielding;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {
|
|
|
|
// If it somehow ends up in an incorrect stage section
|
|
|
|
update.character = CharacterState::Wielding;
|
|
|
|
},
|
2020-03-16 11:32:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
update
|
|
|
|
}
|
|
|
|
}
|