mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
56 lines
1.4 KiB
Rust
56 lines
1.4 KiB
Rust
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<Uid>,
|
|
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<f64>,
|
|
}
|
|
|
|
impl Component for BeamSegment {
|
|
type Storage = DerefFlaggedStorage<Self, IdvStorage<Self>>;
|
|
}
|
|
|
|
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<Uid>,
|
|
pub tick_dur: Duration,
|
|
pub timer: Duration,
|
|
}
|
|
|
|
impl Component for Beam {
|
|
type Storage = IdvStorage<Self>;
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, Serialize, Deserialize, PartialEq)]
|
|
pub enum FrontendSpecifier {
|
|
Flamethrower,
|
|
LifestealBeam,
|
|
HealingBeam,
|
|
Cultist,
|
|
}
|