TUXDB - LINUX GAMING AGGREGATE
by NuSuey
NEWSFEED
▪️ GAMES
▪️ STEAM DECK ▪️ DEALS ▪️ CROWDFUNDING ▪️ COMMUNITY
tuxdb.com logo
Support tuxDB on Patreon
Currently supported by 8 awesome people!

🌟 Special thanks to our amazing supporters:


✨ $10 Tier: [Geeks Love Detail]
🌈 $5 Tier: [Arch Toasty][Benedikt][David Martínez Martí]


Patch 1.9.1 Notes - New Prison Control Point! Massive Performance Boost (+50%)

HOTFIX 1.9.1 - Fixes some issues, scroll down to see the changelog

Old Prison Control Point:


Finally a new big control point! The Old Prison:

The prison is about the same size as the Military base but can be attacked right from the game start (although its really not recommended). The reward for holding it is +5 Allure which will help you unlock perks faster. It starts at Level 3 and has a maximum level of 10.

Massive Performance Increase:


This patch uses a combination of rendering techniques to increase performance and also removes redundant rendering and uploading of meshes to the GPU. I was going to make these in Turf2 but I needed some scenes to see what kind of performance gain can be obtained. Rather than making a dummy scene in T2 I've decided to juice up VT's rendering engine and get some real world experience implementing them. Voxel Turf has different rendering techniques for Near-Chunks and Far-Chunks. Near Chunks have 1 graphics mesh (VBO henceforth) per texture, and far chunks use a texture atlas and therefore use 1 VBO per rendering layer (typically 1-3 layers per chunk). The problem with this is that each time a VBO is bound to be rendered there is an overhead cost. Because of this overhead the GPU is not utilised as much as it could be and performance is less than what it should be. For near chunks I now use Texture Arrays. Textures of the same size are batched together for each chunk, massively reducing the amount of VBOs created (and therefore reduces binding overhead). For far chunks I now use Indirect Rendering. Chunks are bucketed into regions of 256x256 and all the geometry is sent to one big, fixed size VBO ("MegaVbos"). If this VBO gets filled up then excess geometry goes into the next one, etc. MegaVbos are created once and are reused, saving creation/destruction overhead and memory fragmentation. MegaVbos are drawn with one bind and one 'glMultiDrawElementsIndirect' draw command. In older versions of VT a mesh was generated for Near and Far rendering modes for each chunk within the players draw distance. Now only chunks within the Near draw range (typically ~100-150m) have their near modes generated and uploaded to the GPU. This removes a lot of probably-unused VBOs from being created and uploaded. In addition sometimes when a chunk is updated or loaded in it can trigger a rerender event on adjacent chunks, causing their VBOs to be regenerated. Sometimes the regenerated VBO is identical to the old one. Now the game computes a hash as the VBO is being generated, if its the same as the previous VBO then the new one discarded and not uploaded to the GPU. Finally the game batches destruction of VBOs and temporary textures (for eg, minimap pieces). Instead individual assets being destroyed on object destruction, assets are added to a garbage list. This list is kept in a delay queue for 4 frames and then batch destroyed with 1 api call. This massively speeds up chunk-unloading on the client. Texture Arrays and Indirect Rendering are enabled by default in the Graphics Settings menu. They require Shaders be turned on and OpenGL 4.3+. Test Scene Results: Performance preset: "Extreme 2", Shadows Ultra. AMD R9-3900X + Nvidia GTX 1080. Best case improvement = 88 FPS/49 FPS = +70%.
A more typical performance boost is in the order of ~+50% with both techniques enabled. Test scene (screen resolution has changed from 1080p to 900p in these tests but do not effect results)

Full Changelog


VERSION 1.9.1 - 26/09/2022 =========== - [Bugfix] - vtserver: flagShutdown() now waits for currently saving files to flush to disc (not just orderly shutdown) - [Bugfix] - vtclient: Use manual mipmap generation for texture arrays rather than automatic (AMD drivers can crash on mipmap gen for texture arrays) - [Misc] - vtclient: If the game crashes when trying to create Texture Arrays then Texture Arrays will be automatically disabled on next startup - [Misc] - vtclient: Resized some non-power-of-2 block textures. Only power-of-2 block textures can now be made into texture arrays. - [Performance] - vtserver: When a player is in a dungeon, it will now only check ~150 chunks for dungeon updates every tick instead of every chunk loaded on the server (with 40k chunks loaded this could take 16ms a tick!). - [Performance] - vtserver: Made unloading chunks a bit faster VERSION 1.9.0 - 24/09/2022 =========== - [Feature] - Added the Old Prison control point. Gives +5 Allure to whomever captures it - [Misc] - MegaVbos now use a free list to reusue free memory - [Misc] - Planes now go ~12% faster VERSION 1.9.0-RC2 - 21/09/2022 =========== - [Bugfix] - Fixed world holes - [Bugfix] - Fixed minimap pieces not appearing - [Bugfix] - Fixed buildings not rendering correctly in preview window VERSION 1.9.0-RC1 - 17/09/2022 =========== - [Note] - Shaders are now enabled by default for intel iGPUs, providing that they support Opengl4.6. Drivers newer than 2019 should support this. - [Bugfix] - vtserver: Specualtive fix for save corruption - when requesting an orderly shutdown wait for the LotContainer saving thread to finish writing. - [Bugfix] - vtclient: Fixed some crash-on-exit issues - [Bugfix] - vtclient: Fixed some memory leaks - [Bugfix] - Fixed white text decals not being visible on distant chunks - [Performance] - vtclient: Implemented array-textures for near chunks. ~25% FPS increase - [Performance] - vtclient: Implemented indirect draw for far chunks & shadow maps. Far chunks are batched into groups of 256m x 256m. Another ~25% FPS increase at 600+ draw distance - [Performance] - vtclient: Only generate high quaility renders of chunks that are near the player (typically closest 100m). Up to 50% reduction in vbo usage/graphics memory consumption at long draw distances - [Performance] - vtclient: Now batches the destruction of OpenGL buffers and textures. Destruction is delayed by 4 frames to prevent OpenGL sync/stall. Makes unloading/unrendering chunks much faster - [Performance] - Both vtclient/vtserver - freshly discarded chunks are now stored in free-list to be reusued. Saves a abunch of big allocations/deletions. This pool will shrink over time to ~2048 chunks - [Performance] - vtclient: Up to 5% (additional) fps increase by removing reduntand OpenGl calls - [Performance] - vtclient: Stop processing network packets if we've spent 25ms already in a frame doing them (wait until next frame to continue) - [Misc] - Added a timeout for drawing the map (the one that appears when you press M). This is to prevent the game becoming unresponsive when zoomed out on massive maps - [Misc] - You can now choose how many render threads you have in the graphics settings menu. Default amount is square_root(num_cpu_threads), min 2.


[ 2022-09-24 08:38:38 CET ] [ Original post ]



Voxel Turf
L Twigger
  • Developer

  • L Twigger
  • Publisher

  • 2017-09-13
  • Release

  • Indie Strategy Simulation Singleplayer Multiplayer Coop
  • Tags

  • Game News Posts 63  
    🎹🖱️Keyboard + Mouse
    🕹️ Partial Controller Support
  • Controls

  • Very Positive

    (512 reviews)


  • Review Score

  • http://www.voxelturf.net/
  • Website

  • https://store.steampowered.com/app/404530 
  • Steam Store

  • The Game includes VR Support

    Keyboard & mouse

     1 

     

    Room width requirement

     2 

     

    Room depth requirement

     1.5 

     

    Standing

     1 

     

    Seated

     1 

     

    Voxel Turf Content [253.31 M]

  • Public Linux depots

  • Voxel Turf is a block based city builder/action adventure game. Build cities or destroy them. Start businesses or rob them. Nurture your citizens or subjugate them. Build a real estate empire, or perhaps just drive around and blow stuff up. Its your choice! Voxel Turf allows you to be the force of benevolence or the agent of chaos in a city of your creation.

    - Have you ever played an open world game and thought "if only I could build something here?"
    - Or a city builder and wanted to drive around and interact with your creation?
    - Or even a building game and thought "if only these buildings would come to life?"
    If so then Voxel Turf is the game for you!

    Live in a City of Your Own Creation
    - Build sprawling cities with either the over 50 prebuilt buildings, or build your own in-game!
    - Make amazing structures with over 15,000 types of blocks in over 100 categories.
    - Or live in and modify a procedurally generated city

    Get Rich or Die Trying
    - Earn cash from either completing missions, crime, or managing a real estate empire.
    - Establish protection rackets to make money
    Some of the missions revolve around:
    - Being a hired revolutionary who fights the local authorities for cash
    - Participating in street races for money
    - Making a career though stealing vehicles for profit
    - Eliminating bandits and protecting civilians from bandit attacks
    - Be a specialist architect who draws an income from making custom buildings

    Unleash Chaos
    - Destroy and vandalise areas with explosives, weapons and tanks.
    - Ride a wide range of vehicles including cars, a tank, helicopters and even a rideable shopping trolley!

    Enjoy Multiplayer
    - Multiplayer over LAN or Internet
    - Most missions can be done in Co-Op
    - Cooperate with friends to build a city, or compete and undercut each other

    Fight For Territory
    - Explore and raid bandit bases for loot
    - Fight Turf Wars against other factions and players to gain control over parts of the city
    - Build bases and defend your territory from attack
    - Engage in diplomacy with other factions in order to gain power or undermine others

    Unleash Creativity
    - The entire world is block based, so you can create and destroy everything.
    - Decorate blocks with paint and decals
    - Various non-cube construction blocks, including ramps, stairs, steps, allowing you to build things like pitched roofs and ultimately more realistic looking buildings.
    - Build intricate contraptions using switches, mechanisms and circuits
    - Custom player-built buildings can be saved as templates, and be placed like normal buildings
    - Templates can be synced across a network

    Character Customisation
    - Over 50 player skins
    - Support for custom player skins
    - 10 hats for your character to wear, also wearable body armour.
    - Weapons are customisable too! Attach weapon mods to weapons to change their appearance and behaviour. Make shotguns explosive, make your pistol armour piercing or your SMG scoped!

    Modding Support
    - Steam Workshop integration
    - Lua Scripting for easy moddability with a C++ scratch-coded base game engine for performance

    Game Modes

    • Turf: Start in a procedurally generated city, and do what you want. Build, do missions, do crime, do whatever!
    • Build: Start on a blank map and build whatever you want with unlimited blocks.
    • Turf Zero: Start on a blank map and build a city from scratch. Scavenge resources from bandit bases.
    • Strategy: Start in a procedurally generated city with 16 warring factions. Use diplomacy and warfare to gain control over the entire city!
    MINIMAL SETUP
    • Processor: 64 bit only. Intel I5Memory: 4 GB RAM
    • Memory: 4 GB RAM
    • Graphics: Intel HD Graphics 4000
    • Storage: 500 MB available space
    RECOMMENDED SETUP
    • OS: Ubuntu 16.04. Mint 17.1
    • Processor: 64 bit only. Intel Core i5 4690 or AboveMemory: 8 GB RAM
    • Memory: 8 GB RAM
    • Graphics: GTX 770 2GBNetwork: Broadband Internet connection
    • Storage: 500 MB available spaceAdditional Notes: Any SSD
    GAMEBILLET

    [ 5939 ]

    52.17$ (13%)
    8.39$ (16%)
    12.74$ (15%)
    15.09$ (25%)
    32.02$ (47%)
    15.99$ (20%)
    3.63$ (82%)
    21.21$ (15%)
    19.49$ (35%)
    16.79$ (16%)
    8.27$ (17%)
    4.12$ (17%)
    4.59$ (8%)
    4.00$ (80%)
    3.33$ (78%)
    21.99$ (37%)
    13.99$ (30%)
    14.99$ (25%)
    6.73$ (81%)
    10.78$ (17%)
    1.66$ (17%)
    15.99$ (20%)
    8.29$ (17%)
    16.88$ (16%)
    19.98$ (20%)
    4.70$ (76%)
    5.97$ (14%)
    4.19$ (16%)
    8.29$ (17%)
    20.49$ (18%)
    GAMERSGATE

    [ 3154 ]

    3.0$ (70%)
    6.0$ (70%)
    55.99$ (20%)
    9.0$ (70%)
    7.5$ (50%)
    3.0$ (95%)
    7.5$ (70%)
    4.8$ (60%)
    5.95$ (65%)
    8.99$ (10%)
    15.0$ (62%)
    12.18$ (51%)
    16.19$ (46%)
    2.03$ (77%)
    3.38$ (81%)
    13.39$ (33%)
    4.5$ (77%)
    0.53$ (92%)
    4.0$ (80%)
    0.48$ (52%)
    1.13$ (92%)
    2.25$ (85%)
    1.28$ (87%)
    44.99$ (10%)
    2.25$ (89%)
    34.99$ (30%)
    0.75$ (81%)
    3.94$ (74%)
    1.13$ (92%)
    1.05$ (92%)

    FANATICAL BUNDLES

    Time left:

    3 days, 7 hours, 57 minutes


    Time left:

    26 days, 7 hours, 57 minutes


    Time left:

    8 days, 7 hours, 57 minutes


    Time left:

    39 days, 7 hours, 57 minutes


    Time left:

    45 days, 7 hours, 57 minutes


    HUMBLE BUNDLES

    Time left:

    6 days, 1 hours, 57 minutes


    Time left:

    6 days, 1 hours, 57 minutes


    Time left:

    15 days, 1 hours, 57 minutes

    by buying games/dlcs from affiliate links you are supporting tuxDB
    🔴 LIVE