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

🌟 Special thanks to our amazing supporters:


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

Steam ImageSteam ImageSteam ImageSteam ImageSteam ImageSteam Image
December 2019 Update

Welcome to theKing under the Mountainmonthly update! A little late (again) though I hope you'll forgive me what with it being the Christmas holidays. At the end of last month's update I was all set on finally moving on to mod support, or at least initially different translations. After the update, on 19th November, Alpha 2.8 was released which introduced the new Kickstarter-backer-specified resources. This brought a reasonable amount of traffic from players old and new, including highlighting several bugs and other problems, most of which had been around a while but I hadn't been able to recreate myself. In the end, I spent late November and most of December rewriting the item allocations system. That is, whenever something needs to be crafted, or some furniture constructed, or a settler needs a tool, or basically for any use of an item, the game has to keep track of which items/resources are available and which are free to be used. Up to this point, each item entity had a simple pair of integer counters, one for the quantity of the item and one to say how many of that quantity are currently allocated to be in use somewhere. Say a piece of furniture requires 10 stone blocks to be created. It'll ask for stone blocks to be assigned, and perhaps there are two piles of 6 stone blocks that are available. All of the first and 4 of the second would become "assigned", leaving 2 of 6 stone blocks available in the second pile. Something might then go "wrong" though, the stone blocks could be being carried by a settler just as a cave-in happens overhead crushing the settler and the items, or the player might decide to cancel the construction. This should then de-allocate the items assigned to the construction, setting the allocated amount for both piles back to 0 (specifically, decrementing the first by 6 and the second by 4). In almost all situations this worked fine, but there was a very hard to track down problem where sometimes items were not de-allocated properly, leaving them stuck as allocated forever even though the original use for the allocation had since been cancelled or completed. The above was a very tricky problem to recreate - I could never quite figure out under what circumstances this happened, and when helpful members of the community sent me save files that included occurences of the issue, it had already happened in the past and I had no information to look at to see what had led to this point, just a number saying a certain quantity of some items was allocated somewhere and I had no idea where. I ended up biting the bullet and spending a lot of time rewriting this system, so that instead of a simple number, each item allocation is now a small group of data detailing the purpose of the allocation (such as for hauling, being used in inventory, etc.), who requested it, the intended destination and so on. I couldn't otherwise figure out the root cause of the problem so at least changing all the item allocations over to this new system would give me enough information to look deeper into the problem and narrow down where it was coming from. As is often the case with massive changes to a system, having to touch many parts of the codebase led me to discover and fix some existing issues (hopefully including the one that caused me to do this large piece of work in the first place), and of course, inevitably, introduce new problems :) Still, I think the item allocation overhaul has been a big success and was very much worth doing, just a shame it's delayed the implementation of the modding system for another month or so. It wasn't just item allocations that were rewritten either, the way stockpiles manage and keep track of their contents was also overhauled, having been one of the earliest parts of the codebase and something else that wasn't really fit for purpose any longer. Additionally, I ended up also changing over how liquid allocations work, as that was also a bit of a hack previously. Until now, units of liquids like water and soup were also stored as integers (whole numbers). A barrel can hold 6 units, a bucket moves 2 units of liquid, and so on. This didn't really work for drinking barrels, as I wanted a single bucket of water (2 units) brought to a barrel to suffice for many settlers to drink from. If the 2-unit bucket of water only supplied enough for 2 drinks, the settlements would spend even longer moving water around than they currently do! The original solution was that instead of removing 1 unit when a settler had a drink from a barrel, there was a random dice roll which determined if a unit of water was removed (I think it was a 15% chance). This way, a bucket of water would last several drinks, it would vary in amounts quite a bit, but overall on average it would balance out. Not a great solution but it did work. However there was also an assignment problem with water barrels. There would be an issue if dozens of dwarves went to drink from the same barrel with only a small amount of water in (say 1 unit). The first dwarf on the scene might end up emptying the barrel, then all the others would get there, get slightly annoyed the barrel was empty, and have to go in search of another, probably all going in a big horde to the next barrel that would probably get emptied to. To avoid this, each 1 unit of water in a barrel was reserved (allocated) by a dwarf wanting to drink there, and unreserved/deallocated when they finished drinking (if they did not end up randomly using up that unit of water). Much like the item allocations, there was also a bug here that I could never quite track down, where some of these allocations would also get stuck and live forever, resulting in the water barrels eventually becoming unusable as their entire contents were incorrectly allocated (a number of people had encountered this one). So as well as the item allocation overhaul, I finally did the obvious thing and move liquids to using floating point (decimal) numbers for their quantities and allocations. Now a settler reserves 0.15 units of a barrel, and always removes 0.15 units when drinking. A bucket still brings 2.0 units of water to the barrel so each bucket provides enough for 13 and a bit drinks. There's still a lot of legwork for the dwarves to do to get drinks available in water barrels, but do not fear, water pipes and pumps are coming in the future to automate this! In the same way that overhauling item allocations seemed to fix the problem I was looking for, I believe the new liquid allocations (which get tracked with more info in the same way as item allocations now do) do not have the problem I was looking to solve anymore. Good news! Helpful members of the community (especially SirRockstar who's been a fantastic help with detailing problems) have been sending me details and savegames for issues in the current versions so there's also been quite a lot of bugfixing going on. A nice one to finally figure out was that bridges didn't always get constructed (I think it depended which side they were "dragged" from by the player) so that's now sorted, and a major quality of life improvement in that constructions now use the nearest available resources rather than what was effectively any (random) available resources. Sorry it's been a very plain, media-free update this time around. I said it last time but now I will be going on to the first part of modding with language support so look out for that! There's also some semi-exciting news to share but I'll leave it until next month when I have more details nailed down, so see you then!


[ 2020-01-04 22:35:49 CET ] [ Original post ]

King under the Mountain
Rocket Jump Technology Developer
Rocket Jump Technology Publisher
2021-11-24 Release
Game News Posts: 58
🎹🖱️Keyboard + Mouse
Mixed (129 reviews)
Public Linux Depots:
  • King under the Mountain Linux [712.99 M]
King under the Mountain is a simulation-based settlement-building strategy game set in a fantasy world.

The game is based around these central pillars:
  • A simulated world – The game world is built on a series of interlocking systems which combine together to simulate a living, breathing world. As night changes to day, trees and plants will grow (or not) based on sunlight and rainfall. The local environment and changing seasons have effects on the native flora and fauna. Your settlers and other characters have their own personal social and physical needs that you’ll have to fulfil to keep them happy (or at least stop them from breaking and going insane!)
  • Procedural generation – Every map is randomly generated from an initial seed (a large number) so that no two maps will ever be the same – unless you choose to use the same seed! The art assets for the game have been created in such a way that they can be drawn by the game engine for near limitless variation in colour – so every tree, plant and character will have their own unique combination of colours and appearance.
  • Peaceful expansion – It’s an important design goal that it’s possible to play the entire game without getting into armed conflict with other factions (if you choose to). Although weapons and combat can be significant parts of gameplay, we wanted to make sure you can peacefully build up a fully-functioning town to have the satisfaction of sitting back and watching your settlers go about their business in an “art farm” style of play.
  • Multiple ways to play – As well as different ways to build and grow your settlement (do you focus on mining? farming? crafting? buying and selling goods?), in King under the Mountain you can play as several different races and factions each with their own unique gameplay elements. You could build a dwarven fortress dug deep into the side of a mountain, a town of humans at an important river crossing, or a tribe of orcs hunting and raiding others. More than just different races to play as, we want to introduce completely new play styles as unusual factions – perhaps a lone wizard building their secret lair with golems they have constructed, an evil necromancer raising an army of the dead, a dragon amassing a hoard of gold in a giant cave system, or even an invasion of demons attacking the material world.
  • Player-driven content – Have you ever spent hours in a creative game building something, only for it to sit hidden away on your computer? In King under the Mountain, players can opt-in to automatically upload their settlements for other players to visit. This drives the basis of the adventure mode – you put together a party of champions from your settlement’s population, and go off on an adventure to explore another player’s creation. This mode will involve turn-based tactical combat as you explore and battle through another player’s fortress, claiming rare resources that may be difficult or impossible to acquire otherwise. It’s important to note that nothing will be lost by either player in this encounter – you don’t actually “attack” the other player, only a copy of their settlement, and there are benefits to be gained by both parties.
  • Mod friendly engine – Another big design goal is that everything you see or read in the game (and the variables behind them) are fully open to modification. In fact, the base game is built as an engine with one base mod applied to it (which modders can look at to see how things work).

MINIMAL SETUP
  • Processor: Intel Core2 Duo 2.4Ghz or HigherMemory: 4 GB RAM
  • Memory: 4 GB RAM
  • Graphics: Intel HD Graphics 3000
  • Storage: 500 MB available space
GAMEBILLET

[ 6140 ]

2.61$ (74%)
12.44$ (17%)
6.47$ (68%)
5.36$ (82%)
4.09$ (18%)
4.32$ (57%)
16.97$ (15%)
13.50$ (70%)
8.25$ (17%)
2.68$ (78%)
16.40$ (59%)
6.79$ (15%)
33.59$ (16%)
17.79$ (11%)
16.59$ (17%)
16.85$ (44%)
12.27$ (18%)
1.35$ (91%)
3.00$ (80%)
16.97$ (15%)
42.59$ (15%)
4.19$ (16%)
12.44$ (17%)
8.49$ (15%)
16.99$ (15%)
16.97$ (15%)
25.49$ (-70%)
13.34$ (11%)
16.97$ (15%)
25.46$ (15%)
GAMERSGATE

[ 1688 ]

7.92$ (74%)
3.2$ (80%)
15.74$ (37%)
8.1$ (73%)
19.8$ (67%)
1.6$ (90%)
9.99$ (50%)
3.0$ (95%)
10.79$ (46%)
4.39$ (69%)
9.0$ (64%)
4.35$ (83%)
4.0$ (80%)
12.99$ (48%)
14.99$ (50%)
4.8$ (70%)
6.6$ (78%)
26.99$ (46%)
13.59$ (32%)
10.79$ (46%)
4.5$ (77%)
2.5$ (50%)
4.8$ (76%)
0.94$ (81%)
26.99$ (10%)
1.96$ (87%)
12.39$ (38%)
3.05$ (69%)
1.0$ (90%)
14.99$ (50%)

FANATICAL BUNDLES

Time left:

4 days, 4 hours, 0 minutes


Time left:

0 days, 4 hours, 0 minutes


Time left:

21 days, 4 hours, 0 minutes


Time left:

356445 days, 20 hours, 0 minutes


Time left:

3 days, 4 hours, 0 minutes


Time left:

32 days, 4 hours, 0 minutes


Time left:

18 days, 4 hours, 0 minutes


Time left:

28 days, 4 hours, 0 minutes


Time left:

27 days, 4 hours, 0 minutes


Time left:

34 days, 4 hours, 0 minutes


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