this post was submitted on 24 Dec 2024
695 points (98.7% liked)

Games

34606 readers
1841 users here now

Welcome to the largest gaming community on Lemmy! Discussion for all kinds of games. Video games, tabletop games, card games etc.

Weekly Threads:

What Are You Playing?

The Weekly Discussion Topic

Rules:

  1. Submissions have to be related to games

  2. No bigotry or harassment, be civil

  3. No excessive self-promotion

  4. Stay on-topic; no memes, funny videos, giveaways, reposts, or low-effort posts

  5. Mark Spoilers and NSFW

  6. No linking to piracy

More information about the community rules can be found here and here.

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] aggelalex 52 points 2 months ago (16 children)

Let's be honest, this was apparent for a long time. Steam, a centralised platform, has been making strides in Linux gaming and has been making innovation after innovation together with its steam deck. Gog, a forefront to freedom in gaming, barely did anything for the Linux gaming scene. No innovation either. Its just the simple (and well needed) premise of no DRM. It's necessary, but not enough. It didn't cater to its niche, it just committing to creating one under a premise. That's not how you go forward. How does this connect to bad management? Well, I think that with good management gog would make different moves. And wouldn't rest on its laurels so much.

[–] [email protected] 30 points 2 months ago (11 children)

It's pretty hard for GOG. Many of the things people don't like about GOG are not really GOG's fault, they are just a result of small market share. Steam is the bigger platform, and so naturally it gets priority for basically everything.

You game doesn't work on Steam? Then you'd better fix it immediately, because that's where the bulk of players are. But if your game doesn't work on GOG... well.. maybe fix it when you get some spare time. (Or maybe don't have a GOG version, because you don't want to have to keep multiple platforms up-to-date.)

So publishers and developers are generally less cooperative with GOG. And GOG themselves obviously have much more limited resources to do stuff themselves.

Steam's recent work with Linux has been great. And I do wish GOG would have something like that. But again, Valve has vast resources for that kind of thing - and they've been working on it ever since the Windows 8 appstore threatened to wipe them out. (That threat fizzled out; but nevertheless, that was what got the Linux ball rolling for Valve.) I'm in two minds about whether GOG should try to boost their Linux support. On the one hand, GOG is all about preservation and compatibility... and so it makes sense to have better Linux compatibility. On the other hand, it would be leaning further into a niche; and working on a problem that is kind of solved already. i.e. We can already run GOG games on Linux with or without a native linux version... it just could be nicer... Maybe it's not a good use of GOG's resources to go for that.

(That said, when I look at their linux start.sh scripts and see cd "${CURRENT_DIR}/game" chmod +x * it makes me think they could probably put at least a bit more effort into their linux support.)

[–] GaMEChld 5 points 2 months ago (1 children)

As someone with no Linux experience, what's wrong with that code?

[–] AnyOldName3 9 points 2 months ago (1 children)

It adds the executable permission (without which, things can't be executed) to all the files in the game's directory. You only need to be able to execute a few of those files, and there's a dedicated permission to control what can and can't be executed for a reason. Windows doesn't have a direct equivalent, so setting it for everything gives the impression that they're trying to make it behave like Windows rather than working with the OS.

[–] [email protected] 3 points 2 months ago (1 children)

I mean i assume thats just easier to deal with updates where a game has multiple exe files that may or may not change names. Assuming everything in the directory is assumed to be safe, is there any downside to applying it to everything, aside from opening up the possibility of a user accidentally trying to execute like a texture file or something which I assume just wouldnt work? I actually don't know and im curious.

[–] [email protected] 5 points 2 months ago (1 children)

You've pretty much got it. It's bad, but it's not horrible. Trying to execute some random file such as a texture basically just doesn't work.. but only by luck. It's possible, but unlikely that the data might look enough like an actual program to run and do something unpredictable.

I'm not aware of any major reasons why its a problem to make everything as executable (and I know that when I open an NTFS drive from linux, all the files are executable by default - because NTFS doesn't have that flag). From my point of view I just think its sloppy. I figure it can't be hard for GOG to just correctly identify which files are meant to be executable. For most games its just a single executable file - the same one that GOG's script is launching. And presumably the files that developers provided GOG have the correct flags in the first place.

Anyway, not really a big deal. Like I said, I just think it's a bit low-effort.

[–] [email protected] 4 points 2 months ago

Yeah that's fair, and im not defending the practice, it just made me think of some games that Ive seen that have multiple executables, usually with an inbuilt launcher that i have to bypass. Or when games used to come with a dx11 and dx12 executable. Personally i find that in itself super sloppy and annoying as well, but it makes a kind of lazy sense to just apply it to all the game files, in that its just one less thing to have to change if you make an alteration to the name of the executable file or add a new executable for whatever reason. Just one less possible failure point. But yeah I can see how its definitely not best practice.

load more comments (9 replies)
load more comments (13 replies)