diff options
author | Guillaume Pasquet <guillaume.pasquet@eggplant.io> | 2019-11-12 10:47:03 +0100 |
---|---|---|
committer | Guillaume Pasquet <guillaume.pasquet@eggplant.io> | 2019-11-12 10:47:03 +0100 |
commit | dbb1f294d59211df1ecdece2e2d1ac61f49c144a (patch) | |
tree | f54203786a965eefa375459315a1e9c3cae338e5 /src/world.rs | |
parent | 9f95c253433e84bff929e5f001a919cb84110003 (diff) | |
parent | 3794736d4bd1149247b8c4d39dc946466b550463 (diff) |
Merge branch 'master' of github.com:Etenil/roguerust
Diffstat (limited to 'src/world.rs')
-rw-r--r-- | src/world.rs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/world.rs b/src/world.rs index f2f3470..23bed8a 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 {
@@ -264,6 +264,13 @@ impl Level { Ok(grid)
}
+ pub fn get_start_point(&self) -> Point {
+ if self.rooms.len() > 0 {
+ return self.rooms[0].center;
+ }
+ return (0,0)
+ }
+
fn overlaps(&self, start: Point, width: usize, height: usize, padding: usize) -> bool {
for room in &self.rooms {
if room.start.0 < start.0 + width + padding &&
|