Jump to content

Terrain and Light


Tyron

Recommended Posts

New since last update:

  • Added Lake generator (produces small lakes randomly)
     
  • Improved Landform generation (landform specific terrain noise octaves)
     
  • Preparing new Lighting system: All loaded chunks on the server and on the client are now compressed in-memory. The loaded chunks account for 60-90% of all memory consumption of the game, and the compression ratio for this kind of data is 95-99% which basically means the memory usage is 3-5 times less. The big challenge herin lies to do it efficiently so the game doesn't lag. I chose to run compression in a seperate thread (= runs in parallel), which is however known as a nightmare topic for many programmers to get it bug free.
     
  • Preparing new Lighting system: Added data fields for each chunk to be able to store 32 block player light, 32 block sun light as well as about one more byte for storing color values (e.g. blue glowing mushrooms! 🙂
    This causes chunks to use more than twice the memory, so in-memory chunk compression was the solution that should hopefully get us there without loosing view distance.

    All in all quite the challenging task to juggle around with more than double the data, but that's what this project is here for - to push boundaries.


This time I spent some extra time exploring the world, I start to quite like what it produces by now. Have a look!

Pictures: https://imgur.com/a/0YXrO

Up next: Bugfixing, Cleanup, Tweaking, Continue work on new lighting system


View full record

  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.