Say you want a simple maze on an N by M grid, with one path through, and a good number of dead ends, but that looks "right" (i.e. like someone made it by hand without too many little tiny dead ends and all that). Is there a known way to do this?
|
feedback
|
|
From http://www.astrolog.org/labyrnth/algrithm.htm
They produce only 10% dead ends
is an example of a maze generated by that method. | ||||
feedback
|
|
A pretty straightforward solution could be to assign random weights to the graph edges and apply Kruskal's algorithm to find a minimum spanning tree. Best discussion ever on maze generation algorithms: http://www.jamisbuck.org/presentations/rubyconf2011/index.html (was on HN a couple days ago). | |||
|
feedback
|
|
Strangely enough, by slightly changing the 'canonical' rules and starting from a random configuration, Conway's Game of Life (I don't know why my Wikipedia link is not working!) seems to generate pretty nice mazes! (I don't remember the exact rule, but it's a very simple modification that tends to 'densify' the population of cells...) | |||
|
feedback
|
|
I would ask Dr Falken. He's good with mazes. I'm slightly surprised that he has a MySpace account. Who knew! | |||
|
feedback
|
