mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-23 09:01:45 +00:00
87554793d3
- 修复了上一场战斗的队伍位置信息会保留到下一场战斗的问题 - 修复了领取大量任务时, 不会等待的问题 - 修复了不计算BOSS队心情消耗的问题 - 增加了碰磁BOSS所有刷新点的方法 - 修复了没有检测到BOSS时停滞的问题 - 修复了处理夜间委托 - 修复了丢失地图信息补全不起作用的问题 - 修复了换装滑动失败后, 陷入死循环的问题 - 删除了微层混合AB图的一些多余逻辑 - 7-2现在会优先捡全部问号了, 不需要先捡附近的来减少行走距离.
161 lines
4.9 KiB
Python
161 lines
4.9 KiB
Python
from module.base.timer import Timer
|
|
from module.equipment.assets import *
|
|
from module.handler.info_bar import InfoBarHandler
|
|
from module.logger import logger
|
|
from module.ui.assets import BACK_ARROW
|
|
|
|
SWIPE_DISTANCE = 250
|
|
SWIPE_RANDOM_RANGE = (-40, -20, 40, 20)
|
|
|
|
|
|
class Equipment(InfoBarHandler):
|
|
equipment_has_take_on = False
|
|
|
|
def _view_swipe(self, distance):
|
|
while 1:
|
|
SWIPE_CHECK.load_color(self.device.image)
|
|
self.device.swipe(vector=(distance, 0), box=SWIPE_AREA.area, random_range=SWIPE_RANDOM_RANGE,
|
|
padding=0, duration=(0.1, 0.12))
|
|
while 1:
|
|
self.device.screenshot()
|
|
if SWIPE_CHECK.match(self.device.image):
|
|
continue
|
|
if self.appear(EQUIPMENT_OPEN):
|
|
break
|
|
|
|
if not SWIPE_CHECK.match(self.device.image):
|
|
break
|
|
|
|
def _view_next(self):
|
|
self._view_swipe(distance=-SWIPE_DISTANCE)
|
|
|
|
def _view_prev(self):
|
|
self._view_swipe(distance=SWIPE_DISTANCE)
|
|
|
|
def _equip_enter(self, enter):
|
|
enter_timer = Timer(5)
|
|
|
|
while 1:
|
|
if enter_timer.reached():
|
|
self.device.long_click(enter, duration=(1.5, 1.7))
|
|
enter_timer.reset()
|
|
|
|
self.device.screenshot()
|
|
|
|
# End
|
|
if self.appear(EQUIPMENT_OPEN):
|
|
break
|
|
|
|
def _equip_exit(self, out):
|
|
quit_timer = Timer(3)
|
|
|
|
while 1:
|
|
self.device.screenshot()
|
|
|
|
# End
|
|
if self.appear(out):
|
|
break
|
|
|
|
if quit_timer.reached() and self.appear(BACK_ARROW):
|
|
# self.device.sleep(1)
|
|
self.device.click(BACK_ARROW)
|
|
self.device.sleep((0.2, 0.3))
|
|
quit_timer.reset()
|
|
continue
|
|
|
|
def _equip_take_off_one(self):
|
|
bar_timer = Timer(5)
|
|
off_timer = Timer(5)
|
|
confirm_timer = Timer(5)
|
|
|
|
while 1:
|
|
self.device.screenshot()
|
|
if bar_timer.reached() and not self.appear(EQUIP_1, offset=10):
|
|
self.device.click(EQUIPMENT_OPEN)
|
|
bar_timer.reset()
|
|
continue
|
|
|
|
if off_timer.reached() and not self.info_bar_count() and self.appear_then_click(EQUIP_OFF, offset=10):
|
|
off_timer.reset()
|
|
continue
|
|
|
|
if confirm_timer.reached() and self.appear_then_click(EQUIP_OFF_CONFIRM, offset=10):
|
|
confirm_timer.reset()
|
|
continue
|
|
|
|
# End
|
|
# if self.handle_info_bar():
|
|
# break
|
|
if off_timer.started() and self.info_bar_count():
|
|
break
|
|
|
|
def equipment_take_off(self, enter, out, fleet):
|
|
"""
|
|
Args:
|
|
enter (Button): Long click to edit equipment.
|
|
out (Button): Button to confirm exit success.
|
|
fleet (list[int]): list of equipment record. [3, 1, 1, 1, 1, 1]
|
|
"""
|
|
logger.hr('Equipment take off')
|
|
self._equip_enter(enter)
|
|
|
|
for index in '9'.join([str(x) for x in fleet if x > 0]):
|
|
index = int(index)
|
|
if index == 9:
|
|
self._view_next()
|
|
else:
|
|
self._equip_take_off_one()
|
|
|
|
self._equip_exit(out)
|
|
self.equipment_has_take_on = False
|
|
|
|
def _equip_take_on_one(self, index):
|
|
bar_timer = Timer(5)
|
|
on_timer = Timer(5)
|
|
|
|
while 1:
|
|
self.device.screenshot()
|
|
|
|
if bar_timer.reached() and not self.appear(EQUIP_1, offset=10):
|
|
self.device.click(EQUIPMENT_OPEN)
|
|
# self.device.sleep(0.3)
|
|
bar_timer.reset()
|
|
continue
|
|
|
|
if on_timer.reached() and self.appear(EQUIP_1, offset=10) and not self.info_bar_count():
|
|
if index == 1:
|
|
self.device.click(EQUIP_1)
|
|
elif index == 2:
|
|
self.device.click(EQUIP_2)
|
|
elif index == 3:
|
|
self.device.click(EQUIP_3)
|
|
|
|
on_timer.reset()
|
|
continue
|
|
|
|
# End
|
|
# if self.handle_info_bar():
|
|
# break
|
|
if on_timer.started() and self.info_bar_count():
|
|
break
|
|
|
|
def equipment_take_on(self, enter, out, fleet):
|
|
"""
|
|
Args:
|
|
enter (Button): Long click to edit equipment.
|
|
out (Button): Button to confirm exit success.
|
|
fleet (list[int]): list of equipment record. [3, 1, 1, 1, 1, 1]
|
|
"""
|
|
logger.hr('Equipment take on')
|
|
self._equip_enter(enter)
|
|
|
|
for index in '9'.join([str(x) for x in fleet if x > 0]):
|
|
index = int(index)
|
|
if index == 9:
|
|
self._view_next()
|
|
else:
|
|
self._equip_take_on_one(index=index)
|
|
|
|
self._equip_exit(out)
|
|
self.equipment_has_take_on = True
|