use crate::{ comp::{ AbilityPool, Body, ControllerInputs, Energy, Ori, PhysicsState, Pos, Stats, ToolData, Vel, }, event::{LocalEvent, ServerEvent}, state::DeltaTime, states::*, sync::Uid, }; use serde::{Deserialize, Serialize}; use specs::{Component, Entity, FlaggedStorage, HashMapStorage, LazyUpdate, VecStorage}; use std::collections::VecDeque; pub struct EcsStateData<'a> { pub entity: &'a 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 inputs: &'a ControllerInputs, pub stats: &'a Stats, pub energy: &'a Energy, pub body: &'a Body, pub physics: &'a PhysicsState, pub ability_pool: &'a AbilityPool, pub updater: &'a LazyUpdate, } pub struct StateUpdate { pub character: CharacterState, pub pos: Pos, pub vel: Vel, pub ori: Ori, pub energy: Energy, pub local_events: VecDeque, pub server_events: VecDeque, } #[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize, Eq, Hash)] pub enum CharacterState { Idle(Option), Climb(Option), Sit(Option), Wielding(Option), Wielded(Option), Glide(Option), BasicAttack(Option), BasicBlock(Option), //Charge(Option), Roll(Option), } impl CharacterState { pub fn is_wielded(&self) -> bool { match self { CharacterState::Wielded(_) => true, CharacterState::BasicAttack(_) => true, CharacterState::BasicBlock(_) => true, _ => false, } } pub fn is_attack(&self) -> bool { match self { CharacterState::BasicAttack(_) => true, _ => false, } } pub fn is_block(&self) -> bool { match self { CharacterState::BasicBlock(_) => true, _ => false, } } pub fn is_dodge(&self) -> bool { match self { CharacterState::Roll(_) => true, _ => false, } } /// Compares for shallow equality (does not check internal struct equality) pub fn equals(&self, other: &Self) -> bool { // Check if state is the same without looking at the inner data std::mem::discriminant(self) == std::mem::discriminant(other) } /// Passes data to variant or subvariant handlers /// States contain `Option`s, and will be /// `None` if state data has not been initialized. So we have to /// check and intialize new state data if so. pub fn update(&self, ecs_data: &EcsStateData) -> StateUpdate { match self { CharacterState::Idle(opt_state) => opt_state // If data hasn't been initialized, initialize a new one .unwrap_or_else(|| idle::State::new(ecs_data)) // Call handler .handle(ecs_data), CharacterState::Climb(opt_state) => opt_state .unwrap_or_else(|| climb::State::new(ecs_data)) .handle(ecs_data), CharacterState::Sit(opt_state) => opt_state .unwrap_or_else(|| sit::State::new(ecs_data)) .handle(ecs_data), CharacterState::Wielding(opt_state) => opt_state .unwrap_or_else(|| wielding::State::new(ecs_data)) .handle(ecs_data), CharacterState::Wielded(opt_state) => opt_state .unwrap_or_else(|| wielded::State::new(ecs_data)) .handle(ecs_data), CharacterState::BasicAttack(opt_state) => opt_state .unwrap_or_else(|| basic_attack::State::new(ecs_data)) .handle(ecs_data), CharacterState::BasicBlock(opt_state) => opt_state .unwrap_or_else(|| basic_block::State::new(ecs_data)) .handle(ecs_data), /*CharacterState::Charge(opt_state) => opt_state .unwrap_or_else(|| charge_attack::State::new(ecs_data)) .handle(ecs_data),*/ CharacterState::Roll(opt_state) => opt_state .unwrap_or_else(|| roll::State::new(ecs_data)) .handle(ecs_data), CharacterState::Glide(opt_state) => opt_state .unwrap_or_else(|| glide::State::new(ecs_data)) .handle(ecs_data), /* All states should be explicitly handled * DO NOT use default match: _ => {}, */ } } } impl Default for CharacterState { fn default() -> Self { Self::Idle(None) } } impl Component for CharacterState { type Storage = FlaggedStorage>; } #[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize, Eq, Hash)] pub struct Attacking { pub weapon: ToolData, } impl Component for Attacking { type Storage = VecStorage; }