StarRailCopilot/module/device/device.py

43 lines
1.1 KiB
Python
Raw Normal View History

from datetime import datetime, time
from module.device.app import AppControl
2020-03-28 17:22:46 +00:00
from module.device.control import Control
from module.device.screenshot import Screenshot
from module.handler.assets import GET_MISSION
from module.logger import logger
2020-03-28 17:22:46 +00:00
class Device(Screenshot, Control, AppControl):
2020-05-05 14:04:36 +00:00
def handle_night_commission(self, hour=21, threshold=30):
"""
Args:
hour (int): Hour that night commission refresh.
threshold (int): Seconds around refresh time.
Returns:
bool: If handled.
"""
now = datetime.now().time()
if now < time(hour - 1, 59, 60 - threshold):
return False
if now > time(hour, 0, threshold):
return False
2020-05-05 14:04:36 +00:00
if GET_MISSION.match(self.image, offset=True):
logger.info('Night commission appear.')
self.click(GET_MISSION)
return True
2020-05-05 14:04:36 +00:00
return False
def screenshot(self):
"""
Returns:
PIL.Image.Image:
"""
2020-05-05 14:04:36 +00:00
super().screenshot()
if self.handle_night_commission():
super().screenshot()
2020-05-05 14:04:36 +00:00
return self.image