roguelike-game/src/map.rs

228 lines
6.4 KiB
Rust
Raw Normal View History

2021-12-10 20:16:48 -05:00
use std::collections::HashSet;
use rltk::{Algorithm2D, BaseMap, Point, Rltk, SmallVec, RGB};
2021-11-08 13:58:40 -05:00
use serde::{Deserialize, Serialize};
2021-10-25 14:23:19 -04:00
use specs::prelude::*;
2021-10-22 10:05:06 -04:00
pub const MAP_WIDTH: usize = 80;
pub const MAP_HEIGHT: usize = 43;
pub const MAP_COUNT: usize = MAP_HEIGHT * MAP_WIDTH;
#[derive(PartialEq, Eq, Hash, Copy, Clone, Serialize, Deserialize)]
2021-10-22 10:05:06 -04:00
pub enum TileType {
Wall,
Floor,
2021-11-09 15:50:42 -05:00
DownStairs,
2021-10-22 10:05:06 -04:00
}
2021-11-08 13:58:40 -05:00
#[derive(Default, Serialize, Deserialize, Clone)]
2021-10-25 14:23:19 -04:00
pub struct Map {
pub tiles: Vec<TileType>,
pub width: i32,
pub height: i32,
2021-10-25 15:26:39 -04:00
pub revealed_tiles: Vec<bool>,
2021-10-26 14:23:08 -04:00
pub visible_tiles: Vec<bool>,
2021-10-29 11:11:17 -04:00
pub blocked: Vec<bool>,
2021-11-09 15:50:42 -05:00
pub depth: i32,
2021-11-16 10:28:05 -05:00
pub bloodstains: HashSet<usize>,
2021-12-17 14:07:14 -05:00
pub view_blocked: HashSet<usize>,
2021-11-08 13:58:40 -05:00
#[serde(skip_serializing)]
#[serde(skip_deserializing)]
2021-10-29 15:15:22 -04:00
pub tile_content: Vec<Vec<Entity>>,
2021-10-22 10:05:06 -04:00
}
2021-10-25 14:23:19 -04:00
impl Map {
pub fn xy_idx(&self, x: i32, y: i32) -> usize {
(y as usize * self.width as usize) + x as usize
2021-10-22 10:05:06 -04:00
}
fn is_exit_valid(&self, x: i32, y: i32) -> bool {
if x < 1 || x > self.width - 1 || y < 1 || y > self.height - 1 {
return false;
}
let idx = self.xy_idx(x, y);
!self.blocked[idx]
}
pub fn populate_blocked(&mut self) {
for (i, tile) in self.tiles.iter_mut().enumerate() {
self.blocked[i] = *tile == TileType::Wall;
}
}
pub fn clear_content_index(&mut self) {
for content in self.tile_content.iter_mut() {
content.clear();
}
}
/// Generates an empty map, consisting entirely of solid walls
pub fn new(new_depth: i32) -> Map {
Map {
2021-11-02 09:25:48 -04:00
tiles: vec![TileType::Wall; MAP_COUNT],
width: MAP_WIDTH as i32,
height: MAP_HEIGHT as i32,
revealed_tiles: vec![false; MAP_COUNT],
visible_tiles: vec![false; MAP_COUNT],
blocked: vec![false; MAP_COUNT],
tile_content: vec![Vec::new(); MAP_COUNT],
2021-11-09 15:50:42 -05:00
depth: new_depth,
2021-11-16 10:28:05 -05:00
bloodstains: HashSet::new(),
2021-12-17 14:07:14 -05:00
view_blocked: HashSet::new(),
2021-10-22 14:50:04 -04:00
}
}
2021-10-25 15:26:39 -04:00
}
impl BaseMap for Map {
fn is_opaque(&self, idx: usize) -> bool {
2021-12-17 14:07:14 -05:00
self.tiles[idx] == TileType::Wall || self.view_blocked.contains(&idx)
2021-10-25 15:26:39 -04:00
}
2021-10-29 10:30:17 -04:00
fn get_available_exits(&self, idx: usize) -> SmallVec<[(usize, f32); 10]> {
let mut exits = rltk::SmallVec::new();
let x = idx as i32 % self.width;
let y = idx as i32 / self.width;
let w = self.width as usize;
2021-10-29 11:11:17 -04:00
// Cardinal directions
2021-10-29 10:30:17 -04:00
if self.is_exit_valid(x - 1, y) {
exits.push((idx - 1, 1.0))
};
if self.is_exit_valid(x + 1, y) {
exits.push((idx + 1, 1.0))
};
if self.is_exit_valid(x, y - 1) {
exits.push((idx - w, 1.0))
};
if self.is_exit_valid(x, y + 1) {
exits.push((idx + w, 1.0))
};
2021-10-29 11:11:17 -04:00
// Diagonals
if self.is_exit_valid(x - 1, y - 1) {
exits.push(((idx - w) - 1, 1.45));
}
if self.is_exit_valid(x + 1, y - 1) {
exits.push(((idx - w) + 1, 1.45));
}
if self.is_exit_valid(x - 1, y + 1) {
exits.push(((idx + w) - 1, 1.45));
}
if self.is_exit_valid(x + 1, y + 1) {
exits.push(((idx + w) + 1, 1.45));
}
2021-10-29 10:30:17 -04:00
exits
}
fn get_pathing_distance(&self, idx1: usize, idx2: usize) -> f32 {
let w = self.width as usize;
let p1 = Point::new(idx1 % w, idx1 / w);
let p2 = Point::new(idx2 % w, idx2 / w);
rltk::DistanceAlg::Pythagoras.distance2d(p1, p2)
}
2021-10-25 15:26:39 -04:00
}
impl Algorithm2D for Map {
fn dimensions(&self) -> Point {
Point::new(self.width, self.height)
}
}
pub fn draw_map(map: &Map, ctx: &mut Rltk) {
2021-10-22 10:05:06 -04:00
let mut y = 0;
let mut x = 0;
2021-10-25 15:26:39 -04:00
for (idx, tile) in map.tiles.iter().enumerate() {
// Render a tile depending on the tile type
if map.revealed_tiles[idx] {
2021-10-26 14:23:08 -04:00
let glyph;
let mut fg;
2021-11-16 10:28:05 -05:00
let mut bg = RGB::from_f32(0., 0., 0.);
2021-10-26 14:23:08 -04:00
2021-10-25 15:26:39 -04:00
match tile {
TileType::Floor => {
2021-10-26 14:23:08 -04:00
glyph = rltk::to_cp437('.');
fg = RGB::from_f32(0., 0.5, 0.5);
2021-10-25 15:26:39 -04:00
}
TileType::Wall => {
2021-11-15 14:12:27 -05:00
glyph = wall_glyph(&*map, x, y);
2021-10-26 14:23:08 -04:00
fg = RGB::from_f32(0., 1.0, 0.);
2021-10-25 15:26:39 -04:00
}
2021-11-09 15:50:42 -05:00
TileType::DownStairs => {
glyph = rltk::to_cp437('>');
fg = RGB::from_f32(0., 1.0, 1.0);
}
2021-10-22 10:05:06 -04:00
}
2021-10-26 14:23:08 -04:00
2021-11-16 10:28:05 -05:00
if map.bloodstains.contains(&idx) {
bg = RGB::from_f32(0.75, 0., 0.);
}
2021-10-26 14:23:08 -04:00
if !map.visible_tiles[idx] {
fg = fg.to_greyscale();
2021-11-16 11:33:58 -05:00
bg = RGB::from_f32(0., 0., 0.);
2021-10-26 14:23:08 -04:00
}
2021-11-16 10:28:05 -05:00
ctx.set(x, y, fg, bg, glyph);
2021-10-22 10:05:06 -04:00
}
// Move to the next set of coordinates
x += 1;
if x > MAP_WIDTH as i32 - 1 {
2021-10-22 10:05:06 -04:00
x = 0;
y += 1;
}
}
2021-10-25 15:26:39 -04:00
}
2021-11-15 14:12:27 -05:00
fn wall_glyph(map: &Map, x: i32, y: i32) -> rltk::FontCharType {
if x < 1 || x > map.width - 2 || y < 1 || y > map.height - 2 {
2021-11-15 14:12:27 -05:00
return 35;
}
let mut mask = 0u8;
if is_revealed_and_wall(map, x, y - 1) {
mask += 1;
}
if is_revealed_and_wall(map, x, y + 1) {
mask += 2;
}
if is_revealed_and_wall(map, x - 1, y) {
mask += 4;
}
if is_revealed_and_wall(map, x + 1, y) {
mask += 8;
}
match mask {
0 => 9, // Pillar because we can't see neighbors
1 => 186, // Wall only to the north
2 => 186, // Wall only to the south
3 => 186, // Wall to the north and south
4 => 205, // Wall only to the west
5 => 188, // Wall to the north and west
6 => 187, // Wall to the south and west
7 => 185, // Wall to the north, south, and west
8 => 205, // Wall only to the east
9 => 200, // Wall to the north and east
10 => 201, // Wall to the sound and east
11 => 204, // Wall to the north, south, and east
12 => 205, // Wall to the east and west
13 => 202, // Wall to the east, west, and south
14 => 203, // Wall to the east, west, and north
15 => 206, // ╬ Wall on all sides
_ => 35, // We missed one?
}
}
fn is_revealed_and_wall(map: &Map, x: i32, y: i32) -> bool {
let idx = map.xy_idx(x, y);
map.tiles[idx] == TileType::Wall && map.revealed_tiles[idx]
}