Merge pull request #26 from LmeSzinc/master

Fix: Infinite click on switch when switch is unknown
This commit is contained in:
Erik 2020-06-16 19:38:57 -03:00 committed by GitHub
commit b5f97b328a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 23 additions and 6 deletions

View File

@ -1,5 +1,6 @@
from module.base.base import ModuleBase
from module.base.button import Button
from module.base.timer import Timer
from module.logger import logger
@ -50,6 +51,7 @@ class Switch:
bool:
"""
changed = False
warning_show_timer = Timer(5, count=10).start()
while 1:
if skip_first_screenshot:
skip_first_screenshot = False
@ -65,8 +67,12 @@ class Switch:
matched = data
if current == status:
return changed
if current == 'unknown':
if warning_show_timer.reached():
logger.warning(f'Unknown {self.name} switch')
warning_show_timer.reset()
continue
for data in self.status_list:
if data['status'] == status:

View File

@ -92,16 +92,25 @@ class InfoHandler(ModuleBase):
"""
Story
"""
story_popup_timout = Timer(10, count=20)
def story_skip(self):
if self.handle_popup_confirm():
if self.story_popup_timout.started() and not self.story_popup_timout.reached():
if self.handle_popup_confirm('STORY_SKIP'):
self.story_popup_timout = Timer(10)
return True
if self.appear_then_click(STORY_SKIP, offset=True, interval=2):
self.story_popup_timout.start()
return True
if self.appear(STORY_LETTER_BLACK) and self.appear_then_click(STORY_LETTERS_ONLY, offset=True, interval=2):
self.story_popup_timout.start()
return True
if self.appear_then_click(STORY_CHOOSE, offset=True, interval=2):
self.story_popup_timout.start()
return True
if self.appear_then_click(STORY_CHOOSE_2, offset=True, interval=2):
self.story_popup_timout.start()
return True
return False
@ -109,6 +118,8 @@ class InfoHandler(ModuleBase):
def handle_story_skip(self):
if not self.config.ENABLE_MAP_CLEAR_MODE:
return False
if self.config.ENABLE_FAST_FORWARD:
return False
return self.story_skip()

View File

@ -17,7 +17,7 @@ class UI(ModuleBase):
"""
return self.appear(page.check_button, offset=(20, 20))
def ui_click(self, click_button, check_button, appear_button=None, offset=(20, 20), retry_wait=3,
def ui_click(self, click_button, check_button, appear_button=None, offset=(20, 20), retry_wait=10,
skip_first_screenshot=False):
"""
Args: