feat: Add OpenXR setting, track default values, and optimize config file writing by skipping default entries.

This commit is contained in:
xkeyC 2025-12-12 10:06:21 +08:00
parent 3fd020b8b0
commit 138be64c0d
11 changed files with 417 additions and 337 deletions

View File

@ -17,6 +17,7 @@ class GamePerformanceData {
this.min,
this.value,
this.group,
this.defaultValue,
});
GamePerformanceData.fromJson(dynamic json) {
@ -28,6 +29,8 @@ class GamePerformanceData {
min = json['min'];
value = json['value'];
group = json['group'];
// Store the initial value as default value
defaultValue = json['value'];
}
String? key;
String? name;
@ -37,6 +40,7 @@ class GamePerformanceData {
num? min;
num? value;
String? group;
num? defaultValue;
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};

View File

@ -1697,6 +1697,12 @@ class MessageLookup extends MessageLookupByLibrary {
MessageLookupByLibrary.simpleMessage(
"Model object detail, affects LOD, etc.",
),
"performance_json_text_openxr": MessageLookupByLibrary.simpleMessage(
"Enable OpenXR",
),
"performance_json_text_openxr_info": MessageLookupByLibrary.simpleMessage(
"Connect OpenXR-compatible headsets, use Numpad / to switch between VR and widescreen theater mode after game launch",
),
"performance_json_text_particles": MessageLookupByLibrary.simpleMessage(
"Particle Detail",
),

View File

@ -1410,12 +1410,18 @@ class MessageLookup extends MessageLookupByLibrary {
"动态模糊",
),
"performance_json_text_motion_blur_info":
MessageLookupByLibrary.simpleMessage("开启以提高运动感关闭提升观感"),
MessageLookupByLibrary.simpleMessage("开启以提高运动感,关闭提升观感"),
"performance_json_text_object_detail": MessageLookupByLibrary.simpleMessage(
"对象细节",
),
"performance_json_text_object_detail_info":
MessageLookupByLibrary.simpleMessage("模型对象细节影响LOD等.."),
"performance_json_text_openxr": MessageLookupByLibrary.simpleMessage(
"启用 OpenXR",
),
"performance_json_text_openxr_info": MessageLookupByLibrary.simpleMessage(
"连接与 OpenXR 兼容的头显,启动游戏后,使用数字小键盘 / 切换 VR 与 宽屏剧院模式",
),
"performance_json_text_particles": MessageLookupByLibrary.simpleMessage(
"粒子细节",
),

View File

@ -4576,6 +4576,26 @@ class S {
);
}
/// `Enable OpenXR`
String get performance_json_text_openxr {
return Intl.message(
'Enable OpenXR',
name: 'performance_json_text_openxr',
desc: '',
args: [],
);
}
/// `Connect OpenXR-compatible headsets, use Numpad / to switch between VR and widescreen theater mode after game launch`
String get performance_json_text_openxr_info {
return Intl.message(
'Connect OpenXR-compatible headsets, use Numpad / to switch between VR and widescreen theater mode after game launch',
name: 'performance_json_text_openxr_info',
desc: '',
args: [],
);
}
/// `Set FOV`
String get performance_json_text_fov {
return Intl.message(

View File

@ -907,6 +907,10 @@
"@performance_json_text_motion_blur": {},
"performance_json_text_motion_blur_info": "Enable for enhanced motion feel, disable for improved visuals",
"@performance_json_text_motion_blur_info": {},
"performance_json_text_openxr": "Enable OpenXR",
"@performance_json_text_openxr": {},
"performance_json_text_openxr_info": "Connect OpenXR-compatible headsets, use Numpad / to switch between VR and widescreen theater mode after game launch",
"@performance_json_text_openxr_info": {},
"performance_json_text_fov": "Set FOV",
"@performance_json_text_fov": {},
"performance_json_text_ui_animation": "UI Fade Animation",

View File

@ -907,6 +907,10 @@
"@performance_json_text_motion_blur": {},
"performance_json_text_motion_blur_info": "動きの感覚を高めるためにオン、視覚的体験を向上させるためにオフ",
"@performance_json_text_motion_blur_info": {},
"performance_json_text_openxr": "OpenXRを有効にする",
"@performance_json_text_openxr": {},
"performance_json_text_openxr_info": "OpenXR対応ヘッドセットを接続し、ゲーム起動後にテンキーの / でVRとワイドスクリーンシアターモードを切り替え",
"@performance_json_text_openxr_info": {},
"performance_json_text_fov": "視野角FOVを設定",
"@performance_json_text_fov": {},
"performance_json_text_ui_animation": "UIフェードインアウトアニメーション",

View File

@ -907,6 +907,10 @@
"@performance_json_text_motion_blur": {},
"performance_json_text_motion_blur_info": "Включите для усиления чувства движения, выключите для улучшения восприятия",
"@performance_json_text_motion_blur_info": {},
"performance_json_text_openxr": "Включить OpenXR",
"@performance_json_text_openxr": {},
"performance_json_text_openxr_info": "Подключите OpenXR-совместимый шлем, используйте / на цифровой клавиатуре после запуска игры для переключения между VR и широкоэкранным режимом",
"@performance_json_text_openxr_info": {},
"performance_json_text_fov": "Настройка FOV",
"@performance_json_text_fov": {},
"performance_json_text_ui_animation": "Анимация затухания UI",

View File

@ -776,7 +776,9 @@
"performance_json_text_vsync": "垂直同步",
"performance_json_text_vsync_info": "开启以防止撕裂,关闭以提高帧率",
"performance_json_text_motion_blur": "动态模糊",
"performance_json_text_motion_blur_info": "开启以提高运动感,关闭提升观感",
"performance_json_text_motion_blur_info": "开启以提高运动感,关闭提升观感",
"performance_json_text_openxr": "启用 OpenXR",
"performance_json_text_openxr_info": "连接与 OpenXR 兼容的头显,启动游戏后,使用数字小键盘 / 切换 VR 与 宽屏剧院模式",
"performance_json_text_fov": "设置视角FOV",
"performance_json_text_ui_animation": "UI 淡入淡出动画",
"performance_json_text_custom_parameters": "自定义参数",

View File

@ -901,6 +901,10 @@
"@performance_json_text_motion_blur": {},
"performance_json_text_motion_blur_info": "開啟以提高運動感,關閉提升觀感",
"@performance_json_text_motion_blur_info": {},
"performance_json_text_openxr": "啟用 OpenXR",
"@performance_json_text_openxr": {},
"performance_json_text_openxr_info": "連接與 OpenXR 兼容的頭顯,啟動遊戲後,使用數字小鍵盤 / 切換 VR 與 寬屏劇院模式",
"@performance_json_text_openxr_info": {},
"performance_json_text_fov": "設定視角FOV",
"@performance_json_text_fov": {},
"performance_json_text_ui_animation": "UI 淡入淡出動畫",

View File

@ -9,7 +9,7 @@ List get performanceUIConfJsonData => [
"max": 2,
"min": 0,
"value": 1,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "r_DepthOfField",
@ -19,7 +19,7 @@ List get performanceUIConfJsonData => [
"max": 2,
"min": 0,
"value": 1,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "r_AntialiasingMode",
@ -29,7 +29,7 @@ List get performanceUIConfJsonData => [
"max": 3,
"min": 0,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "sys_spec_gameeffects",
@ -39,7 +39,7 @@ List get performanceUIConfJsonData => [
"max": 4,
"min": 1,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "sys_spec_texture",
@ -49,7 +49,7 @@ List get performanceUIConfJsonData => [
"max": 3,
"min": 1,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "sys_spec_volumetriceffects",
@ -59,7 +59,7 @@ List get performanceUIConfJsonData => [
"max": 4,
"min": 1,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "sys_spec_water",
@ -69,7 +69,7 @@ List get performanceUIConfJsonData => [
"max": 4,
"min": 1,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "sys_spec_objectdetail",
@ -79,7 +79,7 @@ List get performanceUIConfJsonData => [
"max": 4,
"min": 1,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "sys_spec_particles",
@ -89,7 +89,7 @@ List get performanceUIConfJsonData => [
"max": 4,
"min": 1,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "sys_spec_physics",
@ -99,7 +99,7 @@ List get performanceUIConfJsonData => [
"max": 4,
"min": 1,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "sys_spec_shading",
@ -109,7 +109,7 @@ List get performanceUIConfJsonData => [
"max": 4,
"min": 1,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "sys_spec_shadows",
@ -119,7 +119,7 @@ List get performanceUIConfJsonData => [
"max": 4,
"min": 1,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "sys_spec_postprocessing",
@ -129,7 +129,7 @@ List get performanceUIConfJsonData => [
"max": 4,
"min": 1,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "q_Renderer",
@ -139,7 +139,7 @@ List get performanceUIConfJsonData => [
"max": 3,
"min": 0,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "q_ShaderDecal",
@ -149,7 +149,7 @@ List get performanceUIConfJsonData => [
"max": 3,
"min": 0,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "q_ShaderPostProcess",
@ -159,7 +159,7 @@ List get performanceUIConfJsonData => [
"max": 3,
"min": 0,
"value": 3,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "q_ShaderFX",
@ -169,7 +169,7 @@ List get performanceUIConfJsonData => [
"max": 3,
"min": 0,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "q_ShaderGeneral",
@ -179,7 +179,7 @@ List get performanceUIConfJsonData => [
"max": 3,
"min": 0,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "q_ShaderGlass",
@ -189,7 +189,7 @@ List get performanceUIConfJsonData => [
"max": 3,
"min": 0,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "q_ShaderHDR",
@ -199,7 +199,7 @@ List get performanceUIConfJsonData => [
"max": 3,
"min": 0,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "q_ShaderParticle",
@ -209,7 +209,7 @@ List get performanceUIConfJsonData => [
"max": 3,
"min": 0,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "q_ShaderTerrain",
@ -219,7 +219,7 @@ List get performanceUIConfJsonData => [
"max": 3,
"min": 0,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "q_ShaderShadow",
@ -229,7 +229,7 @@ List get performanceUIConfJsonData => [
"max": 3,
"min": 0,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "q_ShaderSky",
@ -239,18 +239,27 @@ List get performanceUIConfJsonData => [
"max": 3,
"min": 0,
"value": 2,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "e_ParticlesObjectCollisions",
"name": S.current.performance_json_text_particles_object_collisions,
"info":
S.current.performance_json_text_particles_object_collisions_info,
"info": S.current.performance_json_text_particles_object_collisions_info,
"type": "int",
"max": 2,
"min": 1,
"value": 1,
"group": S.current.performance_json_text_title_graphics
"group": S.current.performance_json_text_title_graphics,
},
{
"key": "sys.OpenXR",
"name": S.current.performance_json_text_openxr,
"info": S.current.performance_json_text_openxr_info,
"type": "bool",
"max": 1,
"min": 0,
"value": 0,
"group": S.current.app_index_menu_settings,
},
{
"key": "r_displayinfo",
@ -260,7 +269,7 @@ List get performanceUIConfJsonData => [
"max": 4,
"min": 0,
"value": 1,
"group": S.current.app_index_menu_settings
"group": S.current.app_index_menu_settings,
},
{
"key": "sys_maxFps",
@ -270,7 +279,7 @@ List get performanceUIConfJsonData => [
"max": 300,
"min": 0,
"value": 0,
"group": S.current.app_index_menu_settings
"group": S.current.app_index_menu_settings,
},
{
"key": "r_DisplaySessionInfo",
@ -280,7 +289,7 @@ List get performanceUIConfJsonData => [
"max": 1,
"min": 0,
"value": 0,
"group": S.current.app_index_menu_settings
"group": S.current.app_index_menu_settings,
},
{
"key": "r_VSync",
@ -290,7 +299,7 @@ List get performanceUIConfJsonData => [
"max": 1,
"min": 0,
"value": 0,
"group": S.current.app_index_menu_settings
"group": S.current.app_index_menu_settings,
},
{
"key": "r_MotionBlur",
@ -300,7 +309,7 @@ List get performanceUIConfJsonData => [
"max": 1,
"min": 0,
"value": 0,
"group": S.current.app_index_menu_settings
"group": S.current.app_index_menu_settings,
},
{
"key": "cl_fov",
@ -310,7 +319,7 @@ List get performanceUIConfJsonData => [
"max": 160,
"min": 25,
"value": 90,
"group": S.current.app_index_menu_settings
"group": S.current.app_index_menu_settings,
},
{
"key": "ui_disableScreenFade",
@ -320,7 +329,7 @@ List get performanceUIConfJsonData => [
"max": 1,
"min": 0,
"value": 1,
"group": S.current.app_index_menu_settings
"group": S.current.app_index_menu_settings,
},
{
"key": "customize",
@ -330,6 +339,6 @@ List get performanceUIConfJsonData => [
"max": 1,
"min": 0,
"value": 1,
"group": S.current.performance_json_text_title_custom
}
"group": S.current.performance_json_text_title_custom,
},
];

View File

@ -87,8 +87,14 @@ class HomePerformanceUIModel extends _$HomePerformanceUIModel {
for (var m in state.performanceMap!.entries) {
for (var value in m.value) {
if (value.key == kv[0].trim()) {
final v = int.tryParse(kv[1].trim());
if (v != null) value.value = v;
var v = int.tryParse(kv[1].trim());
if (v != null) {
// Special mapping for sys.OpenXR: 42 -> 1
if (value.key == "sys.OpenXR" && v == 42) {
v = 1;
}
value.value = v;
}
}
}
}
@ -188,7 +194,18 @@ class HomePerformanceUIModel extends _$HomePerformanceUIModel {
for (var v in state.performanceMap!.entries) {
for (var c in v.value) {
if (c.key != "customize") {
conf = "$conf${c.key}=${c.value}\n";
// Skip writing configuration if value equals default value
if (c.value == c.defaultValue) {
continue;
}
// Special mapping for sys.OpenXR: 1 -> 42
var outputValue = c.value;
if (c.key == "sys.OpenXR" && c.value == 1) {
outputValue = 42;
}
conf = "$conf${c.key}=$outputValue\n";
}
}
}