Skip to content

Commit 40561a3

Browse files
authored
Merge pull request #15336 from Tovarichtch/supermodelrpi4fix
fix supermodel-legacy
2 parents 86942dc + 7fe5156 commit 40561a3

3 files changed

Lines changed: 522 additions & 41 deletions

File tree

package/batocera/core/batocera-configgen/configgen/configgen/generators/importer.py

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -10,59 +10,59 @@
1010

1111

1212
_GENERATOR_MAP: Final[dict[str, tuple[str, str]]] = {
13-
'scummvm': ('scummvm.scummvmGenerator', 'ScummVMGenerator'),
13+
'applewin': ('applewin.applewinGenerator', 'AppleWinGenerator'),
14+
'bigpemu': ('bigpemu.bigpemuGenerator', 'BigPEmuGenerator'),
15+
'bstone': ('bstone.bstoneGenerator', 'BstoneGenerator'),
16+
'catacombgl': ('catacombgl.catacombglGenerator', 'CatacombGLGenerator'),
17+
'cgenius': ('cgenius.cgeniusGenerator', 'CGeniusGenerator'),
18+
'clk': ('clk.clkGenerator', 'ClkGenerator'),
19+
'corsixth': ('corsixth.corsixthGenerator', 'CorsixTHGenerator'),
20+
'devilutionx': ('devilutionx.devilutionxGenerator', 'DevilutionXGenerator'),
21+
'dhewm3': ('dhewm3.dhewm3Generator', 'Dhewm3Generator'),
22+
'dolphin_triforce': ('dolphin_triforce.dolphinTriforceGenerator', 'DolphinTriforceGenerator'),
1423
'dosbox': ('dosbox.dosboxGenerator', 'DosBoxGenerator'),
1524
'dosbox_staging': ('dosboxstaging.dosboxstagingGenerator', 'DosBoxStagingGenerator'),
1625
'dosboxx': ('dosboxx.dosboxxGenerator', 'DosBoxxGenerator'),
17-
'mupen64plus': ('mupen.mupenGenerator', 'MupenGenerator'),
18-
'dolphin_triforce': ('dolphin_triforce.dolphinTriforceGenerator', 'DolphinTriforceGenerator'),
19-
'ppsspp': ('ppsspp.ppssppGenerator', 'PPSSPPGenerator'),
20-
'hypseus-singe': ('hypseus_singe.hypseusSingeGenerator', 'HypseusSingeGenerator'),
21-
'sdlpop': ('sdlpop.sdlpopGenerator', 'SdlPopGenerator'),
22-
'melonds': ('melonds.melondsGenerator', 'MelonDSGenerator'),
23-
'devilutionx': ('devilutionx.devilutionxGenerator', 'DevilutionXGenerator'),
24-
'easyrpg': ('easyrpg.easyrpgGenerator', 'EasyRPGGenerator'),
25-
'xash3d_fwgs': ('xash3d_fwgs.xash3dFwgsGenerator', 'Xash3dFwgsGenerator'),
2626
'duckstation-legacy': ('duckstation_legacy.duckstationLegacyGenerator', 'DuckstationLegacyGenerator'),
27-
'cgenius': ('cgenius.cgeniusGenerator', 'CGeniusGenerator'),
27+
'dxx-rebirth': ('dxx_rebirth.dxx_rebirthGenerator', 'DXX_RebirthGenerator'),
28+
'easyrpg': ('easyrpg.easyrpgGenerator', 'EasyRPGGenerator'),
2829
'ecwolf': ('ecwolf.ecwolfGenerator', 'ECWolfGenerator'),
30+
'eduke32': ('eduke32.eduke32Generator', 'EDuke32Generator'),
31+
'flycast': ('flycast.flycastGenerator', 'FlycastGenerator'),
32+
'fsuae': ('fsuae.fsuaeGenerator', 'FsuAEGenerator'),
33+
'gsplus': ('gsplus.gsplusGenerator', 'GSplusGenerator'),
34+
'hatarib': ('hatarib.hataribGenerator', 'HataribGenerator'),
35+
'hypseus-singe': ('hypseus_singe.hypseusSingeGenerator', 'HypseusSingeGenerator'),
36+
'iortcw': ('iortcw.iortcwGenerator', 'IOrtcWGenerator'),
37+
'ioquake3': ('ioquake3.ioquake3Generator', 'IOQuake3Generator'),
38+
'jzintv': ('jzintv.jzintvGenerator', 'JzIntvGenerator'),
39+
'lightspark': ('lightspark.lightsparkGenerator', 'LightsparkGenerator'),
40+
'melonds': ('melonds.melondsGenerator', 'MelonDSGenerator'),
2941
'model2emu': ('model2emu.model2emuGenerator', 'Model2EmuGenerator'),
42+
'mupen64plus': ('mupen.mupenGenerator', 'MupenGenerator'),
43+
'openbor': ('openbor.openborGenerator', 'OpenBORGenerator'),
44+
'opentyrian': ('opentyrian.opentyrianGenerator', 'OpenTyrianGenerator'),
45+
'ppsspp': ('ppsspp.ppssppGenerator', 'PPSSPPGenerator'),
46+
'redream': ('redream.redreamGenerator', 'RedreamGenerator'),
47+
'retroarch': ('libretro.libretroGenerator', 'LibretroGenerator'),
48+
'ryujinx': ('ryujinx.ryujinxGenerator', 'RyujinxGenerator'),
49+
'scummvm': ('scummvm.scummvmGenerator', 'ScummVMGenerator'),
50+
'sdlpop': ('sdlpop.sdlpopGenerator', 'SdlPopGenerator'),
51+
'snes9x': ('snes9x.snes9xGenerator', 'Snes9xGenerator'),
3052
'sonic2013': ('sonicretro.sonicretroGenerator', 'SonicRetroGenerator'),
53+
'sonic3-air': ('sonic3_air.sonic3_airGenerator', 'Sonic3AIRGenerator'),
3154
'soniccd': ('sonicretro.sonicretroGenerator', 'SonicRetroGenerator'),
32-
'gsplus': ('gsplus.gsplusGenerator', 'GSplusGenerator'),
33-
'openjazz': ('openjazz.openjazzGenerator', 'OpenJazzGenerator'),
34-
'xenia-canary': ('xenia.xeniaGenerator', 'XeniaGenerator'),
35-
'gzdoom': ('gzdoom.gzdoomGenerator', 'GZDoomGenerator'),
36-
'eduke32': ('eduke32.eduke32Generator', 'EDuke32Generator'),
37-
'bigpemu': ('bigpemu.bigpemuGenerator', 'BigPEmuGenerator'),
38-
'ioquake3': ('ioquake3.ioquake3Generator', 'IOQuake3Generator'),
39-
'thextech': ('thextech.thextechGenerator', 'TheXTechGenerator'),
40-
'vpinball': ('vpinball.vpinballGenerator', 'VPinballGenerator'),
41-
'applewin': ('applewin.applewinGenerator', 'AppleWinGenerator'),
42-
'corsixth': ('corsixth.corsixthGenerator', 'CorsixTHGenerator'),
55+
'supermodel-legacy': ('supermodel_legacy.supermodelLegacyGenerator', 'SupermodelLegacyGenerator'),
4356
'theforceengine': ('theforceengine.theforceengineGenerator', 'TheForceEngineGenerator'),
44-
'iortcw': ('iortcw.iortcwGenerator', 'IORTCWGenerator'),
45-
'fallout1-ce': ('fallout1.fallout1Generator', 'Fallout1Generator'),
46-
'fallout2-ce': ('fallout2.fallout2Generator', 'Fallout2Generator'),
47-
'dxx-rebirth': ('dxx_rebirth.dxx_rebirthGenerator', 'DXX_RebirthGenerator'),
48-
'etlegacy': ('etlegacy.etlegacyGenerator', 'ETLegacyGenerator'),
49-
'sonic3-air': ('sonic3_air.sonic3_airGenerator', 'Sonic3AIRGenerator'),
50-
'sonic-mania': ('sonic_mania.sonic_maniaGenerator', 'SonicManiaGenerator'),
51-
'shadps4': ('shadps4.shadps4Generator', 'shadPS4Generator'),
52-
'jazz2-native': ('jazz2_native.jazz2_nativeGenerator', 'Jazz2_NativeGenerator'),
53-
'dhewm3': ('dhewm3.dhewm3Generator', 'Dhewm3Generator'),
54-
'catacombgl': ('catacombgl.catacombglGenerator', 'CatacombGLGenerator'),
55-
'lindbergh-loader': ('lindbergh.lindberghGenerator', 'LindberghGenerator'),
57+
'thextech': ('thextech.thextechGenerator', 'TheXTechGenerator'),
58+
'tr1x': ('tr1x.tr1xGenerator', 'TR1XGenerator'),
59+
'tr2x': ('tr2x.tr2xGenerator', 'TR2XGenerator'),
5660
'vkquake': ('vkquake.vkquakeGenerator', 'VKQuakeGenerator'),
5761
'vkquake2': ('vkquake2.vkquake2Generator', 'VKQuake2Generator'),
5862
'vkquake3': ('ioquake3.ioquake3Generator', 'IOQuake3Generator'),
59-
'tr1x': ('tr1x.tr1xGenerator', 'TR1XGenerator'),
60-
'tr2x': ('tr2x.tr2xGenerator', 'TR2XGenerator'),
61-
'clk': ('clk.clkGenerator', 'ClkGenerator'),
62-
'bstone': ('bstone.bstoneGenerator', 'BstoneGenerator'),
63-
'openjkdf2': ('openjkdf2.openjkdf2Generator', 'OpenJKDF2Generator'),
64-
'openjk': ('openjk.openjkGenerator', 'OpenJKGenerator'),
65-
'openmohaa': ('openmohaa.openmohaaGenerator', 'OpenMOHAAGenerator'),
63+
'vpinball': ('vpinball.vpinballGenerator', 'VPinballGenerator'),
64+
'xash3d_fwgs': ('xash3d_fwgs.xash3dFwgsGenerator', 'Xash3dFwgsGenerator'),
65+
'xenia-canary': ('xenia.xeniaGenerator', 'XeniaGenerator'),
6666
'ymir': ('ymir.ymirGenerator', 'YmirGenerator'),
6767
'yquake2': ('yquake2.yquake2Generator', 'YQuake2Generator'),
6868
}

package/batocera/core/batocera-configgen/configgen/configgen/generators/supermodel_legacy/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)