1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
extern crate pancurses;
use pancurses::{Window};
pub struct TileGrid {
grid: Vec<Vec<TileType>>
}
impl TileGrid {
pub fn new(xsize: usize, ysize: usize) -> TileGrid {
let mut grid = TileGrid {
grid: Vec::with_capacity(ysize)
};
for _ in 0..ysize {
let mut subvec = Vec::with_capacity(xsize);
for _ in 0..xsize {
subvec.push(TileType::Empty);
}
grid.grid.push(subvec);
}
return grid;
}
pub fn set_tile(&mut self, x: usize, y: usize, tile: TileType) {
self.grid[y][x] = tile;
}
/// Sets a tile if nothing lies underneath it.
pub fn set_empty_tile(&mut self, x: usize, y: usize, tile: TileType) {
self.set_tile(x, y, match self.grid[y][x] {
TileType::Empty => tile,
_ => self.grid[y][x].clone()
})
}
pub fn raw_data(& self) -> & Vec<Vec<TileType>> {
&self.grid
}
}
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>;
}
#[derive(Clone)]
pub enum TileType {
Empty,
Wall,
Floor,
StairsUp,
StairsDown,
Character,
Player
}
|