1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-22 17:33:45 +08:00

Opt: Increase speed in meowfficer module by reusing screenshots

- Fix: Page transaction and ui_additional() run at the same time in ui_goto()
This commit is contained in:
LmeSzinc
2022-03-06 20:47:29 +08:00
parent cbd75e3f8e
commit 7e0cd13410
7 changed files with 45 additions and 29 deletions

View File

@@ -73,8 +73,8 @@ class MeowfficerFort(MeowfficerBase):
logger.hr('Meowfficer fort', level=1)
# Enter MEOWFFICER_FORT window
self.ui_click(MEOWFFICER_FORT_ENTER, check_button=MEOWFFICER_FORT_CHECK,
additional=self.meow_additional, retry_wait=3, skip_first_screenshot=True)
self.ui_click(MEOWFFICER_FORT_ENTER, check_button=MEOWFFICER_FORT_CHECK, additional=self.meow_additional,
retry_wait=3, confirm_wait=0, skip_first_screenshot=True)
# Perform fort chore operations
self.meow_chores()
@@ -87,6 +87,6 @@ class MeowfficerFort(MeowfficerBase):
self.ui_click(MEOWFFICER_GOTO_DORM,
check_button=MEOWFFICER_FORT_ENTER, appear_button=MEOWFFICER_FORT_CHECK,
additional=additional, offset=None, skip_first_screenshot=True)
additional=additional, offset=None, confirm_wait=0, skip_first_screenshot=True)
return True