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:
- 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.
- Generate one building section inside each rectangle, complete with hallway doors.
- 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.

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?