I'm developing a 2D tile engine and at this moment I'm working on map generation algorithms.
I tried the basic ones usually involved in simple heightmap generation like
- hill generation
- perlin noise
- diamond square
but I always get the same problem: this kind of algorithms seems suitable when dealing with tile maps that also have a height component but this is not my case.
I basically have sprites like grass, sea, desert and so on but they shouldn't be placed inside the map according to a generated height but something like
- everything starts from ocean
- islands are placed in the middle of the map (this is where algorithms that I tried failed mostly)
- desert are generated (they should be like random spots around)
- mountain and hills chains are spawned (they should be like snakes)
What kind of approach should I try?
I solved the subcomponent problems (like deserts, hills and mountains) by developing specialized algorithms to do what I needed (for example mountain starts from a point and then follow a direction with a chance of turning) but I'm failing with the generation of the basic islands (which could be customizable to be just a pangea or many degrees of size).
Just to give you a practical idea what I'm looking for is something like the civilization algorithm:

