Thursday, February 6, 2020

How to Cheat in Spec Ops: The Line

Why Cheat?: A Quick Review of My Experience with a Not-Completely-Awful Game


I don't usually play military first-person shooters, let alone cover-based shooters like Spec Ops: The Line. But I got it for $1.00 (along with Duke Nukem Forever and The Darkness II) from Humble 2K Bundle 2, and... it wasn't that bad, at least on the default difficulty setting. I suppose it's precisely because I don't usually play this type of game that I didn't just see Spec Ops: The Line's cover-based shooting mechanics as an inferior version of what you would find in, say, a Gears of War game. For me, it was something different, and I enjoyed it, even though it was occasionally frustrating. Having gotten to the end of my first play-through, I could see myself playing it more, and none of the achievements seemed particularly hard to unlock, so I decided to play through the game a couple more times to go for 100% completion.

It was only at the point where I had unlocked all but one of the game's achievements — the one for beating the game on the hardest difficulty setting, FUBAR — that I realized how anti-fun the game could be. So I dropped it for a while. But after a few years of seeing 49/50 on the game's achievement tracker, it began to bother me.

The thing about me and achievements is that, while I'll make some effort to unlock them if they actually happen to be fun to unlock, I don't really care a whole lot about them otherwise... except in that they annoy me when they serve as a reminder of what's almost finished. In other words, while I don't normally treat a game with achievements as a tedious "to-do" list, 98% complete is just irritating.

So eventually, I did go back to the game and try to beat FUBAR mode, thinking it just couldn't be as bad as I remembered. But it was worse than I remembered. It was an enjoyable challenge for a while, and I actually got all the way to chapter 11 out of 15, but after a certain point, I couldn't play for more than 30 minutes at a time without getting annoyed. I wasn't enjoying it anymore, and while there were occasional moments of satisfaction in which I was able to pass a checkpoint by figuring out some optimal strategy and executing it perfectly, these moments were outnumbered by all the times when having gotten through a tough fight seemed like blind luck. The game's FUBAR difficulty setting isn't just unreasonable at times; it's also where the inherent flaws in the game's design really shine.

When one isn't having fun with a game anymore, does it make sense to keep playing just for an achievement? Not really. Not when nobody else is ever going to see or care about that achievement. When a game isn't fun anymore, the rational choice is either to drop it or to make it fun. I had begun to wonder if there was a way to cheat my way through the last bit of the game, as venting my frustration by breaking the game in some amusing way might make up for what felt like a waste of time so far. Turning that 49/50 into a 50/50 (so that even my undiagnosed OCD could accept that I'm done with the game) without having to subject myself to any more of this sadistic FUBAR nonsense would be nice too.

That's when I realized that the game's configuration files, which are encrypted in the Windows version on which I did the first half of my FUBAR play-through, are human-readable plaintext in the Linux version on which I continued the game after the termination of Windows 7 support gave me the final push towards using Linux for almost everything.

How To Cheat, The Easy Way: Step One Is To Install Linux (Which You Should Do Anyway Unless You Really Love Windows 10)


Install the Linux version of the game using the Linux version of the Steam client, and go to
~/.steam/steam/steamapps/common/SpecOps_TheLine/SRGame/Config
and you'll find a bunch of .ini files — 94 of them, by my count — and a single .txt file. I haven't fully explored the contents of these configuration files, because some of them are rather large, and there are too many of them to summarize here even if I had looked at them all. However, a quick browse through a few of them suggests that they contain variables for almost all the numerical and Boolean values one might want to alter, such as: player health, health regeneration rate, enemy health, the amount of damage required to explode enemies' heads, weapon damage, amount of ammo each weapon gets from ammo boxes, et cetera.

Some files have multiple variations. For example, the files
SRPawnEasy.ini
SRPawnEasy_Coop.ini
SRPawn.ini
SRPawn_Coop.ini
SRPawnHard.ini
SRPawnHard_Coop.ini
SRPawnInsane.ini
SRPawnInsane_Coop.ini
all contain values like character health. The ones with the "Coop" suffix obviously apply to the game's cooperative multiplayer mode, while the files marked "Easy", "Hard", and "Insane" presumably apply to the the game's "Walk on the Beach", "Suicide Mission", and "FUBAR" difficulty modes, respectively. I assume the "Combat Op" difficulty (which lies between "Walk on the Beach" and "Suicide Mission") is considered the default setting, so it probably just uses the values from SRPawn.ini (or SRPawn_Coop.ini for cooperative mode). Furthermore, I assume other difficulty modes will also fall back on SRPawn.ini for values which don't appear in their specific files, as SRPawn.ini has many more lines than the other variations.

I'm making some educated guesses here, because I haven't actually tried editing each of these files individually to confirm that the effects are what we might reasonably expect based on their names and contents. However, I did try editing the file SRPawnInsane.ini with the intent of modifying FUBAR mode. I started by modifying the health values of the player character, Walker, and his two squad mates, Lugo and Adams. This is just a matter of finding the right m_defaultHealth values. There are several m_defaultHealth lines, each appearing in a separate section indicating which character's default health level is being modified. Here's a snippet of SRPawnInsane.ini:
[SRGame.YPawn_Walker]
m_defaultHealth=60.0

[SRGame.YGamePawn_Player]
m_damageModifierExecuting=0.3
m_damageModifierReviving=0.3

[SRGame.YPawn_Lugo]
m_defaultHealth=220.0

[SRGame.YPawn_Adams]
m_defaultHealth=220.0

[SRGame.YPawn_AdamsAlone]

[SRGame.YPawn_Enemy]
m_defaultHealth=155.0
m_chanceToGrantGrenadeToExecutor=0.2
m_vaporizeModifier=3.56
m_headExplodeModifier=1.52
When I found this, I vastly increased the m_defaultHealth values found under [SRGame.YPawn_Walker], [SRGame.YPawn_Lugo], and [SRGame.YPawn_Adams]. I was unsure if it would actually work, but when I started up the game and continued my FUBAR mode campaign, it was clear that the player character and his squad mates were all practically invincible. It seemed too easy but it actually worked.

There are a few other things to note in the snippet above:
  • The [SRGame.YGamePawn_Player] section has a couple of damage modifier values; based on the names, I assume these will alter the amount of damage which the player will take while performing execution moves on enemies and reviving squad mates. However, I haven't tried changing these yet, so I don't know whether they are positive or negative modifiers. Does setting them to 0.0 mean the player takes full damage or that the player takes no damage? Presumably it's one or the other. Either way, setting them to 1.0 probably does the opposite of whatever setting them to 0.0 does, because the fact that each value is currently set to 0.3 suggests that these are fractions of the normal amount of damage.
  • The [SRGame.YPawn_AdamsAlone] section in SRPawnInsane.ini is, in fact, empty. However, it's not empty in SRPawn.ini or SRPawnEasy.ini. In each of those files, this section contains another m_defaultHealth line, so it's safe to assume that we can add one here as well, if we want to. When placed in this section, m_defaultHealth probably modifies the amount of health that Adams has during a sequence in which he is separated from the player.
  • The [SRGame.YPawn_Enemy] section contains some very specific modifiers; you can probably guess what they do based on the names. The file SRPawn.ini has even more values, any of which could most likely be modified here in SRPawnInsane.ini as well. The section name might be a bit misleading, though, as it seems to pertain only to one type of enemy. There are other sections called [SRGame.YPawn_MediumEnemy], [SRGame.YPawn_EnemyMarauder], [SRGame.YPawn_EnemyElite], and so on.
I'm just trying to give you an idea of what can be done with these configuration files. As noted above, some of the .ini files are rather large, so I'm probably just scratching the surface of what can be modified here. I haven't tried making substantial modifications myself — but it looks like you could, in theory, fine-tune many aspects of the game to be exactly how you want them. If you don't like the fact that the player can take damage while reviving squad mates, change it. If you don't like the amount of health that a particular enemy has, change it. If you want enemies' heads to explode with every headshot from any weapon, you can probably make it happen. Whether anyone cares enough about this game to do any of this, however, is another matter entirely.

I only went as far as modifying the health of Walker, Lugo, and Adams — adding a few zeroes to each number, before the decimal of course — and the rest of the FUBAR campaign was a hilarious joke. I got to the end in a tiny fraction of the time it would have taken if I had played the game fairly, and it's probably the only way I would have been willing to get to the end, as my patience had run out. And, for the record, this did unlock the achievement for finishing the game on FUBAR difficulty. Modifying these configuration files does not disable achievements.

Therefore, those of you who actually take achievements seriously as an indicator of your skill level, or something, might want to avoid playing with these configuration files while doing anything which might unlock an achievement. Personally, as noted above, I don't really care — but I can understand how others might regret unlocking a tough achievement by cheating. If you're the kind of person who takes pride in achievements, unlocking one by modifying the game might leave a bad taste in your mouth.

The Case For More Games Being This Easy To Exploit


The encrypted configuration files used by the Windows version of the game actually can be decrypted, but I can't personally vouch for the tool used to do so. I didn't bother with it when I played the Windows version of the game, because I didn't want to cheat at this game badly enough to put up with the extra steps, let alone the mysterious executable. (I trust it a bit more now that I've found it on PC Gaming Wiki, but when I first became aware of the decryption tool, it was through a link on some random forum.)

The fact that the files are not encrypted in the Linux version of the game is probably an oversight — or maybe they just didn't care, or maybe they figured Linux users would find out how to break into the files anyway, or maybe they already knew about the decryption tool for the Windows version by the time they made the Linux version so they decided decryption was pointless. In any case, the fact that the files are encrypted in the Windows version is a clear indication that players were not meant to mess with these files.

But why not?

Cheating in multiplayer games is not okay, because it spoils the experience for other players, hence the existence of anti-cheat measures in multiplayer games. When it comes to single-player games, though, I don't see why we shouldn't be able to do whatever we want with a game that we bought. Many single-player games are made to be (or just are) easily modifiable; Skyrim, for example, is famous for community-made mods. Other single-player games, however, are made to be (or just are) very difficult to modify, as the Windows version of Spec Ops: The Line would be if nobody had figured out how to decrypt its files.

It's almost a shame that a game like Spec Ops: The Line, which is considered by many to be thoroughly mediocre, happens to be one of the games in which so much of the configuration is exposed to players through plaintext or easily decrypted files. A lot of games expose graphical settings not found in-game via configuration files, but in my experience, the ability to change the gameplay this way is rare. I wish I could so easily make similar modifications to games like Alan Wake, not because they're hard and I need to cheat, but because it would be fun. I'd actually like to make Alan Wake harder. Unfortunately, it's not an easily modifiable game.

Achievements are a possible reason that a game's developers might not want players to have unmitigated access to configuration values like player health. Some people take achievements seriously, especially rare achievements which are difficult to unlock; the perceived value of such an achievement, for players able to unlock it through skill and perseverance, is lessened when someone like me unapologetically cheats to unlock it by modifying configuration values.

But just as developers can program a game to disable achievements when built-in cheat codes are activated, they could also program a game to disable achievements when some deliberately exposed configuration file differs from the intended defaults, as verified by a checksum or whatever. I guess I'm advocating for games to offer the same level of easy modification as Spec Ops: The Line, if not more, but on purpose instead of by accident.

Some developers release powerful tools for modding their games, which is great. Changing a configuration file is also great, though, especially for players who aren't going to bother learning how to use whatever modding tools exist. My philosophy as a software developer is that hard-coding arbitrary numbers is bad and everything which reasonably could be configurable should be configurable, and maybe that's far easier said than done when it comes to games — I'm a software developer, not a game developer — but I have a feeling that most games hide configuration from players on purpose, and doing this just to prevent a human from cheating against a computer is silly. The ability to cheat is not going to ruin a game for anyone with any self-control.

I'm also a big fan of games having plaintext save files, for similar reasons. I've played a few, and although I've rarely bothered to skip ahead or otherwise cheat by editing their save files, knowing that I had the option was nice. Save editing is probably hard to detect, so I don't expect it from games whose developers want achievements to mean something — but as with all forms of unintended cheating, my selfish take on the subject is that I should be able to cheat to unlock achievements, and also, deal with it.

Sorry for making the global achievement statistics for Spec Ops: The Line slightly less accurate though, I guess.

Saturday, November 2, 2019

Steam Library Update: A Quick Review

The big Steam Library update is out. I had tried it during the open beta phase, and while I was somewhat impressed by the new look, there were some things I had hoped they would improve. Maybe the performance is a bit better, but unfortunately, everything else appears to be the same.

A comparison of the old (top) and new (bottom) library designs.

At the end of the day, the library is just a fancy game launcher, whose primary purpose for those who don't use Steam as a social networking site is simply to provide a "play" button for each game, so I'm not mad enough to write a huge essay about it. I'll just break it down into lists of "pros" and "cons" and call it a day.

Pros


Aesthetics


Overall, it's more modern-looking and — subjectively, of course — prettier. At least, some aspects of it are prettier. Maybe this is too subjective to list as a definite "pro".

Dynamic Collections


The one functional upgrade that actually got me excited was the addition of dynamic collections, in addition to normal collections (previously known as categories). Whereas regular collections are static, and are defined by adding games manually, dynamic collections are based on a selection of filters, or on user-generated store tags, and thus will grow automatically as new games are added to the library. This is really nice if you want a collection for all your single-player games, for example, but don't want to keep updating it.

The filters currently available for dynamic collections.

I should note that the list of pre-defined filters available for dynamic collections is somewhat lacking (by which I mean it's only a subset of the pre-defined filters available in a store search). Oddly, I can't even make a dynamic collection for games supporting Remote Play Together, a new feature which one would assume Valve should want to promote in this way. Granted, that feature is still in beta, so perhaps I shouldn't hope for a specific Remote Play Together filter in the library yet (although there is a Remote Play Together filter in the store search). However, it should be noted that the games supporting Remote Play Together are, in theory, those with any kind of local multiplayer, and there are no built-in library filters for local multiplayer, local co-op, or shared/split screen either.

Update (November 21, 2019): Remote Play Together is officially released as of yesterday, and — as if to respond to my inane nitpicking — a "Remote Play Together" option has been added to the list of built-in filters available for dynamic collections. No other new filters have been added, though, and I still wish there were at least as many as are available in a Steam store search. I assume these library filters are the same as the store filters, under the hood.

I had hoped that the "store tags" option would make up for any shortcomings in the list of pre-defined dynamic collection filters, but a quick test indicates that this is apparently not the case. As of the time of this post, a store search for the "Local Co-Op" tag returns far fewer results than a store search using the built-in "Local Co-Op" filter. Even when the latter search is narrowed by adding the "Games" filter (thereby excluding DLC, etc.), it still returns many more results than the "Local Co-Op" tag search. It seems that store tags related to features are not applied to all products which contain those features according to the built-in filters. For this reason, I don't trust a dynamic collection defined with the "Local Co-Op" tag to contain all of my local co-op games. But I can't really call this a downside of the library update, because the old library didn't have dynamic collections at all, and the fact that the Steam store provides two conflicting ways of searching for the same thing is a weird problem which predates this update.

Update (November 21, 2019): I'm not sure when this changed — perhaps it was when Remote Play Together came out of beta yesterday — but the store's built-in "Local Co-op" filter has been renamed to "Shared/Split Screen Co-op" and thus the above example of the difference between tags and built-in filters makes a bit less sense. For what it's worth, the new "Shared/Split Screen Co-op" filter is the same as the old "Local Co-op" filter, judging by the URLs, but the name no longer matches that of the "Local Co-Op" tag, so it's harder to show that Steam is doing something nonsensical here. So I'll revise my example with filters which have not been unexpectedly renamed: Compare the search results of the "Co-op" tag to the search results of the built-in "Co-op" filter; the latter yields more results. The same is true when comparing the "Online Co-Op" tag to the built-in "Online Co-op" filter; the latter yields more results. I still take this as evidence that tags are unreliable. But again, I've gone off on a tangent regarding things which aren't strictly related to the library update, which didn't introduce this problem but merely drew my attention to it. So, moving on...

Drag-and-Drop Collection Editing


I do like the fact that I can drag and drop games into collections. Games can also be added to collections by right-clicking on them and selecting a collection from a list, which is approximately how games were added to categories before, so the new feature doesn't come with any significant loss in functionality.

My only complaint about collection editing is that adding a game to multiple collections at once is slightly more arduous than before. In the old Steam library, the list of categories was actually a checklist from which multiple categories could be selected at once. Adding a game to multiple collections simultaneously doesn't seem possible with the new Steam library. Whether you drag-and-drop or right-click, games must be added to collections one-at-a-time. However, I think it's rare that anyone would want to add a single game to so many collections that this would become too much of a hassle. What's more important is the ability to add multiple games to a single category in bulk, and this can still be done just as easily as before.

Cons


Proton Ambiguity (See Update Below)


On Linux, the library no longer indicates whether a game will run natively on Linux, or with a specific Proton version selected by Valve testing or by the user, or with the default Proton version selected for all other games. This sounds like a weird complaint, but not being able to see whether a game will be executed with Proton can be a bit of a problem.

During the recent Halloween sale, I bought a game called Oniken; the game's store page does not indicate that it natively supports Linux, but the overall rating on its ProtonDB page indicates that it works perfectly, out of the box, with Proton. So naturally I tried playing it on Linux, where I have Steam Play enabled for all games. It didn't work. A closer look at the ProtonDB page revealed that, although the game has no native Linux support, it apparently does have some kind of built-in Wine wrapper which, of course, doesn't work. I had assumed the game was running with Proton but, unbeknownst to me, it was doing something else by default instead. When I tried forcing the game to run with Proton, it did indeed work perfectly. Situations like this were a lot less confusing back when the Steam library displayed a Proton version, if applicable, next to the "Play" button of each game.

As before the big update, the built-in filter for games which run on Linux is useless when Steam Play is enabled for all titles (which is the only correct way to use Steam on Linux given the success rate of Proton in getting Windows games to work); with this Steam Play option enabled, the filter includes all games, so it doesn't actually do anything. Given that the library no longer indicates how each game will run, it would be nice if there were separate filters (or the ability to define separate dynamic collections) for native Linux games and Proton-enabled games, at least. Unfortunately, I can't find any such option.

Given how incredibly great Steam has been for playing games on Linux, this relatively minor downgrade is a disappointment, as it gives the impression (though perhaps I'm being paranoid) that Valve is losing interest in maintaining Steam as a Linux gaming platform.

Update (November 9, 2019): A few days ago, I did some digging and found a related issue report on the "Steam for Linux" GitHub page. I had no expectation that it would be fixed any time soon, but I was glad to know I wasn't the only one who noticed this glaring problem. Today, however, a new comment on the issue report claimed that the missing feature had been restored. A screenshot on a later comment shows that, sure enough, a Proton version number can be seen after clicking a game's "Show more details" button. It seems this fix is in beta, as I had to opt in to beta updates to see it, but I assume it will be rolled out to a stable release soon enough.

Grid View Dimensions


An example of the box art problem.
The new grid view uses box-art-style (portrait-oriented) image dimensions. Many older games don't have suitable images, so the banner-style (landscape-oriented) images are used and the empty space is filled with an ugly blur effect. There's no option to go back to the old grid view despite literally all games having images with the right dimensions for it.

As before the update, users can manually select custom images for games. Finding such images isn't hard; there's a site called SteamGridDB dedicated in part to providing custom box art of the proper dimensions. The use of custom box art images, where developers have not provided official images in the new format, is one way to get a uniform-looking library. However, I have nearly 800 games on Steam, and the size of my library is largely due to the fact that so many of my games were bought for pennies because they are old and/or obscure, and these are exactly the kinds of games which are more likely to be missing the new box-art style images. The use of custom images is a good solution for users with small libraries, but I have too many games which are lacking proper box-art images, and I just can't be bothered to spend time fixing it. I'd much rather be given the option to use the old grid view.

Awkward Columns


When a game is selected and Steam displays game details, the wider left-side column is reserved for friend activity, developer updates, and community content; meanwhile, the narrower right-side column has information like achievements, Steam Workshop, screenshots, DLC, trading cards, etc. If the auto-loading of community junk is disabled in the settings (as I think it should be) and there are recent developer updates or friend activity, it leaves a big empty space pushing all of the other information to the side. Some of my games have two or more screen lengths worth of content in the narrow column, and nothing in the wide column when I have auto-loading community stuff disabled. It makes sense for most content to be put into the narrow column when the wide column was designed for infinitely scrolling auto-loading content, but I think infinitely scrolling auto-loading content is annoying, so of course I'm going to disable it. Once the wide column's (annoying) main purpose is disabled, it negates a lot of the effort that went into making this design aesthetically pleasing.

Manual Links Removed (Yes, I'm Nitpicking)


The library no longer contains direct links to game manuals, forcing users to go to a game's store page or open its properties window.

Performance


Unsurprisingly, performance is poorer. With the prettier interface comes greater resource usage.

And Of Course, Bugs


There are still some bugs, indicating that the update should have stayed in beta for longer. For example, when I switch back to the Library tab from the Store or Community tabs, some parts of the library don't appear until I move the mouse over them. I've seen this on Windows 7, at least. Maybe it's just me, but I doubt it.

Sunday, August 25, 2019

Adventures in Linux Gaming

Last month I wrote about Playnite and GOG Galaxy 2.0. What I forgot to mention is that, for me personally, the major downside of each is the lack of Linux support.

I've been using Windows 7 for a long time. I didn't like the look of Windows 8 when it came out, and never saw the point in switching. Having used Windows 10 at work, I definitely have no interest in using it on my home PC, regardless of all the spying it supposedly does. I just don't enjoy using it. I suppose I don't particularly enjoy using Windows 7 either; I've had my share of problems with it. It just happens to be the best version of Windows which is still officially supported. Unfortunately, with that support ending at the start of next year, I would be forced to "upgrade" to a worse version of Windows if I want to continue to get security updates.

Do I really need security updates? I don't know. Is Windows 10 really worse or am I just biased? I guess it's a little of both. Ultimately, though, it probably doesn't matter. I've been somewhat unhappy with Windows in general, and... well, Linux is free.

Switching to Linux, and Why You Should, Maybe


Switching to Linux is seen by some as a daunting task, and perhaps there's good reason for those with no experience with Linux to be just a bit intimidated. To those terrified Linux beginners, I would recommend a user-friendly distribution like Linux Mint. That's what I'm using, despite several years of experience with Linux as a software engineer. It's just incredibly convenient. The Cinnamon desktop environment is fairly Windows-like, and Linux Mint comes with nearly all the features you need in order to avoid ever touching the command line if you don't want to. The installer is also very easy to use. Some casual PC users might not know what all of the options mean, but for those users, I think the defaults are probably fine.

Of course, no matter how automated the installer and how fully-featured the desktop environment, every Linux user will inevitably run into some kind of problem. The very same is true on Windows; the difference is that, when you search the internet for a solution to a problem on Windows, you'll almost certainly find a solution posted by someone who uses the same version of Windows. There are many Linux distributions, though; if you're not using one of the popular ones, you might find solutions which aren't quite what you need, or you might not even find any reliable documentation of the exact problem you're experiencing.

When I turn to the internet for help with installing something or fixing some error on Linux, the solutions I find are usually tailored to Ubuntu, which is fine because Linux Mint is based on Ubuntu, but it's not always the case. Sometimes the answers I find are all about Debian or Fedora. Sometimes it doesn't matter. Other times it does. I'm not saying that troubleshooting on Linux is a nightmare. These days, it really isn't. However, the fact that there isn't just one Linux comes with some inherent problems, such as this one, and troubleshooting does require a bit more patience.

But the fact that there are so many distributions means that, if you hit a roadblock and absolutely nothing works, you could always just try a different distribution.

How I Ended Up with Linux Mint


When I first decided to install Linux on my home computer, I tried Ubuntu. The installation process was mostly easy. I had some difficulty setting up dual-boot with Windows 7, but it wasn't Ubuntu's fault. It was because, while attempting to install Ubuntu from a USB stick, and I had inadvertently booted to my USB stick in UEFI mode while my Windows installation was using legacy BIOS. If you don't know what that means, don't feel bad; neither did I.

The short version of this story is that, when I booted my USB stick in legacy BIOS mode, the installation and dual-boot set-up went smoothly. However, I found Ubuntu's default desktop environment difficult to customize and annoying to use in general. Even after a bit of research, I couldn't figure out if my problems were the result of bugs or just obtuse design. Ultimately, for this reason and others, I decided that Ubuntu just wasn't for me.

That's when I tried installing Debian. The installation process seemed to work perfectly. Then I tried to boot to Debian, and nothing happened. I got a black screen. I did some research but there was really no way for me to try any of the solutions proposed to others who had similar problems, because I didn't even have a working terminal. I couldn't enter any commands. I assume that it was a video driver issue, and I could have attempted to fix it, but I decided that it wasn't worth my time. I had heard good things about Linux Mint, and I hadn't tried it yet, so I dropped Debian like a hot turd and started downloading Linux Mint.

That turned out to be the right decision; Linux Mint was easy to install, it booted up just fine, and to this day I've had no significant problems with it... except when trying to run games that were never meant to run on Linux.

Gaming On Linux


It always takes me a while to get to the point.

Linux Mint is great as a general-use desktop operating system. It comes with Firefox, LibreOffice, a media player, etc. But how is it for playing video games? Well, I'd say it's just as good for games as any other Linux distribution, and gaming on Linux today is better than ever, thanks in part to Steam.

Steam Play and Proton


A Linux version of the Steam client has been available since 2013, allowing Steam users to play any games which happened to have official Linux versions. It was only about a year ago, however, that Steam rolled out an update to the cross-platform Steam Play feature, allowing Windows games to be installed using the Linux client and providing a Wine-based compatibility tool called Proton which allows many of those games to run on Linux with very little effort from the user.

Installing Steam on Linux Mint doesn't require any command line usage, nor does it even require a web browser. You just open the Software Manager, search for Steam, select the first result, and click the install button. Meanwhile, enabling Steam Play for all games is just a matter of checking a box in the Steam settings menu. If I remember correctly, this option is disabled by default, and initially Steam Play is enabled only for officially supported games, which is no surprise; it's sensible for anything that isn't guaranteed to work to be disabled by default. But the option isn't hard to find, and often no effort is required to get games to work even if they're not officially supported.

ProtonDB tracks how well Steam games work with Proton by aggregating user-submitted reports. Games without native Linux support are rated on a scale of Borked (meaning it won't run at all) to Platinum (meaning it runs perfectly out-of-the-box), with three ratings (Bronze, Silver, and Gold) in between. I'll let the statistics on ProtonDB speak for themselves, but they appear to indicate that the majority of games are playable.

My own personal experience with running Steam games on Linux has been better than expected. Of course, I've been using ProtonDB as a resource since the beginning, and I haven't bothered to install games which are definitively rated Borked. In general, I've gravitated more toward the games with higher ratings. Therefore, I can't claim that the games I've tried playing on Linux via Proton, of which there are about a dozen, are a random sample. However, even when I've tried to play games rated Bronze or Silver, I've been mostly successful, as I've found solutions in ProtonDB's comments to some of the minor problems I've encountered. And the only game rated Borked which I've really gotten the urge to play since installing Linux Mint is L.A. Noire, and for such games, I still have Windows 7 installed on my other hard drive.

I won't describe my experience with every game in detail, but the first Windows-only game I played on Linux Mint was Max Payne, and... frankly, it just worked. It worked perfectly, actually. The only difficulty I had was not with the game itself but rather with the unofficial widescreen patch, and it was only a momentary setback. The comments on ProtonDB quickly set me straight; I added WINEDLLOVERRIDES="d3d8=n,b" %command% to the game's launch options in Steam and even the widescreen patch worked perfectly.

Similarly, Max Payne 2 works perfectly in Linux, and getting the unofficial widescreen patch to work simply requires adding WINEDLLOVERRIDES="d3d9=n,b" %command% to the game's launch options. Playing Max Payne 3 was a bit more difficult; initially, it wouldn't launch. Following the advice of comments on ProtonDB, I added PROTON_USE_WINED3D11=1 %command% to the game's launch options, and it worked, but with some bugs. The minor issues with Max Payne 3 which remain can probably be fixed, perhaps by trying one of the other Proton versions offered by Steam or by further modifying the runtime configuration, but I had only installed it for testing purposes anyway. I was really more interested in playing the first two games in the series, so I didn't spend much time troubleshooting the third.

Non-Steam Games and Wine


Despite needing the occasional web search to find the correct configuration with which to run a certain game, Steam Play with Proton is actually so convenient it's easier than ever for me to ignore the games I bought from other online stores such as GOG. While there are games on GOG with official Linux support, the GOG Galaxy client does not have a Linux version (despite a lot of GOG users wanting one). Downloading games directly from the GOG web site isn't hard, but clients such as Steam and Galaxy do offer a lot of convenience.

Furthermore, although I could probably use Wine or other tools to play many of the Windows-only games from my GOG account on Linux, it would require more effort than running Windows games via Steam, which very often just works automatically. I did install Wine with the intention of playing non-Steam Windows games, but I just haven't used it yet, because Proton — when it works, which it usually does — is just so effortless. If I'm trying to decide what to play, and I've narrowed down my choices to one GOG game and one Steam game, I'm likely to pick whichever is easiest to run on Linux, and that's going to be the Steam game nine times out of ten.

That might change a bit when I get around to trying Lutris, a game client not associated with any particular store, which also claims to reduce installation of many Windows games on Linux to a zero-effort, one click process. It looks like a promising solution for playing some of my GOG games on Linux. For what it's worth, though, installing Lutris is one extra step. I'm going to have to be a jerk and say that Steam still makes it easier by having Proton integration built in to its own client. So many of my games were already working on Linux as soon as I installed Steam that I haven't taken the time to use much of anything else.

So I don't have much to say about running Windows games with Wine, via Lutris or otherwise. I plan on experimenting with it eventually, and once I've done so, I'll probably write a sequel to this post. Right now, though, I'm looking at a huge Steam library and a high success rate with using Proton with very little tweaking, so I probably won't be straying away from Steam very often, except for the sake of experimentation. When I just want to play a game, Proton is often the best way to make it happen.

The Classics


There is one category of games for which I've already strayed outside the Steam bubble: Old-school shooters. I've got to have them.

The Steam versions of The Ultimate DOOM, DOOM II: Hell on Earth, Final DOOM, Heretic, HeXen: Beyond Heretic, and HeXen: Deathkings of the Dark Citadel all run in Proton. They were all, in fact, officially tested by Valve with specific versions of Proton, so that they show up in my Steam library with labels like "Proton [version number] selected by Valve testing" and will run with the indicated Proton version instead of the default I selected in the global Steam settings.

I find this rather amusing because the Steam versions of these games run through DOSBox which, if I'm not mistaken, has a Linux version. However, I'm not suprised that the game's publisher, id Software, hasn't made the effort to repackage these old games with the Linux version of DOSBox for an official Linux release on Steam, especially given that most users who are computer-savvy enough to use Linux will just take the game files downloaded via Steam and run them in a source port instead of DOSBox anyway.

That's what I did with all of these games, immediately after installing them. There's a Linux version of GZDoom, which isn't a suitable source port for anyone who wants the games to run exactly as they did in the '90s, but it's good enough for me. Like any sane person, I did disable major gameplay options which were not in the original games (such as vertical freelook in the DOOM games, jumping in DOOM and Heretic, and ridiculous stuff like crouching), but the graphical upgrades don't bother me.

Getting GZDoom to launch with the correct options for each game was a bit of a hassle, but no more than it was on Windows. The only real problem is that GZDoom, on my system, encounters some kind of error when I close it, which might have something to do with the fact that it doesn't seem to save changes to the gzdoom.ini file unless I enter the writeini console command while running GZDoom. Knowing the workaround, I'm not really bothered by it.

Satisfied with the DOOM and Heretic/HeXen games, I moved on to Wolfenstein 3D and its expansion Spear of Destiny, and installed the source port ECWolf. To my surprise, it seems to work perfectly despite being, in my estimation, less widely used than GZDoom. So then I moved on to the Marathon trilogy, available as freeware since 2005, and attempted to install the source port, Aleph One. That, unfortunately, could have gone more smoothly.

Not Everything is User-Friendly


The official Aleph One web site has some pretty basic instructions for installing the Linux version: Unpack the .tar.bz2 file and, in the unpacked directory, run ./configure && make && make install. Unpacking the file was easy, but I started having problems as soon as I ran the configure command. I won't bother going into all of the messy details, but I went through several iterations of trying the installation, which would fail due to missing dependencies, and then installing those dependencies.

Synaptic Package Manager, included in Linux Mint, makes finding and installing missing packages about as easy as it can be; doing it on the command line using apt or apt-get isn't very hard either. But I had never needed to hunt down dependencies like this. When installing software through Linux Mint's Software Manager, or even when installing a program using apt install, all dependencies are installed automatically (which I now regard as a miracle). Installing software manually, however, isn't quite so easy. Perhaps I was to blame for not knowing what all of the dependencies were beforehand, but it was getting frustrating.

When I finally got Aleph One installed, I was able to launch Marathon, but it printed some errors to the screen and there was no HUD. Searching the internet for a solution, it turned out I was still missing some "optional" dependencies, and installing those made things worse; my next attempt at installing Aleph One failed outright, seemingly due to a dependency which I had already installed.

That's when a comment on the Aleph One GitHub repository, posted only eight minutes before I saw it, clued me in to the fact that I had gone down the wrong rabbit hole. The easier and more reliable way to install Aleph One is to clone the Git repo, go into the root level folder, and run ./autogen.sh followed by make and make install. I had to install git (which I've used extensively but not at home) and I was still missing a couple of dependencies required by the autogen.sh script, but it told me exactly what the dependencies were, so installing them was just a matter of running the correct sudo apt install command.

So I've got Marathon and its sequels working on Linux now, but installing Aleph One took more than an hour after all was said and done. I've learned a lot, though, and ultimately the solution to every problem was revealed with a simple internet search. This story could scare people away from trying to play games on Linux, but it's important to keep in mind that I had this much trouble only because I was trying to play a 25-year-old game. Doing that on Windows isn't always easy either.

I still haven't installed the classic Quake games, and I think those are next. I can only hope installing their source ports will be a bit easier.

Conclusion


I guess the moral of this story is that installing and running games on Linux can take a bit of patience, but I only came close to running out of patience when I tried to do things that only an old-school game enthusiast determined to use Linux at all costs would ever try to do. With Steam, many of the games that work on Linux will "just work" and, for non-Steam games, I'm told that Wine isn't very hard to use either. However, I do know just enough about Wine to know that it requires some effort. The average consumer expects things to work with a single mouse click. They want one-click install and one-click launch of every game.

For games with native Linux support, you can have that. For the rest, Steam comes pretty close to providing that level of convenience. Until other stores like GOG implement some kind of compatibility layer like Proton into their own clients, Steam will dominate Linux gaming for the same reason that Windows dominates gaming in general: It's just easier.

Sunday, July 28, 2019

GOG Galaxy 2.0 and Playnite 5.3

Note: Some of the information in this post is outdated now. Deal with it, nerds.

Last Friday, I finally got my invitation to the GOG Galaxy 2.0 closed beta. This major update to digital PC game distributor GOG's optional desktop client allows users to import information about games purchased from or registered to other services, thus providing a unified front end for divided game collections. The point, presumably, is to address or to mitigate some game consumers' reluctance to stray outside of the Steam bubble due to their anxiety about not having all of their games in one place. As I noted in a previous post, this is a pretty smart move for GOG, because most potential GOG customers are probably using Steam already, and might not be willing to start using a second store unless doing so is made convenient.

It should be noted that, while GOG Galaxy 2.0 will allow you to import your Steam game library and launch those games from within Galaxy, the games are still launched through Steam, so having the Steam client installed is still required to play Steam games. The same goes for other services as well. The new Galaxy launcher isn't going to let you avoid installing other launchers. However, it will help you organize your game collection and see all of your games in one place without opening all of your launchers at once. Much of the functionality added in this Galaxy update will seem familiar to users of Playnite, another desktop application which aims to be an all-in-one game launcher but which isn't associated with a particular store.

On that note, Playnite 5.0, a substantial update, just recently came out of beta. I believe this was an open beta, but I never got around to trying it during the beta phase. The official release of Playnite 5.0 was announced on Twitter last Friday, the same day I got my GOG Galaxy 2.0 invite.
Since then, several minor versions have been released; the latest version of Playnite is now 5.3 as of today. Apparently some nasty bugs were fixed — some users reported that their game collection databases didn't survive the upgrade to 5.0, an issue which should now be resolved according to the change logs — so I guess I should be glad that I waited.

I've been waiting for weeks to try GOG Galaxy 2.0, and I've been looking forward to the big Playnite update as well, and I had planned to give my first impressions on each in separate posts. However, having installed both on the same day, I might as well do a single combined post with some comparison. This isn't really a "Galaxy versus Playnite" post — trying to pick a "winner" here wouldn't really be fair because Galaxy 2.0 is still in beta and because Playnite is an open-source application without the backing of a well-known game developer — but I'm interested to see how the two of them differ.

GOG Galaxy 2.0


I already had GOG Galaxy installed on my computer, with a few games downloaded. The GOG Galaxy 2.0 installer, as expected, seems to have replaced the old Galaxy with the new one. I'm not sure if there's any easy way to roll back to the previous version, but nothing appears to have broken. Upon starting up the new version (which is apparently 2.0.4 as of today), I'm still logged in and my entire collection of GOG games is visible; the few games I had installed are still showing up as installed, and I was able to launch one of them.

More importantly, to my delight, it didn't automatically attempt to detect and import games from Steam, etc., that I've installed on my computer. Maybe some people would like everything to be automatic like this, but it would have really annoyed me; I'd much rather choose whether to import games from other services, and when to do so.

However, when I was ready to import some non-GOG games into Galaxy, I found that simply scanning for installed games, or manually importing them, apparently cannot be done. The fact that Galaxy didn't try to look for installed non-GOG games on my computer makes perfect sense because importing games requires connecting accounts. The inability to manually add games by their .exe files is listed as a known issue in GOG's support center, so I assume this is meant to change at some point in the future — as it should, because Playnite and Steam both allow manually adding arbitrary games — but, as of now, it seems the only way to add non-GOG games to Galaxy 2.0 is to use the platform integrations in the settings menu.

Two official integrations are listed:
  • GOG.com (connected by default of course)
  • Xbox Live
 Meanwhile, five are listed under "popular" community integrations:
  • Epic Games Store
  • Origin
  • PlayStation Network
  • Steam
  • Uplay
A third section exists to add manual integrations, but I'm not sure how to do this yet. The section contains only a "learn more" link which leads to the Galaxy integrations Python API, and that page includes instructions for deploying integrations into the Galaxy client, but I can find no directory of community plugins aside from the five "popular" ones listed above. Perhaps no others exist yet.

In any case, I love the fact that the API is in Python, because Python is a wonderful language, and if I weren't already using Python every day at work then I might be tempted to try creating my own Galaxy plugins. Of all the languages I've used, Python is by far the most accessible, so it's a good choice for community-made extensions to the Galaxy client.

As for using the integrations which are currently available, it doesn't seem too difficult. Each one listed in the settings menu has a big purple "connect" button which automatically downloads the integration and displays a window indicating which features are included in the integration. These features, one or more of which are implemented by each integration, are as follows:
  • Games
    • Library
    • Installing & Launching
    • Achievements
    • Game time
  • Friends
    • Friends list
    • Chat
    • Friend recommendations
The Steam integration currently implements all of these features except for friends list and chat. In comparison, the Origin integration implements the same set of features as the Steam integration, while the Uplay integration is missing achievements and the Epic Games Store integration is missing achievements and game time. All of this could change in the future, given that Galaxy 2.0 is still in beta, but I don't really care; none of the features missing from any of these integrations are actually features that matter to me. (Friends list integration might be nice, but nearly all of my friends only use Steam anyway, so I'll just go directly to Steam if I want to talk to them.)

From that informational window, clicking "connect" again brings up a log-in page for the platform in question. Apparently log-in credentials for other services are never saved in GOG Galaxy 2.0, so it probably works similarly to Playnite in which each platform's log-in window is basically a browser window and the application only stores some kind of log-in session cookie.

The GOG Galaxy 2.0 privacy notice also seems to indicate that the data enabling each account integration connection is deleted once the integration is disconnected, which seems to imply that there is no permanent account linkage. I assume this means, for example, that GOG will not permanently link my Uplay account to my GOG account if I use the Uplay integration, and will not prevent me from connecting to another Uplay account in the future if I happen to have two Uplay accounts. If this is the case, it would differ from GOG Connect in which Steam account linkage is permanent and irreversible, but the reason for GOG Connect working this way is obvious.

In any case, given that I've already used GOG Connect and my Steam account is therefore permanently linked to my GOG account already, I saw no danger in using GOG Galaxy 2.0's Steam integration.

Upon entering my Steam account credentials (and the Steam Guard authentication code), Galaxy automatically began importing my entire Steam library, which took several minutes because I have several hundred games on Steam. It did not give me the option, as Playnite would, to import only installed games. I suppose that's fine, though. Importing my entire Steam library just happens to be what I wanted to do anyway.

The end result was quite nice, visually. GOG Galaxy 2.0 has two modes for displaying games: a list view and a grid view. The latter is the default, and is more interesting anyway, so it's what I spent most of my time using. All of my Steam games were seamlessly added to the same grid as my GOG games, with all games from both services displaying cover art of the same size and shape. At first glance, this looks a bit nicer than Playnite 4.74, which would download each game's cover art from one of a few sources (depending on availability and user settings) but would not ensure uniform aspect ratio of cover art; this can result in a messy-looking library. If I remember correctly, the last version of Launchbox that I used had the same problem.

However, while GOG Galaxy does its best to display box art of uniform dimensions, sometimes the result is far from perfect. All of the images are guaranteed to line up perfectly, but that's because some of the images are cropped to achieve the desired dimensions. In some cases, wide images are cropped to narrow box art shape, resulting in only part of a title being shown. This can be demonstrated, quite annoyingly, by the Alien Breed trilogy imported from my Steam library (which are also being shown in the wrong order, presumably due to the alphanumeric ordering of special characters such as spaces and colons):

Alien Breed trilogy imported from Steam as shown in GOG Galaxy 2.0.

The lack of suitable cover art for some games isn't GOG's fault, but the cropping is an issue nonetheless. Compare this to the way Playnite 4.74 would display these games. It seems to use the same images as Galaxy, but it shows the entirety of the wide image instead of cropping it. Whether the cropping seen in Galaxy is better or worse is a matter of opinion, I suppose.

Alien Breed trilogy imported from Steam as shown in Playnite 4.74.

Note that Playnite also displays the games the correct order because Playnite allows each game to be given an invisible sorting title (which, for the first game in the trilogy, I changed from Alien Breed: Impact to Alien Breed 1: Impact). This would be a good addition for Galaxy.

Another problem affecting both applications — but seemingly affecting Galaxy more, perhaps due to a narrower search for images — is the occasional missing box art for some of the more obscure games. For these games, Galaxy just displays the title in a box-art-shaped gray area. Fortunately, images can be added or changed manually, so the missing or otherwise incorrect box art can be fixed with a bit of effort.

As expected, games which I own on both Steam and GOG (of which there are quite a few thanks to GOG Connect) now appear twice in my Galaxy library. (This is the same behavior seen in Playnite after importing games from both Steam and GOG.) It's not a big deal, but I would have liked these entries to be combined, so that I see only one of each box art but still retain the option to launch each game on either platform. To be honest, I'm not sure if I trust any application to pull this off automatically, given the occasional minor spelling differences between platforms for the same titles (e.g., Brutal Legend from GOG versus Brütal Legend from Steam), but even in these edge cases, Galaxy does seem to find the right box art for both copies. Anyway, although seeing two of the same box art for games owned on two platforms can be slightly annoying, it's no obstacle to usability. Hovering the mouse over any box art displays the logo of the source platform as well as the game's title.

Overall, I was pleased with the way things were going, so I decided to dive in completely and connect my Uplay, Origin, and Epic Games Store accounts to Galaxy as well. All games on these accounts were automatically imported to Galaxy as the accounts were connected. In the case of Uplay, in particular, this shows one distinct advantage of Galaxy 2.0 over Playnite; the latter, as of now, can only import Uplay games that are already installed on the computer.

Galaxy was able to find suitable box art for all of my Uplay, Origin, and Epic titles, which don't include nearly as many obscure games as my Steam library. So, aside from some box art issues with a number of Steam games for which Galaxy was apparently able to find only wide images which were then badly cropped, my combined GOG/Steam/Uplay/Origin/Epic game collection in Galaxy 2.0 looks pretty nice.

Each game's metadata can be modified, and this includes several text fields (title, genres, developers, publishers, release date, and tags), three types of images (box art tile, background image, and a small icon for list view), and some other special fields (a rating out of five stars and a checkbox for visibility which allows games to be hidden).

Playnite 5.3


I suppose I should start with a general description of Playnite for those who have never used it. In short, Playnite can import games from various PC game platforms in the same way that GOG Galaxy 2.0 does. It comes with a number of importer extensions which are similar to Galaxy's integrations. The list of importers does not seem to have changed between 4.74 and 5.3:
  • Battle.net
  • Bethesda
  • Epic Store
  • GOG
  • itch.io
  • Origin
  • Steam
  • Twitch
  • Uplay
The importers for Bethesda and Uplay are the least useful, as they can only import games which are currently installed. The others can import games which aren't installed yet. The importers for Battle.net, Epic, itch.io, Origin, and Twitch accomplish this by authenticating with the user's accounts on those platforms. The importers for Steam and GOG are the most feature-rich, and can import games with or without user authentication; in the latter case, the importer requires only a username, but the user's online profile on the applicable platform needs to be made public.

In addition to importing games from each of these platforms, Playnite allows users to add games manually with a fairly high level of customization. Playnite can also launch games using emulators, although I haven't used this feature myself.

The metadata tracked for each game by Playnite includes a large number of general text fields (name, sorting name, platform, genre, developer, publisher, category, tag, release date, series, age rating, region, source, version, user score, critic score, community score, and description), a handful of advanced fields (last played, time played, play count, completion status, "hidden" and "favorite" checkboxes, etc.), three types of images (cover image, background image, and icon), and some other cool options. Playnite can attempt to populate most of these fields automatically by downloading metadata from various sources; doing this automatically after importing games is optional.

Unlike GOG Galaxy 2.0, no log-in is required by Playnite itself, which is not associated with any online store. In fact, there is no such thing as a Playnite account. All of the game data imported by Playnite is stored locally by default. The database location can be changed to a flash drive to make it portable, and apparently it can even be set up to sync with a cloud service like Google Drive (although I've never tried it), but otherwise all of your data will just stay on your computer.

My own Playnite database was only stored locally, so I was concerned about reports of databases being broken by the upgrade from 4.74 to 5.0, but my database seemed intact after I updated Playnite from 4.74 to 5.3 via the "Check for Updates" option in the menu. Either the bug was fixed somewhere between 5.0 or 5.3, or it wouldn't have affected me anyway.

The visual differences between Playnite 4.74 and Playnite 5.3, which are naturally the first differences I saw, are not quite as dramatic as I had expected. I was intially somewhat disoriented by the filter options being moved from a left-hand sidebar to a right-hand sidebar, but it can be switched back to the left-hand side in the layout settings which also control the positions of a couple of other panels. The overall design of Playnite didn't change so much that I didn't know how to use it; all of the familiar things are still where they were, but there are some new additions, like an "explorer" panel which makes filtering by platform slightly easier.

I did notice immediately after the update that the "grid" view, which displays games as a grid of cover art images, was now behaving more like GOG Galaxy 2.0 than like Playnite 4.74, i.e., images were being cropped to fit the cover art dimensions:

Alien Breed trilogy imported from Steam as shown in Playnite 5.3 with "uniform to fill" cover art rendering.

However, the cover art rendering can be changed in the settings. The target aspect ratio can be modified, as can spacing and border settings, and there are four stretch modes:
  • None (which does no resizing or stretching, so images are shown at their original sizes and aspect ratios regardless of whether they fit in the available grid space, thus sometimes resulting in grid spaces showing only the center of a game's cover art and other times resulting in images filling only part of the available grid spaces; not recommended but, hey, it's an option)
  • Fill (which disregards images' original sizes and aspect ratios, and just stretches them to fill the target size and aspect ratio of the grid)
  • Uniform (which resizes images to fit inside the grid spaces while maintaining their aspect ratios; this was the behavior of Playnite 4.74)
  • Uniform to Fill (which resizes images to fill the grid spaces while maintaining their aspect ratios, and then crops them as needed to meet the target aspect ratio; this is the default behavior of Playnite 5.3)
I think these are probably all of the image fitting options anyone could want, which is great. Personally, I can't tolerate stretching or cropping, so I've gone back to the "Uniform" setting used by Playnite 4.74:

Alien Breed trilogy imported from Steam as shown in Playnite 5.3 with "uniform" cover art rendering.

This may result in a messier looking grid view, but it avoids messing up the individual images. I suppose there's no setting in which the automatically downloaded Alien Breed 3 image is truly suitable cover art, and it's a shame that this image was chosen by both Playnite and GOG Galaxy 2.0, but in either case, I can just manually replace the image if it bothers me enough.

I suppose the bottom line is that Playnite 5.3 offers more visual customization options than Playnite 4.74. However, being pretty isn't really enough; Playnite needs to be functional as well. It already worked rather well in version 4.74, but it had its bugs, quirks, and shortcomings. I'm sure Playnite 5.3 still has plenty of bugs and quirks, even if I haven't seen them, but at least one notable functional shortcoming has been resolved: filters are improved.

Whereas most filters in Playnite 4.74 were simple text searches — which meant, for example, that one could not filter to games with the genre "Adventure" without also finding games with the genre "Action/Adventure" — the filters in Playnite 5.3 provide drop-down menus for each category, while also retaining the text search option. The ability to select "Action" without also selecting "Action/Adventure" might seem like a very minor thing, and I suppose it is, but being able to select from a drop-down menu instead of typing a genre name is also just convenient in general.

Conclusion


As noted above, I'm not really looking for a winner here. They both work. They're both good. They both have shortcomings as well. At this time, GOG Galaxy 2.0 does not seem to have integrations for all of the same platforms from which Playnite can import games; if there are Galaxy integrations for Battle.net, Bethesda, itch.io, and Twitch, I don't know where to find them (although, to be fair, they'll likely be added later). Meanwhile, Playnite does not have importers for Xbox or Playstation accounts (although, to be fair, the value in console game importers for a PC game launcher is rather limited unless emulation is involved).

Selection of plugins aside, the main reason to use Playnite over GOG Galaxy 2.0 is that Playnite still has more options. More of the game metadata is editable, there are more filtering and sorting options, there are more visual customization options, games can be added manually (including those not connected to any online service, e.g., games installed from discs), and games can be launched using emulators. Launch options and other actions for games can be fully customized as well, and I've used this feature to add menu items for opening specific games' manuals and README files, among other things.

Meanwhile, there are already some compelling reasons to use GOG Galaxy 2.0, even if you're not interested in the Xbox or PlayStation integrations. Being able to import achievements from various platforms will be a big deal for a lot of players (though not for me personally), and the idea of integrated friends lists and chat across platforms (though not currently implemented for any of the integrations I tried) is honestly pretty cool. If all of your friends are on Steam then maybe Playnite's dedicated button to open just the Steam friends list is good enough for you, as it is for me, but that doesn't mean GOG shouldn't aim higher.

I can't reiterate enough that GOG Galaxy 2.0 is still in closed beta, and we should expect to see more improvements by the time it officially launches. The fact that it already has some neat features that are absent from Playnite is impressive. However, the fact remains that Playnite has a considerable head start when it comes to actual game collection management options, and Galaxy has a lot of catching up to do before Playnite is made obsolete. It's possible that some of Playnite's features will never be adopted by Galaxy, and vice versa, so we might never reach a point where one is strictly better than the other. We'll just have to wait and see.