2020-03-16 11:32:57 +00:00
|
|
|
use crate::{
|
2021-03-23 09:51:53 +00:00
|
|
|
comp::{Body, CharacterState, LightEmitter, ProjectileConstructor, StateUpdate},
|
2020-03-16 11:32:57 +00:00
|
|
|
event::ServerEvent,
|
2020-12-01 00:28:00 +00:00
|
|
|
states::{
|
|
|
|
behavior::{CharacterBehavior, JoinData},
|
|
|
|
utils::*,
|
|
|
|
},
|
2021-05-16 03:09:39 +00:00
|
|
|
util::Dir,
|
2020-03-16 11:32:57 +00:00
|
|
|
};
|
2021-05-16 03:09:39 +00:00
|
|
|
use rand::{thread_rng, Rng};
|
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-11-09 04:04:51 +00:00
|
|
|
#[derive(Clone, Copy, 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,
|
2021-05-22 05:05:27 +00:00
|
|
|
/// How much spread there is when more than 1 projectile is created
|
|
|
|
pub projectile_spread: f32,
|
2020-10-17 02:29:14 +00:00
|
|
|
/// Projectile variables
|
2020-11-09 04:04:51 +00:00
|
|
|
pub projectile: ProjectileConstructor,
|
2020-03-16 11:32:57 +00:00
|
|
|
pub projectile_body: Body,
|
2020-03-24 19:31:54 +00:00
|
|
|
pub projectile_light: Option<LightEmitter>,
|
2020-08-06 18:17:38 +00:00
|
|
|
pub projectile_speed: f32,
|
2021-05-16 03:09:39 +00:00
|
|
|
/// How many projectiles are simultaneously fired
|
|
|
|
pub num_projectiles: u32,
|
2020-10-08 02:12:44 +00:00
|
|
|
/// What key is used to press ability
|
2021-02-14 06:01:53 +00:00
|
|
|
pub ability_info: AbilityInfo,
|
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-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
|
|
|
|
2021-04-24 19:20:26 +00:00
|
|
|
handle_orientation(data, &mut update, 1.0);
|
2020-03-27 17:17:41 +00:00
|
|
|
handle_move(data, &mut update, 0.3);
|
2021-03-22 22:47:13 +00:00
|
|
|
handle_jump(data, &mut update, 1.0);
|
2020-03-16 11:32:57 +00:00
|
|
|
|
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 {
|
2021-05-30 19:39:30 +00:00
|
|
|
timer: tick_attack_or_default(data, self.timer, None),
|
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 {
|
|
|
|
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
|
2021-03-09 03:53:58 +00:00
|
|
|
let (crit_chance, crit_mult) =
|
|
|
|
get_crit_data(data, self.static_data.ability_info);
|
2021-07-10 16:04:12 +00:00
|
|
|
let buff_strength = get_buff_strength(data, self.static_data.ability_info);
|
2021-03-09 03:53:58 +00:00
|
|
|
let projectile = self.static_data.projectile.create_projectile(
|
|
|
|
Some(*data.uid),
|
|
|
|
crit_chance,
|
|
|
|
crit_mult,
|
2021-07-10 16:04:12 +00:00
|
|
|
buff_strength,
|
2021-03-09 03:53:58 +00:00
|
|
|
);
|
2021-05-23 16:41:09 +00:00
|
|
|
// Shoots all projectiles simultaneously
|
2021-05-16 03:09:39 +00:00
|
|
|
for i in 0..self.static_data.num_projectiles {
|
2021-05-23 16:41:09 +00:00
|
|
|
// Adds a slight spread to the projectiles. First projectile has no spread,
|
|
|
|
// and spread increases linearly with number of projectiles created.
|
2021-05-16 03:09:39 +00:00
|
|
|
let dir = Dir::from_unnormalized(data.inputs.look_dir.map(|x| {
|
2021-05-22 05:05:27 +00:00
|
|
|
let offset = (2.0 * thread_rng().gen::<f32>() - 1.0)
|
|
|
|
* self.static_data.projectile_spread
|
|
|
|
* i as f32;
|
2021-05-16 03:09:39 +00:00
|
|
|
x + offset
|
|
|
|
}))
|
|
|
|
.unwrap_or(data.inputs.look_dir);
|
2021-05-23 16:41:09 +00:00
|
|
|
// Tells server to create and shoot the projectile
|
2021-05-16 03:09:39 +00:00
|
|
|
update.server_events.push_front(ServerEvent::Shoot {
|
|
|
|
entity: data.entity,
|
|
|
|
dir,
|
|
|
|
body: self.static_data.projectile_body,
|
|
|
|
projectile: projectile.clone(),
|
|
|
|
light: self.static_data.projectile_light,
|
|
|
|
speed: self.static_data.projectile_speed,
|
|
|
|
object: None,
|
|
|
|
});
|
|
|
|
}
|
2020-03-16 11:32:57 +00:00
|
|
|
|
2020-10-17 02:29:14 +00:00
|
|
|
update.character = CharacterState::BasicRanged(Data {
|
|
|
|
exhausted: true,
|
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 {
|
2021-03-12 21:01:30 +00:00
|
|
|
// Recovers
|
2020-10-17 02:29:14 +00:00
|
|
|
update.character = CharacterState::BasicRanged(Data {
|
2021-05-30 19:39:30 +00:00
|
|
|
timer: tick_attack_or_default(data, self.timer, None),
|
2020-10-27 22:16:17 +00:00
|
|
|
..*self
|
2021-03-12 21:01:30 +00:00
|
|
|
});
|
2020-10-17 02:29:14 +00:00
|
|
|
} else {
|
|
|
|
// Done
|
2021-03-14 18:42:39 +00:00
|
|
|
if input_is_pressed(data, self.static_data.ability_info.input) {
|
2021-03-12 21:01:30 +00:00
|
|
|
reset_state(self, data, &mut update);
|
2021-03-14 15:19:22 +00:00
|
|
|
} else {
|
|
|
|
update.character = CharacterState::Wielding;
|
2021-03-12 21:01:30 +00:00
|
|
|
}
|
2020-10-17 02:29:14 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {
|
|
|
|
// If it somehow ends up in an incorrect stage section
|
|
|
|
update.character = CharacterState::Wielding;
|
|
|
|
},
|
2020-03-16 11:32:57 +00:00
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-03-16 11:32:57 +00:00
|
|
|
update
|
|
|
|
}
|
2021-03-12 21:01:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn reset_state(data: &Data, join: &JoinData, update: &mut StateUpdate) {
|
2021-03-14 18:42:39 +00:00
|
|
|
handle_input(join, update, data.static_data.ability_info.input);
|
2020-03-16 11:32:57 +00:00
|
|
|
}
|