Procedural Labyrinth

In a group project, it was my assignment to create a labyrinth generator. Since I had recently properly understood recursion, I decided to create the labyrinth recursively.

The maze is saved as a two-dimensional array, that has 1's for walls and 0's for hallways. Before the generation, the array is filled with 0's. The recursive function begins in the middle, working outward. The reason for this was that the player has to start in the middle as well.

After every step, multiple things are considered: Is the next tile a wall? Would adding this path create a circle? How many new paths? ...


AverageLabyrinthGeneration

The function does not end once an exit is found; instead, it ends once no more paths can be built.
That can cause some really good results with a well-filled grid...

GoodLabyrinthGeneration GoodLabyrinthGeneration

...but there are also instances when the algoritm collides quickly or cover only one half of the map. For example when it generates only little hallway splits and then collides with itself. It's like running into yourself while playing 'snake', but your snake can split itself.


BadLabyrinthGeneration HalfLabyrinthGeneration