Update NSLGameScanner.py

This commit is contained in:
Roy 2024-05-08 00:57:05 -07:00 committed by GitHub
parent 8829a4d382
commit 0ab84b8a08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -723,7 +723,7 @@ else:
#Gog Galaxy Scanner # Gog Galaxy Scanner
def getGogGameInfo(filePath): def getGogGameInfo(filePath):
# Check if the file contains any GOG entries # Check if the file contains any GOG entries
with open(filePath, 'r') as file: with open(filePath, 'r') as file:
@ -739,6 +739,7 @@ def getGogGameInfo(filePath):
exe_path = None exe_path = None
depends_on = None depends_on = None
launch_command = None launch_command = None
start_menu_link = None
for line in file: for line in file:
split_line = line.split("=") split_line = line.split("=")
if len(split_line) > 1: if len(split_line) > 1:
@ -763,18 +764,21 @@ def getGogGameInfo(filePath):
launch_command = re.findall(r'\"(.+?)\"', split_line[1]) launch_command = re.findall(r'\"(.+?)\"', split_line[1])
if launch_command: if launch_command:
launch_command = launch_command[0] launch_command = launch_command[0]
if game_id and game_name and launch_command: if "startMenuLink" in line:
start_menu_link = re.findall(r'\"(.+?)\"', split_line[1])
if start_menu_link:
start_menu_link = start_menu_link[0]
if game_id and game_name and launch_command and 'GOG.com' in start_menu_link:
game_dict[game_name] = {'id': game_id, 'exe': exe_path} game_dict[game_name] = {'id': game_id, 'exe': exe_path}
game_id = None game_id = None
game_name = None game_name = None
exe_path = None exe_path = None
depends_on = None depends_on = None
launch_command = None launch_command = None
start_menu_link = None
return game_dict return game_dict
# Define your paths # Define your paths
gog_games_directory = f"{logged_in_home}/.local/share/Steam/steamapps/compatdata/{gog_galaxy_launcher}/pfx/drive_c/Program Files (x86)/GOG Galaxy/Games" gog_games_directory = f"{logged_in_home}/.local/share/Steam/steamapps/compatdata/{gog_galaxy_launcher}/pfx/drive_c/Program Files (x86)/GOG Galaxy/Games"
registry_file_path = f"{logged_in_home}/.local/share/Steam/steamapps/compatdata/{gog_galaxy_launcher}/pfx/system.reg" registry_file_path = f"{logged_in_home}/.local/share/Steam/steamapps/compatdata/{gog_galaxy_launcher}/pfx/system.reg"
@ -797,6 +801,7 @@ else:
#Battle.net Scanner #Battle.net Scanner
# Define your mapping # Define your mapping
flavor_mapping = { flavor_mapping = {