In this programming project you will implement random maze generation. Start by downloading the attached source file. Study the starting code and make the following changes:

Implement makeMazeRecursive(char[][]level, int startX, int startY, int endX, int endY) using the recursive division method. A general description is on wikipedia:

"Mazes can be created with recursive division, an algorithm which works as follows: Begin with the maze's space with no walls. Call this a chamber. Divide the chamber with a randomly positioned wall (or multiple walls) where each wall contains a randomly positioned passage opening within it. Then recursively repeat the process on the subchambers until all chambers are minimum sized. This method results in mazes with long straight walls crossing their space, making it easier to see which areas to avoid.

For example, in a rectangular maze, build at random points two walls that are perpendicular to each other. These two walls divide the large chamber into four smaller chambers separated by four walls. Choose three of the four walls at random, and open a one cell-wide hole at a random point in each of the three. Continue in this manner recursively, until every chamber has a width of one cell in either of the two directions." see image.

This function is recursive. Note: do not call it on a sub-area when that area is less than 3x3 - this will cause walls to double up.

Since this algorithm does not use any data structures or back tracking, it can create mazes that are not solveable.

Hints:

(The screen shots below use numbers for walls in order to indicate which call to makeMazeRecursive created them - you should use only a # in your final submission.)

It is not necessary to follow these hints, you may implement this algorithm as you see fit based on the description above.

Consider creating a function called randBetween(int l, int u) that creates a random number in an interval - wouldn't this function be useful for deciding where walls should go?

As a first step, implement the basic functionality to draw the two walls that divide the area into four rooms; don't proceed (i.e. add recursion) until it works. It should look something like:

Then implement the recursive call for just one of the sub-areas; don't proceed until it works. Say, the top left. It should look something like:

Then extend the code to the other sub-areas.

Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.