2020-12-01 00:28:00 +00:00
|
|
|
use crate::{
|
|
|
|
comp::{
|
2021-01-26 00:31:06 +00:00
|
|
|
Beam, Body, CharacterState, ControlAction, Controller, ControllerInputs, Energy, Health,
|
2021-02-02 18:02:40 +00:00
|
|
|
Inventory, Melee, Ori, PhysicsState, Pos, StateUpdate, Stats, Vel,
|
2020-12-01 00:28:00 +00:00
|
|
|
},
|
|
|
|
resources::DeltaTime,
|
2020-12-13 17:11:55 +00:00
|
|
|
uid::Uid,
|
2020-12-01 00:28:00 +00:00
|
|
|
};
|
|
|
|
use specs::{
|
|
|
|
hibitset,
|
|
|
|
storage::{PairedStorage, SequentialRestriction},
|
2021-01-07 20:25:12 +00:00
|
|
|
DerefFlaggedStorage, Entity, LazyUpdate,
|
2020-12-01 00:28:00 +00:00
|
|
|
};
|
|
|
|
use specs_idvs::IdvStorage;
|
|
|
|
|
|
|
|
pub trait CharacterBehavior {
|
|
|
|
fn behavior(&self, data: &JoinData) -> StateUpdate;
|
|
|
|
// Impl these to provide behavior for these inputs
|
|
|
|
fn swap_loadout(&self, data: &JoinData) -> StateUpdate { StateUpdate::from(data) }
|
|
|
|
fn wield(&self, data: &JoinData) -> StateUpdate { StateUpdate::from(data) }
|
|
|
|
fn glide_wield(&self, data: &JoinData) -> StateUpdate { StateUpdate::from(data) }
|
|
|
|
fn unwield(&self, data: &JoinData) -> StateUpdate { StateUpdate::from(data) }
|
|
|
|
fn sit(&self, data: &JoinData) -> StateUpdate { StateUpdate::from(data) }
|
|
|
|
fn dance(&self, data: &JoinData) -> StateUpdate { StateUpdate::from(data) }
|
|
|
|
fn sneak(&self, data: &JoinData) -> StateUpdate { StateUpdate::from(data) }
|
|
|
|
fn stand(&self, data: &JoinData) -> StateUpdate { StateUpdate::from(data) }
|
2021-01-31 20:29:50 +00:00
|
|
|
fn talk(&self, data: &JoinData) -> StateUpdate { StateUpdate::from(data) }
|
2020-12-01 00:28:00 +00:00
|
|
|
fn handle_event(&self, data: &JoinData, event: ControlAction) -> StateUpdate {
|
|
|
|
match event {
|
|
|
|
ControlAction::SwapLoadout => self.swap_loadout(data),
|
|
|
|
ControlAction::Wield => self.wield(data),
|
|
|
|
ControlAction::GlideWield => self.glide_wield(data),
|
|
|
|
ControlAction::Unwield => self.unwield(data),
|
|
|
|
ControlAction::Sit => self.sit(data),
|
|
|
|
ControlAction::Dance => self.dance(data),
|
|
|
|
ControlAction::Sneak => self.sneak(data),
|
|
|
|
ControlAction::Stand => self.stand(data),
|
2021-01-31 20:29:50 +00:00
|
|
|
ControlAction::Talk => self.talk(data),
|
2020-12-01 00:28:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// fn init(data: &JoinData) -> CharacterState;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Read-Only Data sent from Character Behavior System to behavior fn's
|
|
|
|
pub struct JoinData<'a> {
|
|
|
|
pub entity: Entity,
|
|
|
|
pub uid: &'a Uid,
|
|
|
|
pub character: &'a CharacterState,
|
|
|
|
pub pos: &'a Pos,
|
|
|
|
pub vel: &'a Vel,
|
|
|
|
pub ori: &'a Ori,
|
|
|
|
pub dt: &'a DeltaTime,
|
|
|
|
pub controller: &'a Controller,
|
|
|
|
pub inputs: &'a ControllerInputs,
|
|
|
|
pub health: &'a Health,
|
|
|
|
pub energy: &'a Energy,
|
2021-01-08 19:12:09 +00:00
|
|
|
pub inventory: &'a Inventory,
|
2020-12-01 00:28:00 +00:00
|
|
|
pub body: &'a Body,
|
|
|
|
pub physics: &'a PhysicsState,
|
2021-02-02 18:02:40 +00:00
|
|
|
pub melee_attack: Option<&'a Melee>,
|
2020-12-01 00:28:00 +00:00
|
|
|
pub updater: &'a LazyUpdate,
|
2020-12-07 03:35:29 +00:00
|
|
|
pub stats: &'a Stats,
|
2020-12-01 00:28:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type RestrictedMut<'a, C> = PairedStorage<
|
|
|
|
'a,
|
|
|
|
'a,
|
|
|
|
C,
|
2021-01-07 20:25:12 +00:00
|
|
|
&'a mut DerefFlaggedStorage<C, IdvStorage<C>>,
|
2020-12-01 00:28:00 +00:00
|
|
|
&'a hibitset::BitSet,
|
|
|
|
SequentialRestriction,
|
|
|
|
>;
|
|
|
|
|
|
|
|
pub type JoinTuple<'a> = (
|
|
|
|
Entity,
|
|
|
|
&'a Uid,
|
|
|
|
RestrictedMut<'a, CharacterState>,
|
|
|
|
&'a mut Pos,
|
|
|
|
&'a mut Vel,
|
|
|
|
&'a mut Ori,
|
|
|
|
RestrictedMut<'a, Energy>,
|
2021-01-08 19:12:09 +00:00
|
|
|
RestrictedMut<'a, Inventory>,
|
2020-12-01 00:28:00 +00:00
|
|
|
&'a mut Controller,
|
|
|
|
&'a Health,
|
|
|
|
&'a Body,
|
|
|
|
&'a PhysicsState,
|
2021-02-02 18:02:40 +00:00
|
|
|
Option<&'a Melee>,
|
2020-12-01 00:28:00 +00:00
|
|
|
Option<&'a Beam>,
|
2020-12-07 03:35:29 +00:00
|
|
|
&'a Stats,
|
2020-12-01 00:28:00 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
impl<'a> JoinData<'a> {
|
|
|
|
pub fn new(j: &'a JoinTuple<'a>, updater: &'a LazyUpdate, dt: &'a DeltaTime) -> Self {
|
|
|
|
Self {
|
|
|
|
entity: j.0,
|
|
|
|
uid: j.1,
|
|
|
|
character: j.2.get_unchecked(),
|
|
|
|
pos: j.3,
|
|
|
|
vel: j.4,
|
|
|
|
ori: j.5,
|
|
|
|
energy: j.6.get_unchecked(),
|
2021-01-08 19:12:09 +00:00
|
|
|
inventory: j.7.get_unchecked(),
|
2020-12-01 00:28:00 +00:00
|
|
|
controller: j.8,
|
|
|
|
inputs: &j.8.inputs,
|
|
|
|
health: j.9,
|
|
|
|
body: j.10,
|
|
|
|
physics: j.11,
|
2021-01-26 00:31:06 +00:00
|
|
|
melee_attack: j.12,
|
2020-12-07 03:35:29 +00:00
|
|
|
stats: j.14,
|
2020-12-01 00:28:00 +00:00
|
|
|
updater,
|
|
|
|
dt,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|