2019-10-11 23:30:05 +00:00
|
|
|
use crate::state::Uid;
|
2019-09-26 16:48:37 +00:00
|
|
|
use specs::{Component, FlaggedStorage};
|
2019-09-17 12:43:19 +00:00
|
|
|
use specs_idvs::IDVStorage;
|
2019-10-06 17:30:06 +00:00
|
|
|
use std::time::Duration;
|
2019-09-17 12:43:19 +00:00
|
|
|
|
|
|
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
|
|
|
pub enum Effect {
|
|
|
|
Damage(u32),
|
|
|
|
Vanish,
|
2019-09-28 19:35:28 +00:00
|
|
|
Stick,
|
2019-10-11 23:30:05 +00:00
|
|
|
Possess,
|
2019-09-17 12:43:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
|
|
|
pub struct Projectile {
|
2019-10-11 23:30:05 +00:00
|
|
|
pub owner: Option<Uid>,
|
2019-09-17 12:43:19 +00:00
|
|
|
pub hit_ground: Vec<Effect>,
|
2019-09-29 08:37:07 +00:00
|
|
|
pub hit_wall: Vec<Effect>,
|
2019-09-17 12:43:19 +00:00
|
|
|
pub hit_entity: Vec<Effect>,
|
2019-10-06 17:30:06 +00:00
|
|
|
/// Time left until the projectile will despawn
|
|
|
|
pub time_left: Duration,
|
2019-09-17 12:43:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Component for Projectile {
|
|
|
|
type Storage = FlaggedStorage<Self, IDVStorage<Self>>;
|
|
|
|
}
|