Update NSLGameScanner.py

This commit is contained in:
Roy 2025-03-21 23:26:45 -07:00 committed by GitHub
parent aa8ca2470d
commit fbf068a79f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -428,18 +428,35 @@ def add_compat_tool(app_id, launchoptions):
print("PROTONPATH found in launch options. Skipping compatibility tool update.")
return False
# Check if app_id exists in CompatToolMapping
elif str(app_id) in config_data['InstallConfigStore']['Software']['Valve']['Steam']['CompatToolMapping']:
config_data['InstallConfigStore']['Software']['Valve']['Steam']['CompatToolMapping'][str(app_id)]['name'] = f'{compat_tool_name}'
config_data['InstallConfigStore']['Software']['Valve']['Steam']['CompatToolMapping'][str(app_id)]['config'] = ''
config_data['InstallConfigStore']['Software']['Valve']['Steam']['CompatToolMapping'][str(app_id)]['priority'] = '250'
existing_app = config_data['InstallConfigStore']['Software']['Valve']['Steam']['CompatToolMapping'][str(app_id)]
# Check if 'PROTONPATH' is already in the existing app's config
if 'PROTONPATH' in existing_app.get('config', ''):
# If 'PROTONPATH' is found in the config, skip the update
print(f"PROTONPATH found in the config for appid: {app_id}. Skipping compatibility tool update.")
return None
# If no 'PROTONPATH', proceed with the update
existing_app['name'] = f'{compat_tool_name}'
existing_app['config'] = ''
existing_app['priority'] = '250'
print(f"Updated CompatToolMapping entry for appid: {app_id}")
return compat_tool_name
else:
# Skip if the shortcut has already been processed by UMU
if app_id in umu_processed_shortcuts:
print(f"CompatTool update skipped for {app_id} because it was already processed by UMU.")
return None
config_data['InstallConfigStore']['Software']['Valve']['Steam']['CompatToolMapping'][str(app_id)] = {'name': f'{compat_tool_name}', 'config': '', 'priority': '250'}
# Create a new CompatToolMapping entry if it doesn't exist
config_data['InstallConfigStore']['Software']['Valve']['Steam']['CompatToolMapping'][str(app_id)] = {
'name': f'{compat_tool_name}',
'config': '',
'priority': '250'
}
print(f"Created new CompatToolMapping entry for appid: {app_id}")
return compat_tool_name
@ -454,12 +471,13 @@ def check_if_shortcut_exists(shortcut_id, display_name, exe_path, start_dir, lau
if any(s.get('appname') == display_name and s.get('exe') == exe_path and s.get('StartDir') == start_dir and s.get('LaunchOptions') == launch_options for s in shortcuts['shortcuts'].values()):
print(f"Existing shortcut found based on matching fields for game {display_name}. Skipping creation.")
return True
if any(s.get('AppName') == display_name and s.get('Exe') == exe_path and s.get('StartDir') == start_dir and s.get('LaunchOptions') == launch_options for s in shortcuts['shortcuts'].values()):
if any(s.get('AppName') == display_name and s.get('Exe') == exe_path and s.get('StartDir') == start_dir and s.get('LaunchOptions') == launchoptions for s in shortcuts['shortcuts'].values()):
print(f"Existing shortcut found based on matching fields for game {display_name}. Skipping creation.")
return True
return False
# Start of Refactoring code from the .sh file
sys.path.insert(0, os.path.expanduser(f"{logged_in_home}/Downloads/NonSteamLaunchersInstallation/lib/python{python_version}/site-packages"))
print(sys.path)