aboutsummaryrefslogtreecommitdiff
path: root/src/tiling.rs
diff options
context:
space:
mode:
authorLuis Ferro <luis.ferro@eggplant.io>2019-11-12 15:57:03 +0100
committerLuis Ferro <luis.ferro@eggplant.io>2019-11-12 15:57:03 +0100
commit44146c74c913a72f79f94280a5daa40f33e6c05b (patch)
treede900d2fe144ceffa6c6065cc5824a3960005224 /src/tiling.rs
parentfe183a3453a828c077db85cd72d3ce39410f2196 (diff)
parente8e931794052455d93517d35c75bb98b7829e70d (diff)
May not work
q!
Diffstat (limited to 'src/tiling.rs')
-rw-r--r--src/tiling.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/tiling.rs b/src/tiling.rs
index 139af24..3e33de1 100644
--- a/src/tiling.rs
+++ b/src/tiling.rs
@@ -1,3 +1,8 @@
+extern crate pancurses;
+
+use pancurses::{Window};
+
+
pub struct TileGrid {
grid: Vec<Vec<TileType>>
}
@@ -36,6 +41,22 @@ impl<'a> TileGrid {
}
}
+fn tile_to_str(tile: &TileType) -> &str {
+ match tile {
+ TileType::Floor => ".",
+ TileType::Wall => "#",
+ TileType::Empty => " ",
+ TileType::StairsDown => ">",
+ TileType::StairsUp => "<",
+ TileType::Player => "@",
+ _ => "?"
+ }
+}
+
+fn draw_block(window: &Window, block: &TileType) {
+ window.printw(tile_to_str(block));
+}
+
pub trait Tileable {
fn tile(&self, grid: &mut TileGrid) -> Result<(), String>;
}