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í]


DFHack 50.09-r3rc1

This update works with DF 50.09 on both the Dwarf Fortress default and beta branches. The DF beta branch includes native support for Linux, which this DFHack update also supports.

Highlights


Linux support!


Both DF and DFHack now run natively on Linux. If you're on Linux, we encourage you to try it! The interface is noticeably snappier, FPS is up, and load times are reduced. If you're subscribed to DF and DFHack on Steam, here's how to switch over:
  • In the Steam client, open the properties for Dwarf Fortress
  • In the "Betas" section, switch to the "beta" branch
  • Let that finish updating
  • Select the "Compatibility" section and deselect "Force the use of a specific Steam Play compatibility tool"
  • DF should update again with the Linux native version
You can tell if you did it right (and sometimes Steam gets stuck somewhere along the way and you have to fiddle with it) if you no longer have Dwarf Fortress.exe in your DF directory and instead have dwarfort, which is the Linux binary. The plan is to "officially" release Linux support with DF 50.10, so once DF 50.10 comes out, you should be able to switch back to the default Steam branch and keep the native Linux support. Then, do the same thing for DFHack. switching to the "beta" branch (if you're not there already) and turning off the compatibility layer. Major caveat for this beta release This particular beta release of Dwarf Fortress has address layout randomization enabled. This causes some trouble for DFHack since DFHack needs to know the memory addresses of several key data structures. For this release only, be sure to start DF by launching DFHack from the Steam client or by running the ./dfhack commandline startup script. That will normalize the address space and allow DF to run with DFHack. Otherwise, DF will crash on startup. Again, this is only for this release. Future releases will not need this workaround and should go back to allowing you to start DF from either the Dwarf Fortress or DFHack Steam client entries, or from either the ./dwarfort or ./dfhack commandline commands. The DFHack terminal console works differently on Linux You can run DF with DFHack by starting DFHack in the Steam client. However, if you want an external DFHack terminal console, you have to run from the commandline. On Windows, you could use the show command to pop up an external DFHack terminal console. You could use this for running DFHack commands from outside the game window, and the external terminal is the only way to run commandline-interactive DFHack commands like tiletypes and the interactive mode of the lua interpreter. Linux has a different method of providing a terminal console. You can't spawn it dynamically like you can on Windows. You have to start DF from the commandline, and the terminal from which you ran ./dwarfort becomes the terminal console. This should be a familiar process to many Linux users (most Linux commands work this way), but the change is jarring if you're not expecting it. We're also looking into providing a virtual console that doesn't depend on an existing system console so you can still get a console even if you run from Steam, but that work is far from being completed. You can still launch DFHack from Steam if you want to. Many tools log information and errors to the console, though, so if you run into strange issues, it might be useful to try running from the commandline to see if there is diagnostic output there that can help you.

Search and sort for squad assignment screen


When you bring up the screen to assign units to squads, there are now widgets for searching and sorting. The default sort is by "best melee skill", but you can choose from a variety of relevant ascending or descending sorting orders. You can also search. Searching matches either the unit name or a skill that the unit has. Sorting by "leadership" shows units that have any leadership-related abilities, like teaching and military tactics training, but if you just want to see dwarves with military tactics training, search for "tactics". There have already been many good suggestions for additional sorting options, which we'll try to get into a future beta/release.

Animal assignment


The "Assign to pasture" screen released in the previous DFHack version has been expanded and generalized to support cages, restraints, and pits/ponds. Please tell us if you have any additional needs for animal assignment that those screens don't meet!

One-click UI integration for exportlegends


exportlegends now sports a new integration with the vanilla "Export XML" button. Now you can generate both the vanilla export and the extended data export with a single click!

Onscreen HUD getting in your way? Hide it!


hide-interface hides all the vanilla UI elements for clean screenshots or distraction-free fortress watching. Even with the interface hidden, you can still pause/unpause the game with spacebar and move around the map with the keyboard or mouse. Hide that cluster of urgent notifications bubbles for a while and just enjoy watching your citizens scurry around : )

Generated release notes


New Tools


  • devel/scan-vtables: Scan and dump likely vtable addresses (for memory research)
  • hide-interface: hide the vanilla UI elements for clean screenshots or laid-back fortress observing

New Features


  • exportlegends: new overlay that integrates with the vanilla "Export XML" button. Now you can generate both the vanilla export and the extended data export with a single click!
  • sort: search and sort for squad assignment screen
  • zone: advanced unit assignment screens for cages, restraints, and pits/ponds

Fixes


  • Core:
    • reload scripts in mods when a world is unloaded and immediately loaded again
    • fix text getting added to DFHack text entry widgets when Alt- or Ctrl- keys are hit
  • caravan:
    • Correct price adjustment values in trade agreement details screen
    • Apply both import and export trade agreement price adjustments to items being both bought or sold to align with how vanilla DF calculates prices
  • orders: prevent import/export overlay from appearing on the create workorder screen
  • starvingdead: ensure sieges end properly when undead siegers starve
  • suspendmanager:
    • Fix the overlay enabling/disabling suspendmanager unexpectedly
    • Improve the detection on "T" and "+" shaped high walls

Misc Improvements


  • Surround DFHack-specific UI elements with square brackets instead of red-yellow blocks for better readability
  • devel/lsmem: added support for filtering by memory addresses and filenames
  • hotkeys: don't display DFHack logo in legends mode since it covers up important interface elements. the Ctrl-Shift-C hotkey to bring up the menu and the mouseover hotspot still function, though.
  • suspendmanager: display a different color for jobs suspended by suspendmanager

API


  • RemoteFortressReader: add a force_reload option to the GetBlockList RPC API to return blocks regardless of whether they have changed since the last request
  • Items::getValue(): remove caravan_buying parameter since the identity of the selling party doesn't actually affect the item value

Lua


  • dfhack.items.getValue(): remove caravan_buying param as per C++ API change
  • dfhack.screen.readTile(): now populates extended tile property fields (like top_of_text) in the returned Pen object
  • new(): improved error handling so that certain errors that were previously uncatchable (creating objects with members with unknown vtables) are now catchable with pcall()
  • widgets.BannerPanel: panel with distinctive border for marking DFHack UI elements on otherwise vanilla screens
  • widgets.Panel: new functions to override instead of setting corresponding properties (useful when subclassing instead of just setting attributes): onDragBegin, onDragEnd, onResizeBegin, onResizeEnd

Structures


  • Added global_table global and corresponding global_table_entry type
  • viewscreen_legendsst: realign structure
  • viewscreen_new_arenast: added (first appeared in 50.06, probably)


[ 2023-08-19 00:06:22 CET ] [ Original post ]



DFHack - Dwarf Fortress Modding Engine
The DFHack Team
  • Developer

  • The DFHack Team
  • Publisher

  • 2023-04-13
  • Release

  • Action Indie Strategy Casual RPG Adventure Simulation F2P Sports MMO Racing Singleplayer Multiplayer Coop EA
  • Tags

  • Game News Posts 43  
    🎹🖱️Keyboard + Mouse
    🕹️ Partial Controller Support
    🎮 Full Controller Support
  • Controls

  • Overwhelmingly Positive

    (522 reviews)


  • Review Score

  • https://github.com/DFHack/dfhack/releases
  • Website

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

  • DFHack is an add-on for Dwarf Fortress that enables mods and tools to significantly extend the game. The default DFHack distribution contains a wide variety of these tools, including bugfixes, interface improvements, automation agents, design blueprints, modding building blocks, and more. Third-party tools (e.g. mods downloaded from Steam Workshop or the forums) can also seamlessly integrate with the DFHack framework and extend the game far beyond what can be done by just modding the raws.

    DFHack’s mission is to provide tools and interfaces for players and modders to:

    • expand the bounds of what is possible in Dwarf Fortress
    • reduce the impact of game bugs
    • give the player more agency and control over the game
    • provide alternatives to toilsome or frustrating aspects of gameplay
    • make the game more fun

    Our online Quickstart Guide will help you get up to speed with how to use DFHack. It's also available in-game via the quickstart-guide command.

    The best way to make feature requests or report problems is to open an Issue at our GitHub page.

    When reporting problems, links to your zipped, uploaded savegame and mods are immensely helpful, and issues with attached savegames and mods get fixed faster. We need a zip of your mods because we can't load your savegame without them.

    DFHack installs directly into your Dwarf Fortress directory, so be sure to install it to the same Steam library and drive as Dwarf Fortress.

    It is not a problem if you already have DFHack manually installed. You can subscribe to the Steam version and it will absorb the installed files. Your data in dfhack-config/ is safe. No additional steps are necessary.
    MINIMAL SETUP
    • Processor: Dual Core CPU - 2.4GHz+Memory: 4 GB RAM
    • Memory: 4 GB RAM
    • Graphics: 1GB of VRAM: Intel HD 3000 GPU / AMD HD 5450 / Nvidia 9400 GT
    • Storage: 50 MB available spaceAdditional Notes: Must be installed to the same Steam library and drive as Dwarf Fortress
    RECOMMENDED SETUP
    • Processor: Dual Core CPU - 4GHz+Memory: 16 GB RAM
    • Memory: 16 GB RAM
    GAMEBILLET

    [ 5951 ]

    49.79$ (17%)
    13.75$ (31%)
    12.44$ (17%)
    16.57$ (17%)
    50.99$ (15%)
    12.44$ (79%)
    16.59$ (17%)
    1.36$ (86%)
    4.97$ (17%)
    16.97$ (15%)
    4.59$ (8%)
    26.39$ (15%)
    12.74$ (15%)
    4.22$ (15%)
    4.06$ (84%)
    3.82$ (75%)
    11.89$ (66%)
    17.19$ (71%)
    12.22$ (39%)
    11.89$ (15%)
    12.59$ (16%)
    6.67$ (56%)
    1.90$ (87%)
    8.29$ (17%)
    21.22$ (15%)
    8.27$ (17%)
    24.87$ (17%)
    6.60$ (78%)
    7.46$ (17%)
    2.87$ (81%)
    GAMERSGATE

    [ 3198 ]

    8.8$ (65%)
    16.24$ (35%)
    11.99$ (20%)
    1.25$ (75%)
    14.99$ (50%)
    3.75$ (85%)
    8.49$ (58%)
    10.13$ (22%)
    9.99$ (50%)
    7.5$ (75%)
    1.69$ (89%)
    0.85$ (83%)
    1.5$ (85%)
    10.19$ (32%)
    3.41$ (74%)
    10.79$ (46%)
    10.91$ (22%)
    0.38$ (92%)
    5.0$ (75%)
    1.13$ (77%)
    31.49$ (48%)
    2.5$ (75%)
    1.58$ (77%)
    2.4$ (85%)
    0.56$ (81%)
    12.0$ (60%)
    1.5$ (81%)
    5.25$ (74%)
    5.78$ (71%)
    20.09$ (33%)

    FANATICAL BUNDLES

    Time left:

    0 days, 8 hours, 11 minutes


    Time left:

    23 days, 8 hours, 11 minutes


    Time left:

    5 days, 8 hours, 11 minutes


    Time left:

    36 days, 8 hours, 11 minutes


    Time left:

    42 days, 8 hours, 11 minutes


    HUMBLE BUNDLES

    Time left:

    3 days, 2 hours, 11 minutes


    Time left:

    3 days, 2 hours, 11 minutes


    Time left:

    12 days, 2 hours, 11 minutes


    Time left:

    19 days, 2 hours, 11 minutes

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