Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
Wine Emulation (Games)

Wine 7.16 Brings Fixes for Saint's Row, Metal Gear, and Star Citizen (neowin.net) 28

It's the 29-year-old "compatibility layer" that lets Windows software run on Unix-like systems (including games). And Neowin reports that Wine's latest version has "meaningful fixes" for Steam Deck, HoloISO, and Chimera OS gamers.

Slashdot reader segaboy81 writes: Saint's Row players rejoice! Wine 7.16 has been released and ships with fixes for this, Metal Gear Solid and Star Citizen. [As well as Ragnarok Online.] Though Deck owners may have to wait for these changes to be merged upstream.
"There are a lot of fixes for other non-gaming Windows-y stuff," Neowin adds, "and you can check out those changes at WineHQ."
This discussion has been archived. No new comments can be posted.

Wine 7.16 Brings Fixes for Saint's Row, Metal Gear, and Star Citizen

Comments Filter:
  • Does iTunes run on it? I gave up on wine long ago because it wouldn't run iTunes. I have too big a library to give up on iTunes but would gladly switch if I could get it to run under wine.
  • But it's the teams working directly on WINE who are the real heroes. I know there's a lot of collaboration and cross-pollination, but if you'd told me in 2012 that a decade later Windows software that didn't work under WINE would be the exception, not the rule... I'd actually have said, "Oh, cool!" and gone back to editing my OriginPro-exported plots in Photoshop before taking a break to play Homeworld 2. What was the LTS in 2012? Precise Pangolin?
  • Wait... are we talking about Saints Row from 2006, or Saints Row from 2022 which some marketing genius decided should use the same name?

    • The article says it's the 2022 Saint's Row.

    • But that's all the craze now. Name your crappy knock-off like the classic, from Doom to Robocop, you will eventually trick some people into grabbing the wrong one and when they notice it, they already bought it.

  • Either it emulates win32 et al correctly or it doesnt. Can someone explain?

    • by StormReaver ( 59959 ) on Sunday September 04, 2022 @12:03PM (#62851177)

      WINE doesn't implement every Windows API, so they will sometimes (frequently?) focus on implementing the missing API's that are used by specific programs. The same goes for fixing bugs when they discover that particular programs won't run correctly under the existing implementation.

      • Review sites like https://njcasimile.com/online-... [njcasimile.com] provide players with an inside look at the reliability and safety of various online game. The content needs to have personality and style in addition to conveying important information. Honest, reliable commentary is what readers crave. That's why it's important for them to check out game reviews written by a range of people before making a final decision. What follows are some suggestions for writing a good game review. Make sure it's current.
    • by SteelCamel ( 7612342 ) on Sunday September 04, 2022 @12:23PM (#62851229)

      Short answer - undocumented behaviour. Even Windows itself has a compatibility list, where it fudges some things to make a particular program work properly.
      The target for Wine is not to implement the published Win32 API, it's to replicate the behaviour of Windows. And Windows doesn't always follow the documents - or the documents have gaps - and programmers write for the actual OS, not the spec.
      Games are a particular issue as they're trying to get maximum performance, so will cut corners. The only real way to pin this down is find a program that doesn't run, figure out what's crashing it, figure out what it *expected* to happen, and then change the Wine spec to do that.

      • by tlhIngan ( 30335 )

        Short answer - undocumented behaviour. Even Windows itself has a compatibility list, where it fudges some things to make a particular program work properly.
        The target for Wine is not to implement the published Win32 API, it's to replicate the behaviour of Windows. And Windows doesn't always follow the documents - or the documents have gaps - and programmers write for the actual OS, not the spec.
        Games are a particular issue as they're trying to get maximum performance, so will cut corners. The only real way

        • > It's not that Microsoft wrote code that said it did one thing but does another

          Such behavior has been commonplace at Microsoft since DOS was first published. The unpublished and violated APIs are why various governments and companies wanted to leave Microsoft Office to switch to something with published, stable standards. This lead to the publication of OOXML, the public standard that was incomplete as published and has never been followed robustly by Microsoft. But it allows the check off the box on so

      • by thegarbz ( 1787294 ) on Sunday September 04, 2022 @02:12PM (#62851407)

        Quite often it isn't even Windows. Graphics drivers are also a clusterfuck of edge cases which is why the whole "Game Ready Drivers" from NVIDIA and AMD's equivalent are tuned to specific games, and this behaviour is also very much undocumented. No gamer ever reads a release note for an NVIDIA driver as they are mostly geared to developers, but they contain stuff like 511.23: "Fixed: [Detroit Become Human]: Random stuttering/freezing occurs in the game. [3389250]"

      • I can speak specifically to Star Citizen. So the game started adding customer power throttling information to their threads via the Win32 SetThreadInformation [microsoft.com] API. And WINE doesn't actually implement that. So the fix was to actually implement it in the "dlls/kernel32/thread.c" file. Now of course the implementation is just a stub, the entire function is defined as:

        BOOL SetThreadInformation(HANDLE hThread,
        THREAD_INFORMATION_CLASS threadInformationClass,
        LPVOID threadInformation,
        DWORD threadInformatio

  • That a citizen named 'Star' will being me wine on every Saint's day.

  • A stale news piece from August 28, 2022 referencing NeoWin.net, not WineHQ.org itself? Has it at least been paid for?
  • Games are fun and all, but how well does it support serial? Last time I tried, I could set up COM ports in Wine, but they just didn't work!

    • Re:serial support (Score:4, Informative)

      by caseih ( 160668 ) on Sunday September 04, 2022 @07:22PM (#62852027)

      Basic serial port access works just fine. I use it all the time in wine with proprietary windows-only software that communicates with devices via serial. As long as there's a symlink in your .wine/dos_devices folder to your serial device, and you have permissions set on the linux device node, it will work. It's a bit cumbersome because Windows simply numbers com ports so there's ambiguity from time to time as to which com port it is (especially when recent versions of wine auto-populate this folder). But you can always ls -l ~/.wine/dos_devices to see what points where. Would that windows had a system like udev gives you where you can do /dev/serial/by-id and see device-specific paths that are deterministic.

      • This gives me something to look into. Thanks for the info!

      • Review sites like https://njcasimile.com/online-... [njcasimile.com] provide players with an inside look at the reliability and safety of various online game. The content needs to have personality and style in addition to conveying important information. Honest, reliable commentary is what readers crave. That's why it's important for them to check out game reviews written by a range of people before making a final decision. What follows are some suggestions for writing a good game review. Make sure it's current.
    • by rlwinm ( 6158720 )
      I run all sorts of oddball embedded tools under WINE that use COM ports. It works fine and has for a long time (several years at least was when I first tried it).
    • Wine can only map the com ports to real serial ports on the host machine if you have to talk to a real connection.
      And with unix-like systems you can not access a serial port as user. You need root-access to set the permissions.

      There is a reason why plain serial mostly has be replaced by USB....
  • Is to be made as a sequel to the previous Saints Row games, by a team without progressive politics.

  • Saint's Row player rejoice!.

"More software projects have gone awry for lack of calendar time than for all other causes combined." -- Fred Brooks, Jr., _The Mythical Man Month_

Working...