2020-03-28 17:22:46 +00:00
|
|
|
from module.base.button import ButtonGrid
|
2020-04-14 04:26:57 +00:00
|
|
|
from module.base.decorator import Config
|
2020-03-28 17:22:46 +00:00
|
|
|
from module.base.utils import get_color, color_similar
|
|
|
|
from module.combat.assets import GET_ITEMS_1
|
2020-04-25 09:10:22 +00:00
|
|
|
from module.exception import ScriptError
|
2020-05-15 06:18:14 +00:00
|
|
|
from module.logger import logger
|
2020-03-28 17:22:46 +00:00
|
|
|
from module.retire.assets import *
|
2020-06-01 00:20:13 +00:00
|
|
|
from module.retire.enhancement import Enhancement
|
2020-03-28 17:22:46 +00:00
|
|
|
|
2020-06-01 00:20:13 +00:00
|
|
|
CARD_GRIDS = ButtonGrid(
|
|
|
|
origin=(93, 76), delta=(164 + 2 / 3, 227), button_shape=(138, 204), grid_shape=(7, 2), name='CARD')
|
|
|
|
CARD_RARITY_GRIDS = ButtonGrid(
|
|
|
|
origin=(93, 76), delta=(164 + 2 / 3, 227), button_shape=(138, 5), grid_shape=(7, 2), name='RARITY')
|
2020-03-28 17:22:46 +00:00
|
|
|
|
|
|
|
CARD_RARITY_COLORS = {
|
|
|
|
'N': (174, 176, 187),
|
|
|
|
'R': (106, 195, 248),
|
|
|
|
'SR': (151, 134, 254),
|
|
|
|
'SSR': (248, 223, 107)
|
|
|
|
# Not support marriage cards.
|
|
|
|
}
|
|
|
|
|
2020-04-03 06:09:04 +00:00
|
|
|
|
2020-06-01 00:20:13 +00:00
|
|
|
class Retirement(Enhancement):
|
2020-06-01 01:25:51 +00:00
|
|
|
_unable_to_enhance = False
|
|
|
|
|
2020-03-28 17:22:46 +00:00
|
|
|
def _retirement_choose(self, amount=10, target_rarity=('N',)):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
amount (int): Amount of cards retire. 0 to 10.
|
|
|
|
target_rarity (tuple(str)): Card rarity. N, R, SR, SSR.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
int: Amount of cards have retired.
|
|
|
|
"""
|
|
|
|
cards = []
|
|
|
|
rarity = []
|
|
|
|
for x, y, button in CARD_RARITY_GRIDS.generate():
|
|
|
|
card_color = get_color(image=self.device.image, area=button.area)
|
|
|
|
f = False
|
|
|
|
for r, rarity_color in CARD_RARITY_COLORS.items():
|
|
|
|
|
|
|
|
if color_similar(card_color, rarity_color, threshold=15):
|
|
|
|
cards.append([x, y])
|
|
|
|
rarity.append(r)
|
|
|
|
f = True
|
|
|
|
|
|
|
|
if not f:
|
|
|
|
logger.warning(f'Unknown rarity color. Grid: ({x}, {y}). Color: {card_color}')
|
|
|
|
|
|
|
|
logger.info(' '.join([r.rjust(3) for r in rarity[:7]]))
|
|
|
|
logger.info(' '.join([r.rjust(3) for r in rarity[7:]]))
|
|
|
|
|
|
|
|
selected = 0
|
|
|
|
for card, r in zip(cards, rarity):
|
|
|
|
if r in target_rarity:
|
|
|
|
self.device.click(CARD_GRIDS[card])
|
|
|
|
self.device.sleep((0.1, 0.15))
|
|
|
|
selected += 1
|
|
|
|
if selected >= amount:
|
|
|
|
break
|
|
|
|
return selected
|
|
|
|
|
|
|
|
def _retirement_set_sort_method(self, method):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
method (str): ASC for ascending, DESC for descending.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
bool: If method change.
|
|
|
|
"""
|
|
|
|
current = 'UNKNOWN'
|
|
|
|
self.device.screenshot()
|
|
|
|
if self.appear(SORT_ASC):
|
|
|
|
current = 'ASC'
|
|
|
|
if self.appear(SORT_DESC):
|
|
|
|
current = 'DESC'
|
|
|
|
|
|
|
|
logger.info(f'Current sorting: {current}')
|
|
|
|
if current != method:
|
|
|
|
logger.info(f'Sorting set to {method}')
|
2020-04-13 15:00:19 +00:00
|
|
|
self.device.click(SORTING_CLICK)
|
2020-06-01 00:20:13 +00:00
|
|
|
self.handle_dock_cards_loading()
|
2020-03-28 17:22:46 +00:00
|
|
|
self.device.screenshot()
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2020-04-03 06:09:04 +00:00
|
|
|
def _retirement_set_common_ship_filter(self, enable=False):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
enable (bool): If enable common_ship_filter
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
bool: If changed.
|
|
|
|
"""
|
|
|
|
# self.device.screenshot()
|
|
|
|
if self.appear(COMMON_SHIP_FILTER_ENABLE):
|
|
|
|
current = True
|
|
|
|
elif self.appear(COMMON_SHIP_FILTER_DISABLE):
|
|
|
|
current = False
|
|
|
|
else:
|
|
|
|
logger.warning('Common ship filter not detected, skipped')
|
|
|
|
return False
|
|
|
|
|
|
|
|
if current != enable:
|
|
|
|
logger.info(f'Common ship filter set to {enable}')
|
|
|
|
self.device.click(COMMON_SHIP_FILTER_ENABLE)
|
2020-06-01 00:20:13 +00:00
|
|
|
self.handle_dock_cards_loading()
|
2020-04-03 06:09:04 +00:00
|
|
|
self.device.screenshot()
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2020-03-28 17:22:46 +00:00
|
|
|
def _retirement_confirm(self):
|
|
|
|
executed = False
|
|
|
|
while 1:
|
|
|
|
self.device.screenshot()
|
2020-06-01 01:25:51 +00:00
|
|
|
if self.config.RETIRE_SR or self.config.RETIRE_SSR or self.config.RETIREMENT_METHOD == 'one_click_retire':
|
2020-04-13 15:00:19 +00:00
|
|
|
if self.handle_popup_confirm():
|
|
|
|
continue
|
2020-03-28 17:22:46 +00:00
|
|
|
if self.appear_then_click(SHIP_CONFIRM, offset=30, interval=2):
|
|
|
|
continue
|
|
|
|
if self.appear_then_click(SHIP_CONFIRM_2, offset=30, interval=2):
|
|
|
|
continue
|
|
|
|
if self.appear_then_click(EQUIP_CONFIRM, offset=30, interval=2):
|
|
|
|
continue
|
|
|
|
if self.appear_then_click(EQUIP_CONFIRM_2, offset=30, interval=2):
|
|
|
|
executed = True
|
|
|
|
continue
|
|
|
|
if self.appear(GET_ITEMS_1, interval=2):
|
|
|
|
self.device.click(GET_ITEMS_1_RETIREMENT_SAVE)
|
|
|
|
self.interval_reset(SHIP_CONFIRM)
|
|
|
|
continue
|
|
|
|
|
|
|
|
# End
|
|
|
|
if executed and self.appear(IN_RETIREMENT_CHECK):
|
|
|
|
# self._handle_retirement_cards_loading()
|
|
|
|
# self.device.screenshot()
|
|
|
|
self.handle_info_bar()
|
|
|
|
self.device.screenshot()
|
|
|
|
break
|
|
|
|
|
|
|
|
def retirement_appear(self):
|
|
|
|
return self.appear(RETIRE_APPEAR_1, offset=30) \
|
|
|
|
and self.appear(RETIRE_APPEAR_2, offset=30) \
|
|
|
|
and self.appear(RETIRE_APPEAR_3, offset=30)
|
|
|
|
|
Add: 适配第一章, 修复大量bug
- 修复处理夜间委托时, 出现递归调用的问题
- 增加红脸出击确认的功能
- 增加了透视识别错误图片保存的开关
- 修复了地图太小时, 透视识别报错的问题
- 修复了相机位于地图外时, 透视识别出错的问题
- 修复了离开退役时, 会连击的问题
- 修复了同时出现低心情和船坞已满弹窗时, 卡住的问题
- 更新了一键退役实装后的安全点击的位置
- 修复了换装滑动失败时, 卡住的问题
- 修复了关闭自动收获后, 出现委托完成的提示是, 进图卡住的问题
- 修复了, 无正在跑的委托时, 报错的问题
2020-04-11 07:23:51 +00:00
|
|
|
def _retirement_quit_check_func(self):
|
|
|
|
return not self.appear(IN_RETIREMENT_CHECK)
|
2020-03-28 17:22:46 +00:00
|
|
|
|
Add: 适配第一章, 修复大量bug
- 修复处理夜间委托时, 出现递归调用的问题
- 增加红脸出击确认的功能
- 增加了透视识别错误图片保存的开关
- 修复了地图太小时, 透视识别报错的问题
- 修复了相机位于地图外时, 透视识别出错的问题
- 修复了离开退役时, 会连击的问题
- 修复了同时出现低心情和船坞已满弹窗时, 卡住的问题
- 更新了一键退役实装后的安全点击的位置
- 修复了换装滑动失败时, 卡住的问题
- 修复了关闭自动收获后, 出现委托完成的提示是, 进图卡住的问题
- 修复了, 无正在跑的委托时, 报错的问题
2020-04-11 07:23:51 +00:00
|
|
|
def _retirement_quit(self):
|
|
|
|
self.ui_back(check_button=self._retirement_quit_check_func, skip_first_screenshot=True)
|
2020-03-28 17:22:46 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def _retire_rarity(self):
|
|
|
|
rarity = set()
|
|
|
|
if self.config.RETIRE_N:
|
|
|
|
rarity.add('N')
|
|
|
|
if self.config.RETIRE_R:
|
|
|
|
rarity.add('R')
|
|
|
|
if self.config.RETIRE_SR:
|
|
|
|
rarity.add('SR')
|
|
|
|
if self.config.RETIRE_SSR:
|
|
|
|
rarity.add('SSR')
|
|
|
|
return rarity
|
|
|
|
|
2020-06-01 00:20:13 +00:00
|
|
|
@Config.when(RETIREMENT_METHOD='one_click_retire')
|
2020-04-14 04:26:57 +00:00
|
|
|
def retire_ships(self, amount=None, rarity=None):
|
|
|
|
logger.hr('Retirement')
|
|
|
|
logger.info('Using one click retirement.')
|
|
|
|
if amount is None:
|
|
|
|
amount = self._retire_amount
|
|
|
|
end = False
|
|
|
|
total = 0
|
|
|
|
|
|
|
|
while 1:
|
|
|
|
self.handle_info_bar()
|
|
|
|
|
|
|
|
while 1:
|
|
|
|
self.device.screenshot()
|
|
|
|
if self.appear(SHIP_CONFIRM_2):
|
|
|
|
break
|
|
|
|
if self.info_bar_count():
|
|
|
|
logger.info('No more ships to retire.')
|
|
|
|
end = True
|
|
|
|
break
|
|
|
|
if self.appear_then_click(ONE_CLICK_RETIREMENT, interval=2):
|
|
|
|
continue
|
|
|
|
|
|
|
|
if end:
|
|
|
|
break
|
|
|
|
self._retirement_confirm()
|
|
|
|
total += 10
|
|
|
|
if total >= amount:
|
|
|
|
break
|
|
|
|
|
|
|
|
logger.info(f'Total retired round: {total // 10}')
|
|
|
|
return total
|
|
|
|
|
2020-06-01 00:20:13 +00:00
|
|
|
@Config.when(RETIREMENT_METHOD='old_retire')
|
2020-03-28 17:22:46 +00:00
|
|
|
def retire_ships(self, amount=None, rarity=None):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
amount (int): Amount of cards retire. 0 to 2000.
|
|
|
|
rarity (tuple(str)): Card rarity. N, R, SR, SSR.
|
2020-04-03 06:09:04 +00:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
int: Total retired.
|
2020-03-28 17:22:46 +00:00
|
|
|
"""
|
|
|
|
if amount is None:
|
|
|
|
amount = self._retire_amount
|
|
|
|
if rarity is None:
|
|
|
|
rarity = self._retire_rarity
|
|
|
|
logger.hr('Retirement')
|
|
|
|
logger.info(f'Amount={amount}. Rarity={rarity}')
|
|
|
|
self._retirement_set_sort_method('ASC')
|
2020-04-03 06:09:04 +00:00
|
|
|
self._retirement_set_common_ship_filter()
|
2020-03-28 17:22:46 +00:00
|
|
|
total = 0
|
|
|
|
|
|
|
|
while amount:
|
|
|
|
selected = self._retirement_choose(amount=10 if amount > 10 else amount, target_rarity=rarity)
|
|
|
|
total += selected
|
|
|
|
if selected == 0:
|
|
|
|
break
|
|
|
|
|
|
|
|
self._retirement_confirm()
|
|
|
|
|
|
|
|
amount -= selected
|
|
|
|
if amount <= 0:
|
|
|
|
break
|
|
|
|
|
|
|
|
self._retirement_set_sort_method('DESC')
|
|
|
|
logger.info(f'Total retired: {total}')
|
2020-04-03 06:09:04 +00:00
|
|
|
return total
|
2020-03-28 17:22:46 +00:00
|
|
|
|
2020-06-01 00:20:13 +00:00
|
|
|
def handle_retirement(self):
|
2020-03-28 17:22:46 +00:00
|
|
|
if not self.config.ENABLE_RETIREMENT:
|
|
|
|
return False
|
|
|
|
if not self.retirement_appear():
|
|
|
|
return False
|
|
|
|
|
2020-06-01 01:25:51 +00:00
|
|
|
if self._unable_to_enhance:
|
|
|
|
self.config.RETIREMENT_METHOD = 'one_click_retire'
|
|
|
|
total = self._retire_handler()
|
|
|
|
self.config.RETIREMENT_METHOD = 'enhance'
|
|
|
|
self._unable_to_enhance = False
|
|
|
|
if not total:
|
|
|
|
logger.warning('No ship retired, exit')
|
2020-06-01 12:22:04 +00:00
|
|
|
logger.info('This may happens because wrong options of one click retirement in game')
|
|
|
|
exit(1)
|
2020-06-01 01:25:51 +00:00
|
|
|
elif 'retire' in self.config.RETIREMENT_METHOD or self._unable_to_enhance:
|
|
|
|
total = self._retire_handler()
|
|
|
|
self._unable_to_enhance = False
|
|
|
|
if not total:
|
|
|
|
logger.warning('No ship retired, exit')
|
2020-06-01 12:22:04 +00:00
|
|
|
logger.info('This may happens because some filters are set in dock')
|
|
|
|
exit(1)
|
2020-06-01 00:20:13 +00:00
|
|
|
else:
|
2020-06-01 01:25:51 +00:00
|
|
|
total = self._enhance_handler()
|
|
|
|
if not total:
|
|
|
|
logger.info('No ship to enhance, but dock full, will try retire')
|
|
|
|
self._unable_to_enhance = True
|
|
|
|
|
|
|
|
return True
|
2020-06-01 00:20:13 +00:00
|
|
|
|
|
|
|
def _retire_handler(self):
|
2020-03-28 17:22:46 +00:00
|
|
|
self.ui_click(RETIRE_APPEAR_1, check_button=IN_RETIREMENT_CHECK, skip_first_screenshot=True)
|
2020-06-01 00:20:13 +00:00
|
|
|
self.handle_dock_cards_loading()
|
2020-03-28 17:22:46 +00:00
|
|
|
|
2020-06-01 00:20:13 +00:00
|
|
|
total = self.retire_ships()
|
2020-03-28 17:22:46 +00:00
|
|
|
|
|
|
|
self._retirement_quit()
|
2020-04-01 04:55:17 +00:00
|
|
|
self.config.DOCK_FULL_TRIGGERED = True
|
2020-04-03 06:09:04 +00:00
|
|
|
|
2020-06-01 01:25:51 +00:00
|
|
|
return total
|