2020-10-15 01:26:31 +00:00
|
|
|
import logging
|
2021-05-09 07:05:51 +00:00
|
|
|
import math
|
2020-10-15 01:26:31 +00:00
|
|
|
import time
|
2021-05-12 15:14:55 +00:00
|
|
|
import typing
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2020-11-07 16:40:57 +00:00
|
|
|
import cv2
|
|
|
|
import numpy as np
|
|
|
|
|
2021-05-02 16:49:44 +00:00
|
|
|
if typing.TYPE_CHECKING:
|
|
|
|
from fishy.engine.fullautofisher.engine import FullAuto
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2021-05-02 16:49:44 +00:00
|
|
|
from fishy.engine.fullautofisher.mode.imode import IMode
|
2020-10-15 01:26:31 +00:00
|
|
|
from pynput import keyboard, mouse
|
|
|
|
|
2020-10-17 19:06:07 +00:00
|
|
|
from fishy.helper.config import config
|
2020-10-15 01:26:31 +00:00
|
|
|
|
|
|
|
mse = mouse.Controller()
|
|
|
|
kb = keyboard.Controller()
|
|
|
|
|
2020-11-07 16:40:57 +00:00
|
|
|
offset = 0
|
|
|
|
|
|
|
|
|
|
|
|
def get_crop_coods(window):
|
|
|
|
img = window.get_capture()
|
|
|
|
img = cv2.inRange(img, 0, 1)
|
|
|
|
|
|
|
|
cnt, h = cv2.findContours(img, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
|
|
|
|
|
|
|
|
"""
|
|
|
|
code from https://stackoverflow.com/a/45770227/4512396
|
|
|
|
"""
|
|
|
|
for i in range(len(cnt)):
|
|
|
|
area = cv2.contourArea(cnt[i])
|
|
|
|
if 5000 < area < 100000:
|
|
|
|
mask = np.zeros_like(img)
|
|
|
|
cv2.drawContours(mask, cnt, i, 255, -1)
|
|
|
|
x, y, w, h = cv2.boundingRect(cnt[i])
|
|
|
|
return x, y + offset, x + w, y + h - offset
|
|
|
|
|
|
|
|
|
|
|
|
def _update_factor(key, value):
|
|
|
|
full_auto_factors = config.get("full_auto_factors", {})
|
|
|
|
full_auto_factors[key] = value
|
|
|
|
config.set("full_auto_factors", full_auto_factors)
|
|
|
|
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2020-11-07 16:40:57 +00:00
|
|
|
def _get_factor(key):
|
2020-11-30 21:04:33 +00:00
|
|
|
return config.get("full_auto_factors", {}).get(key)
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2020-11-07 16:40:57 +00:00
|
|
|
|
2021-05-02 16:49:44 +00:00
|
|
|
class Calibrator(IMode):
|
|
|
|
def __init__(self, engine: 'FullAuto'):
|
2020-10-15 03:19:08 +00:00
|
|
|
self._callibrate_state = -1
|
|
|
|
self.engine = engine
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2020-11-07 16:40:57 +00:00
|
|
|
@property
|
|
|
|
def move_factor(self):
|
|
|
|
return _get_factor("move_factor")
|
|
|
|
|
|
|
|
@property
|
|
|
|
def rot_factor(self):
|
|
|
|
return _get_factor("rot_factor")
|
|
|
|
|
|
|
|
# endregion
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2021-05-02 18:39:33 +00:00
|
|
|
def all_calibrated(self):
|
|
|
|
return self.move_factor is not None and \
|
|
|
|
self.rot_factor is not None and \
|
|
|
|
self.move_factor != 0 and \
|
|
|
|
self.rot_factor != 0
|
2020-11-07 16:40:57 +00:00
|
|
|
|
|
|
|
def toggle_show(self):
|
|
|
|
self.engine.show_crop = not self.engine.show_crop
|
|
|
|
|
2021-04-17 16:31:19 +00:00
|
|
|
def _walk_calibrate(self):
|
2020-10-15 03:19:08 +00:00
|
|
|
walking_time = 3
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2022-02-01 11:27:14 +00:00
|
|
|
coords = self.engine.get_coords()
|
|
|
|
if coords is None:
|
2020-10-15 03:19:08 +00:00
|
|
|
return
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2022-02-01 11:27:14 +00:00
|
|
|
x1, y1, rot1 = coords
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2020-10-15 03:19:08 +00:00
|
|
|
kb.press('w')
|
|
|
|
time.sleep(walking_time)
|
|
|
|
kb.release('w')
|
|
|
|
time.sleep(0.5)
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2022-02-01 11:27:14 +00:00
|
|
|
coords = self.engine.get_coords()
|
|
|
|
if coords is None:
|
2020-10-15 03:19:08 +00:00
|
|
|
return
|
2022-02-01 11:27:14 +00:00
|
|
|
x2, y2, rot2 = coords
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2020-11-07 16:40:57 +00:00
|
|
|
move_factor = math.sqrt((x2 - x1) ** 2 + (y2 - y1) ** 2) / walking_time
|
|
|
|
_update_factor("move_factor", move_factor)
|
2022-02-01 11:27:14 +00:00
|
|
|
logging.info(f"walk calibrate done, move_factor: {move_factor}")
|
2020-11-07 16:40:57 +00:00
|
|
|
|
2021-04-17 16:31:19 +00:00
|
|
|
def _rotate_calibrate(self):
|
2021-05-02 16:49:44 +00:00
|
|
|
from fishy.engine.fullautofisher.engine import FullAuto
|
|
|
|
|
2020-11-07 16:40:57 +00:00
|
|
|
rotate_times = 50
|
|
|
|
|
2021-05-15 12:20:38 +00:00
|
|
|
coods = self.engine.get_coords()
|
2020-11-07 16:40:57 +00:00
|
|
|
if coods is None:
|
|
|
|
return
|
|
|
|
_, _, rot2 = coods
|
|
|
|
|
2020-10-15 03:19:08 +00:00
|
|
|
for _ in range(rotate_times):
|
|
|
|
mse.move(FullAuto.rotate_by, 0)
|
|
|
|
time.sleep(0.05)
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2021-05-15 12:20:38 +00:00
|
|
|
coods = self.engine.get_coords()
|
2020-10-15 03:19:08 +00:00
|
|
|
if coods is None:
|
|
|
|
return
|
|
|
|
x3, y3, rot3 = coods
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2020-10-15 03:19:08 +00:00
|
|
|
if rot3 > rot2:
|
|
|
|
rot3 -= 360
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2020-10-15 03:19:08 +00:00
|
|
|
rot_factor = (rot3 - rot2) / rotate_times
|
2020-11-07 16:40:57 +00:00
|
|
|
_update_factor("rot_factor", rot_factor)
|
2022-02-01 11:27:14 +00:00
|
|
|
logging.info(f"rotate calibrate done, rot_factor: {rot_factor}")
|
2020-10-15 01:26:31 +00:00
|
|
|
|
2021-05-02 16:49:44 +00:00
|
|
|
def run(self):
|
2021-04-17 16:31:19 +00:00
|
|
|
self._walk_calibrate()
|
|
|
|
self._rotate_calibrate()
|
2021-05-02 16:49:44 +00:00
|
|
|
config.set("calibrate", False)
|
|
|
|
logging.info("calibration done")
|