aboutsummaryrefslogtreecommitdiff
path: root/src/world.rs
diff options
context:
space:
mode:
authorGuillaume Pasquet <dev@etenil.net>2019-11-20 17:04:23 +0000
committerGuillaume Pasquet <dev@etenil.net>2019-11-20 17:04:23 +0000
commit337e7928945f37bb422cbf0a7905763dc68cc8be (patch)
treeb8a8ae74b97f296b0208a5169ed7350b19b9a02a /src/world.rs
parent15ccde4be6585865d01d9a620778dbcf5d8d998d (diff)
Ensure room sanity
Diffstat (limited to 'src/world.rs')
-rw-r--r--src/world.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/world.rs b/src/world.rs
index a315111..451b091 100644
--- a/src/world.rs
+++ b/src/world.rs
@@ -50,10 +50,13 @@ impl Room {
impl Tileable for Room {
fn tile(&self, grid: &mut TileGrid) -> Result<(), String> {
- // TODO: Detect if the room would leave the grid.
let endx = self.start.0 + self.width;
let endy = self.start.1 + self.height;
+ if endx >= grid.xsize() || endy > grid.ysize() {
+ return Err(String::from("Room outside of grid bounds"));
+ }
+
// Set the walls
for x in self.start.0..=endx {
grid.set_empty_tile(x, self.start.1, TileType::Wall);