Are there algorithms to produce 3 dimensional mazes? Essentially the same as a 2D maze but the Z depth axis can be traversed? The idea is still the same though, to get from Start to End. Could backtracking still be used?

Which algorithm should I use to generate a 3D maze?

See here. I mean that you can go into the cube too, not just iterate the faces of it.

link|improve this question

Do you want one that solves a maze, or generates a maze? – X-Zero Dec 10 '11 at 0:16
@X-Zero Generates it. – Milo Dec 10 '11 at 0:17
you could create a 2d maze on a grid and to make it 3d every grid cell would instead be a box with a "height" – danca Dec 10 '11 at 0:17
I do not just want a raised maze. – Milo Dec 10 '11 at 0:20
1  
maybe you could explain more about what type of maze you're trying to create? – danca Dec 10 '11 at 0:23
show 3 more comments
feedback

2 Answers

I made 2d mazes a few years ago using Kruskal's Algorithm here. There should be no reason this couldn't work with the 3d case you described. Basically you'd consider a cell a cube, and have a large array that has (for every cells), 6 walls in the +/- x, y, and z directions. The algorithm initially starts with all walls everywhere and randomly makes walls disappear until every cell in the maze is connected.

link|improve this answer
+1 For Kruskal's algorithm. :) – muntoo Dec 10 '11 at 1:21
I like the basic idea, but perhaps the goal should not be merely having every cell in the maze connected, but rather that in addition the connections should be loop-free (a "tree" in graph theory terminology). That would force the solution to the maze to be unique. This requires that some random choices for (intermal) walls to disappear would be rejected, whenever they would introduce loops in the connections. Equivalently these "rejected" choices are ones that do not reduce the number of connected components in the graph. – hardmath Dec 10 '11 at 2:28
1  
hardmath; Kruskal's algorithm takes care of this. I didn't really explain this with my oversimplified explanation. Basically, a wall will get deleted only if it connected 2 new regions. It does this by checking if both cells on each side of the wall belong to a distinct set. This can be done really efficiently with a Disjoint-set data structure. The Wikipedia link explains it better. – Ben Goodrich Dec 10 '11 at 4:01
feedback

I have the code for generating a 2D maze in, of all things, RPGLE (something I did as a self-exercise while learning the language). Because of the way I wrote it, about the only changes necessary for the general alogrithm would be to add the Z dimension as an additional dimension...

The entire thing is 20 pages long (although this includes input/output), so here's some code. You should be able to translate this into whatever language you need: I translated it from spaghetti-code BASIC (gotos were way overused here, yeah. But it was a fun exercise).

//set out maximum maze size
maximumMazeSquareCounter = mazeHorizontalSize * mazeVerticalSize + 1;
// generate a starting horizontal positiongetRandomNumber(seed : randomNumber);
currentHorizontalPosition = %inth(randomNumber * (mazeHorizontalSize - 1)) + 1;
currentVerticalPosition = 1;
mazeSquareCounter = 1;
// generate the top row of the maze (with entrance)
mazeTopRow = generateEntrance(currentHorizontalPosition);
//write to the printer file
writeMazeDataLine(mazeTopRow);
mazeSquareCounter += 1;
//set the first position in the maze(the entry square
setPathPoint(currentHorizontalPosition : currentVerticalPosition);
//do until we've reached every square in the maze
dou mazeSquareCounter >= maximumMazeSquareCounter;
//get the next available random direction
mazeDirection = getNextRandomDirection(getNextAvailableDirection(currentHorizontalPosition : currentVerticalPosition));
//select what to do by the returned results
select;
//when FALSE is returned - when the maze is trapped
when mazeDirection = FALSE;
//if not at the horizontal end of the maze
if currentHorizontalPosition <> mazeHorizontalSize;
//add one to the position
currentHorizontalPosition += 1;
//else if not at the vertical end of the maze
elseif currentVerticalPosition <> mazeVerticalSize;
//reset the horizontal position
currentHorizontalPosition = 1;
//increment the vertical position
currentVerticalPosition += 1;
//otherwise
else;
//reset both positions
currentHorizontalPosition = 1;
currentVerticalPosition = 1;
endif;
//when 'N' is returned - going up (other directions removed)
when mazeDirection = GOING_NORTH;
//set the point above current as visited
setPathPoint(currentHorizontalPosition : currentVerticalPosition - 1);
//set the wall point to allow passage
setWallDirection(currentHorizontalPosition : currentVerticalPosition : GOING_NORTH);
//change the position variable to reflect change
currentVerticalPosition -= 1;
//increment square counter
mazeSquareCounter += 1;
endsl;
enddo;
//generate a random exit
// get a random number
getRandomNumber(seed : randomNumber);
// set to the horzontal position
currentHorizontalPosition = %inth(randomNumber * (mazeHorizontalSize - 1)) + 1;
//set the vertical position
currentVerticalPosition = mazeVerticalSize;
//set wall to allow for exit
setWallDirection(currentHorizontalPosition : currentVerticalPosition : GOING_SOUTH);

The entire thing is backed by two two-dimensional arrays (well, the RPG equivalent): One for the walls that occupy the 'square', and the other for whether or not that square has been visited. The maze is created after every square has been visited. Garuanteed one-path only, worm-turns maze.

To make this three-dimensional, make it use three-dimensional arrays, and add the necessary dimension index.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.