1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 05:08:19 +08:00

Add: [ALAS] Support MuMuPlayer12 5.0

This commit is contained in:
LmeSzinc
2025-06-14 00:07:51 +08:00
parent 999a121625
commit ac3ce726a5
4 changed files with 35 additions and 18 deletions

View File

@@ -119,7 +119,7 @@ class Emulator(EmulatorBase):
return cls.MuMuPlayerX
else:
return cls.MuMuPlayer
if exe == 'mumuplayer.exe':
if exe in ['mumuplayer.exe', 'mumunxmain.exe']:
return cls.MuMuPlayer12
if exe == 'memu.exe':
return cls.MEmuPlayer
@@ -168,6 +168,9 @@ class Emulator(EmulatorBase):
"""
if 'MuMuPlayer.exe' in exe:
return exe.replace('MuMuPlayer.exe', 'MuMuManager.exe')
# MuMuPlayer12 5.0
elif 'MuMuPlayer.exe' in exe:
return exe.replace('MuMuNxMain.exe', 'MuMuManager.exe')
elif 'LDPlayer.exe' in exe:
return exe.replace('LDPlayer.exe', 'ldconsole.exe')
elif 'dnplayer.exe' in exe:
@@ -461,7 +464,9 @@ class EmulatorManager(EmulatorManagerBase):
'leidian9',
'Nemu',
'Nemu9',
'MuMuPlayer-12.0'
'MuMuPlayer',
'MuMuPlayer-12.0',
'MuMu Player 12.0',
'MEmu',
]
for path in known_uninstall_registry_path: