fishyboteso/fishy/gui/config_top.py

112 lines
3.9 KiB
Python
Raw Normal View History

2020-10-18 13:53:46 +00:00
import logging
import os
import typing
2020-10-18 13:53:46 +00:00
from tkinter.filedialog import askopenfilename
2020-10-18 00:54:48 +00:00
from fishy.helper import helper
from fishy import web
from tkinter import *
from tkinter.ttk import *
2020-10-17 19:06:07 +00:00
from fishy.helper.config import config
from fishy.helper.popup import PopUp
if typing.TYPE_CHECKING:
from fishy.gui import GUI
def start_fullfisher_config(gui: 'GUI'):
2020-10-18 00:54:48 +00:00
top = PopUp(helper.empty_function, gui._root, background=gui._root["background"])
controls_frame = Frame(top)
top.title("Config")
def file_name():
file = config.get("full_auto_rec_file", None)
if file is None:
return "Not Selected"
return os.path.basename(file)
2020-10-18 13:53:46 +00:00
def select_file():
file = askopenfilename(filetypes=[('Python Files', '*.fishy')])
if not file:
logging.error("file not selected")
else:
config.set("full_auto_rec_file", file)
logging.info(f"loaded {file}")
file_name_label.set(file_name())
file_name_label = StringVar(value=file_name())
Label(controls_frame, textvariable=file_name_label).grid(row=0, column=0)
Button(controls_frame, text="Select fishy file", command=select_file).grid(row=0, column=1)
Label(controls_frame, text="Use semi-fisher config for rest").grid(row=2, column=0, columnspan=2)
controls_frame.pack(padx=(5, 5), pady=(5, 5))
top.start()
def start_semifisher_config(gui: 'GUI'):
def save():
2020-10-17 19:06:07 +00:00
gui.config.set("action_key", action_key_entry.get(), False)
2020-12-07 15:36:15 +00:00
gui.config.set("collect_key", collect_key_entry.get(), False)
2020-10-17 19:06:07 +00:00
gui.config.set("borderless", borderless.instate(['selected']), False)
gui.config.set("jitter", jitter.instate(['selected']), False)
2020-10-17 19:06:07 +00:00
gui.config.set("sound_notification", sound.instate(['selected']), False)
gui.config.save_config()
2020-10-29 21:24:52 +00:00
def toggle_sub():
2021-03-26 11:19:09 +00:00
if web.is_subbed()[0]:
if web.unsub():
2020-10-29 21:24:52 +00:00
gui._notify.set(0)
else:
if web.sub():
2020-10-29 21:24:52 +00:00
gui._notify.set(1)
2020-12-15 18:15:50 +00:00
def del_entry_key(event):
event.widget.delete(0,"end")
event.widget.insert(0, str(event.char))
top = PopUp(save, gui._root, background=gui._root["background"])
controls_frame = Frame(top)
top.title("Config")
Label(controls_frame, text="Notification:").grid(row=0, column=0)
gui._notify = IntVar(0)
2020-10-29 21:24:52 +00:00
gui._notify_check = Checkbutton(controls_frame, command=toggle_sub, variable=gui._notify)
gui._notify_check.grid(row=0, column=1)
gui._notify_check['state'] = DISABLED
is_subbed = web.is_subbed()
if is_subbed[1]:
gui._notify_check['state'] = NORMAL
gui._notify.set(is_subbed[0])
Label(controls_frame, text="Fullscreen: ").grid(row=1, column=0, pady=(5, 5))
2020-10-17 19:06:07 +00:00
borderless = Checkbutton(controls_frame, var=BooleanVar(value=config.get("borderless")))
borderless.grid(row=1, column=1)
Label(controls_frame, text="Action Key:").grid(row=2, column=0)
action_key_entry = Entry(controls_frame, justify=CENTER)
action_key_entry.grid(row=2, column=1)
2020-10-17 19:06:07 +00:00
action_key_entry.insert(0, config.get("action_key", "e"))
action_key_entry.bind("<KeyRelease>", del_entry_key)
2020-12-07 15:36:15 +00:00
Label(controls_frame, text="Looting Key:").grid(row=4, column=0, pady=(5, 5))
2020-12-07 15:36:15 +00:00
collect_key_entry = Entry(controls_frame, justify=CENTER)
collect_key_entry.grid(row=4, column=1, pady=(5, 5))
2020-12-07 15:36:15 +00:00
collect_key_entry.insert(0, config.get("collect_key", "r"))
collect_key_entry.bind("<KeyRelease>", del_entry_key)
2020-12-07 15:36:15 +00:00
Label(controls_frame, text="Sound Notification: ").grid(row=5, column=0, pady=(5, 5))
2020-10-17 19:06:07 +00:00
sound = Checkbutton(controls_frame, var=BooleanVar(value=config.get("sound_notification")))
2020-12-07 15:36:15 +00:00
sound.grid(row=5, column=1)
2020-12-13 19:13:15 +00:00
Label(controls_frame, text="Human-Like Delay: ").grid(row=6, column=0, pady=(5, 5))
jitter = Checkbutton(controls_frame, var=BooleanVar(value=config.get("jitter")))
2020-12-13 19:13:15 +00:00
jitter.grid(row=6, column=1)
controls_frame.pack(padx=(5, 5), pady=(5, 5))
top.start()