On the Subject of Identifying Mazes
Easy.
There will be 4 shapes, some of which are illuminated, four numbered buttons and a submit button (button with a ‘!’ on it). Submit the seed of the maze you’re in to solve the module.
When not in submit mode, each button may:
- Moves you forwards one cell
- Moves you backwards one cell
- Rotates you clockwise by 90 degrees
- Rotates you counter-clockwise by 90 degrees
If you hit a wall, your position will not change, you will not get a strike.
The lit shapes tell you what walls are surrounding you, according to the list below:
- Triangle - In front of you
- Square - On your right
- Hexagon - Behind you
- Octagon - On your left
Seeds
Every maze is constructed from 4 quadrants, the value of which can be found below. Note that a quadrant may have some of its walls missing in order to connect the quadrants together. The square that’s connected to the center will never be missing, though.
Value | 1 | 2 | 3 | 4 |
---|---|---|---|---|
Quadrant | ╔═╦═╗ ║x║x║ ║⠀║⠀║ ║x⠀x║ ╚═══╝ |
╔═══╗ ║x⠀x║ ║⠀══╣ ║x⠀x║ ╚═══╝ |
╔═══╗ ║x⠀x║ ║⠀║⠀║ ║x║x║ ╚═╩═╝ |
╔═══╗ ║x⠀x║ ╠══⠀║ ║x⠀x║ ╚═══╝ |
To find the seed, take the values of each quadrant in reading order and concatenate them into a four-digit string.