2020-05-05 15:11:00 +00:00
|
|
|
import ctypes
|
2020-04-19 11:52:42 +00:00
|
|
|
import logging
|
2020-05-05 15:11:00 +00:00
|
|
|
import os
|
2020-04-19 11:52:42 +00:00
|
|
|
import sys
|
2021-05-09 07:05:51 +00:00
|
|
|
|
2020-04-19 11:52:42 +00:00
|
|
|
import win32con
|
|
|
|
import win32gui
|
2020-04-18 11:32:14 +00:00
|
|
|
|
2020-04-19 11:52:42 +00:00
|
|
|
import fishy
|
2022-02-02 23:45:00 +00:00
|
|
|
from fishy.gui import GUI, splash, update_dialog, check_eula
|
|
|
|
from fishy import helper, web
|
2020-10-17 10:52:04 +00:00
|
|
|
from fishy.engine.common.event_handler import EngineEventHandler
|
2022-02-02 23:45:00 +00:00
|
|
|
from fishy.gui.log_config import GuiLogger
|
|
|
|
from fishy.helper import hotkey
|
2021-05-16 03:04:35 +00:00
|
|
|
from fishy.helper.active_poll import active
|
2020-10-17 19:06:07 +00:00
|
|
|
from fishy.helper.config import config
|
2021-05-15 22:40:48 +00:00
|
|
|
from fishy.helper.hotkey.hotkey_process import hotkey
|
2021-11-21 11:00:41 +00:00
|
|
|
from fishy.helper.migration import Migration
|
2023-02-21 17:31:31 +00:00
|
|
|
from fishy.osservices.os_services import os_services
|
2020-04-27 21:19:30 +00:00
|
|
|
|
|
|
|
|
2020-06-27 15:23:32 +00:00
|
|
|
def check_window_name(title):
|
|
|
|
titles = ["Command Prompt", "PowerShell", "Fishy"]
|
|
|
|
for t in titles:
|
|
|
|
if t in title:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2020-05-14 02:03:13 +00:00
|
|
|
# noinspection PyBroadException
|
2020-10-17 19:06:07 +00:00
|
|
|
def initialize(window_to_hide):
|
2021-11-21 11:00:41 +00:00
|
|
|
Migration.migrate()
|
|
|
|
|
2020-10-17 19:06:07 +00:00
|
|
|
helper.create_shortcut_first()
|
2020-04-19 11:52:42 +00:00
|
|
|
|
2020-10-17 19:06:07 +00:00
|
|
|
new_session = web.get_session()
|
2022-02-02 22:17:35 +00:00
|
|
|
|
2020-05-05 12:55:06 +00:00
|
|
|
if new_session is None:
|
|
|
|
logging.error("Couldn't create a session, some features might not work")
|
2022-02-02 22:39:39 +00:00
|
|
|
logging.debug(f"created session {new_session}")
|
2020-05-05 12:55:06 +00:00
|
|
|
|
2020-05-05 15:11:00 +00:00
|
|
|
try:
|
|
|
|
is_admin = os.getuid() == 0
|
|
|
|
except AttributeError:
|
|
|
|
is_admin = ctypes.windll.shell32.IsUserAnAdmin() != 0
|
2020-06-03 01:41:54 +00:00
|
|
|
if is_admin:
|
2020-05-05 15:11:00 +00:00
|
|
|
logging.info("Running with admin privileges")
|
|
|
|
|
2020-10-17 19:06:07 +00:00
|
|
|
if not config.get("debug", False) and check_window_name(win32gui.GetWindowText(window_to_hide)):
|
2020-05-14 02:03:13 +00:00
|
|
|
win32gui.ShowWindow(window_to_hide, win32con.SW_HIDE)
|
2020-04-19 11:52:42 +00:00
|
|
|
helper.install_thread_excepthook()
|
|
|
|
sys.excepthook = helper.unhandled_exception_logging
|
|
|
|
|
2021-11-21 11:00:41 +00:00
|
|
|
helper.install_required_addons()
|
2020-06-25 01:22:39 +00:00
|
|
|
|
2020-04-20 19:46:12 +00:00
|
|
|
|
2020-04-19 11:52:42 +00:00
|
|
|
def main():
|
2022-02-02 22:39:39 +00:00
|
|
|
print("launching please wait...")
|
|
|
|
|
2023-02-21 17:31:31 +00:00
|
|
|
os_services.init()
|
2021-03-29 10:31:12 +00:00
|
|
|
config.init()
|
2022-02-02 23:45:00 +00:00
|
|
|
if not check_eula():
|
2022-02-02 20:10:18 +00:00
|
|
|
return
|
|
|
|
|
2022-02-02 22:17:35 +00:00
|
|
|
finish_splash = splash.start()
|
2022-02-02 23:45:00 +00:00
|
|
|
logger = GuiLogger()
|
2022-02-02 20:10:18 +00:00
|
|
|
config.start_backup_scheduler()
|
|
|
|
active.init()
|
2021-05-15 22:40:48 +00:00
|
|
|
hotkey.init()
|
|
|
|
|
2022-02-02 21:10:22 +00:00
|
|
|
def on_gui_load():
|
|
|
|
finish_splash()
|
2022-02-02 23:45:00 +00:00
|
|
|
update_dialog.check_update(gui)
|
|
|
|
logger.connect(gui)
|
2022-02-01 11:51:58 +00:00
|
|
|
|
2020-05-14 02:03:13 +00:00
|
|
|
window_to_hide = win32gui.GetForegroundWindow()
|
2020-05-05 12:55:06 +00:00
|
|
|
|
2022-02-02 23:45:00 +00:00
|
|
|
bot = EngineEventHandler(lambda: gui)
|
|
|
|
gui = GUI(lambda: bot, on_gui_load)
|
2020-05-19 03:11:58 +00:00
|
|
|
|
2021-05-15 22:40:48 +00:00
|
|
|
hotkey.start()
|
2020-06-25 16:39:05 +00:00
|
|
|
|
2020-05-05 12:55:06 +00:00
|
|
|
logging.info(f"Fishybot v{fishy.__version__}")
|
2020-10-17 19:06:07 +00:00
|
|
|
initialize(window_to_hide)
|
2020-04-18 11:32:14 +00:00
|
|
|
|
2022-02-02 23:45:00 +00:00
|
|
|
gui.start()
|
2021-05-16 03:04:35 +00:00
|
|
|
active.start()
|
2021-02-14 18:07:12 +00:00
|
|
|
|
2022-02-02 19:36:41 +00:00
|
|
|
bot.start_event_handler() # main thread loop
|
|
|
|
|
2021-05-15 22:40:48 +00:00
|
|
|
hotkey.stop()
|
2021-05-16 03:04:35 +00:00
|
|
|
active.stop()
|
2022-02-02 20:10:18 +00:00
|
|
|
config.stop()
|
2022-02-02 21:10:22 +00:00
|
|
|
bot.stop()
|
2020-04-15 11:27:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|