I'm making a terrain/map generator. The terrain generation works fine, but a problem arises when placing cities around the terrain. I place cities on given terrain depending on the terrain's moisture, temperature, soil quality, and underground mineral prevalence. Naturally, the optimal terrain will have the next-to-optimal terrain very nearby, so my cities appear in clusters, like so (cities are red dots):
The solution I'm leaning towards is identifying if two cities are within a certain defined distance of each other, and if they are, move one of the cities to a location clear of other cities. My questions are:
- Is that the best approach for spreading out cities?
- If so, what technique can I use to determine how close two cities are (I read about nearest neighbor searches and it looked very promising, maybe that)?
I would lower the constrains for possible city-locations. Calculate a probability for each position for a city.
Than set a city by random according to the probabilities of all locations not yet occupied by cities.
Than lower the probabilities around the new set city (within a certain radius, Near the city lower the probabilities a lot (or even set them ti 0) and only lower then less with increasing distance.
This way the cities should be spread around your terrain quite naturally.
Example (very little one) How to take the next location:
You have 3 possible locations with probabilities 0.9, 0,2 and 0.4 Now sum up the probabilities 0.9 + 0.2 + 0.4 = 1.5
now take a random number between 0 and 1.5.