fishyboteso/fishy/helper/hotkey.py
Adam Saudagar 2893b2270c full auto engine done
- semi fisher, calls last event when subscribed
- corrected ping pong logic
- f8 to stop player
- save coods image if not able to read for debug purpose
- created better controls
2020-10-18 03:34:25 +05:30

40 lines
667 B
Python

from enum import Enum
from threading import Thread
from typing import Dict, Callable
import keyboard
from fishy.helper import helper
class Key(Enum):
F9 = "f9"
F10 = "f10"
F8 = "f8"
F7 = "f7"
UP = "up"
DOWN = "down"
LEFT = "left"
RIGHT = "right"
_hotkeys: Dict[Key, Callable] = {}
def _run_callback(k):
return lambda: Thread(target=_hotkeys[k]).start()
def initalize():
for k in Key:
_hotkeys[k] = helper.empty_function
keyboard.add_hotkey(k.value, _run_callback(k))
def set_hotkey(key: Key, func: Callable):
_hotkeys[key] = func
def free_key(k: Key):
set_hotkey(k, helper.empty_function)