diff options
author | Luis Ferro <luis.ferro@eggplant.io> | 2019-11-12 15:57:03 +0100 |
---|---|---|
committer | Luis Ferro <luis.ferro@eggplant.io> | 2019-11-12 15:57:03 +0100 |
commit | 44146c74c913a72f79f94280a5daa40f33e6c05b (patch) | |
tree | de900d2fe144ceffa6c6065cc5824a3960005224 /src/world.rs | |
parent | fe183a3453a828c077db85cd72d3ce39410f2196 (diff) | |
parent | e8e931794052455d93517d35c75bb98b7829e70d (diff) |
May not work
q!
Diffstat (limited to 'src/world.rs')
-rw-r--r-- | src/world.rs | 37 |
1 files changed, 33 insertions, 4 deletions
diff --git a/src/world.rs b/src/world.rs index abaffa1..42e4d7c 100644 --- a/src/world.rs +++ b/src/world.rs @@ -1,7 +1,10 @@ use rand::Rng;
+use pancurses::{Window};
use crate::entities::{Entity};
use crate::tiling::{TileGrid, Tileable, TileType};
+pub type Point = (usize, usize);
+
pub enum Direction {
North,
South,
@@ -9,8 +12,6 @@ pub enum Direction { West
}
-pub type Point = (usize, usize);
-
enum CorridorType {
Horizontal,
Vertical
@@ -53,7 +54,7 @@ impl Room { start,
width,
height,
- center: (start.0 + width / 2, start.1 + height / 2),
+ center: (start.0 + (width as f32 / 2.0) as usize, start.1 + (height as f32 / 2.0) as usize),
edges: [
RoomEdge::new(start, (start.0 + width, start.1), UP),
RoomEdge::new(start, (start.0, start.1 + height), LEFT),
@@ -186,6 +187,23 @@ impl Dungeon { levels: vec![]
}
}
+
+ pub fn debug_levels(&self) {
+ for l in &self.levels {
+ Dungeon::debug_level(l);
+ }
+ }
+
+ fn debug_level(level: &Level) {
+ let grid = level.to_tilegrid().unwrap();
+
+ for line in grid.raw_data().iter() {
+ for block in line.iter() {
+ print!("{}", Dungeon::tile_to_str(block));
+ }
+ print!("\n");
+ }
+ }
}
impl Generatable for Dungeon {
@@ -223,7 +241,7 @@ impl Level { }
}
- pub fn to_tilegrid(&self) -> Result<TileGrid, String> {
+ fn to_tilegrid(&self) -> Result<TileGrid, String> {
let mut grid = TileGrid::new(self.xsize, self.ysize);
for room in &self.rooms {
@@ -247,6 +265,17 @@ impl Level { return (0,0)
}
+ pub fn render(&self, window: &Window) {
+ let grid = self.to_tilegrid().unwrap();
+
+ for (linenum, line) in grid.raw_data().iter().enumerate() {
+ for block in line.iter() {
+ Dungeon::draw_block(&window, &block);
+ }
+ window.mv(linenum as i32, 0);
+ }
+ }
+
pub fn get_entrance(&self) -> Point {
self.entrance
}
|