In this release, we’re updating the engine from SDL to SDL2, and there are many optimizations to go along with it. Aside from the optimizations, SDL2 is also the stepping stone to ports. We have Linux compiling and playable; it just needs some testing.

Moreover, there is now a(n experimental) multithreading option in the game settings that makes the game even faster!

We also have some new individual tree graphics, and an update to grass ramps as well.

This has been mostly the hard work of Putnam! Meanwhile I’ve started up on adventure mode - the long work of updating menus and adding audio has begun! Hopefully we’ll have some progress to show their soon, as we continue updating fortress mode as well.

  • I’m really curious how they’re doing it, too! I’m making a multithreaded simulation game and the parts that can’t multithread well are related to AI / character logic / tasks and errands / pathfinding, and anything to do with rendering.

    •  Tarte   ( @Tarte@kbin.social ) 
      link
      fedilink
      2
      edit-2
      1 year ago

      Would you mind explaining to me why you would include “anything to do with rendering” in that list? I haven’t tried myself at multithreading yet, but rendering was easy enough (in my limited experience) to completely decouple from the actual game state or game logic.

      I’m simply curious, because I’m toying with the idea to utilize multithreading in my next project.

      • By “rendering” I mean when you interact with OpenGL, the GPU, etc - at least in my engine (lwjgl/libgdx), it’s expected to be on the main thread. From what I understand too when you get into GPU land everything is already kinda-asynchronous on the driver side - it’s only when you call flush() that it actually blocks your thread - which makes it difficult to profile some things.

        But I am still a newb at all of this! I’d love to hear your experiences!!

    • Yes, would be cool to get some technical overview on how they do it. Maybe a lengthy blog post or something.

      Rendering can be multi-threaded if you do it grounds up and use a rendering API made for it such as Vulkan or DX12. I used Vulkan a bit and you can create command-buffers from threads, and assemble them into your queue then. So you could have one thread creating the command buffer to draw all static meshes, and another one doing it for the particle system. And there is the “Async Compute” that allows the GPU to do compute shader tasks while CPU is busy building draw commands etc. I don’t know enough to tell you details as my own work with Vulkan is very basic. But the in-house engine at my workplace uses those techniques to multithread.

      There are systems that can run in parallel to each other. The sound system often needs to be their own threads. Low priority tasks such as wayfinding for NPCs. They don’t need to recalculate their paths in a tight loop every frame, they “interpolate” to the next waypoint in between.

      Parallel stuff is so dang hard to get correct and actually gather speed. Kudos to you that you are doing that. May your data access never be a race condition. :)