mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-26 08:15:59 +03:00
[PR #3533] [MERGED] Qt: Add GUI for game-specific settings #3548
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#3548
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?
📋 Pull Request Information
Original PR: https://github.com/shadps4-emu/shadPS4/pull/3533
Author: @rainmakerv3
Created: 9/5/2025
Status: ✅ Merged
Merged: 9/10/2025
Merged by: @georgemoralis
Base:
main← Head:gsc-gui📝 Commits (10+)
5d9df06Open settings dialog from context menudfc8f80initial version completec6d2f31add context menu item to delete game config if it existsd169b19Create game config from base value instead of default value38329bfRequire confirmation before deleting game configs with menu item3de812bfix rebaseabc4da7Reset game specific values when creating a new game config213f8edAdd icon for entries with game configcf4108cclang format0a693feAdd submenu for game-specific settings📊 Changes
13 files changed (+896 additions, -628 deletions)
View changed files
📝
REUSE.toml(+1 -0)📝
src/common/config.cpp(+323 -254)📝
src/common/config.h(+55 -50)📝
src/emulator.cpp(+5 -0)➕
src/images/game_settings.png(+0 -0)📝
src/qt_gui/game_grid_frame.cpp(+18 -0)📝
src/qt_gui/game_grid_frame.h(+1 -0)📝
src/qt_gui/game_list_frame.cpp(+7 -4)📝
src/qt_gui/gui_context_menus.h(+39 -3)📝
src/qt_gui/settings_dialog.cpp(+311 -218)📝
src/qt_gui/settings_dialog.h(+6 -2)📝
src/qt_gui/settings_dialog.ui(+129 -97)📝
src/shadps4.qrc(+1 -0)📄 Description
Closes https://github.com/shadps4-emu/shadPS4/issues/3512
This incredibly tedious pain of PR adds a GUI for configuration of game-specific settings, accessible for the right-click context menu.
Quick initial tests are ok, but probably needs a lot of testing since this touches config files a lot. (You may want to backup your configs before testing, there's high potential for error here lol)
It's also just kinda ugly since all the non game-specific UI elements were hidden. In the future maybe we can do it like RPCS3 and group all the game-specific and non game-specific stuff in the same tabs.
EDIT: Summary of changes
Added game-specific gui options from context menu, this will open the settings dialog with all the global-only settings hidden and will show the game-specific experimental options. All options are in a sub-menu and has separate entries to create/configure/delete game configs
save and restore values functions changed to save/set default only game-specific values if called from the game-specific GUI
Added icons in the GUI to denote whether a game in the list/grid has a custom config
Added logging for isDevkit, and also if custom game config exists
Added the other experimental settings only to the game-specific settings GUI
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.