From f3cba6f796ac2212da551313e79910490a7dfe79 Mon Sep 17 00:00:00 2001 From: Roy <88516395+moraroy@users.noreply.github.com> Date: Tue, 6 Feb 2024 01:20:00 -0800 Subject: [PATCH] Add files via upload --- NSLGameScanner.py | 403 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 327 insertions(+), 76 deletions(-) diff --git a/NSLGameScanner.py b/NSLGameScanner.py index 439d217..9a3444f 100644 --- a/NSLGameScanner.py +++ b/NSLGameScanner.py @@ -28,13 +28,16 @@ with open(env_vars_path, 'r') as f: for line in lines: if line.startswith('export '): line = line[7:] # Remove 'export ' - name, value = line.strip().split('=') + name, value = line.strip().split('=', 1) os.environ[name] = value # Variables from NonSteamLaunchers.sh steamid3 = os.environ['steamid3'] logged_in_home = os.environ['logged_in_home'] compat_tool_name = os.environ['compat_tool_name'] +controller_config_path = os.environ['controller_config_path'] +python_version = os.environ['python_version'] +#Scanner Variables epic_games_launcher = os.environ.get('epic_games_launcher', '') ubisoft_connect_launcher = os.environ.get('ubisoft_connect_launcher', '') ea_app_launcher = os.environ.get('ea_app_launcher', '') @@ -42,6 +45,31 @@ gog_galaxy_launcher = os.environ.get('gog_galaxy_launcher', '') bnet_launcher = os.environ.get('bnet_launcher', '') amazon_launcher = os.environ.get('amazon_launcher', '') + +#Variables of the Launchers +# Define the path of the Launchers +epicshortcutdirectory = os.environ.get('epicshortcutdirectory') +gogshortcutdirectory = os.environ.get('gogshortcutdirectory') +uplayshortcutdirectory = os.environ.get('uplayshortcutdirectory') +battlenetshortcutdirectory = os.environ.get('battlenetshortcutdirectory') +eaappshortcutdirectory = os.environ.get('eaappshortcutdirectory') +amazonshortcutdirectory = os.environ.get('amazonshortcutdirectory') +itchioshortcutdirectory = os.environ.get('itchioshortcutdirectory') +legacyshortcutdirectory = os.environ.get('legacyshortcutdirectory') +humbleshortcutdirectory = os.environ.get('humbleshortcutdirectory') +indieshortcutdirectory = os.environ.get('indieshortcutdirectory') +rockstarshortcutdirectory = os.environ.get('rockstarshortcutdirectory') +glyphshortcutdirectory = os.environ.get('glyphshortcutdirectory') +minecraftshortcutdirectory = os.environ.get('minecraftshortcutdirectory') +psplusshortcutdirectory = os.environ.get('psplusshortcutdirectory') +vkplayhortcutdirectory = os.environ.get('vkplayhortcutdirectory') +#Streaming +chromedirectory = os.environ.get('chromedirectory') +websites_str = os.environ.get('custom_websites_str') +custom_websites = websites_str.split(', ') if websites_str else [] + + + # Define the parent folder parent_folder = f"{logged_in_home}/.config/systemd/user/Modules" @@ -263,88 +291,224 @@ def check_if_shortcut_exists(shortcut_id, display_name, exe_path, start_dir, lau #End of Code -#Finding the Launchers and applying artwork to already made shortcuts from NonSteamLaunchers.sh -# List of game launchers to look for -game_launchers = { - 'Epic Games', - 'Gog Galaxy', - 'Ubisoft Connect', - 'Battle.net', - 'EA App', - 'Amazon Games', - 'itch.io', - 'Legacy Games', - 'Humble Bundle', - 'Glyph', - 'IndieGala Client', - 'Rockstar Games Launcher', - 'Minecraft: Java Edition', - 'Playstation Plus', - 'DMM Games', - 'VK Play' + + +#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) + + +# Create an empty dictionary to store the app IDs +app_ids = {} +#Create Launcher Shortcuts +def create_new_entry(shortcutdirectory, appname, launchoptions, startingdir): + print(f"Creating new entry for {appname}...") + print(f"Shortcut directory: {shortcutdirectory}") + print(f"Launch options: {launchoptions}") + print(f"Starting directory: {startingdir}") + # Check if the launcher is installed + if not shortcutdirectory: + print(f"{appname} is not installed. Skipping.") + return + # Check if the game already exists in the shortcuts + exe_path = f"\"{shortcutdirectory}\"" + signed_shortcut_id = get_steam_shortcut_id(exe_path, appname) + print(f"Signed shortcut ID for {appname}: {signed_shortcut_id}") + # Only store the app ID for specific launchers + if appname in ['Epic Games', 'Gog Galaxy', 'Ubisoft Connect', 'Battle.net', 'EA App', 'Amazon Games', 'itch.io', 'Legacy Games', 'Humble Bundle', 'IndieGala Client', 'Rockstar Games Launcher', 'Glyph', 'Minecraft: Java Edition', 'Playstation Plus', 'VK Play']: + app_ids[appname] = signed_shortcut_id + print(f"Stored app ID for {appname}: {signed_shortcut_id}") + unsigned_shortcut_id = get_unsigned_shortcut_id(signed_shortcut_id) + print(f"Unsigned shortcut ID for {appname}: {unsigned_shortcut_id}") + if check_if_shortcut_exists(signed_shortcut_id, appname, exe_path, startingdir, launchoptions): + print(f"Shortcut already exists for {appname}.") + if add_compat_tool(unsigned_shortcut_id): + print(f"Added compatibility tool for {appname}.") + shortcuts_updated = True + return + + # Create a new entry for the Steam shortcut + game_id = get_game_id(appname) + print(f"Game ID for {appname}: {game_id}") + new_entry = { + 'appid': str(signed_shortcut_id), + 'appname': appname, + 'exe': exe_path, + 'StartDir': startingdir, + 'icon': f"{logged_in_home}/.steam/root/userdata/{steamid3}/config/grid/{get_file_name('icons', unsigned_shortcut_id)}", + 'LaunchOptions': launchoptions, + 'GameID': game_id if game_id is not None else "default_game_id" + } + + # Add the new entry to the shortcuts dictionary + shortcuts['shortcuts'][str(signed_shortcut_id)] = new_entry + print(f"Added new entry for {appname} to shortcuts.") + new_shortcuts_added = True + if game_id is not None: + get_sgdb_art(game_id, unsigned_shortcut_id) + add_compat_tool(unsigned_shortcut_id) + + + + + + +create_new_entry(os.environ.get('epicshortcutdirectory'), 'Epic Games', os.environ.get('epiclaunchoptions'), os.environ.get('epicstartingdir')) +create_new_entry(os.environ.get('gogshortcutdirectory'), 'Gog Galaxy', os.environ.get('goglaunchoptions'), os.environ.get('gogstartingdir')) +create_new_entry(os.environ.get('uplayshortcutdirectory'), 'Ubisoft Connect', os.environ.get('uplaylaunchoptions'), os.environ.get('uplaystartingdir')) +create_new_entry(os.environ.get('battlenetshortcutdirectory'), 'Battle.net', os.environ.get('battlenetlaunchoptions'), os.environ.get('battlenetstartingdir')) +create_new_entry(os.environ.get('eaappshortcutdirectory'), 'EA App', os.environ.get('eaapplaunchoptions'), os.environ.get('eaappstartingdir')) +create_new_entry(os.environ.get('amazonshortcutdirectory'), 'Amazon Games', os.environ.get('amazonlaunchoptions'), os.environ.get('amazonstartingdir')) +create_new_entry(os.environ.get('itchioshortcutdirectory'), 'itch.io', os.environ.get('itchiolaunchoptions'), os.environ.get('itchiostartingdir')) +create_new_entry(os.environ.get('legacyshortcutdirectory'), 'Legacy Games', os.environ.get('legacylaunchoptions'), os.environ.get('legacystartingdir')) +create_new_entry(os.environ.get('humbleshortcutdirectory'), 'Humble Bundle', os.environ.get('humblelaunchoptions'), os.environ.get('humblestartingdir')) +create_new_entry(os.environ.get('indieshortcutdirectory'), 'IndieGala Client', os.environ.get('indielaunchoptions'), os.environ.get('indiestartingdir')) +create_new_entry(os.environ.get('rockstarshortcutdirectory'), 'Rockstar Games Launcher', os.environ.get('rockstarlaunchoptions'), os.environ.get('rockstarstartingdir')) +create_new_entry(os.environ.get('glyphshortcutdirectory'), 'Glyph', os.environ.get('glyphlaunchoptions'), os.environ.get('glyphstartingdir')) +create_new_entry(os.environ.get('minecraftshortcutdirectory'), 'Minecraft: Java Edition', os.environ.get('minecraftlaunchoptions'), os.environ.get('minecraftstartingdir')) +create_new_entry(os.environ.get('psplusshortcutdirectory'), 'Playstation Plus', os.environ.get('pspluslaunchoptions'), os.environ.get('psplusstartingdir')) +create_new_entry(os.environ.get('vkplayhortcutdirectory'), 'VK Play', os.environ.get('vkplaylaunchoptions'), os.environ.get('vkplaystartingdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Xbox Game Pass', os.environ.get('xboxchromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'GeForce Now', os.environ.get('geforcechromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Netflix', os.environ.get('netlfixchromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Hulu', os.environ.get('huluchromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Disney+', os.environ.get('disneychromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Amazon Prime Video', os.environ.get('amazonchromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Youtube', os.environ.get('youtubechromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Amazon Luna', os.environ.get('lunachromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'Twitch', os.environ.get('twitchchromelaunchoptions'), os.environ.get('chrome_startdir')) +create_new_entry(os.environ.get('chromedirectory'), 'movie-web', os.environ.get('moviewebchromelaunchoptions'), os.environ.get('chrome_startdir')) + + + +# Iterate over each custom website +for custom_website in custom_websites: + # Check if the custom website is not an empty string + if custom_website: + # Remove any leading or trailing spaces from the custom website URL + custom_website = custom_website.strip() + + # Remove the 'http://' or 'https://' prefix and the 'www.' prefix, if present + clean_website = custom_website.replace('http://', '').replace('https://', '').replace('www.', '') + + # Define a regular expression pattern to extract the game name from the URL + pattern = r'/games/([\w-]+)' + + # Use the regular expression to search for the game name in the custom website URL + match = re.search(pattern, custom_website) + + # Check if a match was found + if match: + # Extract the game name from the match object + game_name = match.group(1) + + # Replace hyphens with spaces + game_name = game_name.replace('-', ' ') + + # Capitalize the first letter of each word in the game name + game_name = game_name.title() + else: + # Use the entire URL as the entry name + game_name = clean_website + + # Define the launch options for this website + chromelaunch_options = f'run --branch=stable --arch=x86_64 --command=/app/bin/chrome --file-forwarding com.google.Chrome @@u @@ --window-size=1280,800 --force-device-scale-factor=1.00 --device-scale-factor=1.00 --kiosk https://{clean_website}/ --chrome-kiosk-type=fullscreen --no-first-run --enable-features=OverlayScrollbar' + + # Call the create_new_entry function for this website + create_new_entry(os.environ['chromedirectory'], game_name, chromelaunch_options, os.environ['chrome_startdir']) + +#End of Creating Launcher Shortcuts + + + + + + + +# Iterate over each launcher in the app_ids dictionary +for launcher_name, appid in app_ids.items(): + print(f"The app ID for {launcher_name} is {appid}") + + + +# Get the app ID for the first launcher that the user chose to instally +appid = app_ids.get(launcher_name) + +#Create User Friendly Symlinks for the launchers +# Define the path to the compatdata directory +compatdata_dir = f'{logged_in_home}/.local/share/Steam/steamapps/compatdata' + +# Define a dictionary of original folder names +folder_names = { + 'Epic Games': 'EpicGamesLauncher', + 'Gog Galaxy': 'GogGalaxyLauncher', + 'Ubisoft Connect': 'UplayLauncher', + 'Battle.net': 'Battle.netLauncher', + 'EA App': 'TheEAappLauncher', + 'Amazon Games': 'AmazonGamesLauncher', + 'itch.io': 'itchioLauncher', + 'Legacy Games': 'LegacyGamesLauncher', + 'Humble Bundle': 'HumbleGamesLauncher', + 'IndieGala Client': 'IndieGalaLauncher', + 'Rockstar Games Launcher': 'RockstarGamesLauncher', + 'Minecraft: Java Edition': 'MinecraftLauncher', + 'Playstation Plus': 'PlaystationPlusLauncher', + 'VK Play': 'VKPlayLauncher', } -#Chrome Based "Launchers" -chrome_launchers = { - 'Hulu', - 'Twitch', - 'Amazon Luna', - 'Youtube', - 'Amazon Prime Video', - 'Disney+', - 'Netflix', - 'GeForce Now', - 'Xbox Game Pass', - 'movie-web' -} +# Iterate over each launcher in the folder_names dictionary +for launcher_name, folder in folder_names.items(): + # Define the current path of the folder + current_path = os.path.join(compatdata_dir, folder) -# Mapping between shortcut names and SteamGridDB names -name_mapping = { - 'Epic Games': 'Epic Games Store (Program)', - 'Gog Galaxy': 'GOG Galaxy (Program)', - 'Ubisoft Connect': 'Ubisoft Connect (Program)', - 'Battle.net': 'Battle.net (Program)', - 'Legacy Games': 'Legacy Games (Program)', - 'Humble Bundle': 'Humble Bundle (Website)', - 'VK Play': 'VK Play (Website)', - 'Disney+': 'Disney+ (Website)' - # Add more mappings as needed -} + # Check if the folder exists + if os.path.exists(current_path): + print(f'{launcher_name}: {folder} exists') + # Get the app ID for this launcher from the app_id_to_name dictionary + appid = app_ids.get(launcher_name) -# Iterate over the shortcuts -for shortcut in shortcuts['shortcuts'].values(): - # Check if the shortcut is a game launcher - app_name = shortcut.get('appname') - if app_name in game_launchers: - print(f"Found game launcher: {app_name}") - # Use the actual app ID instead of generating one - app_id = shortcut.get('appid') - display_name = shortcut.get('appname') - exe_path = shortcut.get('exe') - signed_shortcut_id = get_steam_shortcut_id(exe_path, display_name) - unsigned_shortcut_id = get_unsigned_shortcut_id(signed_shortcut_id) - print(f"App ID for {app_name}: {app_id}") - # Check if the shortcut doesn't have artwork - artwork_path = f"{logged_in_home}/.steam/root/userdata/{steamid3}/config/grid/{unsigned_shortcut_id}.png" - if not os.path.exists(artwork_path): - print(f"No artwork found for {app_name}, downloading...") - # Get the game ID from SteamGridDB - steamgriddb_name = name_mapping.get(app_name, app_name) - game_id = get_game_id(steamgriddb_name) - if game_id is not None: - print(f"Got game ID from SteamGridDB: {game_id}") - # Download and apply artwork - get_sgdb_art(game_id, unsigned_shortcut_id) - new_shortcuts_added = True - # Only add compat tool if not a chrome launcher - if app_name not in chrome_launchers: - if add_compat_tool(unsigned_shortcut_id): - shortcuts_updated = True + # Define the new path of the folder + new_path = os.path.join(compatdata_dir, str(appid)) + + # Rename the folder + os.rename(current_path, new_path) + + # Define the path of the symbolic link + symlink_path = os.path.join(compatdata_dir, folder) + + # Create a symbolic link to the renamed folder + os.symlink(new_path, symlink_path) + else: + print(f'{launcher_name}: {folder} does not exist') +# Check if the NonSteamLaunchers folder exists +if os.path.exists(os.path.join(compatdata_dir, 'NonSteamLaunchers')): + # Get the first app ID from the app_ids list + first_app_id = next(iter(app_ids.values())) + + # Define the current path of the NonSteamLaunchers folder + current_path = os.path.join(compatdata_dir, 'NonSteamLaunchers') + + # Check if NonSteamLaunchers is already a symbolic link + if os.path.islink(current_path): + print('NonSteamLaunchers is already a symbolic link') + else: + # Define the new path of the NonSteamLaunchers folder + new_path = os.path.join(compatdata_dir, str(first_app_id)) + + # Move the NonSteamLaunchers folder to the new path + shutil.move(current_path, new_path) + + # Define the path of the symbolic link + symlink_path = os.path.join(compatdata_dir, 'NonSteamLaunchers') + + # Create a symbolic link to the renamed NonSteamLaunchers folder + os.symlink(new_path, symlink_path) + +#End of Refactoring python code from .sh file -# End of finding the Launchers and applying artwork to already made shortcuts from NonSteamLaunchers.sh # Print the existing shortcuts @@ -356,7 +520,7 @@ for shortcut in shortcuts['shortcuts'].values(): - +#Scanners # Epic Games Scanner item_dir = f"{logged_in_home}/.local/share/Steam/steamapps/compatdata/{epic_games_launcher}/pfx/drive_c/ProgramData/Epic/EpicGamesLauncher/Data/Manifests/" dat_file_path = f"{logged_in_home}/.local/share/Steam/steamapps/compatdata/{epic_games_launcher}/pfx/drive_c/ProgramData/Epic/UnrealEngineLauncher/LauncherInstalled.dat" @@ -891,3 +1055,90 @@ if new_shortcuts_added or shortcuts_updated: print(name) print("All finished!") + +# Load the configset_controller_neptune.vdf file +with open(controller_config_path, 'r') as f: + config = vdf.load(f) +#Setting Controller Layouts +# Add new entries for the games +for app_id in app_ids: + config['controller_config'][str(app_id)] = { + 'workshop': 'workshop_id' + } + +# Add new entries for the installed launchers and games +config['controller_config']['epic games'] = { + 'workshop': '2800178806' +} +config['controller_config']['gog galaxy'] = { + 'workshop': '2877189386' +} +config['controller_config']['ubisoft connect'] = { + 'workshop': '2804140248' +} +config['controller_config']['amazon games'] = { + 'workshop': '2871935783' +} +config['controller_config']['battlenet'] = { + 'workshop': '2887894308' +} +config['controller_config']['rockstar games launcher'] = { + 'workshop': '1892570391' +} +config['controller_config']['indiegala'] = { + 'template': 'controller_neptune_webbrowser.vdf' +} +config['controller_config']['legacy games'] = { + 'template': 'controller_neptune_webbrowser.vdf' +} +config['controller_config']['ea app'] = { + 'workshop': '2899822740' +} +config['controller_config']['itchio'] = { + 'workshop': '2845891813' +} +config['controller_config']['humble games collection'] = { + 'workshop': '2883791560' +} +config['controller_config']['minecraft java edition'] = { + 'workshop': '2980553929' +} +config['controller_config']['playstation plus'] = { + 'workshop': 'controller_neptune_webbrowser.vdf' +} +config['controller_config']['glyph'] = { + 'template': 'controller_neptune_webbrowser.vdf' +} +config['controller_config']['vk play'] = { + 'workshop': '3202642880' +} +config['controller_config']['amazon prime video'] = { + 'workshop': '2970669392' +} +config['controller_config']['hulu'] = { + 'workshop': '2970669392' +} +config['controller_config']['netflix'] = { + 'workshop': '2970669392' +} +config['controller_config']['disney+'] = { + 'workshop': '2970669392' +} +config['controller_config']['youtube'] = { + 'workshop': '2970669392' +} +config['controller_config']['geforce now'] = { + 'template': 'controller_neptune_gamepad+mouse.vdf' +} +config['controller_config']['amazon luna'] = { + 'template': 'controller_neptune_gamepad+mouse.vdf' +} +config['controller_config']['twitch'] = { + 'workshop': '2875543745' +} +config['controller_config']['movie-web'] = { + 'workshop': 'controller_neptune_webbrowser.vdf' +} +#End of Setting Controller Layouts +with open(controller_config_path, 'w') as f: + vdf.dump(config, f)