Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Rock layers in Procedural Map Creation

+0
−0

I've been working on a procedural map generator for a strategy game (if I ever get to gameplay). My general development philosophy is "believable but not necessarily realistic", in other words I don't want things like ridiculous inland seas (Rimworld) or easily identifiable perlin noise maps (Kingdoms and Castles). Countless games use procedural generation but I find they don't go deep enough in the generation process.

With this in mind I want to go somewhat deeper and identify a nice balance between creating a fun, believable world and avoiding a too technical process.

So far my process is:

  1. Identify tectonic plates, their general directions, and their borders
  2. Oceanic tectonic plates get a lower base height than continental ones (randomly chosen)
  3. Apply the tectonic plate border effects to the height map
  4. Apply a thin layer of perlin noise to the whole map for flavor
  5. Identify ocean/land
  6. Determine wind directions <- I am here
  7. Determine moisture, rivers, water cycle
  8. Apply erosion

I've been thinking ahead, and I'd like to implement waterfalls and some minor research led me to rock layers since waterfalls are caused by different terrain hardnesses.

1) Would it be fine to just do a separate layer of rock types from a perlin noise diagram, or should I use the tectonic plates I already have to implement something more realistic?

2) What else are rock layers important for in worldbuilding and map generation? I was considering them as a possible resource for eventual cities and factions to make use of, but right now I'm focused more on natural elements of the world. Erosion comes to mind.

Screenshot of the generated map (height map and relief shading)

Screenshot of the generated map (tectonic plates)

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

This post was sourced from https://worldbuilding.stackexchange.com/q/165521. It is licensed under CC BY-SA 4.0.

0 comment threads

0 answers

Sign up to answer this question »