2019-05-17 20:47:58 +00:00
|
|
|
use crate::{
|
2019-08-23 10:11:37 +00:00
|
|
|
comp::{HealthSource, Stats},
|
2019-08-25 16:48:12 +00:00
|
|
|
event::{EventBus, ServerEvent},
|
2019-05-17 20:47:58 +00:00
|
|
|
state::DeltaTime,
|
|
|
|
};
|
2019-06-06 14:48:41 +00:00
|
|
|
use log::warn;
|
|
|
|
use specs::{Entities, Join, Read, System, WriteStorage};
|
2019-05-17 20:47:58 +00:00
|
|
|
|
2019-06-09 19:33:20 +00:00
|
|
|
/// This system kills players
|
2019-05-17 20:47:58 +00:00
|
|
|
pub struct Sys;
|
|
|
|
impl<'a> System<'a> for Sys {
|
|
|
|
type SystemData = (
|
|
|
|
Entities<'a>,
|
2019-05-19 20:14:18 +00:00
|
|
|
Read<'a, DeltaTime>,
|
2019-08-25 14:49:54 +00:00
|
|
|
Read<'a, EventBus<ServerEvent>>,
|
2019-05-19 20:14:18 +00:00
|
|
|
WriteStorage<'a, Stats>,
|
2019-05-17 20:47:58 +00:00
|
|
|
);
|
|
|
|
|
2019-08-23 10:11:37 +00:00
|
|
|
fn run(&mut self, (entities, dt, event_bus, mut stats): Self::SystemData) {
|
|
|
|
let mut event_emitter = event_bus.emitter();
|
|
|
|
|
2019-05-19 20:14:18 +00:00
|
|
|
for (entity, mut stat) in (&entities, &mut stats).join() {
|
2019-05-27 17:45:43 +00:00
|
|
|
if stat.should_die() && !stat.is_dead {
|
2019-08-25 14:49:54 +00:00
|
|
|
event_emitter.emit(ServerEvent::Die {
|
2019-05-27 19:41:24 +00:00
|
|
|
entity,
|
2019-08-23 10:11:37 +00:00
|
|
|
cause: match stat.health.last_change {
|
|
|
|
Some(change) => change.2,
|
|
|
|
None => {
|
|
|
|
warn!("Nothing caused an entity to die!");
|
|
|
|
HealthSource::Unknown
|
|
|
|
}
|
2019-05-27 19:41:24 +00:00
|
|
|
},
|
2019-08-23 10:11:37 +00:00
|
|
|
});
|
|
|
|
|
2019-05-27 17:45:43 +00:00
|
|
|
stat.is_dead = true;
|
2019-05-17 20:47:58 +00:00
|
|
|
}
|
2019-08-23 10:11:37 +00:00
|
|
|
|
2019-06-30 11:48:28 +00:00
|
|
|
if let Some(change) = &mut stat.health.last_change {
|
2019-07-01 20:42:43 +00:00
|
|
|
change.1 += f64::from(dt.0);
|
2019-05-19 20:14:18 +00:00
|
|
|
}
|
2019-08-03 19:30:01 +00:00
|
|
|
|
|
|
|
if stat.exp.current() >= stat.exp.maximum() {
|
|
|
|
stat.exp.change_by(-stat.exp.maximum());
|
|
|
|
stat.exp.change_maximum_by(25.0);
|
|
|
|
stat.level.change_by(1);
|
|
|
|
stat.health.set_maximum(stat.health.maximum() + 10);
|
|
|
|
stat.health
|
|
|
|
.set_to(stat.health.maximum(), HealthSource::LevelUp)
|
|
|
|
}
|
2019-05-17 20:47:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|