Add game profile database for per-game optimal settings#2000
Open
gigachadmma69 wants to merge 1 commit intobrunodev85:mainfrom
Open
Add game profile database for per-game optimal settings#2000gigachadmma69 wants to merge 1 commit intobrunodev85:mainfrom
gigachadmma69 wants to merge 1 commit intobrunodev85:mainfrom
Conversation
Add a built-in game profile system that lets users apply known-good settings for popular games with one tap, instead of manually configuring each shortcut. New files: - game_profiles.json: Curated database of 20 popular games with optimal settings (graphics driver, DX wrapper, box64 preset, env vars, etc.) - GameProfile.java: Data class with loadAll(), findByExe(), and applyToShortcut() methods. Follows existing Box86_64Preset pattern. Modified files: - ShortcutSettingsDialog: Added "Load Game Profile" button that opens a picker dialog. Selecting a profile auto-populates all settings fields. - shortcut_settings_dialog.xml: Added profile button to layout. - strings.xml: Added localization strings. The profile database includes games like Elden Ring, Witcher 3, Skyrim, GTA V, Cyberpunk 2077, and more, with appropriate driver and preset configurations for each.
|
HBI |
|
why Battlefield 3 bf3.exe not lunch on all version of winlator with trying lot of configs but the same result bf3.exe not lunch and the oroblm uknown |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a built-in game profile system that lets users apply known-good settings for popular games with one tap, eliminating manual per-shortcut configuration.
Included game profiles (20 games):
Elden Ring, The Witcher 3, Skyrim SE, Fallout 4, GTA V, Dark Souls III, Sekiro, Hollow Knight, Stardew Valley, Cuphead, RE4, NFS Most Wanted, CS:GO, RDR2, Cyberpunk 2077, DMC5, MGSV, Undertale, Terraria, Celeste
New files:
assets/game_profiles.json— Profile database (easily extensible)container/GameProfile.java— Data class withloadAll(),findByExe(), andapplyToShortcut()methodsArchitecture:
The profile database is a simple JSON asset file, making it easy for the community to contribute new profiles via PRs. The
GameProfile.findByExe()method also enables future auto-detection of games by executable name.Test plan