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/tiling.rs | |
parent | fe183a3453a828c077db85cd72d3ce39410f2196 (diff) | |
parent | e8e931794052455d93517d35c75bb98b7829e70d (diff) |
May not work
q!
Diffstat (limited to 'src/tiling.rs')
-rw-r--r-- | src/tiling.rs | 21 |
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>; } |