StarRailCopilot/tasks/combat/prepare.py

61 lines
1.8 KiB
Python
Raw Normal View History

2023-06-16 19:15:26 +00:00
from module.base.timer import Timer
from module.ocr.ocr import Digit, DigitCounter
2023-06-15 14:12:47 +00:00
from tasks.base.ui import UI
from tasks.combat.assets.assets_combat_prepare import (
OCR_TRAILBLAZE_POWER,
OCR_WAVE_COUNT,
WAVE_MINUS,
WAVE_PLUS
)
2023-06-15 14:12:47 +00:00
class CombatPrepare(UI):
def combat_set_wave(self, count=6):
"""
Args:
count: 1 to 6
Pages:
in: COMBAT_PREPARE
2023-06-15 14:12:47 +00:00
"""
self.ui_ensure_index(
count, letter=Digit(OCR_WAVE_COUNT),
2023-06-15 14:12:47 +00:00
next_button=WAVE_PLUS, prev_button=WAVE_MINUS,
skip_first_screenshot=True
)
2023-06-16 19:15:26 +00:00
def combat_has_multi_wave(self) -> bool:
"""
2023-06-16 19:15:26 +00:00
If combat has waves to set.
Most dungeons can do 6 times at one time while bosses don't.
"""
return self.appear(WAVE_MINUS) or self.appear(WAVE_PLUS)
def combat_get_trailblaze_power(self, expect_reduce=False, skip_first_screenshot=True) -> int:
"""
Args:
expect_reduce: Current value is supposed to be lower than the previous.
skip_first_screenshot:
Pages:
in: COMBAT_PREPARE or COMBAT_REPEAT
"""
2023-06-16 19:15:26 +00:00
timeout = Timer(1, count=2).start()
while 1:
if skip_first_screenshot:
skip_first_screenshot = False
else:
self.device.screenshot()
current, _, _ = DigitCounter(OCR_TRAILBLAZE_POWER).ocr_single_line(self.device.image)
# Confirm if it is > 180, sometimes just OCR errors
if current > 180 and timeout.reached():
break
if expect_reduce and current >= self.state.TrailblazePower:
continue
if current <= 180:
break
self.state.TrailblazePower = current
return current