mirror of
https://github.com/fishyboteso/fishyboteso.git
synced 2024-08-30 18:32:13 +00:00
6a708e55e6
- moved config to documents - reduced readme - updated requirements - action key implemented - when non saved config is get for the first time, default is saved - added icon - added unhandled exception logging - added debug mode - made dark mode and debug mode check buttons instead of command - created manifest - moved addon to a zip
134 lines
3.6 KiB
Python
134 lines
3.6 KiB
Python
import logging
|
|
import os
|
|
import shutil
|
|
import sys
|
|
import threading
|
|
import traceback
|
|
import webbrowser
|
|
from decimal import Decimal
|
|
from threading import Thread
|
|
from zipfile import ZipFile
|
|
|
|
import cv2
|
|
import numpy as np
|
|
from uuid import uuid1
|
|
from hashlib import md5
|
|
|
|
import requests
|
|
|
|
import fishy
|
|
from fishy.systems.config import Config
|
|
import functools
|
|
|
|
|
|
def round_float(v, ndigits=2, rt_str=False):
|
|
"""
|
|
Rounds float
|
|
:param v: float ot round off
|
|
:param ndigits: round off to ndigits decimal points
|
|
:param rt_str: true to return string
|
|
:return: rounded float or strings
|
|
"""
|
|
d = Decimal(v)
|
|
v_str = ("{0:.%sf}" % ndigits).format(round(d, ndigits))
|
|
if rt_str:
|
|
return v_str
|
|
return Decimal(v_str)
|
|
|
|
|
|
def draw_keypoints(vis, keypoints, color=(0, 0, 255)):
|
|
"""
|
|
draws a point on cv2 image array
|
|
:param vis: cv2 image array to draw
|
|
:param keypoints: keypoints array to draw
|
|
:param color: color of the point
|
|
"""
|
|
for kp in keypoints:
|
|
x, y = kp.pt
|
|
cv2.circle(vis, (int(x), int(y)), 5, color, -1)
|
|
|
|
|
|
def enable_full_array_printing():
|
|
"""
|
|
Used to enable full array logging
|
|
(summarized arrays are printed by default)
|
|
"""
|
|
np.set_printoptions(threshold=sys.maxsize)
|
|
|
|
|
|
def open_web(website):
|
|
logging.debug("opening web, please wait...")
|
|
Thread(target=lambda: webbrowser.open(website, new=2)).start()
|
|
|
|
|
|
def disable_logging(func):
|
|
@functools.wraps(func)
|
|
def wrapper(*args, **kwargs):
|
|
logging.disable(logging.DEBUG)
|
|
result = func(*args, **kwargs)
|
|
logging.disable(logging.NOTSET)
|
|
return result
|
|
|
|
return wrapper
|
|
|
|
|
|
@disable_logging
|
|
def req(config: Config, data):
|
|
url = 'https://dcserver1.herokuapp.com/fishy'
|
|
h = config.get("hash", md5(str(uuid1()).encode()).hexdigest())
|
|
body = {"hash": h, "data": data}
|
|
requests.post(url, json=body)
|
|
|
|
|
|
def ping(config: Config, data):
|
|
if config.get("check", True, False):
|
|
threading.Thread(target=req, args=(config, data,)).start()
|
|
|
|
|
|
def install_thread_excepthook():
|
|
"""
|
|
Workaround for sys.excepthook thread bug
|
|
https://bugs.python.org/issue1230540
|
|
(https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1230540&group_id=5470).
|
|
Call once from __main__ before creating any threads.
|
|
If using psyco, call psycho.cannotcompile(threading.Thread.run)
|
|
since this replaces a new-style class method.
|
|
"""
|
|
import sys
|
|
run_old = threading.Thread.run
|
|
|
|
def run(*args, **kwargs):
|
|
try:
|
|
run_old(*args, **kwargs)
|
|
except (KeyboardInterrupt, SystemExit):
|
|
raise
|
|
except:
|
|
sys.excepthook(*sys.exc_info())
|
|
|
|
threading.Thread.run = run
|
|
|
|
|
|
def unhandled_exception_logging(*exc_info):
|
|
text = "".join(traceback.format_exception(*exc_info))
|
|
logging.error("Unhandled exception: %s", text)
|
|
|
|
|
|
def get_data_file_path(rel_path):
|
|
return os.path.join(os.path.dirname(fishy.__file__), rel_path)
|
|
|
|
|
|
def create_shortcut():
|
|
desktop = os.path.expanduser(r"~/Desktop/")
|
|
shutil.copy(get_data_file_path('FishybotESO.lnk'), os.path.join(desktop, "Fishybot ESO.lnk"))
|
|
logging.info("Shortcut created")
|
|
|
|
|
|
def check_addon():
|
|
addon_dir = os.path.expanduser(r"~/Documents/Elder Scrolls Online/live/Addons")
|
|
folder_path = os.path.join(addon_dir, 'ProvisionsChalutier')
|
|
if not os.path.exists(folder_path):
|
|
logging.info("Addon not found, installing it...")
|
|
with ZipFile(get_data_file_path("ProvisionsChalutier.zip"), 'r') as zip:
|
|
zip.extractall(path=addon_dir)
|
|
logging.info("Please make sure you enable \"Allow outdated addons\" in-game")
|