diff --git a/roms/ps3/metadata.txt b/roms/ps3/metadata.txt index bcac3c46..d18c6080 100644 --- a/roms/ps3/metadata.txt +++ b/roms/ps3/metadata.txt @@ -1,7 +1,4 @@ collection: Sony PlayStation 3 shortname: ps3 -extensions: desktop, DESKTOP -launch: /run/media/mmcblk0p1/Emulation/tools/launchers/rpcs3.sh {file.path} - - - +extensions: desktop, DESKTOP, ps3 +launch: /run/media/mmcblk0p1/Emulation/tools/launchers/rpcs3.sh {file.path} \ No newline at end of file diff --git a/roms/wiiu/metadata.txt b/roms/wiiu/metadata.txt new file mode 100644 index 00000000..d34ea7dc --- /dev/null +++ b/roms/wiiu/metadata.txt @@ -0,0 +1,4 @@ +collection: Nintendo Wii U +shortname: wiiu +extensions: elf, ELF, rpx, RPX, tmd, TMD, wua, WUA, wud, WUD, wuhb, WUHB, wux, WUX +launch: /run/media/mmcblk0p1/Emulation/tools/launchers/cemu.sh -f -g {file.path} \ No newline at end of file diff --git a/roms/wiiu/roms/metadata.txt b/roms/wiiu/roms/metadata.txt index d059a31b..544a9668 100644 --- a/roms/wiiu/roms/metadata.txt +++ b/roms/wiiu/roms/metadata.txt @@ -1,6 +1,4 @@ collection: Nintendo Wii U shortname: wiiu extensions: elf, ELF, rpx, RPX, tmd, TMD, wua, WUA, wud, WUD, wuhb, WUHB, wux, WUX -launch: /run/media/mmcblk0p1/Emulation/tools/launchers/cemu.sh -f -g {file.path} - - +launch: /run/media/mmcblk0p1/Emulation/tools/launchers/cemu.sh -f -g z:{file.path} \ No newline at end of file diff --git a/roms/wiiu/roms/readme.txt b/roms/wiiu/roms/readme.txt deleted file mode 100644 index 8dbd18e8..00000000 --- a/roms/wiiu/roms/readme.txt +++ /dev/null @@ -1 +0,0 @@ -place your roms here diff --git a/roms/wiiu/systeminfo.txt b/roms/wiiu/systeminfo.txt new file mode 100644 index 00000000..b8fdb3f3 --- /dev/null +++ b/roms/wiiu/systeminfo.txt @@ -0,0 +1,17 @@ +System name: +wiiu (custom system) + +Full system name: +Nintendo Wii U + +Supported file extensions: +.rpx .RPX .wud .WUD .wux .WUX .elf .ELF .iso .ISO .wad .WAD .wua .WUA + +Launch command: +/bin/bash /run/media/external/Emulation/tools/launchers/cemu.sh -f -g z:%ROM% + +Platform (for scraping): +wiiu + +Theme folder: +wiiu diff --git a/tools/generate_game_lists.py b/tools/generate_game_lists.py index a388bb55..685805c4 100644 --- a/tools/generate_game_lists.py +++ b/tools/generate_game_lists.py @@ -43,6 +43,10 @@ def generate_game_lists(roms_path): valid_system_dirs = [] for system_dir in os.listdir(roms_dir): + if system_dir == "wiiu": + system_dir = "wiiu/roms" + if system_dir == "xbox360": + system_dir = "xbox360/roms" full_path = os.path.join(roms_dir, system_dir) if os.path.isdir(full_path) and not os.path.islink(full_path) and os.path.isfile(os.path.join(full_path, 'metadata.txt')): file_count = sum([len(files) for r, d, files in os.walk(full_path)])