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

🌟 Special thanks to our amazing supporters:


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

Any feedback for tuxDB? Join us!

Screenshot 1
Fullscreen Screenshot 1
×
Screenshot 2
Fullscreen Screenshot 2
×
Screenshot 3
Fullscreen Screenshot 3
×
Screenshot 4
Fullscreen Screenshot 4
×
Screenshot 5
Fullscreen Screenshot 5
×
Screenshot 6
Fullscreen Screenshot 6
×
Factorio is a game in which you build and maintain factories. You will be mining resources, researching technologies, building infrastructure, automating production and fighting enemies. In the beginning you will find yourself chopping trees, mining ores and crafting mechanical arms and transport belts by hand, but in short time you can become an industrial powerhouse, with huge solar fields, oil refining and cracking, manufacture and deployment of construction and logistic robots, all for your resource needs. However this heavy exploitation of the planet's resources does not sit nicely with the locals, so you will have to be prepared to defend yourself and your machine empire.


Join forces with other players in cooperative Multiplayer, create huge factories, collaborate and delegate tasks between you and your friends. Add mods to increase your enjoyment, from small tweak and helper mods to complete game overhauls, Factorio's ground-up Modding support has allowed content creators from around the world to design interesting and innovative features. While the core gameplay is in the form of the freeplay scenario, there are a range of interesting challenges in the form of the Scenario pack, available as free DLC. If you don't find any maps or scenarios you enjoy, you can create your own with the in-game Map Editor, place down entities, enemies, and terrain in any way you like, and even add your own custom script to make for interesting gameplay.


Discount Disclaimer: We don't have any plans to take part in a sale or to reduce the price for the foreseeable future.

What people say about Factorio


  • No other game in the history of gaming handles the logistics side of management simulator so perfectly. - Reddit
  • I see conveyor belts when I close my eyes. I may have been binging Factorio lately. - Notch, Mojang
  • Factorio is a super duper awesome game where we use conveyor belts to shoot aliens. - Zisteau, Youtube
Factorio
Wube Software LTD.Developer
Wube Software LTD.Publisher
2020-08-14Release
🎹🖱️ Keyboard + Mouse
Overwhelmingly Positive (108290 reviews)
VR Support
Public Linux Depots:
  • Factorio Linux64 [306.86 M]
  • Factorio Linux32 [300.1 M]
Available DLCs:
  • Factorio: Space Age
Friday Facts #304 - Small bugs; Big changes

Read this post on our website .

Hello,
We are down to 28 bugs on the forum. The last bugs are often the ones we have been putting off for a reason, they generally require some more meaningful changes and decisions. That is why this week we have a lot to discuss.

G2A update

G2A got back to us this Monday, nothing much has happened so I will keep it short. They asked if we would agree to an audit to verify the money lost to chargebacks, we said yes, and they said they will start contacting some audit companies, and that it will 'take some time'.

Rail-planner obstacle avoidance

Kovarex was convinced by members of the forum to add someway to use the obstacle avoidance mode of the rail planner. Now when planning a rail path, holding CTRL will make it use the obstacle avoidance ghost planning.

MP server description

Dear server owners: the server description field is being enlarged from 120 to 5000 characters, and it now loads immediately. As soon as the next release is out, you may stop abusing the "tags" field for your colorful descriptions.

Oil processing changes

We decided to change the Basic oil processing recipe so that now it only outputs petroleum gas.

Normally this recipe change would mean all 3 outputs would be petroleum gas, but we added a new feature so that a recipe can specify a specific fluidbox to use. We also used the same system so the future water input (for advanced oil processing) is closed.
Game Description Image

We believe this contributes to make oil a bit less of a difficulty spike, and also means we no longer need to remember which side the water goes in.

This means that light and heavy oil is only available after Advanced oil processing is researched. The biggest issue this introduces is that worker robots require lubricant made from heavy oil.
Game Description Image Click to see more technologies.

The solution we chose to apply is to move worker robots behind chemical science pack. This change does delay how quickly you are able to get worker robots, but the difference should not be too drastic as in order to get robots operational you already need to set up a complete refinery, advanced circuits and 2 upgrades of engines - which is already most of the science pack done.

Basic oil processing now produces 25% more petroleum gas to offset the loss of light and heavy oil for solid fuel.

Technologies which newly received chemical science pack now require less science packs to research them so the total resource price is not too far off either.

We prefer to keep flamethrower as it is, but flamethrower ammo now requires petroleum gas instead of light and heavy oil.

Laser turret moved to chemical science

For a long time we have felt that there arent really enough useful technologies unlocked by chemical science, and laser turrets are a big game changer so were moving those to chemical science pack along with the worker robots.
Game Description Image

Laser turret shooting speed fixed

There was a bug with laser turrets, the shooting speed upgrade didn't actually increase their firing rate since we switched them to use beams. Posila fixed it, so that more turret shooting speed actually results in more damage per second, not just for laser turrets but for personal laser defense too.
Game Description Image

Now that the shooting speed bonus works properly, we decreased the base shooting speed of the laser turret and personal laser defense by 50%, and with all the upgrades the shooting speed will be 160% of what it used to be.

Another result of this bugfix, we decided to change the initial damage of the personal laser defense from 40 to 30. However with full shooting speed technologies the DPS is much higher (at the cost of more energy).

Laser beam glow

After fixing that laser beams didn't glow in dark, OwnlyMe releases a "Glowing Laser beams" mod that makes laser beams illuminate ground under them. Vaclav requested this to be base game feature, but there was a catch: Beam graphics didn't tile properly.
Game Description Image

We were aware of issues with tiling of beam graphics ever since we added laser beams, but Vaclav was able to workaround the problem by decreasing intensity of a glow on sprite edged and make the overlapping almost invisible. Almost.

Vaclav tried to workaround the tiling problem by adjusting edges of sprites again, but it quickly turned out it was not possible to do.

After going through code that draws beams I realized that we calculate the exact position of each beam tile, but then pass it to drawing functions which convert the position to MapPosition, which uses fixed-point coordinates with only 8 bits for fractional part. Because of this, the tiles didn't align properly and they sometimes created a gap or overlapped. To cover gaps, the sprites were drawn scaled up by 1%, which resulted in them overlapping even more. Originally, when electric beam was made back in 2015, this did not create any visible issues.

So fixing the accidental rounding of rendering position was easy, and the body of the beam started to tile properly, but there were still visible seams at the head and tail of the beam. I was reading up on how triangle rasterization works on GPUs, so I figured that it must be due to head and tail sprites having different sizes than body sprites, so they don't share an edge exactly, which causes some pixels on the edge to be rasterized by both quads and some by neither quads. After spending some time on fixing this problem I found out that the problem was not in rasterization of edges, it was caused by texture filtering.

The head and tile sprites that I was using to test the issues were larger than they should have been, and were overlapping the body sprites. Lights are almost always gradients spanning over large area and are rendered using bilinear filtering. So the edge of body tile was aliased because that's where quad ended, but edge of head sprite was bilinearly filtered, because that's where the edge was drawn in the sprite, not the actual edge of the sprite quad. So I changed how the head and tail sprites are drawn, in order for them to always share an edge with body sprites, and that fixed the issue. As a bonus, we were able to turn on trilinear filtering on beam sprites, we didn't use it on them before because it used to make tiling issues even worse.
Game Description Image

Now the beams and the glow are as close to pixel perfect as we can get them. The glow really does make the scenes look that much nicer.
Game Description Image

Inserters getting stuck

I did some improvements to Inserters during some releases of 0.17. I made them faster by removing what I thought were pointless pauses where the Inserter would do nothing for 1 tick in some situations. But after 0.17.50, this started happening:
Game Description Image

In some specific situation, the Inserter would aim for an item coming towards it, but because the item was too fast, it would overshoot the inserter head. If this is timed in a certain way, it would happen indefinitely. Before 0.17.50 this didn't happen because the Inserter would pause for 1 tick after failing to pick up an item, breaking any timing loops, but it also meant that an Inserter would potentially wait up to 10 ticks during one swing (since the Inserter tracks items on moving belts throughout it's entire movement).

So I didn't want to revert back to the previous logic. Many more complex solutions were not very feasible either since Belt<->Inserter interaction is a performance critical part of Factorio. So the final solution was to pause for 1 tick after failing to pick up an item, but only if the Inserter head is on top of a belt. This is should be the best compromise all things considered.

We plan to do a release on Monday, so you will have a chance this weekend to share your thoughts regarding any of these changes over on our forum .

[ 2019-07-19 16:45:49 CET ] [Original Post]

Minimum Setup

  • OS: Linux (tarball installation)
  • Processor: Dual core 3Ghz+Memory: 4 GB RAM
  • Memory: 4 GB RAM
  • Graphics: OpenGL 3.3 core. DirectX 10.1 capable GPU with 512 MB VRAM - GeForce GTX 260. Radeon HD 4850 or Intel HD Graphics 5500
  • Storage: 3 GB available space
  • Memory: 8 GB RAM
  • Recommended Setup

    • OS: Linux (tarball installation)
    • Processor: Quad core 3GHz+Memory: 8 GB RAM
    • Graphics: OpenGL 4.3 core. DirectX 11 capable GPU with 2 GB VRAM - GeForce GTX 750 Ti. Radeon R7 360
    • Storage: 3 GB available space
    GAMEBILLET

    [ 6480 ]

    6.61$ (17%)
    2.47$ (90%)
    5.30$ (79%)
    5.27$ (12%)
    3.81$ (87%)
    7.07$ (12%)
    42.45$ (15%)
    49.77$ (17%)
    1.12$ (93%)
    24.89$ (17%)
    17.75$ (11%)
    26.65$ (11%)
    4.19$ (16%)
    12.73$ (58%)
    8.19$ (18%)
    33.17$ (17%)
    13.25$ (17%)
    16.57$ (17%)
    8.14$ (86%)
    10.18$ (66%)
    8.38$ (16%)
    8.48$ (79%)
    16.97$ (15%)
    8.96$ (78%)
    12.59$ (16%)
    33.19$ (17%)
    44.45$ (11%)
    4.95$ (17%)
    16.57$ (17%)
    29.02$ (17%)
    GAMERSGATE

    [ 2302 ]

    4.5$ (91%)
    0.34$ (91%)
    1.7$ (91%)
    0.52$ (83%)
    3.75$ (81%)
    1.88$ (62%)
    11.24$ (55%)
    3.75$ (62%)
    1.13$ (96%)
    3.75$ (62%)
    4.25$ (79%)
    11.24$ (55%)
    4.49$ (55%)
    0.85$ (91%)
    2.99$ (85%)
    0.64$ (91%)
    0.85$ (91%)
    2.76$ (91%)
    0.54$ (82%)
    30.0$ (50%)
    2.04$ (87%)
    1.45$ (91%)
    0.89$ (55%)
    3.0$ (85%)
    10.62$ (58%)
    1.19$ (83%)
    0.74$ (63%)
    2.13$ (79%)
    2.88$ (71%)
    5.25$ (65%)
    MacGamestore

    [ 4866 ]

    53.99$ (10%)
    11.24$ (55%)
    4.89$ (84%)
    4.99$ (50%)
    3.99$ (73%)
    7.79$ (40%)
    2.99$ (80%)
    1.29$ (84%)
    2.98$ (85%)
    17.49$ (13%)
    13.99$ (7%)
    4.99$ (80%)
    0.99$ (90%)
    3.74$ (75%)
    1.99$ (80%)
    1.24$ (75%)
    1.99$ (80%)
    1.19$ (60%)
    0.79$ (84%)
    1.09$ (95%)
    3.99$ (69%)
    1.71$ (91%)
    1.10$ (84%)
    1.99$ (80%)
    1.59$ (68%)
    15.89$ (21%)
    1.98$ (80%)
    2.49$ (88%)
    2.49$ (75%)
    1.29$ (87%)

    FANATICAL BUNDLES

    Time left:

    356211 days, 5 hours, 39 minutes


    Time left:

    356211 days, 5 hours, 39 minutes


    Time left:

    0 days, 12 hours, 39 minutes


    Time left:

    6 days, 12 hours, 39 minutes


    Time left:

    17 days, 12 hours, 39 minutes


    Time left:

    20 days, 12 hours, 39 minutes


    Time left:

    21 days, 12 hours, 39 minutes


    Time left:

    30 days, 12 hours, 39 minutes


    Time left:

    52 days, 13 hours, 39 minutes


    Time left:

    30 days, 12 hours, 39 minutes


    Time left:

    34 days, 13 hours, 39 minutes


    HUMBLE BUNDLES

    Time left:

    0 days, 23 hours, 39 minutes


    Time left:

    1 days, 6 hours, 39 minutes


    Time left:

    2 days, 6 hours, 39 minutes


    Time left:

    2 days, 6 hours, 39 minutes


    Time left:

    4 days, 6 hours, 39 minutes


    Time left:

    9 days, 6 hours, 39 minutes


    Time left:

    11 days, 6 hours, 39 minutes


    Time left:

    16 days, 6 hours, 39 minutes


    Time left:

    18 days, 6 hours, 39 minutes

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