mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-21 21:55:38 +00:00
Added support for the Nokia N-Gage (ngage) game system
This commit is contained in:
parent
ee84040bb4
commit
54eef96a01
|
@ -62,6 +62,7 @@ Emulators\DOSBox-X\dosbox-x.exe
|
|||
Emulators\duckstation\duckstation-nogui-x64-ReleaseLTCG.exe
|
||||
Emulators\duckstation\duckstation-qt-x64-ReleaseLTCG.exe
|
||||
Emulators\EasyRPG\Player.exe
|
||||
Emulators\EKA2L1\eka2l1_qt.exe
|
||||
Emulators\fbneo\fbneo64.exe
|
||||
Emulators\fbneo\fbneo.exe
|
||||
Emulators\flycast\flycast.exe
|
||||
|
|
|
@ -93,6 +93,7 @@ namespace PlatformIds
|
|||
"neogeo", // SNK Neo Geo
|
||||
"neogeocd", // SNK Neo Geo CD
|
||||
"nes", // Nintendo Entertainment System
|
||||
"ngage", // Nokia N-Gage
|
||||
"ngp", // SNK Neo Geo Pocket
|
||||
"ngpc", // SNK Neo Geo Pocket Color
|
||||
"odyssey2", // Magnavox Odyssey2
|
||||
|
|
|
@ -92,6 +92,7 @@ namespace PlatformIds
|
|||
SNK_NEO_GEO,
|
||||
SNK_NEO_GEO_CD,
|
||||
NINTENDO_ENTERTAINMENT_SYSTEM,
|
||||
NOKIA_NGAGE,
|
||||
SNK_NEO_GEO_POCKET,
|
||||
SNK_NEO_GEO_POCKET_COLOR,
|
||||
VIDEOPAC_ODYSSEY2,
|
||||
|
|
|
@ -101,6 +101,7 @@ namespace
|
|||
{NINTENDO_POKEMON_MINI, "4957"},
|
||||
{NINTENDO_SATELLAVIEW, "6"},
|
||||
{NINTENDO_SWITCH, "4971"},
|
||||
{NOKIA_NGAGE, "4938"},
|
||||
{BANDAI_SUFAMI_TURBO, "6"},
|
||||
{DRAGON32, "4952"},
|
||||
{DOS, "1"},
|
||||
|
|
|
@ -103,6 +103,7 @@ namespace
|
|||
{NINTENDO_POKEMON_MINI, 211},
|
||||
{NINTENDO_SATELLAVIEW, 107},
|
||||
{NINTENDO_SWITCH, 225},
|
||||
{NOKIA_NGAGE, 30},
|
||||
{BANDAI_SUFAMI_TURBO, 108},
|
||||
{DRAGON32, 91},
|
||||
{DOS, 135},
|
||||
|
|
|
@ -421,6 +421,10 @@
|
|||
<name>nes</name>
|
||||
<systemsortname>Console - 1985</systemsortname>
|
||||
</system>
|
||||
<system>
|
||||
<name>ngage</name>
|
||||
<systemsortname>Portable - 2003</systemsortname>
|
||||
</system>
|
||||
<system>
|
||||
<name>ngp</name>
|
||||
<systemsortname>Portable - 1998</systemsortname>
|
||||
|
|
|
@ -421,6 +421,10 @@
|
|||
<name>nes</name>
|
||||
<systemsortname>Nintendo - Console - 1985</systemsortname>
|
||||
</system>
|
||||
<system>
|
||||
<name>ngage</name>
|
||||
<systemsortname>Nokia - Portable - 2003</systemsortname>
|
||||
</system>
|
||||
<system>
|
||||
<name>ngp</name>
|
||||
<systemsortname>SNK - Portable - 1998</systemsortname>
|
||||
|
|
|
@ -421,6 +421,10 @@
|
|||
<name>nes</name>
|
||||
<systemsortname>Nintendo - 1985</systemsortname>
|
||||
</system>
|
||||
<system>
|
||||
<name>ngage</name>
|
||||
<systemsortname>Nokia - 2003</systemsortname>
|
||||
</system>
|
||||
<system>
|
||||
<name>ngp</name>
|
||||
<systemsortname>SNK - 1998</systemsortname>
|
||||
|
|
|
@ -421,6 +421,10 @@
|
|||
<name>nes</name>
|
||||
<systemsortname>1985</systemsortname>
|
||||
</system>
|
||||
<system>
|
||||
<name>ngage</name>
|
||||
<systemsortname>2003</systemsortname>
|
||||
</system>
|
||||
<system>
|
||||
<name>ngp</name>
|
||||
<systemsortname>1998</systemsortname>
|
||||
|
|
|
@ -103,6 +103,12 @@
|
|||
<entry>/usr/local/bin/easyrpg-player</entry>
|
||||
</rule>
|
||||
</emulator>
|
||||
<emulator name="EKA2L1">
|
||||
<!-- Symbian and Nokia N-Gage emulator EKA2L1 -->
|
||||
<rule type="staticpath">
|
||||
<entry>/Applications/EKA2L1.app/Contents/MacOS/EKA2L1</entry>
|
||||
</rule>
|
||||
</emulator>
|
||||
<emulator name="FLYCAST">
|
||||
<!-- Sega Dreamcast emulator Flycast -->
|
||||
<rule type="staticpath">
|
||||
|
|
|
@ -1164,6 +1164,16 @@
|
|||
<platform>nes</platform>
|
||||
<theme>nes</theme>
|
||||
</system>
|
||||
<system>
|
||||
<name>ngage</name>
|
||||
<fullname>Nokia N-Gage</fullname>
|
||||
<path>%ROMPATH%/ngage</path>
|
||||
<extension>.ngage .zip .ZIP</extension>
|
||||
<command label="EKA2L1 [Mounted] (Standalone)">%EMULATOR_EKA2L1% --fullscreen --device RH-29 --mount %ROM% --run "%BASENAME%"</command>
|
||||
<command label="EKA2L1 [Installed] (Standalone)">%EMULATOR_EKA2L1% --fullscreen --device RH-29 --run "%BASENAME%"</command>
|
||||
<platform>ngage</platform>
|
||||
<theme>ngage</theme>
|
||||
</system>
|
||||
<system>
|
||||
<name>ngp</name>
|
||||
<fullname>SNK Neo Geo Pocket</fullname>
|
||||
|
|
|
@ -274,6 +274,27 @@
|
|||
<entry>~/bin/easyrpg/easyrpg-player</entry>
|
||||
</rule>
|
||||
</emulator>
|
||||
<emulator name="EKA2L1">
|
||||
<!-- Symbian and Nokia N-Gage emulator EKA2L1 -->
|
||||
<rule type="systempath">
|
||||
<entry>eka2l1_qt</entry>
|
||||
</rule>
|
||||
<rule type="staticpath">
|
||||
<entry>~/Applications/EKA2L1*.AppImage</entry>
|
||||
<entry>~/.local/share/applications/EKA2L1*.AppImage</entry>
|
||||
<entry>~/.local/bin/EKA2L1*.AppImage</entry>
|
||||
<entry>~/bin/EKA2L1*.AppImage</entry>
|
||||
</rule>
|
||||
</emulator>
|
||||
<emulator name="EKA2L1-WINDOWS">
|
||||
<!-- Symbian and Nokia N-Gage emulator EKA2L1 -->
|
||||
<rule type="staticpath">
|
||||
<entry>~/Applications/EKA2L1/eka2l1_qt.exe</entry>
|
||||
<entry>~/.local/share/applications/EKA2L1/eka2l1_qt.exe</entry>
|
||||
<entry>~/.local/bin/EKA2L1/eka2l1_qt.exe</entry>
|
||||
<entry>~/bin/EKA2L1/eka2l1_qt.exe</entry>
|
||||
</rule>
|
||||
</emulator>
|
||||
<emulator name="FINALBURN-NEO">
|
||||
<!-- Arcade emulator FinalBurn Neo -->
|
||||
<rule type="systempath">
|
||||
|
|
|
@ -1221,6 +1221,18 @@
|
|||
<platform>nes</platform>
|
||||
<theme>nes</theme>
|
||||
</system>
|
||||
<system>
|
||||
<name>ngage</name>
|
||||
<fullname>Nokia N-Gage</fullname>
|
||||
<path>%ROMPATH%/ngage</path>
|
||||
<extension>.ngage .zip .ZIP</extension>
|
||||
<command label="EKA2L1 [Mounted] (Standalone)">%EMULATOR_EKA2L1% --fullscreen --device RH-29 --mount %ROM% --run "%BASENAME%"</command>
|
||||
<command label="EKA2L1 [Installed] (Standalone)">%EMULATOR_EKA2L1% --fullscreen --device RH-29 --run "%BASENAME%"</command>
|
||||
<command label="EKA2L1 [Mounted] (Wine)">%STARTDIR%=%EMUDIR% %PRECOMMAND_WINE% %EMULATOR_EKA2L1-WINDOWS% --fullscreen --device RH-29 --mount %ROM% --run "%BASENAME%"</command>
|
||||
<command label="EKA2L1 [Installed] (Wine)">%STARTDIR%=%EMUDIR% %PRECOMMAND_WINE% %EMULATOR_EKA2L1-WINDOWS% --fullscreen --device RH-29 --run "%BASENAME%"</command>
|
||||
<platform>ngage</platform>
|
||||
<theme>ngage</theme>
|
||||
</system>
|
||||
<system>
|
||||
<name>ngp</name>
|
||||
<fullname>SNK Neo Geo Pocket</fullname>
|
||||
|
|
|
@ -245,6 +245,16 @@
|
|||
<entry>%ESPATH%\..\Emulators\EasyRPG\Player.exe</entry>
|
||||
</rule>
|
||||
</emulator>
|
||||
<emulator name="EKA2L1">
|
||||
<!-- Symbian and Nokia N-Gage emulator EKA2L1 -->
|
||||
<rule type="systempath">
|
||||
<entry>eka2l1_qt.exe</entry>
|
||||
</rule>
|
||||
<rule type="staticpath">
|
||||
<entry>%ESPATH%\Emulators\EKA2L1\eka2l1_qt.exe</entry>
|
||||
<entry>%ESPATH%\..\Emulators\EKA2L1\eka2l1_qt.exe</entry>
|
||||
</rule>
|
||||
</emulator>
|
||||
<emulator name="FINALBURN-NEO">
|
||||
<!-- Arcade emulator FinalBurn Neo -->
|
||||
<rule type="systempath">
|
||||
|
|
|
@ -158,6 +158,13 @@
|
|||
<entry>%ESPATH%\..\Emulators\EasyRPG\Player.exe</entry>
|
||||
</rule>
|
||||
</emulator>
|
||||
<emulator name="EKA2L1">
|
||||
<!-- Symbian and Nokia N-Gage emulator EKA2L1 -->
|
||||
<rule type="staticpath">
|
||||
<entry>%ESPATH%\Emulators\EKA2L1\eka2l1_qt.exe</entry>
|
||||
<entry>%ESPATH%\..\Emulators\EKA2L1\eka2l1_qt.exe</entry>
|
||||
</rule>
|
||||
</emulator>
|
||||
<emulator name="FINALBURN-NEO">
|
||||
<!-- Arcade emulator FinalBurn Neo -->
|
||||
<rule type="staticpath">
|
||||
|
|
|
@ -1210,6 +1210,16 @@
|
|||
<platform>nes</platform>
|
||||
<theme>nes</theme>
|
||||
</system>
|
||||
<system>
|
||||
<name>ngage</name>
|
||||
<fullname>Nokia N-Gage</fullname>
|
||||
<path>%ROMPATH%\ngage</path>
|
||||
<extension>.ngage .zip .ZIP</extension>
|
||||
<command label="EKA2L1 [Mounted] (Standalone)">%STARTDIR%=%EMUDIR% %EMULATOR_EKA2L1% --fullscreen --device RH-29 --mount %ROM% --run "%BASENAME%"</command>
|
||||
<command label="EKA2L1 [Installed] (Standalone)">%STARTDIR%=%EMUDIR% %EMULATOR_EKA2L1% --fullscreen --device RH-29 --run "%BASENAME%"</command>
|
||||
<platform>ngage</platform>
|
||||
<theme>ngage</theme>
|
||||
</system>
|
||||
<system>
|
||||
<name>ngp</name>
|
||||
<fullname>SNK Neo Geo Pocket</fullname>
|
||||
|
|
Loading…
Reference in a new issue