use crate::{combat::Attack, uid::Uid}; use serde::{Deserialize, Serialize}; use specs::{Component, DerefFlaggedStorage}; use specs_idvs::IdvStorage; use std::time::Duration; #[derive(Clone, Debug, Serialize, Deserialize)] pub struct Properties { pub attack: Attack, pub angle: f32, pub speed: f32, pub duration: Duration, pub owner: Option, pub specifier: FrontendSpecifier, } // TODO: Separate components out for cheaper network syncing #[derive(Clone, Debug, Serialize, Deserialize)] pub struct BeamSegment { pub properties: Properties, #[serde(skip)] /// Time that the beam segment was created at /// Used to calculate beam propagation /// Deserialized from the network as `None` pub creation: Option, } impl Component for BeamSegment { type Storage = DerefFlaggedStorage>; } impl std::ops::Deref for BeamSegment { type Target = Properties; fn deref(&self) -> &Properties { &self.properties } } #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] pub struct Beam { pub hit_entities: Vec, pub tick_dur: Duration, pub timer: Duration, } impl Component for Beam { type Storage = IdvStorage; } #[derive(Copy, Clone, Debug, Serialize, Deserialize, PartialEq)] pub enum FrontendSpecifier { Flamethrower, LifestealBeam, HealingBeam, Cultist, }