aboutsummaryrefslogtreecommitdiff
path: root/src/tiling.rs
diff options
context:
space:
mode:
authorGuillaume Pasquet <guillaume.pasquet@eggplant.io>2019-11-12 16:11:32 +0100
committerGuillaume Pasquet <guillaume.pasquet@eggplant.io>2019-11-12 16:11:32 +0100
commitdbaeddc419c2d070ce175ef2bcda9fa7c98c6941 (patch)
tree4bc6737748d84b194718dc5c4a0a959286c55589 /src/tiling.rs
parent0cee0cbadc19e95dfaae57eb9a54b38026481425 (diff)
parentd249f7a63f007fcc494e4c446c4845e4f9d0a523 (diff)
Merge branch 'master' of github.com:Etenil/roguerust
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>;
}