@@ -34,10 +34,10 @@ Direction Wall::Dir() const {
34
34
35
35
AbstractMaze::AbstractMaze () {
36
36
for (unsigned int i = 0 ; i < SIZE; i++) {
37
- perimeter. emplace ( 0 , i, Direction::N);
38
- perimeter. emplace ( SIZE - 1 , i, Direction::S);
39
- perimeter. emplace (i, SIZE - 1 , Direction::E);
40
- perimeter. emplace (i, 0 , Direction::W);
37
+ walls[ 0 ][i][ static_cast < int >( Direction::N)] = WallEnum::PerimeterWall ;
38
+ walls[ SIZE - 1 ][i][ static_cast < int >( Direction::S)] = WallEnum::PerimeterWall ;
39
+ walls[i][ SIZE - 1 ][ static_cast < int >( Direction::E)] = WallEnum::PerimeterWall ;
40
+ walls[i][ 0 ][ static_cast < int >( Direction::W)] = WallEnum::PerimeterWall ;
41
41
}
42
42
43
43
// Set the row and column of all the nodes
@@ -168,9 +168,15 @@ bool AbstractMaze::is_wall(RowCol const row_col, Direction const dir) const {
168
168
throw std::invalid_argument (" Invalid direction Last" );
169
169
}
170
170
171
- auto const wall_it = walls.find ({.row_col =row_col, .dir =dir});
172
- auto const perimeter_it = perimeter.find ({.row_col =row_col, .dir =dir});
173
- return wall_it != walls.cend () or perimeter_it != perimeter.cend ();
171
+ auto const is_wall = walls[row_col.row ][row_col.col ][static_cast <int >(dir)];
172
+ switch (is_wall) {
173
+ case WallEnum::Wall:
174
+ return true ;
175
+ case WallEnum::PerimeterWall:
176
+ return true ;
177
+ case WallEnum::NoWall:
178
+ return false ;
179
+ }
174
180
}
175
181
176
182
void AbstractMaze::reset () {
@@ -192,19 +198,23 @@ void AbstractMaze::add_wall(RowCol const row_col, Direction const dir) {
192
198
}
193
199
194
200
if (!is_perimeter (row_col, dir)) {
195
- walls. emplace ( row_col, dir);
201
+ walls[row_col. row ][ row_col. col ][ static_cast < int >( dir)] = WallEnum::Wall ;
196
202
}
197
203
198
204
// Add the wall from the other side if that's possible
199
205
auto const [valid, new_row_col] = step (row_col, dir);
200
206
if (valid and !is_perimeter (new_row_col, opposite_direction (dir))) {
201
- walls. emplace ( new_row_col, opposite_direction (dir));
207
+ walls[new_row_col. row ][ new_row_col. col ][ static_cast < int >( opposite_direction (dir))] = WallEnum::PerimeterWall ;
202
208
}
203
209
}
204
210
205
211
void AbstractMaze::remove_wall (RowCol const row_col, Direction const dir) {
212
+ if (out_of_bounds (row_col)) {
213
+ throw std::invalid_argument (fmt::format (" cannot remove wall out of bounds: {}, {}" , row_col.row , row_col.col ));
214
+ }
215
+
206
216
if (dir == Direction::Last) {
207
- throw std::invalid_argument (" Invalid direction Last" );
217
+ throw std::invalid_argument (" Invalid direction Direction:: Last" );
208
218
}
209
219
210
220
{
@@ -214,21 +224,17 @@ void AbstractMaze::remove_wall(RowCol const row_col, Direction const dir) {
214
224
dir_to_char (dir)));
215
225
216
226
}
217
- const auto it = walls.find ({.row_col =row_col, .dir =dir});
218
- if (it == walls.cend ()) {
227
+ if (walls[row_col.row ][row_col.col ][static_cast <int >(dir)] == WallEnum::NoWall) {
219
228
throw std::invalid_argument (
220
229
fmt::format (" remove_wall: row {} col {} dir {} not in walls" , row_col.row , row_col.col , dir_to_char (dir)));
221
230
}
222
- walls. erase (it) ;
231
+ walls[row_col. row ][row_col. col ][ static_cast < int >(dir)] = WallEnum::NoWall ;
223
232
}
224
233
225
234
// Remove the wall from the other side if that's possible
226
235
auto const [valid, new_row_col] = step (row_col, dir);
227
236
if (valid) {
228
- const auto it = walls.find ({new_row_col, opposite_direction (dir)});
229
- if (it != walls.cend ()) {
230
- walls.erase (it);
231
- }
237
+ walls[new_row_col.row ][new_row_col.col ][static_cast <int >(opposite_direction (dir))] = WallEnum::NoWall;
232
238
}
233
239
}
234
240
@@ -245,34 +251,38 @@ void AbstractMaze::remove_wall_if_exists(RowCol const row_col, ssim::Direction c
245
251
246
252
}
247
253
248
- const auto it = walls.find ({.row_col =row_col, .dir =dir});
249
- if (it == walls.cend ()) {
254
+ if (walls[row_col.row ][row_col.col ][static_cast <int >(dir)] == WallEnum::NoWall) {
250
255
// this case is fine. The whole point of this function is to ignore this
251
256
return ;
252
257
}
253
- walls. erase (it) ;
258
+ walls[row_col. row ][row_col. col ][ static_cast < int >(dir)] = WallEnum::NoWall ;
254
259
}
255
260
256
261
// Remove the wall from the other side if that's possible
257
262
auto const [valid, new_row_col] = step (row_col, dir);
258
263
if (valid) {
259
- const auto it = walls.find ({new_row_col, opposite_direction (dir)});
260
- if (it != walls.cend ()) {
261
- walls.erase (it);
262
- }
264
+ walls[new_row_col.row ][new_row_col.col ][static_cast <int >(opposite_direction (dir))] = WallEnum::NoWall;
263
265
}
264
266
}
265
267
266
268
void AbstractMaze::remove_all_walls () {
267
- walls.clear ();
269
+ for (unsigned int row = 0 ; row < SIZE; row++) {
270
+ for (unsigned int col = 0 ; col < SIZE; col++) {
271
+ for (Direction d = Direction::First; d != Direction::Last; d++) {
272
+ if (!is_perimeter ({row, col}, d)) {
273
+ walls[row][col][static_cast <int >(d)] = WallEnum::NoWall;
274
+ }
275
+ }
276
+ }
277
+ }
268
278
}
269
279
270
280
void AbstractMaze::add_all_walls () {
271
281
for (unsigned int row = 0 ; row < SIZE; row++) {
272
282
for (unsigned int col = 0 ; col < SIZE; col++) {
273
283
for (Direction d = Direction::First; d != Direction::Last; d++) {
274
284
if (!is_perimeter ({row, col}, d)) {
275
- walls. emplace ( row, col, d) ;
285
+ walls[ row][ col][ static_cast < int >(d)] = WallEnum::Wall ;
276
286
}
277
287
}
278
288
}
@@ -352,7 +362,7 @@ bool AbstractMaze::flood_fill(Route *const path, RowCol const start, RowCol cons
352
362
Direction d;
353
363
bool deadend = true ;
354
364
for (d = Direction::First; d < Direction::Last; d++) {
355
- RowCol const current_rc = {n. Row (), n. Col ()} ;
365
+ RowCol const current_rc = n. GetRowCol () ;
356
366
auto const [valid, new_row_col] = step (current_rc, d);
357
367
auto const wall = is_wall (current_rc, d);
358
368
if (valid and not wall) {
@@ -386,9 +396,9 @@ AbstractMaze AbstractMaze::gen_random_legal_maze() {
386
396
387
397
maze.add_all_walls ();
388
398
389
- std::random_device rd;
390
- std::mt19937 g (rd ());
391
- std::uniform_int_distribution<int > uid (1 , 16 );
399
+ static std::random_device rd;
400
+ static std::mt19937 g (rd ());
401
+ static std::uniform_int_distribution<int > uid (1 , 16 );
392
402
393
403
// start at center and move out, marking visited nodes as we go
394
404
maze.mark_position_visited ({SIZE / 2 , SIZE / 2 });
0 commit comments