diff options
author | Guillaume Pasquet <guillaume.pasquet@eggplant.io> | 2019-11-12 14:22:19 +0100 |
---|---|---|
committer | Guillaume Pasquet <guillaume.pasquet@eggplant.io> | 2019-11-12 14:22:19 +0100 |
commit | 8fa3fa881bc3b954e136295fe6cc7022737ae9db (patch) | |
tree | 996c5f1aa20bec283504190d5c372e51b02be085 /src/world.rs | |
parent | ec671aa9b56c53d76ce310f0772ee05c97064d3f (diff) |
Refactor all the things!
Diffstat (limited to 'src/world.rs')
-rw-r--r-- | src/world.rs | 73 |
1 files changed, 16 insertions, 57 deletions
diff --git a/src/world.rs b/src/world.rs index 2fa72ae..abaffa1 100644 --- a/src/world.rs +++ b/src/world.rs @@ -1,26 +1,21 @@ use rand::Rng;
+use crate::entities::{Entity};
+use crate::tiling::{TileGrid, Tileable, TileType};
+
+pub enum Direction {
+ North,
+ South,
+ East,
+ West
+}
pub type Point = (usize, usize);
-#[derive(Clone)]
-pub enum TileType {
- Empty,
- Wall,
- Floor,
- StairsUp,
- StairsDown,
- Character,
-}
-
enum CorridorType {
Horizontal,
Vertical
}
-trait Tileable {
- fn tile(&self, grid: &mut TileGrid) -> Result<(), String>;
-}
-
const LEFT: (i8, i8) = (-1i8, 0);
const RIGHT: (i8, i8) = (1i8, 0);
const UP: (i8, i8) = (0, -1i8);
@@ -144,49 +139,12 @@ impl Tileable for Corridor { }
}
-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;
- }
-
- fn set_tile(&mut self, x: usize, y: usize, tile: TileType) {
- self.grid[y][x] = tile;
- }
-
- /// Sets a tile if nothing lies underneath it.
- 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 struct Level {
xsize: usize,
ysize: usize,
rooms: Vec<Room>,
corridors: Vec<Corridor>,
+ entities: Vec<Box<dyn Entity>>,
entrance: Point,
exit: Point
}
@@ -198,7 +156,7 @@ pub struct Dungeon { pub levels: Vec<Level>
}
-pub trait Generable {
+pub trait Generatable {
fn generate(&mut self);
}
@@ -230,7 +188,7 @@ impl Dungeon { }
}
-impl Generable for Dungeon {
+impl Generatable for Dungeon {
fn generate(&mut self) {
let mut level = Level::new(self.xsize, self.ysize, None);
level.generate();
@@ -254,8 +212,9 @@ impl Level { Level {
xsize,
ysize,
- rooms: Vec::new(),
- corridors: Vec::new(),
+ rooms: vec![],
+ corridors: vec![],
+ entities: vec![],
entrance: match start {
Some(st) => st,
None => (0, 0)
@@ -357,7 +316,7 @@ impl Level { }
}
-impl Generable for Level {
+impl Generatable for Level {
fn generate(&mut self) {
let mut rng = rand::thread_rng();
let room_number = rng.gen_range(3, 5);
|