I want to generate some levels for my platformer game which takes place inside an underwater base. Therefore, the levels should consist of several major "domes" linked together by narrow corridors, viewed from the side, navigated left to right.

While I have found some information for generating platformer levels in general, they tend to focus on "smoother" geometry- semi-random and somewhat chaotic hills, unaligned floating platforms and so on. Since I want my levels to resemble a building, I want long, coherently arranged platforms and preferably few "floating" platforms.

On the up side, tight control of difficulty is not an issue- my focus is not on physics/jumping so being navigable and not wholly illogical is enough for my levels.

I can think of some basic steps:

  1. Generate a random number of rectangles with randomized dimensions, and arrange them on a rough line. Perhaps do this by making a short random walk biased to the right to place each rectangles.
  2. Generate one building section inside each rectangle, complete with hallway doors.
  3. Connect the hallway doors.

Generating individual buildings is a bit more mysterious. I can imagine picking a random shape, such as square or dome or trapezoid with slanted roof or slanted side wall, then picking a handful of random points inside, and drawing a platform to the left or right until you hit a wall. Afterwards, a top-down scan can do some pathfinding and draw ladders to make sure every level is accessible.

A very rough drawing (purple shows doors to other buildings)

I am making my game in C#/XNA, although I am considering making the levelgen routines in Matlab.

My question is, does anyone have any advice on this? Are there resources (papers, tutorials, projects, level design guides for humans, anything) that deal with specifically this kind of generation, especially with the algorithm?

Also, how feasible would it be to write a genetic algorithm (possibly manually deciding which results go extinct) for this?

link|improve this question

feedback

closed as not constructive by casperOne Feb 6 at 17:09

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

Your existing plan sounds somewhat feasible. It is harder to generate a coherent whole from random parts, so the top down approach where you start with a building outline seems to be the right way. You're probably not going to find existing material for the exact type of level you want, though you may want to search for procedurally generated buildings instead of platform levels.

You may also want to have multiple algorithms (or sets of parameters for one?) which would allow creation of different sets of levels with unique looks.

Also, this notion of doing generation in Matlab seems misguided. You want the level generator in your game! You can save a list of "good" seeds for the random number generator, but having the option to do random levels seems like a great idea.

link|improve this answer
feedback

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