Friday Facts #408 - Statistics improvements, Linux adventures

Regular reports on Factorio development.
Post Reply
Svip
Long Handed Inserter
Long Handed Inserter
Posts: 74
Joined: Sun Apr 29, 2018 6:19 am
Contact:

Re: Friday Facts #408 - Statistics improvements, Linux adventures

Post by Svip »

FuryoftheStars wrote: ↑
Tue Apr 30, 2024 4:29 pm
Rammix wrote: ↑
Tue Apr 30, 2024 3:56 pm
Just an unimportant off topic question.
Is (or will be) the multi-pointer functionality (2 or more active mouse cursors) supported in Factorio 2.0? Could be fun playing the game with two mice simultaneously.
I am curious... are there any computer games that support this? I've never actually played one (or heard of one) that did.
Any game that works on a platform with primarily a touch-based interface that allows multi-finger gestures supports this. Since each finger is effectively an individual cursor. SDL and X11 supports it, to allow for them to be used on such interfaces. If you can pinch to zoom in a game, then the game supports multiple cursors.

As for games not for these platforms, it's less likely. But SDL supports it, and if Factorio already keeps track of which for SDL's mouse event, it should also support this.

CommunistCatgirl
Manual Inserter
Manual Inserter
Posts: 4
Joined: Sat Apr 27, 2024 12:13 am
Contact:

Re: Friday Facts #408 - Statistics improvements, Linux adventures

Post by CommunistCatgirl »

dzaima wrote: ↑
Mon Apr 29, 2024 3:10 pm
CommunistCatgirl wrote: ↑
Sat Apr 27, 2024 3:59 am
As for server-side decorations the situation is a bit more complicated than this post and a lot of people make it out to be and I'm a bit disappointed to see GNOME dragged through the mud for something that isn't really their's or anyone particular party's fault directly. Wayland was designed with modularity and extensibility in mind and not only desktop use. This kind of modularity means that only the core wayland spec is mandatory to implement by anyone while everything else is essentially optional and depends on what kind of usecase the compositor is targeting. Unfortunately this does lead to some feature fragmentation (one of the side effects of trying to make one thing that is generic that works for everything) but it does mean that if factorio or any application wants to run on any compositor they would have to work within the core spec + xdg_shell as much as possible. In other words, if it wasn't GNOME today it would be another compositor tomorrow that didn't support CSD for a variety of reasons that would then require the use of libdecor anyway. In fact the reference wayland compositor Weston (though not really meant for desktop use directly) and Valve's Gamescope do not support the protocol. The xdg-decoration spec even states "If compositor and client do not negotiate the use of a server-side decoration using this protocol, clients continue to self-decorate as they see fit."
Were SSD to be mandatory, it would indeed suck that the compositors that don't care about any consistency, whose count is and likely will stay in the single digits for quite a while, would have to take the couple hours to draw a flat-color rectangle with 3 buttons on it, but, as-is, the problem is significantly worse, requiring each of thousands of applications to do it instead. And if those very-few compositors think it's that much of a problem, they could share a library to do it for themselves server-side, relieving hundreds of client-side applications from having to add a dependency for what should be an utterly trivial feature.

If a compositor wants to only target a specific use-case, it could just decide to not implement things not needed for said use-case (or, say, support SSD where the decorations are empty and enabling them is a no-op; if they don't want decorations, they, well, should be fine with not having decorations).

The obvious end-game of no guaranteed SSD, for the 99% of applications which don't have reason or resources to write linux-specific decorations, is, clearly, unquestionably, just slapping on libdecor, a library whose only job is to fill the hole of GNOME, and which won't fit in with the application, and won't fit in with the compositor (maybe unless the compositor happens to be GNOME, or someone for whatever reason decides to extend libdecor to match their compositor instead of contributing SSD for said compositor directly).
CommunistCatgirl wrote: ↑
Sat Apr 27, 2024 3:59 am
And there are benefits to CSD as well. For example, visual consistency of different applications is basically impossible unless they are using the same toolkit and were made with the same design language. With SSD the only thing that is achieved is the window decoration looking out of place compared to the window itself. In fact I really like how the black decoration looks in the screenshot of the user from the CSD bug report, it matches the black vignette of the factorio main screen way better than a bright white decoration from a user using light theme on their desktop ever could.
Indeed, there's absolutely a place for CSD, but that's no reason to make it mandatory. I doubt the black color changes when getting in-game where it'll cease to fit in, and you absolutely cannot expect that most applications will do any such color matching (never mind for the tiny marketshare of linux, as I doubt much such effort goes/would go to even windows/macOS).
Maybe I wasn't fully clear in my previous message. Non-guaranteed SSD isn't a hypothetical, its how wayland works because all optional protocols are optional. This is the status quo, now! We can have a discussion about how that is an oversight of the original protocol, but that's how it is right now and the assumptions of software already written can't be changed retroactively, so we have to roll with it. As for the scale of the problem, it's exaggerated. Applications using certain toolkits already do CSD by default. Even most (all?) electron apps I use do CSD and they are glorified web browsers. As for games, SDL supports linking to libdecor and using it so this is also basically minor. The "thousands of new applications" sounds scary until you realise >99% of them already use CSD (blender, web browsers, whatever) or use toolkits like GTK and Qt and electron where these are the default anyway or SDL which can also deal with it.

As for consistency, SSD does jack. If you want all your apps to look consistent you need to use only appliactions using the same toolkit and design language, there is no shortcut for that. Factorio will never look "consistent" with your desktop and it doesn't have to, nor should it, its a game with its own style and that's awesome. What it can do with CSD is make the decorations match itself and it will look better for it since it will look like a consistent window. In fact this is only possible with CSD, since the client can render whatever it wants on the decorations and make them match. A compositor could never achieve this consistency.

Your recommendation for compositors supporting the protocol but making decorations a no-op is recommending someone makes a buggy compositor that doesn't respect the app's wishes, so I'm not sure how it solves anything other than make everything even more confusing for applications, since they'll think they are getting decorations when they aren't. It also... still has compositors that don't support SSD so I'm not sure how this even solves the suppoded issue in any way?

dzaima
Burner Inserter
Burner Inserter
Posts: 12
Joined: Fri Dec 12, 2014 8:14 pm
Contact:

Re: Friday Facts #408 - Statistics improvements, Linux adventures

Post by dzaima »

CommunistCatgirl wrote: ↑
Thu May 02, 2024 8:44 pm
Maybe I wasn't fully clear in my previous message. Non-guaranteed SSD isn't a hypothetical, its how wayland works because all optional protocols are optional. This is the status quo, now! We can have a discussion about how that is an oversight of the original protocol, but that's how it is right now and the assumptions of software already written can't be changed retroactively, so we have to roll with it. As for the scale of the problem, it's exaggerated. Applications using certain toolkits already do CSD by default. Even most (all?) electron apps I use do CSD and they are glorified web browsers. As for games, SDL supports linking to libdecor and using it so this is also basically minor. The "thousands of new applications" sounds scary until you realise >99% of them already use CSD (blender, web browsers, whatever) or use toolkits like GTK and Qt and electron where these are the default anyway or SDL which can also deal with it.
I am fully aware that SSD support is optional in wayland, but, hypothetically, the spec could be updated to make it mandatory in a new version, and, in time, applications could start assuming that it will exist and not bother providing any fallback, just as with any version update of anything ever.

Indeed if you're using a toolkit you'd hopefully get CSD automatically, but it still sucks for developers of said toolkits and anyone who wants to use wayland directly in general. I think it's extremely poor design to wave away the issue with "just use an existing toolkit or library", essentially making the wayland protocol less approachable than it could be. And toolkits should still significantly outnumber compositors.
CommunistCatgirl wrote: ↑
Thu May 02, 2024 8:44 pm
As for consistency, SSD does jack. If you want all your apps to look consistent you need to use only appliactions using the same toolkit and design language, there is no shortcut for that. Factorio will never look "consistent" with your desktop and it doesn't have to, nor should it, its a game with its own style and that's awesome. What it can do with CSD is make the decorations match itself and it will look better for it since it will look like a consistent window. In fact this is only possible with CSD, since the client can render whatever it wants on the decorations and make them match. A compositor could never achieve this consistency.
Yes, SSD won't make decorations consistent with their respective applications, but CSD by no means will guarantee that either; namely, anything using libdecor (i.e. a bunch of things) will not be consistent with the application (i.e. gets zero benefit from having to do CSD) and won't be consistent with other apps either (i.e. a thing that SSD could improve; not only colors/icons, but things like guaranteeing the close button covering the top-left pixel and remaining usable while the application is lagging; and SSD doesn't necessarily need to not fit in with the application, i.e. a compositor could, if it so chooses to, infer the decoration colors from the app).

Again, indeed, if an app has the resources to make custom linux CSD which fit in with the app, CSD can have good benefits (and I think CSD should be an option regardless of whether SSD support is required!), but most are just not gonna bother and end up with the worst of both worlds *and* require a library to achieve said worst of both worlds.
CommunistCatgirl wrote: ↑
Thu May 02, 2024 8:44 pm
Your recommendation for compositors supporting the protocol but making decorations a no-op is recommending someone makes a buggy compositor that doesn't respect the app's wishes, so I'm not sure how it solves anything other than make everything even more confusing for applications, since they'll think they are getting decorations when they aren't. It also... still has compositors that don't support SSD so I'm not sure how this even solves the suppoded issue in any way?
That recommendation is for, quote, "compositor [that] wants to only target a specific use-case", and if that use-case doesn't include any applications which want SSD, there's literally no need for any SSD functionality by definition. And if the compositor's indented use-cases do include SSD-wanting applications, well, it'll need to support SSD regardless of whether the protocol requires it. And if it's intended use-case is arbitrary applications, it's not much of a specific use-case compositor.

_xer_
Manual Inserter
Manual Inserter
Posts: 2
Joined: Mon Aug 07, 2023 4:51 pm
Contact:

Re: Friday Facts #408 - Statistics improvements, Linux adventures

Post by _xer_ »

jamaicancastle wrote: ↑
Fri Apr 26, 2024 1:47 pm
Finally, it's needlessly hard to click on a specific item in the filter list if there are several at the same production rate. A common scenario: you're producing red, green, and blue science at the same average rate. You go to see how your blue science is doing. But in the moment that you try to click on it, a couple of red science assemblers happen to finish so it jumps up above the other two and you accidentally click it. Then you try to click it in its new spot, and it swaps with green science. And then you try to unclick green science and red science, and end up clicking on blue twice. And then you decide that you know what, it's probably fine, you don't need to know. The suggestion was made a few FFFs ago that logistics network contents should only get ordered by quantity when you open the panel, so that they don't jump around if things change while you're reading; I would apply that to production statistics too.

Why should you need to click on a specific item in the list at all, even if it's not moving?

There should just be a filter slot, where you can select an item the same way you do everywhere else in the game.

You already know where the items are in the filter menu, so it's easier to select that way rather than searching for it in a list sorted by production rate. You're also typically looking to compare items that have a similar function, not ones that have a similar production rate, so selecting from a menu sorted by type also makes more sense in that regard.

xvitxr
Manual Inserter
Manual Inserter
Posts: 1
Joined: Sun May 05, 2024 10:35 pm
Contact:

Re: Friday Facts #408 - Statistics improvements, Linux adventures

Post by xvitxr »

Really really thank you guys for supporting Linux as a platform, this really means a lot to the community. You guys have been doing some amazing job at this game, and I just want to thank you guys for everything you've been working on so far! <3

User avatar
Twisted_Code
Long Handed Inserter
Long Handed Inserter
Posts: 85
Joined: Sat Jun 06, 2015 1:15 am
Contact:

Re: Friday Facts #408 - Statistics improvements, Linux adventures

Post by Twisted_Code »

I can practically hear the artillery shell whizzing overhead when you talk about Client-Side Decoration. Admittedly I have very limited experience with Linux (so take everything I am about to say with a grain of salt please!), but it seems pretty strange to have to add your own decorations if every other app is also having decorations and everyone in the ecosystem pretty much agrees on having a title bar... and the server just doesn't implement a universal option to take the load off clients. Even though libdecor exists, that just kind of makes dependency hell worse, even if by inaction. At the absolute bare minimum, it means you need another dependency in your build scripts, and so does everyone else that wants this otherwiseseemingly-trivial feature.
I've been considering switching to Linux recently, or at least setting up my computer so that it can dual boot and I can at least begin to phase Microshit out of my life. Based on a KDE vs. GNOME article I read on itsfoss, I don't really understand why GNOME is so popular in the first place. It sounds like it's main advantage is a cleaner interface and a unique workflow, but KDE offers more room for customization, a bigger arsenal of apps, a very busy contributor community... all of this and your complaint coupled with the fact I'm coming from Windows and would prefer having a taskbar and stuff, I think the choice for me would be clear even if it's not so one-sided for someone else.
How to report bugs effectively (archived version)because everyone should know this.
The game's tech tree, a visual reference guide.

CommunistCatgirl
Manual Inserter
Manual Inserter
Posts: 4
Joined: Sat Apr 27, 2024 12:13 am
Contact:

Re: Friday Facts #408 - Statistics improvements, Linux adventures

Post by CommunistCatgirl »

dzaima wrote: ↑
Thu May 02, 2024 10:38 pm
I am fully aware that SSD support is optional in wayland, but, hypothetically, the spec could be updated to make it mandatory in a new version, and, in time, applications could start assuming that it will exist and not bother providing any fallback, just as with any version update of anything ever.
I mean maybe, but there need to be a way to clearly communicate this to the community and some kind of new protocol rules for how to handle old compositors. What happens when you run a new app on an old compositor? Will there be a hard cuttoff date when clients should say "this compositor is too old, I refuse to run"? That's arguably even more awful than literally any other platform and than what's happening right now. Also how do we justify this becoming mandatory for some reason over other things that are arguably way more important. For example the explicit sync protocol was created because the way wayland works is essentially incompatible with parts of the mandatory vulkan spec, that should probably be higher on the list than a plainly colored rectangle. I've already stated I think this discussion is more hate and misunderstanding. Like sure "theoretically" it could be done but unless someone has some good bulletproof ideas for how to do it while keeping everything working together then it won't be done due to the aforementioned issues.
dzaima wrote: ↑
Thu May 02, 2024 10:38 pm
Indeed if you're using a toolkit you'd hopefully get CSD automatically, but it still sucks for developers of said toolkits and anyone who wants to use wayland directly in general. I think it's extremely poor design to wave away the issue with "just use an existing toolkit or library", essentially making the wayland protocol less approachable than it could be. And toolkits should still significantly outnumber compositors.
If you are either a toolkit dev or a rawing wayland the least of your issues is a window decoration. We are wholly exaggerating the amount of effort of drawing a rectangle with 3 buttons compared to the complexity of everything else involved with getting a complex piece of software working. GUI toolkits need to deal with problems whose complexity you and I cannot fathom. A toolkit will also do need to support CSD anyway for the apps that use it, so... what's the extra work they have to do actually? The answer is nothing. And for a cross platform software already using libraries to aid in their cross-platform support like factorio (and tbh a lot of other games) using SDL, the extra work is also basically nothing beyond getting the build system to link libdecor. IIRC factorio uses a weird build system I had never heard of before or since but with meson adding libdecor is extremely easy.
dzaima wrote: ↑
Thu May 02, 2024 10:38 pm
Yes, SSD won't make decorations consistent with their respective applications, but CSD by no means will guarantee that either; namely, anything using libdecor (i.e. a bunch of things) will not be consistent with the application (i.e. gets zero benefit from having to do CSD) and won't be consistent with other apps either (i.e. a thing that SSD could improve; not only colors/icons, but things like guaranteeing the close button covering the top-left pixel and remaining usable while the application is lagging; and SSD doesn't necessarily need to not fit in with the application, i.e. a compositor could, if it so chooses to, infer the decoration colors from the app).
I have no idea what your point here even is. SSD can't make decorations consistent with the app. CSD can look okay with minimal changes to the decorations since the developer knows the app. Yes CSD doesn't guarantee it but... neither does SSD? In fact no computer code can guarantee design that looks nice, that's always a messy, inconsistent human element. And no compositor could automatically guess how to make it look good. There unfortunately isn't some magic spell that we can use here, design is extremely fucking complicated and once again has nuances neither you or I can comprehend. I only know enough to know that I don't know anything. With CSD you have the opportunity to make it match, with SSD it never will. Libdecor could be extended to make it easy to control the decoration contents if it isn't possible already. SSD will just never be able to do that. The guarantee of windows being responsive is an interesting one maybe, but for clients that use CSD it's moot so I'm not sure how it's an argument for something like SSD being required. As for the other points I'm struggling to understand what you mean.
dzaima wrote: ↑
Thu May 02, 2024 10:38 pm
Again, indeed, if an app has the resources to make custom linux CSD which fit in with the app, CSD can have good benefits (and I think CSD should be an option regardless of whether SSD support is required!), but most are just not gonna bother and end up with the worst of both worlds *and* require a library to achieve said worst of both worlds.
I think the assumptions here are very skewed towards apps and developers that don't exist. Like if your app is mostly used windowed then as a developer you will care about how your decoration looks. You are also most likely using a toolkit already and you have considered using or are already using header bars which is more than just a window decoration which needs CSD anyway. If it's a mostly fullscreen app (a game, most likely using SDL or a game engine anyway, if you are doing raw calls to everything then adding a single dep or rolling it on your own should be trivial for you) then a simple decoration will do.

CommunistCatgirl
Manual Inserter
Manual Inserter
Posts: 4
Joined: Sat Apr 27, 2024 12:13 am
Contact:

Re: Friday Facts #408 - Statistics improvements, Linux adventures

Post by CommunistCatgirl »

Twisted_Code wrote: ↑
Mon May 06, 2024 3:43 am
I can practically hear the artillery shell whizzing overhead when you talk about Client-Side Decoration. Admittedly I have very limited experience with Linux (so take everything I am about to say with a grain of salt please!), but it seems pretty strange to have to add your own decorations if every other app is also having decorations and everyone in the ecosystem pretty much agrees on having a title bar... and the server just doesn't implement a universal option to take the load off clients. Even though libdecor exists, that just kind of makes dependency hell worse, even if by inaction. At the absolute bare minimum, it means you need another dependency in your build scripts, and so does everyone else that wants this otherwiseseemingly-trivial feature.
I've been considering switching to Linux recently, or at least setting up my computer so that it can dual boot and I can at least begin to phase Microshit out of my life. Based on a KDE vs. GNOME article I read on itsfoss, I don't really understand why GNOME is so popular in the first place. It sounds like it's main advantage is a cleaner interface and a unique workflow, but KDE offers more room for customization, a bigger arsenal of apps, a very busy contributor community... all of this and your complaint coupled with the fact I'm coming from Windows and would prefer having a taskbar and stuff, I think the choice for me would be clear even if it's not so one-sided for someone else.
The problem is not whether or not everyone agrees on having a title bar, the issue is what is the title bar. In fact on all platforms "header bars" (however you wanna call them) that combine the application header with the close buttons and different app actions and graphics on the window decoration are being favoured over plain title bars that take up a whole row of your screen doing almost nothing. I will point you to the previous discussion for why doing it client-side is not such a big load and why server-side is not something that can/should be done.

As for the dependency hell, wayland is still miles ahead of X11. As I said above if you're using a toolkit then that toolkit is already doing way more complex things, pulling way more complex libraries and all that work a toolkit does anyway can be used to handle a CSD. For a trivial or minimal client then libdecor is needed, but that client is probably already pulling a lot of deps for doing all sorts of also trivial-on-their-own things. I'm not saying yet another dep is awesome, but wayland is still a really mininal protocol with 2 (to 4, depending on how you count them) core deps that everything needs regardless of how complex your app gets and for most application it's 0 extra deps beyond your toolkit while for some more extremes cases when it comes to windowing (games) it's like 1 extra with a few transitives.

Happy you are looking to linux as an alternative, I wish you smooth sailing. Unfortunately the article you quoted has several major issues (and it's not the exception by any means, most things you'll see online border on misinformation). I will try to be brief: The article is from 2023 but it showcases a 2-year-old release of GNOME for the time it was written. As for the app ecosystem, look at the flathub home page and notice how many are libadwaita (gnome's toolkit library) apps, it's hard to compare but it's not a clear win on either side imho. As for the customisation yes it's true, you can change a lot on KDE, whether or not you'd want to or can is another discussion. Fun history lesson: GNOME used to also go hard on customisation until they realised too many settings makes it impossible for them to maintain their software and keep it free of bugs. In the KDE community there the concept of settings you shouldn't change because they will cause instability. Personally I don't think that's a great experience but if you want to mess with it to find something you like I think you should do it. As for resource usage the test done is ridiculous. Not even using the same distro is already adding too many variables to measure anything correctly. Also more RAM usage doesn't mean it runs slower (in fact there are often tradeoffs where you pick one or the other). Ironically however on linux desktops the biggest ram user is packagekit and not the desktop for reasons I won't get into, fortunately that's on its way out. Now, the reasons distros pick GNOME over KDE are many and the article doesn't bother mentioning range from accessibilty to the fact that gnome syncs their release cycle with distros to make it easy for them.

If you want a windows-like interface both KDE and cinnamon will give that to you and distros like fedora offer variants for all of the major desktops including those, so I recommend giving them a try try it and seeinf what sticks. Wish you luck on your linux adventures.

madpinger
Burner Inserter
Burner Inserter
Posts: 5
Joined: Fri Dec 29, 2017 8:04 pm
Contact:

Re: Friday Facts #408 - Statistics improvements, Linux adventures

Post by madpinger »

haha, Yeah. The whole X11 to Wayland thing is a nightmare for many. I greatly appreciate the effort and continued support. Factorio is one of the shining examples I oft push forward to promote linux gaming !

NoCompilerHere
Manual Inserter
Manual Inserter
Posts: 1
Joined: Wed May 08, 2024 6:07 am
Contact:

Re: Friday Facts #408 - Statistics improvements, Linux adventures

Post by NoCompilerHere »

I was having resizing issues with my game engine on wl-roots as well. The key to solving the problem for me was to keep recreating the swapchain until it was fixed (detected with VK_SUBOPTIMAL_KHR, tho VK_ERROR_OUT_OF_DATE_KHR may be useful too?).

dzaima
Burner Inserter
Burner Inserter
Posts: 12
Joined: Fri Dec 12, 2014 8:14 pm
Contact:

Re: Friday Facts #408 - Statistics improvements, Linux adventures

Post by dzaima »

CommunistCatgirl wrote: ↑
Tue May 07, 2024 11:52 pm
If you are either a toolkit dev or a rawing wayland the least of your issues is a window decoration. We are wholly exaggerating the amount of effort of drawing a rectangle with 3 buttons compared to the complexity of everything else involved with getting a complex piece of software working. GUI toolkits need to deal with problems whose complexity you and I cannot fathom.
I do have second-hand knowledge that decorations are, in fact, a real annoyance - at https://github.com/HumbleUI/JWM/pull/278 decorations were a pretty prolonged issue - that started out using libdecor but switched away from it for reasons I don't know (I do recall that libdecor was being problematic, but I thought we fixed that?). And this library is only for window management, so "drawing a rectangle and some icons" requires messing with rendering graphics in a library that otherwise does not need to. That PR is a total of 4427 inserted lines as per git diff --stat, and wayland/cc/Decoration.{cc,hh} total to 556 lines - 12% of the total diff.
CommunistCatgirl wrote: ↑
Tue May 07, 2024 11:52 pm
I have no idea what your point here even is. SSD can't make decorations consistent with the app. CSD can look okay with minimal changes to the decorations since the developer knows the app. Yes CSD doesn't guarantee it but... neither does SSD?
You're completely ignoring the part of matching the desktop environment or other apps again. Yes, if the app bothers, CSD can have a chance to match with the app, but, again, most will not (if the app cares about linux there may be a chance, but most don't do even that, and I doubt many libraries/toolkits would even expose options to change linux-specific decoration styles). And, in that scenario, between CSD (matches neither this app nor other apps) and SSD (doesn't match this app but might match other apps) SSD is still unquestionably the better choice. (but, to repeat myself, this does not mean that all apps should be forced to use SSD - CSD should still be an option; it's just that SSD makes sense as an option too).

(another random benefit of consistent decorations across apps - I can, on my X11 system (linux mint cinnamon so I don't even have a (stable) wayland option) put two apps side-by-side, and can, from the title text color alone, consistently determine which is focused, as the colors for focused and unfocused are the same on both. Or, if not title color, then whether the close icon is saturated red. Whereas with prominent inconsistent CSD your options are either to learn each specific apps' colors or like look at the taskbar if you even have one visible)
CommunistCatgirl wrote: ↑
Tue May 07, 2024 11:52 pm
Like if your app is mostly used windowed then as a developer you will care about how your decoration looks.
..not really? If the app is cross-platform, most devs would just instantly give up on any attempt of getting good looks of platform-specific things, they have better things to do. Many apps already have much more significant consistency issues already anyway.

dr_vm
Burner Inserter
Burner Inserter
Posts: 5
Joined: Sat Sep 23, 2017 3:06 pm
Contact:

Re: Friday Facts #408 - Statistics improvements, Linux adventures

Post by dr_vm »

First of all: Thank you very much for the excellent Linux support !

Not sure if it was already mentioned or considered, but running the async-save fork with an adjusted oom score (see proc(5) oom_score_adj) should prevent at least some memory related crashes. By sacrificing (=eg. adj +500) the fork, the main game is more likely to survive an out-of-memory situation.
All it needs to do is detecting whenever the async-save fork has successfully finished, is still saving or is "gone" - either being killed by the oom reaper or other bad things happened to it.
In the latter case, main game should/could run a classic, synchronous save of (the now current) game state instead and "automagically" disable the async-save for the rest of the session.

SirSmuggler
Long Handed Inserter
Long Handed Inserter
Posts: 54
Joined: Tue May 24, 2016 1:55 pm
Contact:

Re: Friday Facts #408 - Statistics improvements, Linux adventures

Post by SirSmuggler »

I play Factorio on PC via Steam because I'm lazy. It's a very good thing that you support Linux though, as Microsoft doesn't need any more of a monopoly than they allready have.

Post Reply

Return to β€œNews”