2020-03-14 18:50:07 +00:00
|
|
|
use crate::{
|
2020-03-20 14:45:36 +00:00
|
|
|
comp::{Body, CharacterState, EnergySource, Item, Projectile, StateUpdate},
|
2020-03-14 18:50:07 +00:00
|
|
|
states::*,
|
2020-03-17 14:01:41 +00:00
|
|
|
sys::character_behavior::JoinData,
|
2020-03-14 18:50:07 +00:00
|
|
|
};
|
2020-03-22 04:49:32 +00:00
|
|
|
use specs::{Component, FlaggedStorage};
|
2020-03-21 22:55:20 +00:00
|
|
|
use specs_idvs::IDVStorage;
|
2020-03-14 15:40:29 +00:00
|
|
|
use std::time::Duration;
|
2020-01-01 17:16:29 +00:00
|
|
|
|
2020-03-16 11:32:57 +00:00
|
|
|
#[derive(Clone, PartialEq, Debug, Serialize, Deserialize)]
|
2020-03-14 15:40:29 +00:00
|
|
|
pub enum CharacterAbility {
|
2020-03-16 11:32:57 +00:00
|
|
|
BasicMelee {
|
2020-03-14 15:40:29 +00:00
|
|
|
buildup_duration: Duration,
|
|
|
|
recover_duration: Duration,
|
2020-03-15 13:34:17 +00:00
|
|
|
base_damage: u32,
|
2020-03-22 15:25:47 +00:00
|
|
|
range: f32,
|
|
|
|
max_angle: f32,
|
2020-03-12 14:36:02 +00:00
|
|
|
},
|
2020-03-16 11:32:57 +00:00
|
|
|
BasicRanged {
|
2020-03-24 13:42:31 +00:00
|
|
|
prepare_duration: Duration,
|
2020-03-16 11:32:57 +00:00
|
|
|
recover_duration: Duration,
|
|
|
|
projectile: Projectile,
|
|
|
|
projectile_body: Body,
|
|
|
|
},
|
2020-03-22 19:39:50 +00:00
|
|
|
CastFireball {
|
2020-03-24 13:42:31 +00:00
|
|
|
prepare_duration: Duration,
|
2020-03-22 19:39:50 +00:00
|
|
|
recover_duration: Duration,
|
|
|
|
projectile: Projectile,
|
|
|
|
projectile_body: Body,
|
|
|
|
},
|
2020-03-16 11:32:57 +00:00
|
|
|
Boost {
|
|
|
|
duration: Duration,
|
|
|
|
only_up: bool,
|
|
|
|
},
|
2020-03-16 15:34:53 +00:00
|
|
|
DashMelee {
|
|
|
|
buildup_duration: Duration,
|
|
|
|
recover_duration: Duration,
|
|
|
|
base_damage: u32,
|
|
|
|
},
|
2020-03-07 18:15:02 +00:00
|
|
|
BasicBlock,
|
|
|
|
Roll,
|
2020-03-12 14:36:02 +00:00
|
|
|
TimedCombo {
|
2020-03-14 18:50:07 +00:00
|
|
|
buildup_duration: Duration,
|
|
|
|
recover_duration: Duration,
|
2020-03-15 13:34:17 +00:00
|
|
|
base_damage: u32,
|
2020-03-12 14:36:02 +00:00
|
|
|
},
|
2020-03-19 22:40:03 +00:00
|
|
|
TripleStrike {
|
|
|
|
base_damage: u32,
|
|
|
|
},
|
2020-01-01 17:16:29 +00:00
|
|
|
}
|
|
|
|
|
2020-03-17 14:01:41 +00:00
|
|
|
impl CharacterAbility {
|
2020-03-21 22:55:20 +00:00
|
|
|
/// Attempts to fulfill requirements, mutating `update` (taking energy) if
|
|
|
|
/// applicable.
|
|
|
|
pub fn requirements_paid(&self, data: &JoinData, update: &mut StateUpdate) -> bool {
|
2020-03-17 14:01:41 +00:00
|
|
|
match self {
|
|
|
|
CharacterAbility::Roll => {
|
|
|
|
data.physics.on_ground
|
|
|
|
&& !data.physics.in_fluid
|
|
|
|
&& data.body.is_humanoid()
|
|
|
|
&& update
|
|
|
|
.energy
|
|
|
|
.try_change_by(-200, EnergySource::Ability)
|
|
|
|
.is_ok()
|
|
|
|
},
|
|
|
|
CharacterAbility::DashMelee { .. } => {
|
2020-03-19 17:33:10 +00:00
|
|
|
!data.physics.in_fluid
|
2020-03-17 14:01:41 +00:00
|
|
|
&& update
|
|
|
|
.energy
|
|
|
|
.try_change_by(-300, EnergySource::Ability)
|
|
|
|
.is_ok()
|
|
|
|
},
|
2020-03-22 19:39:50 +00:00
|
|
|
CharacterAbility::CastFireball { .. } => {
|
|
|
|
!data.physics.in_fluid
|
|
|
|
&& update
|
|
|
|
.energy
|
|
|
|
.try_change_by(-500, EnergySource::Ability)
|
|
|
|
.is_ok()
|
|
|
|
},
|
2020-03-17 14:01:41 +00:00
|
|
|
_ => true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-16 11:32:57 +00:00
|
|
|
#[derive(Clone, PartialEq, Debug, Serialize, Deserialize)]
|
2020-03-14 21:33:20 +00:00
|
|
|
pub struct ItemConfig {
|
|
|
|
pub item: Item,
|
2020-03-24 12:59:53 +00:00
|
|
|
pub ability1: Option<CharacterAbility>,
|
|
|
|
pub ability2: Option<CharacterAbility>,
|
|
|
|
pub ability3: Option<CharacterAbility>,
|
2020-03-14 21:33:20 +00:00
|
|
|
pub block_ability: Option<CharacterAbility>,
|
|
|
|
pub dodge_ability: Option<CharacterAbility>,
|
|
|
|
}
|
|
|
|
|
2020-03-16 11:32:57 +00:00
|
|
|
#[derive(Clone, PartialEq, Default, Debug, Serialize, Deserialize)]
|
2020-03-14 21:33:20 +00:00
|
|
|
pub struct Loadout {
|
|
|
|
pub active_item: Option<ItemConfig>,
|
|
|
|
pub second_item: Option<ItemConfig>,
|
2020-02-26 17:04:43 +00:00
|
|
|
|
|
|
|
pub shoulder: Option<Item>,
|
|
|
|
pub chest: Option<Item>,
|
|
|
|
pub belt: Option<Item>,
|
|
|
|
pub hand: Option<Item>,
|
|
|
|
pub pants: Option<Item>,
|
|
|
|
pub foot: Option<Item>,
|
2020-01-01 17:16:29 +00:00
|
|
|
}
|
|
|
|
|
2020-03-16 11:32:57 +00:00
|
|
|
impl From<&CharacterAbility> for CharacterState {
|
|
|
|
fn from(ability: &CharacterAbility) -> Self {
|
2020-03-14 15:40:29 +00:00
|
|
|
match ability {
|
2020-03-16 11:32:57 +00:00
|
|
|
CharacterAbility::BasicMelee {
|
2020-03-14 15:40:29 +00:00
|
|
|
buildup_duration,
|
|
|
|
recover_duration,
|
2020-03-15 13:34:17 +00:00
|
|
|
base_damage,
|
2020-03-22 15:25:47 +00:00
|
|
|
range,
|
|
|
|
max_angle,
|
2020-03-16 11:32:57 +00:00
|
|
|
} => CharacterState::BasicMelee(basic_melee::Data {
|
2020-03-14 15:40:29 +00:00
|
|
|
exhausted: false,
|
2020-03-16 11:32:57 +00:00
|
|
|
buildup_duration: *buildup_duration,
|
|
|
|
recover_duration: *recover_duration,
|
|
|
|
base_damage: *base_damage,
|
2020-03-22 15:25:47 +00:00
|
|
|
range: *range,
|
|
|
|
max_angle: *max_angle,
|
2020-03-16 11:32:57 +00:00
|
|
|
}),
|
|
|
|
CharacterAbility::BasicRanged {
|
2020-03-24 13:42:31 +00:00
|
|
|
prepare_duration,
|
2020-03-14 15:40:29 +00:00
|
|
|
recover_duration,
|
2020-03-16 11:32:57 +00:00
|
|
|
projectile,
|
|
|
|
projectile_body,
|
|
|
|
} => CharacterState::BasicRanged(basic_ranged::Data {
|
|
|
|
exhausted: false,
|
|
|
|
prepare_timer: Duration::default(),
|
2020-03-24 13:42:31 +00:00
|
|
|
prepare_duration: *prepare_duration,
|
2020-03-22 19:39:50 +00:00
|
|
|
recover_duration: *recover_duration,
|
|
|
|
projectile: projectile.clone(),
|
|
|
|
projectile_body: *projectile_body,
|
|
|
|
}),
|
|
|
|
CharacterAbility::CastFireball {
|
2020-03-24 13:42:31 +00:00
|
|
|
prepare_duration,
|
2020-03-22 19:39:50 +00:00
|
|
|
recover_duration,
|
|
|
|
projectile,
|
|
|
|
projectile_body,
|
|
|
|
} => CharacterState::CastFireball(cast_fireball::Data {
|
|
|
|
exhausted: false,
|
2020-03-24 13:42:31 +00:00
|
|
|
prepare_duration: *prepare_duration,
|
2020-03-16 11:32:57 +00:00
|
|
|
recover_duration: *recover_duration,
|
|
|
|
projectile: projectile.clone(),
|
|
|
|
projectile_body: *projectile_body,
|
2020-03-14 18:50:07 +00:00
|
|
|
}),
|
2020-03-16 11:32:57 +00:00
|
|
|
CharacterAbility::Boost { duration, only_up } => CharacterState::Boost(boost::Data {
|
|
|
|
duration: *duration,
|
|
|
|
only_up: *only_up,
|
|
|
|
}),
|
2020-03-16 15:34:53 +00:00
|
|
|
CharacterAbility::DashMelee {
|
|
|
|
buildup_duration,
|
|
|
|
recover_duration,
|
|
|
|
base_damage,
|
|
|
|
} => CharacterState::DashMelee(dash_melee::Data {
|
2020-03-19 17:33:10 +00:00
|
|
|
initialize: true,
|
2020-03-16 15:34:53 +00:00
|
|
|
exhausted: false,
|
|
|
|
buildup_duration: *buildup_duration,
|
|
|
|
recover_duration: *recover_duration,
|
|
|
|
base_damage: *base_damage,
|
|
|
|
}),
|
2020-03-16 11:32:57 +00:00
|
|
|
CharacterAbility::BasicBlock => CharacterState::BasicBlock,
|
|
|
|
CharacterAbility::Roll => CharacterState::Roll(roll::Data {
|
2020-03-22 15:25:47 +00:00
|
|
|
remaining_duration: Duration::from_millis(300),
|
2020-03-14 21:17:27 +00:00
|
|
|
}),
|
2020-03-14 18:50:07 +00:00
|
|
|
CharacterAbility::TimedCombo {
|
|
|
|
buildup_duration,
|
|
|
|
recover_duration,
|
2020-03-15 13:34:17 +00:00
|
|
|
base_damage,
|
2020-03-14 21:17:27 +00:00
|
|
|
} => CharacterState::TimedCombo(timed_combo::Data {
|
2020-03-16 11:32:57 +00:00
|
|
|
buildup_duration: *buildup_duration,
|
|
|
|
recover_duration: *recover_duration,
|
2020-03-14 18:50:07 +00:00
|
|
|
stage: 0,
|
2020-03-14 15:40:29 +00:00
|
|
|
stage_exhausted: false,
|
2020-03-14 18:50:07 +00:00
|
|
|
stage_time_active: Duration::default(),
|
2020-03-16 11:32:57 +00:00
|
|
|
base_damage: *base_damage,
|
2020-03-14 18:50:07 +00:00
|
|
|
}),
|
2020-03-19 22:40:03 +00:00
|
|
|
CharacterAbility::TripleStrike { base_damage } => {
|
|
|
|
CharacterState::TripleStrike(triple_strike::Data {
|
|
|
|
base_damage: *base_damage,
|
|
|
|
stage: 0,
|
|
|
|
stage_exhausted: false,
|
|
|
|
stage_time_active: Duration::default(),
|
2020-03-20 22:03:29 +00:00
|
|
|
should_transition: true,
|
2020-03-21 21:55:04 +00:00
|
|
|
initialized: false,
|
2020-03-19 22:40:03 +00:00
|
|
|
})
|
|
|
|
},
|
2020-02-03 10:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-14 21:33:20 +00:00
|
|
|
impl Component for Loadout {
|
2020-03-21 22:55:20 +00:00
|
|
|
type Storage = FlaggedStorage<Self, IDVStorage<Self>>;
|
2020-01-01 17:16:29 +00:00
|
|
|
}
|