veloren/common/src/sys/projectile.rs

92 lines
2.7 KiB
Rust
Raw Normal View History

2019-09-17 12:43:19 +00:00
use crate::{
2019-09-26 16:48:37 +00:00
comp::{projectile, HealthSource, Ori, PhysicsState, Projectile, Vel},
2019-09-17 12:43:19 +00:00
event::{EventBus, ServerEvent},
};
use specs::{Entities, Join, Read, ReadStorage, System, WriteStorage};
/// This system is responsible for handling projectile effect triggers
pub struct Sys;
impl<'a> System<'a> for Sys {
type SystemData = (
Entities<'a>,
Read<'a, EventBus<ServerEvent>>,
ReadStorage<'a, PhysicsState>,
ReadStorage<'a, Vel>,
2019-09-21 12:43:24 +00:00
WriteStorage<'a, Ori>,
2019-09-17 12:43:19 +00:00
WriteStorage<'a, Projectile>,
);
fn run(
&mut self,
(
entities,
server_bus,
physics_states,
velocities,
2019-09-21 12:43:24 +00:00
mut orientations,
2019-09-17 12:43:19 +00:00
mut projectiles,
): Self::SystemData,
) {
let mut server_emitter = server_bus.emitter();
let mut todo = Vec::new();
2019-09-17 12:43:19 +00:00
// Attacks
2019-09-28 19:35:28 +00:00
for (entity, physics, ori, projectile) in (
2019-09-17 12:43:19 +00:00
&entities,
&physics_states,
2019-09-21 12:43:24 +00:00
&mut orientations,
2019-09-17 12:43:19 +00:00
&mut projectiles,
)
.join()
{
2019-09-21 12:43:24 +00:00
// Hit entity
if let Some(other) = physics.touch_entity {
2019-09-17 12:43:19 +00:00
for effect in projectile.hit_entity.drain(..) {
match effect {
2019-09-21 12:43:24 +00:00
projectile::Effect::Damage(power) => {
server_emitter.emit(ServerEvent::Damage {
uid: other,
2019-09-25 21:31:25 +00:00
dmg: power,
2019-09-21 12:43:24 +00:00
cause: HealthSource::Projectile,
})
}
2019-09-17 12:43:19 +00:00
projectile::Effect::Vanish => server_emitter.emit(ServerEvent::Destroy {
entity,
cause: HealthSource::World,
}),
2019-09-28 19:35:28 +00:00
_ => {}
2019-09-17 12:43:19 +00:00
}
}
todo.push(entity);
2019-09-17 12:43:19 +00:00
}
// Hit ground
else if physics.on_ground {
for effect in projectile.hit_ground.drain(..) {
match effect {
_ => {}
}
}
todo.push(entity);
2019-09-29 08:37:07 +00:00
}
// Hit wall
else if physics.on_wall.is_some() {
for effect in projectile.hit_wall.drain(..) {
match effect {
_ => {}
}
}
todo.push(entity);
} else {
if let Some(vel) = velocities.get(entity) {
ori.0 = vel.0.normalized();
}
}
}
for entity in todo {
projectiles.remove(entity);
2019-09-17 12:43:19 +00:00
}
}
}