StarRailCopilot/module/base/button.py

153 lines
5.1 KiB
Python
Raw Normal View History

2020-03-28 17:22:46 +00:00
import os
import traceback
import cv2
from PIL import Image
2020-05-25 14:05:42 +00:00
import module.config.server as server
2020-03-28 17:22:46 +00:00
from module.base.utils import *
class Button:
def __init__(self, area, color, button, file=None, name=None):
"""Initialize a Button instance.
Args:
2020-05-25 14:05:42 +00:00
area (dict[tuple], tuple): Area that the button would appear on the image.
2020-03-28 17:22:46 +00:00
(upper_left_x, upper_left_y, bottom_right_x, bottom_right_y)
2020-05-25 14:05:42 +00:00
color (dict[tuple], tuple): Color we expect the area would be.
2020-03-28 17:22:46 +00:00
(r, g, b)
2020-05-25 14:05:42 +00:00
button (dict[tuple], tuple): Area to be click if button appears on the image.
2020-03-28 17:22:46 +00:00
(upper_left_x, upper_left_y, bottom_right_x, bottom_right_y)
If tuple is empty, this object can be use as a checker.
Examples:
BATTLE_PREPARATION = Button(
area=(1562, 908, 1864, 1003),
color=(231, 181, 90),
button=(1562, 908, 1864, 1003)
)
"""
2020-05-25 14:05:42 +00:00
self.server = server.server
self.area = area[self.server] if isinstance(area, dict) else area
self.color = color[self.server] if isinstance(color, dict) else color
self._button = button[self.server] if isinstance(button, dict) else button
2020-03-28 17:22:46 +00:00
self._button_offset = None
self._match_init = False
2020-05-25 14:05:42 +00:00
self.file = file[self.server] if isinstance(file, dict) else file
2020-03-28 17:22:46 +00:00
self.image = None
2020-05-25 14:05:42 +00:00
if self.file:
self.name = os.path.splitext(os.path.split(self.file)[1])[0]
2020-03-28 17:22:46 +00:00
elif name:
self.name = name
else:
(filename, line_number, function_name, text) = traceback.extract_stack()[-2]
self.name = text[:text.find('=')].strip()
def __str__(self):
return self.name
__repr__ = __str__
def __eq__(self, other):
return str(self) == str(other)
@property
def button(self):
if self._button_offset is None:
return self._button
else:
return self._button_offset
def appear_on(self, image, threshold=10):
"""Check if the button appears on the image.
Args:
image (PIL.Image.Image): Screenshot.
threshold (int): Default to 10.
Returns:
bool: True if button appears on screenshot.
"""
return color_similar(
color1=get_color(image, self.area),
color2=self.color,
threshold=threshold
)
def load_color(self, image):
"""Load color from the specific area of the given image.
This method is irreversible, this would be only use in some special occasion.
Args:
image: Another screenshot.
2020-03-28 17:22:46 +00:00
Returns:
tuple: Color (r, g, b).
"""
self.color = get_color(image, self.area)
self.image = np.array(image.crop(self.area))
return self.color
2020-03-28 17:22:46 +00:00
def ensure_template(self):
"""
Load asset image.
If needs to call self.match, call this first.
"""
if not self._match_init:
self.image = np.array(Image.open(self.file).crop(self.area).convert('RGB'))
self._match_init = True
def match(self, image, offset=30, threshold=0.85):
"""Detects button by template matching. To Some button, its location may not be static.
Args:
image: Screenshot.
offset (int, tuple): Detection area offset.
threshold (float): 0-1. Similarity.
Returns:
bool.
"""
self.ensure_template()
if isinstance(offset, tuple):
offset = np.array((-offset[0], -offset[1], offset[0], offset[1]))
else:
offset = np.array((0, -offset, 0, offset))
# offset = np.array((0, -offset, 0, offset))
# offset = np.array((-offset, -offset, offset, offset))
image = np.array(image.crop(offset + self.area))
res = cv2.matchTemplate(self.image, image, cv2.TM_CCOEFF_NORMED)
_, similarity, _, point = cv2.minMaxLoc(res)
self._button_offset = area_offset(self._button, offset[:2] + np.array(point))
return similarity > threshold
class ButtonGrid:
def __init__(self, origin, delta, button_shape, grid_shape, name=None):
self.origin = np.array(origin)
self.delta = np.array(delta)
self.button_shape = np.array(button_shape)
self.grid_shape = np.array(grid_shape)
if name:
self._name = name
else:
(filename, line_number, function_name, text) = traceback.extract_stack()[-2]
self._name = text[:text.find('=')].strip()
def __getitem__(self, item):
base = np.round(np.array(item) * self.delta + self.origin).astype(int)
area = tuple(np.append(base, base + self.button_shape))
return Button(area=area, color=(), button=area, name='%s_%s_%s' % (self._name, item[0], item[1]))
def generate(self):
for y in range(self.grid_shape[1]):
for x in range(self.grid_shape[0]):
yield x, y, self[x, y]
def buttons(self):
return list([button for _, _, button in self.generate()])