Irregular Shaped Rooms

From RogueBasin
Revision as of 18:16, 21 March 2009 by PaulBlay (talk | contribs)
Jump to navigation Jump to search

Rectangular or any type of regularly shaped room in roguelike games has always bothered me, so today, instead of working I came up with a simple way to generate irregular polygons, or more "natural" looking caves. A few examples are shown below.

rooms2.JPG

How it works

The basic concept is simple enough:

  1. Enclose an area in 4 rectangles (left picture),
  2. Randomly choose at least 1 point in each of the rectangles (second from left),
    1. Order the points in Rectangle A by their X value, from low to high, add them to a list.
    2. Order the points in Rectangle B by their Y value, from low to high, add them to a list.
    3. Order the points in Rectangle C by their X value, for high to low, add them to a list.
    4. Order the points in Rectangle D by their Y value, from high to low, add them to a list.
  3. Starting with the first point in the main list use Bresenham's Line algorithm to connect it to the next point, and so on, until you reach the end of the list. Connect the last point to the first point of the list, to completely enclosed the shape (third from left picture). The way the points have been arranged means they are connected in a clockwise direction (right picture).

rooms1.jpg

Notes

Step 2, really is the most important part, so here it is again.

Moving from left to right, the points in Rectangle A are joined, then moving from top to bottom the points in Rectangle B are joined, then moving from right to left Rectangle C's points are joined and finally, from bottom to top Rectangle D's points are joined. Basically, we move around the rectangles clockwise joining the points as we go. This is the most important bit to get right, else the polygon produced is not enclosed.

Messing around with the settings can produce some surprising and varied shapes. Have fun!