aboutsummaryrefslogtreecommitdiff
path: root/src/tiling.rs
diff options
context:
space:
mode:
authorGuillaume <g@bitimplosion.com>2019-11-12 16:10:12 +0100
committerGitHub <noreply@github.com>2019-11-12 16:10:12 +0100
commitd249f7a63f007fcc494e4c446c4845e4f9d0a523 (patch)
tree4dd84347c10919c29d873210f02cf96b86b3e240 /src/tiling.rs
parente8e931794052455d93517d35c75bb98b7829e70d (diff)
parent8b11578ed5d2b254c7b0f827170aadac6490434b (diff)
Merge pull request #6 from lferro9000/add_player_character_in_map
Add player character in map
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..d443fb6 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 => "@",
+ _ => "?"
+ }
+}
+
+pub fn draw_block(window: &Window, block: &TileType) {
+ window.printw(tile_to_str(block));
+}
+
pub trait Tileable {
fn tile(&self, grid: &mut TileGrid) -> Result<(), String>;
}