mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-28 01:06:02 +03:00
[GH-ISSUE #1499] Feature request: skip GUI when launching game directly #506
Labels
No labels
Bloodborne
bug
contributor wanted
documentation
enhancement
frontend
good first issue
help wanted
linux
pull-request
question
release
verification progress
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/shadPS4#506
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @fpiesche on GitHub (Nov 7, 2024).
Original GitHub issue: https://github.com/shadps4-emu/shadPS4/issues/1499
It'd be useful if the main Qt GUI executable didn't bother trying to read the entire game directory when it's launched directly into a game (by calling
shadps4 path/to/eboot.bin). Some emulators just do this transparently, others (eg. RPCS3) have a command line flag to disable running the main GUI (in RPCS3's case,--no-gui).This will make the emulator useful for configuring via the GUI when running it directly with no parameters, while also allowing the same executable to launch into a game directly without having to wait for the game list to build on startup first. This is a common use case with game launchers such as Steam's game mode or things like Launchbox and Playnite.
Ideally this should also launch in fullscreen mode, though doing this could also be handled by a separate command line parameter (that is, just running
shadps4 eboot.binwill run the game in windowed mode, while runningshadps4 --fullscreen eboot.binwill launch it in fullscreen).@DanielSvoboda commented on GitHub (Nov 7, 2024):
There is the SDL version, which is different from the QT version which has an interface
@fpiesche commented on GitHub (Nov 7, 2024):
Yeah - thus in the current setup, a user would need both the SDL and the Qt version installed to be able to direct-launch games without waiting for the game list to populate first, but also have the GUI available for configuration. Making the Qt version skip the GUI, or at least the game list read, when launching an executable directly, would improve QOL for users of the Qt version.
I'll admit I haven't actually used the SDL version; does it meaningfully differ from the Qt version once it gets to actually running a game, e.g. in terms of Wayland support etc?
@DanielSvoboda commented on GitHub (Nov 8, 2024):
The QT version didn't even have a command, I remember that I was the one who added the ability to run the game through the command line in the QT version, just like in SDL, I did this just to be able to create game shortcuts correctly. It's a good idea to have a command to run QT headless, similar to SDL.
@Hermiten commented on GitHub (Nov 22, 2024):
Can you try the last main version ?:)
@DanielSvoboda commented on GitHub (Nov 22, 2024):
It looks like the shortcut is broken...
then I do more tests
@Hermiten commented on GitHub (Dec 7, 2024):
Fixed