2019-02-07 22:03:28 +00:00
|
|
|
"""Fishy
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
fishy.py -h | --help
|
|
|
|
fishy.py -v | --version
|
2019-06-19 09:28:18 +00:00
|
|
|
fishy.py [--debug] [--ip=<ipv4>] [--hook-threshold=<int>] [--check-frequency=<hz>] [--collect-r]
|
2019-02-07 22:03:28 +00:00
|
|
|
|
|
|
|
Options:
|
|
|
|
-h, --help Show this screen.
|
|
|
|
-v, --version Show version.
|
|
|
|
--ip=<ipv4> Local Ip Address of the android phone.
|
2019-02-15 13:44:49 +00:00
|
|
|
--hook-threshold=<int> Threshold amount for classifier after which label changes [default: 1].
|
|
|
|
--check-frequency=<hz> Sleep after loop in s [default: 1].
|
|
|
|
--debug Start program in debug controls.
|
2019-02-07 22:03:28 +00:00
|
|
|
"""
|
|
|
|
|
2019-02-16 11:32:20 +00:00
|
|
|
VERSION = "0.1.1"
|
2019-02-07 22:03:28 +00:00
|
|
|
print("Fishy " + VERSION + " for Elder Scrolls Online")
|
|
|
|
|
|
|
|
try:
|
|
|
|
from docopt import docopt
|
|
|
|
|
|
|
|
arguments = docopt(__doc__)
|
|
|
|
if arguments["--version"]:
|
|
|
|
quit()
|
|
|
|
|
|
|
|
print("Loading, Please Wait...")
|
|
|
|
import imutils as imutils
|
|
|
|
import numpy as np
|
|
|
|
from PIL import ImageGrab
|
|
|
|
import cv2
|
|
|
|
import pyautogui
|
|
|
|
import time
|
|
|
|
import fishy_network as net
|
|
|
|
from pynput.keyboard import Key, Listener
|
|
|
|
from decimal import Decimal
|
|
|
|
from win32api import GetSystemMetrics
|
|
|
|
import pickle
|
|
|
|
import win32gui
|
2019-02-15 13:44:49 +00:00
|
|
|
import pywintypes
|
2019-02-07 22:03:28 +00:00
|
|
|
from abc import ABC, abstractmethod
|
2019-02-15 13:44:49 +00:00
|
|
|
from enum import Enum
|
|
|
|
import sys
|
|
|
|
import numpy as np
|
|
|
|
import math
|
2019-02-07 22:03:28 +00:00
|
|
|
except Exception:
|
|
|
|
raise
|
|
|
|
|
2019-02-15 13:44:49 +00:00
|
|
|
'''
|
|
|
|
import stack
|
|
|
|
|
|
|
|
fishy
|
|
|
|
pixel_loc
|
|
|
|
fishing_event
|
|
|
|
fishing_mode
|
|
|
|
window
|
|
|
|
log
|
|
|
|
controls
|
|
|
|
init
|
|
|
|
'''
|
|
|
|
|
2019-02-07 22:03:28 +00:00
|
|
|
|
|
|
|
class G:
|
2019-02-16 11:32:20 +00:00
|
|
|
"""
|
|
|
|
Initialize global variables
|
|
|
|
"""
|
2019-02-07 22:03:28 +00:00
|
|
|
fishCaught = 0
|
2019-06-19 09:28:18 +00:00
|
|
|
totalFishCaught = 0
|
2019-02-07 22:03:28 +00:00
|
|
|
stickInitTime = 0
|
|
|
|
stop = False
|
|
|
|
pause = True
|
|
|
|
debug = False
|
2019-02-16 11:32:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
"""Helper functions"""
|
2019-02-07 22:03:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
def round_float(v, ndigits=2, rt_str=False):
|
|
|
|
d = Decimal(v)
|
|
|
|
v_str = ("{0:.%sf}" % ndigits).format(round(d, ndigits))
|
|
|
|
if rt_str:
|
|
|
|
return v_str
|
|
|
|
return Decimal(v_str)
|
2019-02-15 13:44:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
def draw_keypoints(vis, keypoints, color=(0, 0, 255)):
|
|
|
|
for kp in keypoints:
|
2019-02-16 11:32:20 +00:00
|
|
|
x, y = kp.pt
|
|
|
|
cv2.circle(vis, (int(x), int(y)), 5, color, -1)
|
|
|
|
|
|
|
|
# np.set_printoptions(threshold=sys.maxsize)
|