mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-26 18:20:42 +00:00
Fix: Infinite click on switch when switch is unknown
- Increase ui retry interval for potato device
This commit is contained in:
parent
80951f864f
commit
80646b260f
@ -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:
|
||||
|
@ -65,7 +65,7 @@ class ExerciseCombat(HpDaemon, OpponentChoose, ExerciseEquipment):
|
||||
if self.appear_then_click(EXP_INFO_D):
|
||||
continue
|
||||
# Last D rank screen
|
||||
if self.appear_then_click(OPTS_INFO_D, offset=(30,30)):
|
||||
if self.appear_then_click(OPTS_INFO_D, offset=(30, 30)):
|
||||
continue
|
||||
|
||||
# Quit
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user