mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-23 09:01:45 +00:00
b94baf8831
- 调整了战斗模块的函数 - 修改了GUI的文字说明 - 修复有文字窗口时紧急委托截图的问题
27 lines
820 B
Python
27 lines
820 B
Python
from module.handler.assets import *
|
|
from module.handler.info_bar import InfoBarHandler
|
|
from module.logger import logger
|
|
|
|
|
|
class UrgentCommissionHandler(InfoBarHandler):
|
|
def handle_urgent_commission(self, save_get_items=None):
|
|
"""
|
|
Args:
|
|
save_get_items (bool):
|
|
|
|
Returns:
|
|
bool:
|
|
"""
|
|
if save_get_items is None:
|
|
save_get_items = self.config.ENABLE_SAVE_GET_ITEMS
|
|
|
|
appear = self.appear(GET_MISSION, offset=True, interval=2)
|
|
if appear:
|
|
logger.info('Get urgent commission')
|
|
if save_get_items:
|
|
if self.handle_info_bar():
|
|
self.device.screenshot()
|
|
self.device.save_screenshot('get_mission')
|
|
self.device.click(GET_MISSION)
|
|
return appear
|