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>,
|
2019-09-28 19:35:28 +00:00
|
|
|
WriteStorage<'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,
|
2019-09-28 19:35:28 +00:00
|
|
|
mut 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();
|
|
|
|
|
|
|
|
// 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()
|
|
|
|
{
|
|
|
|
// Hit ground
|
|
|
|
if physics.on_ground {
|
|
|
|
for effect in projectile.hit_ground.drain(..) {
|
|
|
|
match effect {
|
2019-09-28 19:35:28 +00:00
|
|
|
projectile::Effect::Stick => {
|
|
|
|
velocities.remove(entity);
|
|
|
|
}
|
2019-09-17 12:43:19 +00:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-29 08:37:07 +00:00
|
|
|
// Hit wall
|
|
|
|
if physics.on_wall.is_some() {
|
|
|
|
for effect in projectile.hit_wall.drain(..) {
|
|
|
|
match effect {
|
|
|
|
projectile::Effect::Stick => {
|
|
|
|
velocities.remove(entity);
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-29 08:37:07 +00:00
|
|
|
|
|
|
|
if let Some(vel) = velocities.get(entity) {
|
|
|
|
ori.0 = vel.0.normalized();
|
|
|
|
}
|
2019-09-17 12:43:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|