Welcome, Guest. Please login or register.

Login with username, password and session length

 
Advanced search

1411433 Posts in 69363 Topics- by 58418 Members - Latest Member: Pix_RolleR

April 20, 2024, 07:11:16 AM

Need hosting? Check out Digital Ocean
(more details in this thread)
TIGSource ForumsCommunityDevLogsWeltenformer - Atmospheric Terraforming
Pages: [1] 2
Print
Author Topic: Weltenformer - Atmospheric Terraforming  (Read 8210 times)
somin
Level 0
***



View Profile WWW
« on: November 15, 2015, 08:48:29 AM »

Latest pic (if i remember to update this):




# Original Post #

Just started this. I want it to be a sort of terraforming / god game where you can influence the terrain, flora and fauna with simple touch controls.
Eg you rub on a forest and it gets hot and starts to burn. Or you swipe a cloud so it moves a certain direction and when you rub that it starts raining.

I started setting up some water flow shader to test out if this is a feasible way to simulate things. Might work Smiley
« Last Edit: July 20, 2016, 11:31:42 AM by somin » Logged

@sominklein      WIP Story Exploration Game      WIP Weltenformer      Done CLIMB
somin
Level 0
***



View Profile WWW
« Reply #1 on: November 19, 2015, 01:40:14 AM »

Some progress.
I'm having trouble keeping the volume consistent. Which results in this sort of flooding of the oceans.
Not sure how to go about this. Either I have an ocean like the one below or I get a puddle that refuses to flow downhill. That and flipflopping from one pixel to another, always flowing back and forth. Its almost game of life.



Logged

@sominklein      WIP Story Exploration Game      WIP Weltenformer      Done CLIMB
somin
Level 0
***



View Profile WWW
« Reply #2 on: November 25, 2015, 01:19:20 AM »


river beds
« Last Edit: November 25, 2015, 07:14:40 AM by somin » Logged

@sominklein      WIP Story Exploration Game      WIP Weltenformer      Done CLIMB
somin
Level 0
***



View Profile WWW
« Reply #3 on: November 25, 2015, 06:37:06 AM »

« Last Edit: November 25, 2015, 07:14:30 AM by somin » Logged

@sominklein      WIP Story Exploration Game      WIP Weltenformer      Done CLIMB
brantkings
Level 0
***


I like games


View Profile WWW
« Reply #4 on: November 25, 2015, 01:37:36 PM »

Looks okay, and getting a Magic Carpet feel from this! Is it touch based, for mobile?
Logged

somin
Level 0
***



View Profile WWW
« Reply #5 on: November 25, 2015, 11:55:46 PM »

yeah, touch based mobile is the idea. But I'm not certain it'll run at a decent update rate.
I had to crank up the simulation iterations quite a bit from what I initially thought so it might stretch the hardware. I don't have a device to test on yet, so it'll be a surprise Smiley
Logged

@sominklein      WIP Story Exploration Game      WIP Weltenformer      Done CLIMB
kinnas
Level 5
*****



View Profile WWW
« Reply #6 on: November 26, 2015, 01:25:09 AM »

This looks interesting! Mind writing about the techincal side of how you're doing these things in layman's terms? Just general explanations to go along with the screenshots.
Logged

somin
Level 0
***



View Profile WWW
« Reply #7 on: November 27, 2015, 12:49:21 AM »

Sure,
The overall concept is pretty simple actually. as always, the devil is in the details.

First off, I render a heightmap, representing the terrain. This heightmap can later be changed through the interaction with the player ( at the moment you can push things up and down ) and through environmental factors like erosion or volcanoes and such.

In this heightmap, a second channel is dedicated to the height of the water in that pixel.
To make the water flow around I simply check if the full height in the adjacent pixel is higher than the combined height of terrain + water. If it is, it will flow into the current pixel and out of the adjacent one. Only if there is water in that pixel of course.

All this stuff is done with multiply shaders, like post effect shaders basically.
Currently I'm struggling to find a good formula for erosion. I tried multiple approaches to far but non were completely satisfactory. Best case scenario would be getting the rivers to meander naturally. At the moment they look like they meander sometimes but that simply because the are on an uneven surface, not because of proper erosion.
Logged

@sominklein      WIP Story Exploration Game      WIP Weltenformer      Done CLIMB
somin
Level 0
***



View Profile WWW
« Reply #8 on: November 27, 2015, 03:13:41 AM »


some of the flowy stuff in action, and erosion that does not quite work as intended Smiley but getting there.
Logged

@sominklein      WIP Story Exploration Game      WIP Weltenformer      Done CLIMB
Oats
Level 1
*


High starch content.


View Profile
« Reply #9 on: November 28, 2015, 02:17:00 AM »

That looks really good, are you going to keep the very square look or are you going to smooth it out?
Logged

eh
jctwood
Level 10
*****



View Profile WWW
« Reply #10 on: November 28, 2015, 03:31:48 PM »

This looks very interesting.
Logged

somin
Level 0
***



View Profile WWW
« Reply #11 on: November 29, 2015, 12:58:49 AM »

Thanks guys Smiley

I'm not entirely sure what I'll to with the border. I thought about making it round, like a snow globe.
I could make it tile, or have a lower res simulation around it or something.
Logged

@sominklein      WIP Story Exploration Game      WIP Weltenformer      Done CLIMB
somin
Level 0
***



View Profile WWW
« Reply #12 on: July 12, 2016, 11:40:07 PM »

I finally have some more time to work on this! Its still alive! Smiley

I had to change the erosion quite a bit. Before it was rather fake and could not be translated to actual heightmap changes. That works now, but as a result it has become a little less manageable. It often just cuts deep crevasses into the ground which looks a little sucky. I'll have to think about this a little more. I'll probably also need a way to make steep edges just crumble down to smooth things out again.



and then I started to work on lighting a little. Ignore  the textures, its just what I found instantly lying around:



had to write a custom shadow caster, which took some googling to figure out, but then the shadows worked basically right out of the box, which is nice. At the moment its just diffuse with some ambient. No detail normals, no specular or any special treatment for water / wetness at all really. All still to come.


I have several things on my list which I could work on next.
Could be Lava, so more substance can be added. The flow could easily work the same way as the water with some parameter changes. The tricky part is to decide when to turn "lava" into "ground". I was thinking about simulating temperature in some way, we'll see how that goes.
Another thing is vegetation. I was thinking of distributing a lot of billboards using a compute shader and switching textures and scaling up and down depending on different factors like angle of the ground, angle of the camera, wetness of the ground, etc.
Doing shadows that way probably won't work out of the box. I'll have to recompute the mesh specially for the shadow caster I'd guess.

Anyway, I'm glad I finally got some time to go back to this.

Ah, any I also came up with a name I quite like: "Weltenformer"
I'd be curious how that sound to an english / american ear.
« Last Edit: July 13, 2016, 12:15:09 AM by somin » Logged

@sominklein      WIP Story Exploration Game      WIP Weltenformer      Done CLIMB
Codimal
Level 0
**



View Profile WWW
« Reply #13 on: July 13, 2016, 12:09:18 AM »

This looks very interesting. I'm going to follow this devlog.
Logged

somin
Level 0
***



View Profile WWW
« Reply #14 on: July 13, 2016, 09:48:42 AM »

Oh, the pressure Who, Me?

I started introducing temperature as a parameter, as I'll need it for the lava anyway. Did a quick test with the water, having it "freeze" and flow slower and bunch up. I think it'll work quite well.
The current implementation is rather naiv, just depending on the height. That'll have to change, as the water and the lava respectively needs to be able to transfer its own temperature to other places. I'll have to figure that out on the weekend or something.


Logged

@sominklein      WIP Story Exploration Game      WIP Weltenformer      Done CLIMB
somin
Level 0
***



View Profile WWW
« Reply #15 on: July 15, 2016, 01:56:11 PM »

specular!


found this nifty script to create gifs:
https://github.com/Chman/Moments

very convenient Smiley
Logged

@sominklein      WIP Story Exploration Game      WIP Weltenformer      Done CLIMB
thekosmonaut
Level 0
***


View Profile
« Reply #16 on: July 15, 2016, 05:11:06 PM »

have you played Ubisoft's From Dust? It's quite a nice game with some good terraforming physics as well. It might inspire you
Logged

somin
Level 0
***



View Profile WWW
« Reply #17 on: July 15, 2016, 10:39:09 PM »

I did!
But the gameplay of sending those people across the land killed it for me. That was now fun Shrug
I'm thinking this will be more of a watching the flowers grow type of game. Very indirect interaction and no goal to the game except what the players set themselves.
At the moment the way I interact is still quite direct, but the plan is to have 2 or 3 interactions total:

1. swiping clouds around and rubbing them to make it rain where you want
2. rubbing the ground to make it "hot" and basically create little volcanoes
(3. pinching the ground to, basically, shift tectonic plates and make a mountain in the middle)

As you might guess from that list, the initial idea was to have this run on a tablet. But a the moment I don't see that happening. I had to use shader model 4.0 for one thing.
But hopefully It'll run in VR Smiley
Logged

@sominklein      WIP Story Exploration Game      WIP Weltenformer      Done CLIMB
TheWanderingBen
Level 1
*


Making Games Around the Globe


View Profile WWW
« Reply #18 on: July 16, 2016, 04:23:19 AM »

VR with this game would be fantastic -- like creating your own miniature world that you could spin in front of you. That statement alone makes me excited for the future of this! Good luck!
Logged

somin
Level 0
***



View Profile WWW
« Reply #19 on: July 18, 2016, 12:33:44 AM »

starting on some super ugly vegitation:

Logged

@sominklein      WIP Story Exploration Game      WIP Weltenformer      Done CLIMB
Pages: [1] 2
Print
Jump to:  

Theme orange-lt created by panic