aboutsummaryrefslogtreecommitdiff
path: root/src/tiling.rs
diff options
context:
space:
mode:
authorIago Garrido <iago086@gmail.com>2019-11-12 14:55:19 +0100
committerIago Garrido <iago086@gmail.com>2019-11-12 14:55:19 +0100
commit76fc41b3c803ad4db3c19a76d408ab301438aa1e (patch)
tree99df93ff7678775a4cb179fbd6a0b52a15ede426 /src/tiling.rs
parentd84906ec92e45ed2cf2611c2f646d72ef5f1bb64 (diff)
parent8fa3fa881bc3b954e136295fe6cc7022737ae9db (diff)
Merge branch 'master' of https://github.com/Etenil/roguerust
Diffstat (limited to 'src/tiling.rs')
-rw-r--r--src/tiling.rs52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/tiling.rs b/src/tiling.rs
new file mode 100644
index 0000000..139af24
--- /dev/null
+++ b/src/tiling.rs
@@ -0,0 +1,52 @@
+pub struct TileGrid {
+ grid: Vec<Vec<TileType>>
+}
+
+impl<'a> 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(&'a self) -> &'a Vec<Vec<TileType>> {
+ &self.grid
+ }
+}
+
+pub trait Tileable {
+ fn tile(&self, grid: &mut TileGrid) -> Result<(), String>;
+}
+
+#[derive(Clone)]
+pub enum TileType {
+ Empty,
+ Wall,
+ Floor,
+ StairsUp,
+ StairsDown,
+ Character,
+ Player
+}