aboutsummaryrefslogtreecommitdiff
path: root/src/world.rs
diff options
context:
space:
mode:
authorGuillaume <g@bitimplosion.com>2019-11-12 09:50:07 +0100
committerGitHub <noreply@github.com>2019-11-12 09:50:07 +0100
commit3794736d4bd1149247b8c4d39dc946466b550463 (patch)
tree9735bd620d04ee24668c3e933ff9436f55658b82 /src/world.rs
parent5f6768b6a7c954d47ef97809f688df83664e85bc (diff)
parent5216caa5e64b8be05ff859ba85f90f7a8fa1e6c1 (diff)
Merge pull request #1 from lferro9000/character_generation
Add char generation and positioning in first room of the dungeon
Diffstat (limited to 'src/world.rs')
-rw-r--r--src/world.rs11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/world.rs b/src/world.rs
index 69f3897..05b82ed 100644
--- a/src/world.rs
+++ b/src/world.rs
@@ -1,6 +1,6 @@
use rand::Rng;
-type Point = (usize, usize);
+pub type Point = (usize, usize);
#[derive(Clone)]
pub enum TileType {
@@ -194,6 +194,8 @@ pub trait GameWorld {
fn generate(&mut self);
fn to_tilegrid(&self) -> Result<TileGrid, String>;
+
+ fn get_start_location(&self) -> Point;
}
fn hor_dist(point1: Point, point2: Point) -> f32 {
@@ -331,6 +333,13 @@ impl GameWorld for World {
Ok(grid)
}
+
+ fn get_start_location(&self) -> Point {
+ if self.rooms.len() > 0 {
+ return self.rooms[0].center;
+ }
+ return (0,0)
+ }
}
#[cfg(test)]