summaryrefslogtreecommitdiff
path: root/dungeon
diff options
context:
space:
mode:
Diffstat (limited to 'dungeon')
-rw-r--r--dungeon/src/map.rs4
-rw-r--r--dungeon/src/pos.rs6
2 files changed, 8 insertions, 2 deletions
diff --git a/dungeon/src/map.rs b/dungeon/src/map.rs
index b6f3356..cb602e8 100644
--- a/dungeon/src/map.rs
+++ b/dungeon/src/map.rs
@@ -190,8 +190,8 @@ impl Floor {
impl Default for Floor {
/// Returns a floor with a single set of walls on the map border
fn default() -> Self {
+ const PLAYER_START: Pos = Pos::new_const::<1, 1>();
let mut tiles = Box::new([Tile::Air; TILE_COUNT]);
- let player_start = Pos::new_const::<1, 1>();
let seed = 0u64;
for pos in Pos::values() {
@@ -202,7 +202,7 @@ impl Default for Floor {
Self {
tiles,
- player_start,
+ player_start: PLAYER_START,
seed,
}
}
diff --git a/dungeon/src/pos.rs b/dungeon/src/pos.rs
index 143b0f0..e953ea4 100644
--- a/dungeon/src/pos.rs
+++ b/dungeon/src/pos.rs
@@ -150,3 +150,9 @@ impl Pos {
(0..MAP_SIZE).flat_map(|y| (0..MAP_SIZE).filter_map(move |x| Self::new(x, y)))
}
}
+impl Default for Pos {
+ fn default() -> Self {
+ const DEFAULT: Pos = Pos::new_const::<0, 0>();
+ DEFAULT
+ }
+}