2022-01-05 10:01:05 -05:00
|
|
|
use ::rltk::RandomNumberGenerator;
|
2021-12-24 10:38:44 -05:00
|
|
|
use ::specs::prelude::*;
|
2021-10-29 15:15:22 -04:00
|
|
|
|
2022-01-05 10:01:05 -05:00
|
|
|
use crate::components::{
|
|
|
|
Equipped, InBackpack, LootTable, Name, Player, Pools, Position, SufferDamage,
|
|
|
|
};
|
2021-12-10 20:16:48 -05:00
|
|
|
use crate::game_log::GameLog;
|
2022-01-05 10:01:05 -05:00
|
|
|
use crate::raws::{get_item_drop, spawn_named_item, SpawnType, RAWS};
|
2022-01-04 16:17:45 -05:00
|
|
|
use crate::{Map, RunState};
|
2021-12-10 20:16:48 -05:00
|
|
|
|
2021-10-29 15:15:22 -04:00
|
|
|
pub struct DamageSystem {}
|
|
|
|
|
|
|
|
impl<'a> System<'a> for DamageSystem {
|
|
|
|
type SystemData = (
|
2022-01-03 16:30:14 -05:00
|
|
|
WriteStorage<'a, Pools>,
|
2021-10-29 15:15:22 -04:00
|
|
|
WriteStorage<'a, SufferDamage>,
|
2021-11-16 10:28:05 -05:00
|
|
|
ReadStorage<'a, Position>,
|
|
|
|
WriteExpect<'a, Map>,
|
|
|
|
Entities<'a>,
|
2021-10-29 15:15:22 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
fn run(&mut self, data: Self::SystemData) {
|
2021-11-16 10:28:05 -05:00
|
|
|
let (mut stats, mut damage, positions, mut map, entities) = data;
|
2021-10-29 15:15:22 -04:00
|
|
|
|
2021-11-16 10:28:05 -05:00
|
|
|
for (entity, mut stats, damage) in (&entities, &mut stats, &damage).join() {
|
2022-01-03 16:30:14 -05:00
|
|
|
stats.hit_points.current -= damage.amount.iter().sum::<i32>();
|
2021-11-16 10:28:05 -05:00
|
|
|
|
|
|
|
if let Some(pos) = positions.get(entity) {
|
|
|
|
let idx = map.xy_idx(pos.x, pos.y);
|
|
|
|
map.bloodstains.insert(idx);
|
|
|
|
}
|
2021-10-29 15:15:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
damage.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn delete_the_dead(ecs: &mut World) {
|
|
|
|
let mut dead: Vec<Entity> = Vec::new();
|
|
|
|
|
|
|
|
// Scope for the sake of the borrow checker
|
|
|
|
{
|
2022-01-03 16:30:14 -05:00
|
|
|
let combat_stats = ecs.read_storage::<Pools>();
|
2021-10-29 15:15:22 -04:00
|
|
|
let players = ecs.read_storage::<Player>();
|
2021-11-01 14:46:45 -04:00
|
|
|
let names = ecs.read_storage::<Name>();
|
2021-10-29 15:15:22 -04:00
|
|
|
let entities = ecs.entities();
|
2021-11-01 14:46:45 -04:00
|
|
|
let mut log = ecs.write_resource::<GameLog>();
|
|
|
|
|
2021-10-29 15:15:22 -04:00
|
|
|
for (entity, stats) in (&entities, &combat_stats).join() {
|
2022-01-03 16:30:14 -05:00
|
|
|
if stats.hit_points.current < 1 {
|
|
|
|
match players.get(entity) {
|
2021-11-01 14:46:45 -04:00
|
|
|
None => {
|
2021-11-19 19:52:15 -05:00
|
|
|
if let Some(victim_name) = names.get(entity) {
|
2021-11-19 11:30:25 -05:00
|
|
|
log.append(format!("{} is dead", &victim_name.name));
|
2021-11-01 14:46:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dead.push(entity)
|
|
|
|
}
|
2021-11-15 13:27:40 -05:00
|
|
|
Some(_) => {
|
|
|
|
let mut runstate = ecs.write_resource::<RunState>();
|
|
|
|
*runstate = RunState::GameOver;
|
|
|
|
}
|
2021-10-29 15:15:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-04 16:17:45 -05:00
|
|
|
// Drop everything held by dead people
|
2022-01-05 10:01:05 -05:00
|
|
|
let mut to_spawn: Vec<(String, Position)> = Vec::new();
|
2022-01-04 16:17:45 -05:00
|
|
|
{
|
|
|
|
// To avoid hold of borrowed entires, use a scope
|
|
|
|
let mut to_drop: Vec<(Entity, Position)> = Vec::new();
|
|
|
|
let entities = ecs.entities();
|
|
|
|
let mut equipped = ecs.write_storage::<Equipped>();
|
|
|
|
let mut carried = ecs.write_storage::<InBackpack>();
|
|
|
|
let mut positions = ecs.write_storage::<Position>();
|
2022-01-05 10:01:05 -05:00
|
|
|
let loot_tables = ecs.read_storage::<LootTable>();
|
|
|
|
let mut rng = ecs.write_resource::<RandomNumberGenerator>();
|
2022-01-04 16:17:45 -05:00
|
|
|
|
|
|
|
for victim in dead.iter() {
|
2022-01-05 10:01:05 -05:00
|
|
|
let pos = positions.get(*victim);
|
2022-01-04 16:17:45 -05:00
|
|
|
for (entity, equipped) in (&entities, &equipped).join() {
|
|
|
|
if equipped.owner == *victim {
|
|
|
|
// Drop their stuff
|
2022-01-05 10:01:05 -05:00
|
|
|
if let Some(pos) = pos {
|
2022-01-04 16:17:45 -05:00
|
|
|
to_drop.push((entity, *pos));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (entity, backpack) in (&entities, &carried).join() {
|
|
|
|
if backpack.owner == *victim {
|
|
|
|
// Drop their stuff
|
2022-01-05 10:01:05 -05:00
|
|
|
if let Some(pos) = pos {
|
2022-01-04 16:17:45 -05:00
|
|
|
to_drop.push((entity, *pos));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-05 10:01:05 -05:00
|
|
|
|
|
|
|
if let Some(table) = loot_tables.get(*victim) {
|
|
|
|
let drop_finder =
|
|
|
|
get_item_drop(&crate::raws::RAWS.lock().unwrap(), &mut rng, &table.table);
|
|
|
|
if let Some(tag) = drop_finder {
|
|
|
|
if let Some(pos) = pos {
|
|
|
|
to_spawn.push((tag, *pos));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-04 16:17:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
for drop in to_drop.iter() {
|
|
|
|
equipped.remove(drop.0);
|
|
|
|
carried.remove(drop.0);
|
|
|
|
positions
|
|
|
|
.insert(drop.0, drop.1)
|
|
|
|
.expect("Unable to insert position");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-05 10:01:05 -05:00
|
|
|
{
|
|
|
|
for drop in to_spawn.iter() {
|
|
|
|
spawn_named_item(
|
|
|
|
&RAWS.lock().unwrap(),
|
|
|
|
ecs,
|
|
|
|
&drop.0,
|
|
|
|
SpawnType::AtPosition {
|
|
|
|
x: drop.1.x,
|
|
|
|
y: drop.1.y,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-29 15:15:22 -04:00
|
|
|
for victim in dead {
|
|
|
|
ecs.delete_entity(victim)
|
|
|
|
.expect("Unable to delete the dead");
|
|
|
|
}
|
|
|
|
}
|