Add more difficulty
This commit is contained in:
parent
e68fa87fc9
commit
fb5b70ce3b
1
savegame.json
Normal file
1
savegame.json
Normal file
File diff suppressed because one or more lines are too long
10
src/gui.rs
10
src/gui.rs
@ -53,6 +53,16 @@ pub fn draw_ui(ecs: &World, ctx: &mut Rltk) {
|
|||||||
y += 1;
|
y += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let map = ecs.fetch::<Map>();
|
||||||
|
let depth = format!("Depth: {}", map.depth);
|
||||||
|
ctx.print_color(
|
||||||
|
2,
|
||||||
|
43,
|
||||||
|
RGB::named(rltk::YELLOW),
|
||||||
|
RGB::named(rltk::BLACK),
|
||||||
|
&depth,
|
||||||
|
);
|
||||||
|
|
||||||
// Draw mouse
|
// Draw mouse
|
||||||
let mouse_pos = ctx.mouse_pos();
|
let mouse_pos = ctx.mouse_pos();
|
||||||
ctx.set_bg(mouse_pos.0, mouse_pos.1, RGB::named(rltk::MAGENTA));
|
ctx.set_bg(mouse_pos.0, mouse_pos.1, RGB::named(rltk::MAGENTA));
|
||||||
|
92
src/main.rs
92
src/main.rs
@ -13,6 +13,7 @@ use monster_ai_system::*;
|
|||||||
use player::*;
|
use player::*;
|
||||||
use visibility_system::*;
|
use visibility_system::*;
|
||||||
|
|
||||||
|
use crate::gamelog::GameLog;
|
||||||
use crate::inventory_system::{ItemCollectionSystem, ItemDropSystem, ItemUseSystem};
|
use crate::inventory_system::{ItemCollectionSystem, ItemDropSystem, ItemUseSystem};
|
||||||
|
|
||||||
mod components;
|
mod components;
|
||||||
@ -25,6 +26,7 @@ mod map_indexing_system;
|
|||||||
mod melee_combat_system;
|
mod melee_combat_system;
|
||||||
mod monster_ai_system;
|
mod monster_ai_system;
|
||||||
mod player;
|
mod player;
|
||||||
|
mod random_table;
|
||||||
mod rect;
|
mod rect;
|
||||||
mod save_load_system;
|
mod save_load_system;
|
||||||
mod spawner;
|
mod spawner;
|
||||||
@ -46,12 +48,94 @@ pub enum RunState {
|
|||||||
menu_selection: gui::MainMenuSelection,
|
menu_selection: gui::MainMenuSelection,
|
||||||
},
|
},
|
||||||
SaveGame,
|
SaveGame,
|
||||||
|
NextLevel,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct State {
|
pub struct State {
|
||||||
pub ecs: World,
|
pub ecs: World,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl State {
|
||||||
|
fn entities_to_remove_on_level_change(&mut self) -> Vec<Entity> {
|
||||||
|
let entities = self.ecs.entities();
|
||||||
|
let player = self.ecs.read_storage::<Player>();
|
||||||
|
let backpack = self.ecs.read_storage::<InBackpack>();
|
||||||
|
let player_entity = self.ecs.fetch::<Entity>();
|
||||||
|
|
||||||
|
let mut to_delete: Vec<Entity> = Vec::new();
|
||||||
|
for entity in entities.join() {
|
||||||
|
let mut should_delete = true;
|
||||||
|
|
||||||
|
let p = player.get(entity);
|
||||||
|
if let Some(p) = p {
|
||||||
|
should_delete = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
let bp = backpack.get(entity);
|
||||||
|
if let Some(bp) = bp {
|
||||||
|
if bp.owner == *player_entity {
|
||||||
|
should_delete = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if should_delete {
|
||||||
|
to_delete.push(entity);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
to_delete
|
||||||
|
}
|
||||||
|
|
||||||
|
fn goto_next_level(&mut self) {
|
||||||
|
let to_delete = self.entities_to_remove_on_level_change();
|
||||||
|
for target in to_delete {
|
||||||
|
self.ecs
|
||||||
|
.delete_entity(target)
|
||||||
|
.expect("Unable to delete entity")
|
||||||
|
}
|
||||||
|
|
||||||
|
let worldmap;
|
||||||
|
let current_depth;
|
||||||
|
{
|
||||||
|
let mut worldmap_resource = self.ecs.write_resource::<Map>();
|
||||||
|
current_depth = worldmap_resource.depth;
|
||||||
|
*worldmap_resource = Map::new_map_rooms_and_corridors(current_depth + 1);
|
||||||
|
worldmap = worldmap_resource.clone();
|
||||||
|
}
|
||||||
|
|
||||||
|
for room in worldmap.rooms.iter().skip(1) {
|
||||||
|
spawner::spawn_room(&mut self.ecs, room, current_depth + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
let (player_x, player_y) = worldmap.rooms[0].center();
|
||||||
|
let mut player_position = self.ecs.write_resource::<Point>();
|
||||||
|
*player_position = Point::new(player_x, player_y);
|
||||||
|
let mut position_components = self.ecs.write_storage::<Position>();
|
||||||
|
let player_entity = self.ecs.fetch::<Entity>();
|
||||||
|
let player_pos_comp = position_components.get_mut(*player_entity);
|
||||||
|
if let Some(player_pos) = player_pos_comp {
|
||||||
|
player_pos.x = player_x;
|
||||||
|
player_pos.y = player_y;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut viewshed_components = self.ecs.write_storage::<Viewshed>();
|
||||||
|
let vs = viewshed_components.get_mut(*player_entity);
|
||||||
|
if let Some(vs) = vs {
|
||||||
|
vs.dirty = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut gamelog = self.ecs.fetch_mut::<GameLog>();
|
||||||
|
gamelog
|
||||||
|
.entries
|
||||||
|
.push("You descend to the next level, and take a moment to heal".to_string());
|
||||||
|
let mut player_health_store = self.ecs.write_storage::<CombatStats>();
|
||||||
|
let player_health = player_health_store.get_mut(*player_entity);
|
||||||
|
if let Some(player_health) = player_health {
|
||||||
|
player_health.hp = i32::max(player_health.hp, player_health.max_hp / 2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl State {
|
impl State {
|
||||||
fn run_systems(&mut self) {
|
fn run_systems(&mut self) {
|
||||||
let mut vis = VisibilitySystem {};
|
let mut vis = VisibilitySystem {};
|
||||||
@ -221,6 +305,10 @@ impl GameState for State {
|
|||||||
menu_selection: gui::MainMenuSelection::Quit,
|
menu_selection: gui::MainMenuSelection::Quit,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
RunState::NextLevel => {
|
||||||
|
self.goto_next_level();
|
||||||
|
new_run_state = RunState::PreRun;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
@ -269,13 +357,13 @@ fn main() -> rltk::BError {
|
|||||||
|
|
||||||
gs.ecs.insert(SimpleMarkerAllocator::<SerializeMe>::new());
|
gs.ecs.insert(SimpleMarkerAllocator::<SerializeMe>::new());
|
||||||
|
|
||||||
let map = Map::new_map_rooms_and_corridors();
|
let map = Map::new_map_rooms_and_corridors(1);
|
||||||
let (player_x, player_y) = map.rooms[0].center();
|
let (player_x, player_y) = map.rooms[0].center();
|
||||||
|
|
||||||
let player_entity = spawner::player(&mut gs.ecs, player_x, player_y);
|
let player_entity = spawner::player(&mut gs.ecs, player_x, player_y);
|
||||||
|
|
||||||
for room in map.rooms.iter().skip(1) {
|
for room in map.rooms.iter().skip(1) {
|
||||||
spawner::spawn_room(&mut gs.ecs, room);
|
spawner::spawn_room(&mut gs.ecs, room, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
gs.ecs.insert(map);
|
gs.ecs.insert(map);
|
||||||
|
14
src/map.rs
14
src/map.rs
@ -10,6 +10,7 @@ use crate::rect::Rect;
|
|||||||
pub enum TileType {
|
pub enum TileType {
|
||||||
Wall,
|
Wall,
|
||||||
Floor,
|
Floor,
|
||||||
|
DownStairs,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub const MAP_WIDTH: usize = 80;
|
pub const MAP_WIDTH: usize = 80;
|
||||||
@ -27,6 +28,7 @@ pub struct Map {
|
|||||||
pub revealed_tiles: Vec<bool>,
|
pub revealed_tiles: Vec<bool>,
|
||||||
pub visible_tiles: Vec<bool>,
|
pub visible_tiles: Vec<bool>,
|
||||||
pub blocked: Vec<bool>,
|
pub blocked: Vec<bool>,
|
||||||
|
pub depth: i32,
|
||||||
|
|
||||||
#[serde(skip_serializing)]
|
#[serde(skip_serializing)]
|
||||||
#[serde(skip_deserializing)]
|
#[serde(skip_deserializing)]
|
||||||
@ -85,7 +87,7 @@ impl Map {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn new_map_rooms_and_corridors() -> Map {
|
pub fn new_map_rooms_and_corridors(new_depth: i32) -> Map {
|
||||||
let mut map = Map {
|
let mut map = Map {
|
||||||
tiles: vec![TileType::Wall; MAP_COUNT],
|
tiles: vec![TileType::Wall; MAP_COUNT],
|
||||||
rooms: Vec::new(),
|
rooms: Vec::new(),
|
||||||
@ -95,6 +97,7 @@ impl Map {
|
|||||||
visible_tiles: vec![false; MAP_COUNT],
|
visible_tiles: vec![false; MAP_COUNT],
|
||||||
blocked: vec![false; MAP_COUNT],
|
blocked: vec![false; MAP_COUNT],
|
||||||
tile_content: vec![Vec::new(); MAP_COUNT],
|
tile_content: vec![Vec::new(); MAP_COUNT],
|
||||||
|
depth: new_depth,
|
||||||
};
|
};
|
||||||
|
|
||||||
const MAX_ROOMS: i32 = 30;
|
const MAX_ROOMS: i32 = 30;
|
||||||
@ -134,6 +137,10 @@ impl Map {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let stairs_position = map.rooms[map.rooms.len() - 1].center();
|
||||||
|
let stairs_idx = map.xy_idx(stairs_position.0, stairs_position.1);
|
||||||
|
map.tiles[stairs_idx] = TileType::DownStairs;
|
||||||
|
|
||||||
map
|
map
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -211,6 +218,11 @@ pub fn draw_map(ecs: &World, ctx: &mut Rltk) {
|
|||||||
fg = RGB::from_f32(0., 1.0, 0.);
|
fg = RGB::from_f32(0., 1.0, 0.);
|
||||||
glyph = rltk::to_cp437('#');
|
glyph = rltk::to_cp437('#');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TileType::DownStairs => {
|
||||||
|
glyph = rltk::to_cp437('>');
|
||||||
|
fg = RGB::from_f32(0., 1., 1.);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if !map.visible_tiles[idx] {
|
if !map.visible_tiles[idx] {
|
||||||
fg = fg.to_greyscale()
|
fg = fg.to_greyscale()
|
||||||
|
@ -4,10 +4,11 @@ use rltk::{Point, Rltk, VirtualKeyCode};
|
|||||||
use specs::prelude::*;
|
use specs::prelude::*;
|
||||||
|
|
||||||
use crate::gamelog::GameLog;
|
use crate::gamelog::GameLog;
|
||||||
|
use crate::spawner::player;
|
||||||
use crate::{
|
use crate::{
|
||||||
components::{CombatStats, Player, Position, Viewshed, WantsToMelee},
|
components::{CombatStats, Player, Position, Viewshed, WantsToMelee},
|
||||||
map::Map,
|
map::Map,
|
||||||
Item, RunState, State, WantsToPickupItem,
|
Item, Monster, RunState, State, TileType, WantsToPickupItem,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub fn try_move_player(delta_x: i32, delta_y: i32, ecs: &mut World) {
|
pub fn try_move_player(delta_x: i32, delta_y: i32, ecs: &mut World) {
|
||||||
@ -99,6 +100,7 @@ pub fn player_input(gs: &mut State, ctx: &mut Rltk) -> RunState {
|
|||||||
VirtualKeyCode::Right | VirtualKeyCode::L => try_move_player(1, 0, &mut gs.ecs),
|
VirtualKeyCode::Right | VirtualKeyCode::L => try_move_player(1, 0, &mut gs.ecs),
|
||||||
VirtualKeyCode::Up | VirtualKeyCode::K => try_move_player(0, -1, &mut gs.ecs),
|
VirtualKeyCode::Up | VirtualKeyCode::K => try_move_player(0, -1, &mut gs.ecs),
|
||||||
VirtualKeyCode::Down | VirtualKeyCode::J => try_move_player(0, 1, &mut gs.ecs),
|
VirtualKeyCode::Down | VirtualKeyCode::J => try_move_player(0, 1, &mut gs.ecs),
|
||||||
|
VirtualKeyCode::Space => return skip_turn(&mut gs.ecs),
|
||||||
VirtualKeyCode::Y => try_move_player(1, -1, &mut gs.ecs),
|
VirtualKeyCode::Y => try_move_player(1, -1, &mut gs.ecs),
|
||||||
VirtualKeyCode::U => try_move_player(-1, -1, &mut gs.ecs),
|
VirtualKeyCode::U => try_move_player(-1, -1, &mut gs.ecs),
|
||||||
VirtualKeyCode::N => try_move_player(1, 1, &mut gs.ecs),
|
VirtualKeyCode::N => try_move_player(1, 1, &mut gs.ecs),
|
||||||
@ -107,9 +109,56 @@ pub fn player_input(gs: &mut State, ctx: &mut Rltk) -> RunState {
|
|||||||
VirtualKeyCode::I => return RunState::ShowInventory,
|
VirtualKeyCode::I => return RunState::ShowInventory,
|
||||||
VirtualKeyCode::D => return RunState::ShowDropItem,
|
VirtualKeyCode::D => return RunState::ShowDropItem,
|
||||||
VirtualKeyCode::Escape => return RunState::SaveGame,
|
VirtualKeyCode::Escape => return RunState::SaveGame,
|
||||||
|
VirtualKeyCode::Period => {
|
||||||
|
if try_next_level(&mut gs.ecs) {
|
||||||
|
return RunState::NextLevel;
|
||||||
|
}
|
||||||
|
}
|
||||||
_ => return RunState::AwaitingInput,
|
_ => return RunState::AwaitingInput,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
RunState::PlayerTurn
|
RunState::PlayerTurn
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn skip_turn(ecs: &mut World) -> RunState {
|
||||||
|
let player_entity = ecs.fetch::<Entity>();
|
||||||
|
let viewshed_components = ecs.read_storage::<Viewshed>();
|
||||||
|
let monsters = ecs.read_storage::<Monster>();
|
||||||
|
|
||||||
|
let worldmap_resource = ecs.fetch::<Map>();
|
||||||
|
let mut can_heal = true;
|
||||||
|
let viewshed = viewshed_components.get(*player_entity).unwrap();
|
||||||
|
for tile in viewshed.visible_tiles.iter() {
|
||||||
|
let idx = worldmap_resource.xy_idx(tile.x, tile.y);
|
||||||
|
for entity_id in worldmap_resource.tile_content[idx].iter() {
|
||||||
|
if let Some(mob) = monsters.get(*entity_id) {
|
||||||
|
can_heal = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if can_heal {
|
||||||
|
let mut health_component = ecs.write_storage::<CombatStats>();
|
||||||
|
let player_hp = health_component.get_mut(*player_entity).unwrap();
|
||||||
|
player_hp.hp = i32::min(player_hp.hp + 1, player_hp.max_hp);
|
||||||
|
}
|
||||||
|
|
||||||
|
RunState::PlayerTurn
|
||||||
|
}
|
||||||
|
|
||||||
|
fn try_next_level(ecs: &mut World) -> bool {
|
||||||
|
let player_pos = ecs.fetch::<Point>();
|
||||||
|
let map = ecs.fetch::<Map>();
|
||||||
|
let player_idx = map.xy_idx(player_pos.x, player_pos.y);
|
||||||
|
|
||||||
|
if map.tiles[player_idx] == TileType::DownStairs {
|
||||||
|
true
|
||||||
|
} else {
|
||||||
|
let mut gamelog = ecs.fetch_mut::<GameLog>();
|
||||||
|
gamelog
|
||||||
|
.entries
|
||||||
|
.push("There is no way down from here".to_string());
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
55
src/random_table.rs
Normal file
55
src/random_table.rs
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
use rltk::RandomNumberGenerator;
|
||||||
|
|
||||||
|
pub struct RandomEntry {
|
||||||
|
name: String,
|
||||||
|
weight: i32,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl RandomEntry {
|
||||||
|
pub fn new<S: ToString>(name: S, weight: i32) -> RandomEntry {
|
||||||
|
RandomEntry {
|
||||||
|
name: name.to_string(),
|
||||||
|
weight,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Default)]
|
||||||
|
pub struct RandomTable {
|
||||||
|
entries: Vec<RandomEntry>,
|
||||||
|
total_weight: i32,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl RandomTable {
|
||||||
|
pub fn new() -> RandomTable {
|
||||||
|
RandomTable {
|
||||||
|
total_weight: 0,
|
||||||
|
entries: Vec::new(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn add<S: ToString>(mut self, name: S, weight: i32) -> RandomTable {
|
||||||
|
self.total_weight += weight;
|
||||||
|
self.entries.push(RandomEntry::new(name, weight));
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn roll(&self, rng: &mut RandomNumberGenerator) -> String {
|
||||||
|
if self.total_weight == 0 {
|
||||||
|
return "None".to_string();
|
||||||
|
}
|
||||||
|
let mut roll = rng.roll_dice(1, self.total_weight) - 1;
|
||||||
|
let mut index: usize = 0;
|
||||||
|
|
||||||
|
while roll > 0 {
|
||||||
|
if roll < self.entries[index].weight {
|
||||||
|
return self.entries[index].name.clone();
|
||||||
|
}
|
||||||
|
|
||||||
|
roll -= self.entries[index].weight;
|
||||||
|
index += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
"None".to_string()
|
||||||
|
}
|
||||||
|
}
|
@ -1,7 +1,10 @@
|
|||||||
|
use std::collections::HashMap;
|
||||||
|
|
||||||
use rltk::{FontCharType, RandomNumberGenerator, RGB};
|
use rltk::{FontCharType, RandomNumberGenerator, RGB};
|
||||||
use specs::prelude::*;
|
use specs::prelude::*;
|
||||||
use specs::saveload::{MarkedBuilder, SimpleMarker};
|
use specs::saveload::{MarkedBuilder, SimpleMarker};
|
||||||
|
|
||||||
|
use crate::random_table::RandomTable;
|
||||||
use crate::rect::Rect;
|
use crate::rect::Rect;
|
||||||
use crate::{
|
use crate::{
|
||||||
AreaOfEffect, BlocksTile, CombatStats, Confusion, Consumable, InflictsDamage, Item, Monster,
|
AreaOfEffect, BlocksTile, CombatStats, Confusion, Consumable, InflictsDamage, Item, Monster,
|
||||||
@ -40,18 +43,6 @@ pub fn player(ecs: &mut World, player_x: i32, player_y: i32) -> Entity {
|
|||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn random_monster(ecs: &mut World, x: i32, y: i32) {
|
|
||||||
let roll: i32;
|
|
||||||
{
|
|
||||||
let mut rng = ecs.write_resource::<RandomNumberGenerator>();
|
|
||||||
roll = rng.roll_dice(1, 2);
|
|
||||||
}
|
|
||||||
match roll {
|
|
||||||
1 => orc(ecs, x, y),
|
|
||||||
_ => goblin(ecs, x, y),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn orc(ecs: &mut World, x: i32, y: i32) {
|
fn orc(ecs: &mut World, x: i32, y: i32) {
|
||||||
monster(ecs, x, y, rltk::to_cp437('o'), "Orc")
|
monster(ecs, x, y, rltk::to_cp437('o'), "Orc")
|
||||||
}
|
}
|
||||||
@ -89,52 +80,45 @@ fn monster<S: ToString>(ecs: &mut World, x: i32, y: i32, glyph: FontCharType, na
|
|||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn spawn_room(ecs: &mut World, room: &Rect) {
|
#[allow(clippy::map_entry)]
|
||||||
let mut monster_spawn_points: Vec<usize> = Vec::new();
|
pub fn spawn_room(ecs: &mut World, room: &Rect, map_depth: i32) {
|
||||||
let mut item_spawn_points: Vec<usize> = Vec::new();
|
let spawn_table = room_table(map_depth);
|
||||||
|
let mut spawn_points: HashMap<usize, String> = HashMap::new();
|
||||||
|
|
||||||
{
|
{
|
||||||
let mut rng = ecs.write_resource::<RandomNumberGenerator>();
|
let mut rng = ecs.write_resource::<RandomNumberGenerator>();
|
||||||
let num_monsters = rng.roll_dice(1, MAX_MONSTER + 2) - 3;
|
let num_spawns = rng.roll_dice(1, MAX_MONSTER + 3) + (map_depth - 1) - 3;
|
||||||
let num_items = rng.roll_dice(1, MAX_ITEMS + 2) - 3;
|
|
||||||
|
|
||||||
for _i in 0..num_monsters {
|
for _i in 0..num_spawns {
|
||||||
let mut added = false;
|
let mut added = false;
|
||||||
while !added {
|
let mut tried = 0;
|
||||||
|
while !added && tried < 20 {
|
||||||
let x = (room.x1 + rng.roll_dice(1, i32::abs(room.x2 - room.x1))) as usize;
|
let x = (room.x1 + rng.roll_dice(1, i32::abs(room.x2 - room.x1))) as usize;
|
||||||
let y = (room.y1 + rng.roll_dice(1, i32::abs(room.y2 - room.y1))) as usize;
|
let y = (room.y1 + rng.roll_dice(1, i32::abs(room.y2 - room.y1))) as usize;
|
||||||
let idx = (y * MAP_WIDTH) + x;
|
let idx = (y * MAP_WIDTH) + x;
|
||||||
if !monster_spawn_points.contains(&idx) {
|
if !spawn_points.contains_key(&idx) {
|
||||||
monster_spawn_points.push(idx);
|
spawn_points.insert(idx, spawn_table.roll(&mut rng));
|
||||||
added = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for _i in 0..num_items {
|
|
||||||
let mut added = false;
|
|
||||||
while !added {
|
|
||||||
let x = (room.x1 + rng.roll_dice(1, i32::abs(room.x2 - room.x1))) as usize;
|
|
||||||
let y = (room.y1 + rng.roll_dice(1, i32::abs(room.y2 - room.y1))) as usize;
|
|
||||||
let idx = (y * MAP_WIDTH) + x;
|
|
||||||
if !item_spawn_points.contains(&idx) {
|
|
||||||
item_spawn_points.push(idx);
|
|
||||||
added = true;
|
added = true;
|
||||||
|
} else {
|
||||||
|
tried += 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for idx in monster_spawn_points.iter() {
|
for spawn in spawn_points.iter() {
|
||||||
let x = *idx % MAP_WIDTH;
|
let x = (*spawn.0 % MAP_WIDTH) as i32;
|
||||||
let y = *idx / MAP_WIDTH;
|
let y = (*spawn.0 / MAP_WIDTH) as i32;
|
||||||
random_monster(ecs, x as i32, y as i32);
|
|
||||||
}
|
|
||||||
|
|
||||||
for idx in item_spawn_points.iter() {
|
match spawn.1.as_ref() {
|
||||||
let x = *idx % MAP_WIDTH;
|
"Goblin" => goblin(ecs, x, y),
|
||||||
let y = *idx / MAP_WIDTH;
|
"Orc" => orc(ecs, x, y),
|
||||||
random_item(ecs, x as i32, y as i32);
|
"Health Potion" => health_potion(ecs, x, y),
|
||||||
|
"Fireball Scroll" => fireball_scroll(ecs, x, y),
|
||||||
|
"Confusion Scroll" => confusion_scroll(ecs, x, y),
|
||||||
|
"Magic Missile Scroll" => magic_missile_scroll(ecs, x, y),
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -218,16 +202,12 @@ pub fn confusion_scroll(ecs: &mut World, x: i32, y: i32) {
|
|||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn random_item(ecs: &mut World, x: i32, y: i32) {
|
pub fn room_table(map_depth: i32) -> RandomTable {
|
||||||
let roll: i32;
|
RandomTable::new()
|
||||||
{
|
.add("Goblin", 10)
|
||||||
let mut rng = ecs.write_resource::<RandomNumberGenerator>();
|
.add("Orc", 1 + map_depth)
|
||||||
roll = rng.roll_dice(1, 4);
|
.add("Health Potion", 7)
|
||||||
}
|
.add("Fireball Scroll", 2 + map_depth)
|
||||||
match roll {
|
.add("Confusion Scroll", 2 + map_depth)
|
||||||
1 => health_potion(ecs, x, y),
|
.add("Magic Missile Scroll", 4)
|
||||||
2 => fireball_scroll(ecs, x, y),
|
|
||||||
3 => confusion_scroll(ecs, x, y),
|
|
||||||
_ => magic_missile_scroll(ecs, x, y),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user