mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-23 09:01:45 +00:00
bea05d396e
- 开荒模式移动至出击设置 - 增加开荒模式自动启用, 无脑开就完事了 - 将透视识别参数放到了config里, 这样就可以用地图config覆盖了 - 适配小地图模式, 参数抄A1就行了 - 修复了章节名OCR的识别位置 - 修复了开荒会把BOSS当作精英打问题 - 增加战斗中的剧情跳过 - 注释掉了截图和点击的retry - 增加了捕捉目标点超出移动范围
22 lines
666 B
Python
22 lines
666 B
Python
from module.handler.assets import *
|
|
from module.handler.popup import PopupHandler
|
|
|
|
|
|
class StoryHandler(PopupHandler):
|
|
def story_skip(self):
|
|
if self.appear_then_click(STORY_SKIP, offset=True, interval=2):
|
|
return True
|
|
if self.handle_popup_confirm():
|
|
return True
|
|
if self.appear_then_click(STORY_CHOOCE, offset=True, interval=2):
|
|
return True
|
|
if self.appear_then_click(STORY_CHOOCE_2, offset=True, interval=2):
|
|
return True
|
|
|
|
return False
|
|
|
|
def handle_story_skip(self):
|
|
if not self.config.ENABLE_MAP_CLEAR_MODE:
|
|
return False
|
|
|
|
return self.story_skip() |