2020-03-14 18:50:07 +00:00
|
|
|
use crate::{
|
|
|
|
comp::{CharacterState, ToolData},
|
|
|
|
states::*,
|
|
|
|
};
|
2020-03-07 18:15:02 +00:00
|
|
|
use specs::{Component, DenseVecStorage, FlaggedStorage, HashMapStorage};
|
2020-03-14 15:40:29 +00:00
|
|
|
use std::time::Duration;
|
2020-01-01 17:16:29 +00:00
|
|
|
|
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Serialize, Deserialize, Eq, Hash)]
|
2020-03-14 15:40:29 +00:00
|
|
|
pub enum CharacterAbility {
|
2020-03-12 14:36:02 +00:00
|
|
|
BasicAttack {
|
2020-03-14 15:40:29 +00:00
|
|
|
buildup_duration: Duration,
|
|
|
|
recover_duration: Duration,
|
2020-03-12 14:36:02 +00:00
|
|
|
},
|
2020-03-07 18:15:02 +00:00
|
|
|
BasicBlock,
|
|
|
|
Roll,
|
2020-03-08 17:04:26 +00:00
|
|
|
ChargeAttack,
|
2020-03-12 14:36:02 +00:00
|
|
|
TimedCombo {
|
2020-03-14 18:50:07 +00:00
|
|
|
tool: ToolData,
|
|
|
|
buildup_duration: Duration,
|
|
|
|
recover_duration: Duration,
|
2020-03-12 14:36:02 +00:00
|
|
|
},
|
2020-01-01 17:16:29 +00:00
|
|
|
}
|
|
|
|
|
2020-03-14 15:40:29 +00:00
|
|
|
impl Component for CharacterAbility {
|
2020-03-07 18:15:02 +00:00
|
|
|
type Storage = DenseVecStorage<Self>;
|
2020-01-01 17:16:29 +00:00
|
|
|
}
|
|
|
|
|
2020-03-14 15:40:29 +00:00
|
|
|
#[derive(Copy, Clone, Default, Debug, Serialize, Deserialize)]
|
2020-01-01 17:16:29 +00:00
|
|
|
pub struct AbilityPool {
|
2020-03-14 15:40:29 +00:00
|
|
|
pub primary: Option<CharacterAbility>,
|
|
|
|
pub secondary: Option<CharacterAbility>,
|
|
|
|
pub block: Option<CharacterAbility>,
|
|
|
|
pub dodge: Option<CharacterAbility>,
|
2020-01-01 17:16:29 +00:00
|
|
|
}
|
|
|
|
|
2020-03-14 15:40:29 +00:00
|
|
|
impl From<CharacterAbility> for CharacterState {
|
|
|
|
fn from(ability: CharacterAbility) -> Self {
|
|
|
|
match ability {
|
|
|
|
CharacterAbility::BasicAttack {
|
|
|
|
buildup_duration,
|
|
|
|
recover_duration,
|
2020-03-14 21:17:27 +00:00
|
|
|
} => CharacterState::BasicAttack(basic_attack::Data {
|
2020-03-14 15:40:29 +00:00
|
|
|
exhausted: false,
|
|
|
|
buildup_duration,
|
|
|
|
recover_duration,
|
2020-03-14 18:50:07 +00:00
|
|
|
}),
|
2020-03-14 21:17:27 +00:00
|
|
|
CharacterAbility::BasicBlock { .. } => CharacterState::BasicBlock,
|
|
|
|
CharacterAbility::Roll { .. } => CharacterState::Roll(roll::Data {
|
2020-03-14 15:40:29 +00:00
|
|
|
remaining_duration: Duration::from_millis(600),
|
2020-03-14 21:17:27 +00:00
|
|
|
}),
|
|
|
|
CharacterAbility::ChargeAttack { .. } => {
|
|
|
|
CharacterState::ChargeAttack(charge_attack::Data {
|
|
|
|
remaining_duration: Duration::from_millis(600),
|
|
|
|
})
|
2020-03-14 15:40:29 +00:00
|
|
|
},
|
2020-03-14 18:50:07 +00:00
|
|
|
CharacterAbility::TimedCombo {
|
|
|
|
tool,
|
|
|
|
buildup_duration,
|
|
|
|
recover_duration,
|
2020-03-14 21:17:27 +00:00
|
|
|
} => CharacterState::TimedCombo(timed_combo::Data {
|
2020-03-14 18:50:07 +00:00
|
|
|
tool,
|
|
|
|
buildup_duration,
|
|
|
|
recover_duration,
|
|
|
|
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-02-03 10:54:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-01 17:16:29 +00:00
|
|
|
impl Component for AbilityPool {
|
2020-01-07 15:49:08 +00:00
|
|
|
type Storage = FlaggedStorage<Self, HashMapStorage<Self>>;
|
2020-01-01 17:16:29 +00:00
|
|
|
}
|