2021-11-18 10:28:49 -05:00
|
|
|
use specs::prelude::*;
|
|
|
|
|
2021-12-10 20:16:48 -05:00
|
|
|
use crate::components::{HungerClock, HungerState, SufferDamage};
|
|
|
|
use crate::game_log::GameLog;
|
|
|
|
use crate::RunState;
|
|
|
|
|
2021-11-18 10:28:49 -05:00
|
|
|
pub struct HungerSystem {}
|
|
|
|
|
|
|
|
impl<'a> System<'a> for HungerSystem {
|
|
|
|
#[allow(clippy::type_complexity)]
|
|
|
|
type SystemData = (
|
|
|
|
Entities<'a>,
|
|
|
|
WriteStorage<'a, HungerClock>,
|
|
|
|
ReadExpect<'a, Entity>, // The player
|
|
|
|
ReadExpect<'a, RunState>,
|
|
|
|
WriteStorage<'a, SufferDamage>,
|
|
|
|
WriteExpect<'a, GameLog>,
|
|
|
|
);
|
|
|
|
|
|
|
|
fn run(&mut self, data: Self::SystemData) {
|
|
|
|
let (entities, mut hunger_clock, player_entity, runstate, mut inflict_damage, mut log) =
|
|
|
|
data;
|
|
|
|
|
|
|
|
for (entity, mut clock) in (&entities, &mut hunger_clock).join() {
|
|
|
|
let mut proceed = false;
|
|
|
|
|
|
|
|
match *runstate {
|
|
|
|
RunState::PlayerTurn => {
|
|
|
|
if entity == *player_entity {
|
|
|
|
proceed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RunState::MonsterTurn => {
|
|
|
|
if entity != *player_entity {
|
|
|
|
proceed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => proceed = false,
|
|
|
|
}
|
|
|
|
|
|
|
|
if proceed {
|
|
|
|
clock.duration -= 1;
|
|
|
|
|
|
|
|
if clock.duration < 1 {
|
|
|
|
match clock.state {
|
|
|
|
HungerState::WellFed => {
|
|
|
|
clock.state = HungerState::Normal;
|
|
|
|
clock.duration = 200;
|
|
|
|
|
|
|
|
if entity == *player_entity {
|
2021-11-19 11:30:25 -05:00
|
|
|
log.append("You are no longer well fed.");
|
2021-11-18 10:28:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
HungerState::Normal => {
|
|
|
|
clock.state = HungerState::Hungry;
|
|
|
|
clock.duration = 200;
|
|
|
|
|
|
|
|
if entity == *player_entity {
|
2021-11-19 11:30:25 -05:00
|
|
|
log.append("You are hungry.");
|
2021-11-18 10:28:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
HungerState::Hungry => {
|
|
|
|
clock.state = HungerState::Starving;
|
|
|
|
clock.duration = 200;
|
|
|
|
|
|
|
|
if entity == *player_entity {
|
2021-11-19 11:30:25 -05:00
|
|
|
log.append("You are starving!");
|
2021-11-18 10:28:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
HungerState::Starving => {
|
|
|
|
// Inflict damage from hunger
|
|
|
|
if entity == *player_entity {
|
2021-11-19 11:30:25 -05:00
|
|
|
log.append("Your hunger pangs are getting painful!");
|
2021-11-18 10:28:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
SufferDamage::new_damage(&mut inflict_damage, entity, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|