2021-03-01 20:44:29 +00:00
|
|
|
use crate::{
|
|
|
|
combat::GroupTarget,
|
|
|
|
comp::{
|
2021-07-10 07:10:31 +00:00
|
|
|
aura::{AuraBuffConstructor, AuraChange, AuraKind, AuraTarget, FrontendSpecifier},
|
2021-03-01 20:44:29 +00:00
|
|
|
CharacterState, StateUpdate,
|
|
|
|
},
|
|
|
|
event::ServerEvent,
|
|
|
|
states::{
|
|
|
|
behavior::{CharacterBehavior, JoinData},
|
|
|
|
utils::*,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use std::time::Duration;
|
|
|
|
|
|
|
|
/// Separated out to condense update portions of character state
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)]
|
|
|
|
pub struct StaticData {
|
|
|
|
/// How long until state should create the aura
|
|
|
|
pub buildup_duration: Duration,
|
|
|
|
/// How long the state is creating an aura
|
|
|
|
pub cast_duration: Duration,
|
|
|
|
/// How long the state has until exiting
|
|
|
|
pub recover_duration: Duration,
|
|
|
|
/// Determines how the aura selects its targets
|
|
|
|
pub targets: GroupTarget,
|
|
|
|
/// Has information used to construct the aura
|
|
|
|
pub aura: AuraBuffConstructor,
|
2021-03-06 21:29:00 +00:00
|
|
|
/// How long aura lasts
|
|
|
|
pub aura_duration: Duration,
|
2021-03-01 20:44:29 +00:00
|
|
|
/// Radius of aura
|
|
|
|
pub range: f32,
|
|
|
|
/// What key is used to press ability
|
|
|
|
pub ability_info: AbilityInfo,
|
2021-07-10 07:10:31 +00:00
|
|
|
/// Whether the aura's effect scales with the user's current combo
|
|
|
|
pub scales_with_combo: bool,
|
|
|
|
/// Used to specify aura to the frontend
|
|
|
|
pub specifier: FrontendSpecifier,
|
2021-03-01 20:44:29 +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,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CharacterBehavior for Data {
|
|
|
|
fn behavior(&self, data: &JoinData) -> StateUpdate {
|
|
|
|
let mut update = StateUpdate::from(data);
|
|
|
|
|
2021-04-24 19:20:26 +00:00
|
|
|
handle_orientation(data, &mut update, 1.0);
|
2021-03-04 03:43:11 +00:00
|
|
|
handle_move(data, &mut update, 0.8);
|
2021-03-22 22:47:13 +00:00
|
|
|
handle_jump(data, &mut update, 1.0);
|
2021-03-01 20:44:29 +00:00
|
|
|
|
|
|
|
match self.stage_section {
|
|
|
|
StageSection::Buildup => {
|
|
|
|
if self.timer < self.static_data.buildup_duration {
|
|
|
|
// Build up
|
2021-03-06 21:29:00 +00:00
|
|
|
update.character = CharacterState::BasicAura(Data {
|
2021-05-30 19:39:30 +00:00
|
|
|
timer: tick_attack_or_default(data, self.timer, None),
|
2021-03-01 20:44:29 +00:00
|
|
|
..*self
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// Creates aura
|
|
|
|
let targets =
|
|
|
|
AuraTarget::from((Some(self.static_data.targets), Some(data.uid)));
|
|
|
|
let aura = self.static_data.aura.to_aura(
|
|
|
|
data.uid,
|
|
|
|
self.static_data.range,
|
2021-03-06 21:29:00 +00:00
|
|
|
Some(self.static_data.aura_duration),
|
2021-03-01 20:44:29 +00:00
|
|
|
targets,
|
|
|
|
);
|
2021-07-10 07:10:31 +00:00
|
|
|
if self.static_data.scales_with_combo {
|
|
|
|
let combo = data.combo.counter();
|
|
|
|
match aura.aura_kind {
|
|
|
|
AuraKind::Buff {
|
|
|
|
kind: _,
|
|
|
|
mut data,
|
|
|
|
category: _,
|
|
|
|
source: _,
|
|
|
|
} => {
|
|
|
|
data.strength *= 1.1_f32;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
update.server_events.push_front(ServerEvent::ComboChange {
|
|
|
|
entity: data.entity,
|
|
|
|
change: -(combo as i32),
|
|
|
|
});
|
|
|
|
}
|
2021-03-01 20:44:29 +00:00
|
|
|
update.server_events.push_front(ServerEvent::Aura {
|
|
|
|
entity: data.entity,
|
|
|
|
aura_change: AuraChange::Add(aura),
|
|
|
|
});
|
|
|
|
// Build up
|
2021-03-06 21:29:00 +00:00
|
|
|
update.character = CharacterState::BasicAura(Data {
|
2021-03-01 20:44:29 +00:00
|
|
|
timer: Duration::default(),
|
|
|
|
stage_section: StageSection::Cast,
|
|
|
|
..*self
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
StageSection::Cast => {
|
|
|
|
if self.timer < self.static_data.cast_duration {
|
|
|
|
// Cast
|
2021-03-06 21:29:00 +00:00
|
|
|
update.character = CharacterState::BasicAura(Data {
|
2021-05-30 19:39:30 +00:00
|
|
|
timer: tick_attack_or_default(data, self.timer, None),
|
2021-03-01 20:44:29 +00:00
|
|
|
..*self
|
|
|
|
});
|
|
|
|
} else {
|
2021-03-06 21:29:00 +00:00
|
|
|
update.character = CharacterState::BasicAura(Data {
|
2021-03-01 20:44:29 +00:00
|
|
|
timer: Duration::default(),
|
|
|
|
stage_section: StageSection::Recover,
|
|
|
|
..*self
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
StageSection::Recover => {
|
|
|
|
if self.timer < self.static_data.recover_duration {
|
2021-03-06 21:29:00 +00:00
|
|
|
update.character = CharacterState::BasicAura(Data {
|
2021-05-30 19:39:30 +00:00
|
|
|
timer: tick_attack_or_default(data, self.timer, None),
|
2021-03-01 20:44:29 +00:00
|
|
|
..*self
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// Done
|
|
|
|
update.character = CharacterState::Wielding;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {
|
|
|
|
// If it somehow ends up in an incorrect stage section
|
|
|
|
update.character = CharacterState::Wielding;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2021-03-14 20:35:28 +00:00
|
|
|
// 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, false);
|
|
|
|
}
|
|
|
|
|
2021-03-01 20:44:29 +00:00
|
|
|
update
|
|
|
|
}
|
|
|
|
}
|