[wpseo_breadcrumb]

Random map generation

Solutons:


Among the many other related questions on the site, there’s an often linked article for map generation: Polygonal Map Generation for Games you can glean some good strategies from that article, but it can’t really be used as is.

While not a tutorial, there’s an article on how Dwarf fortress world maps are generated. Basically you generate multiple layers of noise, for height, moisture, temperature, salinity. Then you’d use something like this:

enter image description here

Or this

enter image description here

to generate biomes based on the layers of noise you produced before. Typically this gives a fairly smooth transition between biomes and the transitions are logical.
I also modify the moisture and temperature maps based on elevation. This naturally generates a “timber line” and produces rocky mountains with snowy caps.

I’m using this strategy my game and it produces maps like this very quickly:

enter image description here

Additionally, you can see me scroll through a few more maps at the beginning of this video.

And here’s some more to get you started:

How can I create a random “world” in a tile engine?

How can I identify feature regions in a procedurally generated world?

How do I create tileable solid noise for map generation?

While the other answers here are really good for generating the kinds of static landscapes that would work for this specific need. There are other methods that people coming across this question might be looking for if they want to create landscapes that change over time or appear much more realistic you can follow this technique.

Unlike the other answers you begin this with an entirely empty map. Start with what you would consider to be sea level. Use Perlin Noise to add very slight variation, if you have 256 possible elevations, don’t vary more than 3-5 in either direction. This builds the first few billion years of your landscape without having to actually run a simulation for that long.

Plate Tectonics

Split the map along straight or curved lines to create plates, the more detailed the shapes of the plates the more interesting your landscape with be. Keep them large. Give each plate a direction, speed. Over a given timeframe move the plates in step-wise fashion around the map, dragging all tiles above them with them.

When two plates cross, make a choice of which will go over and which will go under, this choice can be random. Tiles on plates designated under are instantly reduced in height by 5 steps. Once a plate has been designated over or under, all future interactions with plates will follow these rules:

  • Where a designated plate crosses an undesignated plate, the undesignated plate becomes the opposite type. (So UD plates becomes under when crossing an over.)
  • Where an over plate sits over an under plate, all those tiles move up 0-1 elevation steps, and the tiles follow the path of the over plate.
  • Where an over plate crosses an over plate, all those tiles move up 1-2 steps, and the tiles in the cross over region no-longer drift.
  • Where an under plate crosses an under plate, any tiles in the area with elevation greater than the 66% mark for both plates in the cross over region move up 1-3 steps (as if by volcanic activity, this will produce islands over enough time) and tiles in this area stop drifting.

All plates that cross slow by 20% of their current speed each step. For added realism, add a random -10% to 10% change in direction of movement each step.

After performing the desired number of steps. Probably 5-10 are plenty. Any tiles where no plates are resident, should be dropped to the lowest existing level.

Large or Small?

This map can be used as is, or be expanded to create a much larger map by breaking it into 4X4 tile(cell) chunks and expanding those sections based on their individual elevations. Treat each cell’s elevation as a point, and create a smooth gradation in the larger map between those points. So, if the larger map is 40X40 instead of 4X4, and point (0,0) was 10 and point (0,1) was 1, the tiles on the larger map between them would be 10,9,8,7,6,5,4,3,2,1 in height. Further Perlin Noise can be added to de-smooth the slopes. Over all this scaling technique is similar to the Diamond Square algorithm.

Water

To simulate rivers and lakes, oceans and water tables. I prefer to use cellular automata.

Heights become floats or expanded int ranges to allow for finer grained tracking. Water cells have saturation values, say in the range of 1-256. The maps should start evenly. You’ll need to play with the numbers for your individual map sizes, however generally you will follow rules something like this:

  • If a neighbor cell is more saturated, increase saturation and gain height.
  • If a neighbor cell is less saturated, decrease saturation and lose height.

Make this check for every neighboring cell. Run through a sufficient number of steps. If you want, you can add temperature to this simulation by changing the amount of lost/gained saturation by that temperature. You also can change it based on elevation. Natural lakes and rivers should form. Some will fall into the ocean. (The ocean won’t probably fill by any metric, but you’ll designate anything under sea-level to be water filled at the end anyway.)

You can keep the temperature and saturation data to use, like in the other answers, to create biomes. They should be MUCH more accurate and interesting. With snowy biomes at the poles and hot ones in the middle (if you uses a smooth graduated list of temperatures.)

You can also simulate wind, and therefore temperature changes based on the elevations. You can step back and forth between running the temperature simulation and the water simulation if you want. However I haven’t built anything using temperature changes so I won’t comment on how to do that.

Evolving Landscapes

If you keep the simulations for land, water, and heat around and dramatically reduce their effects and also stop the plates from moving, you can continue to change all of these metrics over time. I wouldn’t run the calculations very often, but you can get a world map that responds to changes this way.

Conclusion

While these kinds of techniques are way more involved, they produce a lot more realistic and evolving effects. Take it for what it is worth?

You can use Perlin Noise for the generation of the terrain, here is how the biomes in Minecraft work.
As you can see he uses a heatmap in combination with a rainmap to create the biomes.

Biomes from Minecraft

Related Solutions

What is D-Bus practically useful for?

dbus does exactly what you said: it allows two-way communication between applications. For your specific example you mentioned terminator. From terminator's man page, we see: --new-tab If this is specified and Terminator is already running, DBus will be used to...

How to check ‘mdadm’ RAIDs while running?

The point of RAID with redundancy is that it will keep going as long as it can, but obviously it will detect errors that put it into a degraded mode, such as a failing disk. You can show the current status of an array with mdadm --detail (abbreviated as mdadm...

What is a “toast notification”?

A Toast is a non modal, unobtrusive window element used to display brief, auto-expiring windows of information to a user. Android OS makes relatively heavy use of them. Here's an example of a Google Chrome toast notification on Mac OS X: A list of descriptions...

Which elliptic curve should I use?

You are misreading Bernstein and Lange's advice (admittedly, their presentation is a bit misleading, with the scary red "False" tags). What they mean is not that some curves are inherently unsafe, but that safe implementation of some curves is easier than for...

How can I find files that are bigger/smaller than x bytes?

Use: find . -type f -size +4096c to find files bigger than 4096 bytes. And : find . -type f -size -4096c to find files smaller than 4096 bytes. Notice the + and - difference after the size switch. The -size switch explained: -size n[cwbkMG] File uses n units of...

Relative imports in Python 3

Explanation From PEP 328 Relative imports use a module's __name__ attribute to determine that module's position in the package hierarchy. If the module's name does not contain any package information (e.g. it is set to '__main__') then relative imports are...

How to add a class to a given element?

If you're only targeting modern browsers: Use element.classList.add to add a class: element.classList.add("my-class"); And element.classList.remove to remove a class: element.classList.remove("my-class"); If you need to support Internet Explorer 9 or lower: Add...

less searches are always case-insensitive

I'm not sure how to enable this from the command line but when you're inside of less you can toggle the behavior you want by giving the -i command to less. toggling -i                searching for /blah and /BLAH               searching for /Blah       ...

Is using nested try-catch blocks an anti-pattern?

This is sometimes unavoidable, especially if your recovery code might throw an exception. Not pretty, but sometimes there are no alternatives. I don't think its an antipattern, just widely misused. Most nested try catch's are indeed avoidable and ugly as hell,...

Create a branch in Git from another branch

If you like the method in the link you've posted, have a look at Git Flow. It's a set of scripts he created for that workflow. But to answer your question: git checkout -b myFeature dev Creates the MyFeature branch off dev. Do your work and then git commit -am...

How can I set customise settings for htop?

htop has a setup screen, accessed via F2, that allows you to customize the top part of the display, including adding or removing a "Load average" field and setting it's style (text, bar, etc.). These seem to be auto saved in $HOME/.config/htop/htoprc, which...

Is there any way to manually bring up the keyboard?

As I see an alternative keyboard may solve your issue, and this seems to be an acceptable solution, and you even mention something you cannot find -- hereby I proudly present: Hacker's Keyboard Checking its Guide, there's in fact a section suggesting such a...

How to get rid of “No match found” when running “rm *”

This behaviour is controlled by several of Zsh's globbing options. By default, if a command line contains a globbing expression which doesn't match anything, Zsh will print the error message you're seeing, and not run the command at all. You can disable this in...

How to append date to backup filename

This isn't working because the command date returns a string with spaces in it. $ date Wed Oct 16 19:20:51 EDT 2013 If you truly want filenames like that you'll need to wrap that string in quotes. $ touch "foo.backup.$(date)" $ ll foo* -rw-rw-r-- 1 saml saml 0...

What does __all__ mean in Python?

Linked to, but not explicitly mentioned here, is exactly when __all__ is used. It is a list of strings defining what symbols in a module will be exported when from <module> import * is used on the module. For example, the following code in a foo.py...