FEATURES: added more systems and emulators

This commit is contained in:
XargonWan 2024-08-07 18:39:31 +09:00
parent 9d05fbd93d
commit 91bbf8af92

View file

@ -166,8 +166,16 @@
"name" : "Arcade", "name" : "Arcade",
"folder" : "arcade", "folder" : "arcade",
"emulator" : { "emulator" : {
"mame_libretro" : {}, "mame_libretro" : {
"mame" : {} "description": "MAME: Multiple Arcade Machine Libretro Core",
"name": "MAME",
"core": "libretro"
},
"mame" : {
"description": "MAME: Multiple Arcade Machine Emulator",
"name": "MAME",
"launch" : "mame"
}
} }
}, },
"n3ds" : { "n3ds" : {
@ -186,7 +194,7 @@
}, },
"citra": { "citra": {
"description": "Citra Nintendo 3DS Emulator (via Ponzu)", "description": "Citra Nintendo 3DS Emulator (via Ponzu)",
"name": "Citra", "name": "Citra (via Ponzu)",
"ponzu" : true, "ponzu" : true,
"properties": [ "properties": [
{ {
@ -345,36 +353,37 @@
"swanstation_libretro": { "swanstation_libretro": {
"name": "SwanStation", "name": "SwanStation",
"description": "Swanstation libretro core", "description": "Swanstation libretro core",
"core" : "libretro", "core" : "libretro"
"properties": [
{
"abxy_button": false
}
]
}, },
"duckstation" : { "duckstation" : {
"name" : "Duckstation", "name" : "Duckstation",
"description" : "PlayStation Emulator", "description" : "PlayStation Emulator",
"launch" : "duckstation-qt", "launch" : "duckstation-qt"
"properties": [
{
"abxy_button": false
}
]
} }
} }
}, },
"psp" : { "psp" : {
"emulator" : {
"name" : "Sony PSP: PlayStation Portable", "name" : "Sony PSP: PlayStation Portable",
"folder" : "psp", "folder" : "psp",
"emulator" : {
"ppsspp" : { "ppsspp" : {
"name" : "PPSSPP", "name" : "PPSSPP",
"description" : "PSP: PlayStation Portable Emulator", "description" : "PPSSPP: PlayStation Portable Emulator",
"launch" : "PPSSPPSDL" "launch" : "PPSSPPSDL"
} }
} }
}, },
"psvita" : {
"name" : "Sony PlayStation Vita",
"folder" : "psvita",
"emulator" : {
"vita3k" : {
"name" : "Vita3k",
"description" : "Vita3K PSVita Emulator",
"launch" : "Vita3K"
}
}
},
"rpcs3" : { "rpcs3" : {
"name" : "Sony PlayStation 3", "name" : "Sony PlayStation 3",
"folder" : "ps3", "folder" : "ps3",
@ -390,22 +399,60 @@
"name" : "Nintendo Switch", "name" : "Nintendo Switch",
"folder" : "switch", "folder" : "switch",
"emulator" : { "emulator" : {
"ryujinx" : {}, "ryujinx" : {
"yuzu" : {} "name": "Ryujinx",
"description" : "Ryujinx Nintendo Switch Emulator",
"launch" : "Ryujinx.sh"
},
"yuzu" : {
"name": "Yuzu (via Ponzu)",
"description" : "Yuzu Nintendo Switch Emulator (via Ponzu)",
"launch" : "Yuzu",
"ponzu" : true
}
}
},
"gc" : {
"name": "Nintendo GameCube",
"folder" : "gc",
"emulator" : {
"dolphin" : {
"name" : "Dolphin",
"description" : "Dolphin Wii and GameCube Emulator",
"launch" : "dolphin-emu-wrapper",
"properties": [
{
"abxy_button": true
}
]
}
} }
}, },
"wii" : { "wii" : {
"name": "Nintendo Wii", "name": "Nintendo Wii",
"folder" : "wii", "folder" : "wii",
"emulators" : { "emulator" : {
"dolphin" : {}, "dolphin" : {
"primehack" : {} "name" : "Dolphin",
"description" : "Dolphin Wii and GameCube Emulator",
"launch" : "dolphin-emu-wrapper",
"properties": [
{
"abxy_button": true
}
]
},
"primehack" : {
"name" : "PrimeHack",
"description" : "A fork of Dolphiin to enhance Metroid Prime experience",
"launch" : "primehack-wrapper"
}
} }
}, },
"wiiu" : { "wiiu" : {
"name": "Nintendo Wii U", "name": "Nintendo Wii U",
"folder" : "wiiu", "folder" : "wiiu",
"emulators" : { "emulator" : {
"cemu": { "cemu": {
"description": "Wii U emulator", "description": "Wii U emulator",
"name" : "Cemu", "name" : "Cemu",
@ -418,6 +465,18 @@
] ]
} }
} }
},
"xbox" : {
"name" : "Microsoft XBOX",
"folder" : "xbox",
"emulator" : {
"xemu" : {
"description": "xemu Xbox Emulator",
"name" : "xemu",
"launch" : "xemu"
}
}
} }
} }
} }
}