veloren/common/src/sys/stats.rs

50 lines
1.6 KiB
Rust
Raw Normal View History

use crate::{
comp::{Dying, HealthSource, Stats},
state::DeltaTime,
};
use log::warn;
use specs::{Entities, Join, Read, System, WriteStorage};
2019-06-09 19:33:20 +00:00
/// This system kills players
pub struct Sys;
impl<'a> System<'a> for Sys {
type SystemData = (
Entities<'a>,
Read<'a, DeltaTime>,
WriteStorage<'a, Stats>,
WriteStorage<'a, Dying>,
);
fn run(&mut self, (entities, dt, mut stats, mut dyings): Self::SystemData) {
for (entity, mut stat) in (&entities, &mut stats).join() {
if stat.should_die() && !stat.is_dead {
2019-06-30 20:25:37 +00:00
let _ = dyings.insert(
entity,
Dying {
2019-06-30 11:48:28 +00:00
cause: match stat.health.last_change {
Some(change) => change.2,
None => {
warn!("Nothing caused an entity to die!");
HealthSource::Unknown
}
},
},
2019-06-30 20:25:37 +00:00
);
stat.is_dead = true;
}
2019-06-30 11:48:28 +00:00
if let Some(change) = &mut stat.health.last_change {
change.1 += f64::from(dt.0);
}
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)
}
}
}
}