veloren/common/src/comp/projectile.rs

46 lines
1.2 KiB
Rust
Raw Normal View History

2019-11-24 20:12:03 +00:00
use crate::{comp, sync::Uid};
use serde::{Deserialize, Serialize};
2019-09-26 16:48:37 +00:00
use specs::{Component, FlaggedStorage};
use specs_idvs::IdvStorage;
use std::time::Duration;
2019-09-17 12:43:19 +00:00
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
2019-09-17 12:43:19 +00:00
pub enum Effect {
Damage(comp::HealthChange),
Knockback(f32),
2020-03-27 16:07:19 +00:00
RewardEnergy(u32),
2020-03-22 19:39:50 +00:00
Explode { power: f32 },
2019-09-17 12:43:19 +00:00
Vanish,
2019-09-28 19:35:28 +00:00
Stick,
Possess,
2019-09-17 12:43:19 +00:00
}
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
2019-09-17 12:43:19 +00:00
pub struct Projectile {
2019-11-04 00:57:36 +00:00
// TODO: use SmallVec for these effects
2020-04-26 15:16:35 +00:00
pub hit_solid: Vec<Effect>,
2019-09-17 12:43:19 +00:00
pub hit_entity: Vec<Effect>,
/// Time left until the projectile will despawn
pub time_left: Duration,
pub owner: Option<Uid>,
2019-09-17 12:43:19 +00:00
}
impl Projectile {
pub fn set_owner(&mut self, new_owner: Uid) {
self.owner = Some(new_owner);
2020-04-26 16:54:51 +00:00
for e in self.hit_solid.iter_mut().chain(self.hit_entity.iter_mut()) {
if let Effect::Damage(comp::HealthChange {
cause: comp::HealthSource::Projectile { owner, .. },
..
}) = e
{
*owner = Some(new_owner);
}
}
}
}
2019-09-17 12:43:19 +00:00
impl Component for Projectile {
type Storage = FlaggedStorage<Self, IdvStorage<Self>>;
2019-09-17 12:43:19 +00:00
}