2026-07-29 00:03:25 +08:00
|
|
|
import sys
|
2026-07-11 01:19:36 +08:00
|
|
|
from pathlib import Path
|
2026-07-14 16:41:14 +08:00
|
|
|
from typing import Callable
|
2026-07-10 20:57:31 +08:00
|
|
|
|
2026-07-14 16:41:14 +08:00
|
|
|
from PySide6.QtCore import QSize
|
2026-08-03 00:16:12 +08:00
|
|
|
from PySide6.QtGui import QIcon, QPixmap
|
|
|
|
|
from PySide6.QtWidgets import QApplication, QStyle
|
2026-07-11 01:19:36 +08:00
|
|
|
|
2026-07-28 13:35:04 +08:00
|
|
|
from constant import LAUNCHER_VERSION
|
2026-07-14 22:22:58 +08:00
|
|
|
from core_lib.qt.hack import move_window_to_center, is_light_theme, \
|
|
|
|
|
recolor_icon
|
2026-07-14 16:41:14 +08:00
|
|
|
from core_lib.qt import messagebox
|
2026-07-23 00:47:44 +08:00
|
|
|
from core_lib.launcher.object import Launcher as LauncherObject
|
2026-08-03 00:16:12 +08:00
|
|
|
from manager.account import AccountManager
|
2026-07-30 21:43:19 +08:00
|
|
|
from manager.game import GameManager
|
2026-07-29 00:03:25 +08:00
|
|
|
from manager.profile import ProfileManager
|
2026-08-03 20:55:37 +08:00
|
|
|
from manager.settings import SettingsManager
|
|
|
|
|
from manager.settings_models import AccountSettings, AppearanceSettings, GeneralSettings
|
2026-07-28 13:35:04 +08:00
|
|
|
from manager.widgets import WidgetManager
|
|
|
|
|
from window import LauncherMainWindow
|
2026-07-14 01:13:36 +08:00
|
|
|
|
2026-07-23 00:47:44 +08:00
|
|
|
class Launcher(QApplication, LauncherObject):
|
2026-08-03 00:16:12 +08:00
|
|
|
def __init__(self, logger, debug: bool = False):
|
2026-07-10 20:57:31 +08:00
|
|
|
super().__init__()
|
2026-07-12 00:06:11 +08:00
|
|
|
# logger
|
2026-07-28 13:35:04 +08:00
|
|
|
self.logger = logger
|
2026-08-03 00:16:12 +08:00
|
|
|
self.debug = debug
|
2026-07-10 23:27:21 +08:00
|
|
|
|
2026-07-12 00:06:11 +08:00
|
|
|
# dirs
|
|
|
|
|
self.program_dir = Path(__file__).parent
|
|
|
|
|
self.work_dir = Path.cwd()
|
|
|
|
|
|
2026-07-28 13:35:04 +08:00
|
|
|
# Widget (Signal, Event)
|
|
|
|
|
self.widget_manager = WidgetManager()
|
2026-07-29 00:03:25 +08:00
|
|
|
# Manager
|
2026-08-03 20:55:37 +08:00
|
|
|
self.settings_manager = SettingsManager(self.root_settings_dir)
|
|
|
|
|
self.settings_manager.register("general", GeneralSettings)
|
|
|
|
|
self.settings_manager.register("appearance", AppearanceSettings)
|
|
|
|
|
self.settings_manager.register("account", AccountSettings)
|
|
|
|
|
if self.root_settings_dir.is_file():
|
|
|
|
|
self.settings_manager.load()
|
|
|
|
|
else:
|
|
|
|
|
self.settings_manager.load_defaults().save()
|
2026-07-29 00:03:25 +08:00
|
|
|
self.profile_manager = ProfileManager(self, self.widget_manager)
|
2026-08-03 00:16:12 +08:00
|
|
|
self.account_manager = AccountManager(self, self.widget_manager)
|
|
|
|
|
self.game_manager = GameManager(self)
|
2026-07-29 00:03:25 +08:00
|
|
|
|
2026-07-28 13:35:04 +08:00
|
|
|
# Window config
|
|
|
|
|
self.setApplicationName("TestLauncher")
|
|
|
|
|
self.main_window = LauncherMainWindow(
|
2026-07-30 21:43:19 +08:00
|
|
|
app=self
|
2026-07-28 13:35:04 +08:00
|
|
|
)
|
|
|
|
|
self.main_window.setGeometry(0, 0, 800, 600)
|
|
|
|
|
move_window_to_center(self.main_window)
|
|
|
|
|
|
2026-07-14 01:13:36 +08:00
|
|
|
# Set icon
|
|
|
|
|
if self.icon_path.exists():
|
|
|
|
|
self.setWindowIcon(QIcon(self.icon_path.as_posix()))
|
|
|
|
|
else:
|
|
|
|
|
self.logger.error("No icon found.")
|
|
|
|
|
|
2026-07-10 20:57:31 +08:00
|
|
|
def exec(self):
|
2026-07-29 00:03:25 +08:00
|
|
|
# init managers
|
|
|
|
|
self.profile_manager.profile_load.emit()
|
2026-08-03 00:16:12 +08:00
|
|
|
self.account_manager.account_load.emit()
|
2026-07-29 00:03:25 +08:00
|
|
|
|
2026-08-03 00:16:12 +08:00
|
|
|
self.main_window.show()
|
|
|
|
|
self.main_window.toolbar.update_all()
|
2026-07-10 23:27:21 +08:00
|
|
|
self.exec_()
|
2026-07-12 00:06:11 +08:00
|
|
|
|
2026-08-03 00:16:12 +08:00
|
|
|
def get_icon(self, path: Path, no_color_change: bool = False) -> QIcon:
|
2026-07-14 22:22:58 +08:00
|
|
|
icon = self.style().standardIcon(QStyle.StandardPixmap.SP_MessageBoxWarning)
|
|
|
|
|
if not path.exists() or not path.is_file():
|
|
|
|
|
messagebox.error(
|
|
|
|
|
self.main_window,
|
|
|
|
|
"Resource Error",
|
|
|
|
|
"Missing icon file: {}".format(path)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
return icon
|
|
|
|
|
|
|
|
|
|
try:
|
2026-08-03 00:16:12 +08:00
|
|
|
if is_light_theme() and path.name.endswith(".png") and not no_color_change:
|
2026-07-14 22:22:58 +08:00
|
|
|
icon = recolor_icon(
|
|
|
|
|
path
|
|
|
|
|
)
|
|
|
|
|
else:
|
|
|
|
|
icon = QIcon(path.as_posix())
|
|
|
|
|
except Exception as e:
|
|
|
|
|
messagebox.error(
|
|
|
|
|
self.main_window,
|
|
|
|
|
"Resource Error",
|
|
|
|
|
"Failed to load icon {}: {}".format(path, e)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
return icon
|
|
|
|
|
|
|
|
|
|
def get_picture(self, path: Path, size: QSize, custom_error: str=None) -> QPixmap:
|
|
|
|
|
picture = self.style().standardIcon(QStyle.StandardPixmap.SP_MessageBoxWarning).pixmap(size)
|
|
|
|
|
if not path.exists() or not path.is_file():
|
|
|
|
|
messagebox.error(
|
|
|
|
|
self.main_window,
|
|
|
|
|
"Resource Error",
|
|
|
|
|
"Missing icon file: {}".format(path) if not custom_error else custom_error
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
return picture
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
picture = QPixmap(path.as_posix())
|
|
|
|
|
except Exception as e:
|
|
|
|
|
messagebox.error(
|
|
|
|
|
self.main_window,
|
|
|
|
|
"Resource Error",
|
|
|
|
|
"Failed to load icon {}: {}".format(path, e)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
return picture
|
|
|
|
|
|
2026-07-12 00:06:11 +08:00
|
|
|
@property
|
|
|
|
|
def temp_dir(self):
|
|
|
|
|
return self.work_dir / "temp"
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def config_dir(self):
|
|
|
|
|
return self.work_dir / "config"
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def data_dir(self):
|
|
|
|
|
return self.work_dir / "data"
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def log_dir(self):
|
2026-07-14 01:13:36 +08:00
|
|
|
return self.work_dir / "log"
|
|
|
|
|
|
2026-08-03 20:55:37 +08:00
|
|
|
@property
|
|
|
|
|
def root_settings_dir(self):
|
|
|
|
|
return self.data_dir / "settings.toml"
|
|
|
|
|
|
2026-07-29 00:03:25 +08:00
|
|
|
@property
|
|
|
|
|
def default_game_dir(self) -> Path:
|
|
|
|
|
return self.work_dir / "minecraft" if sys.platform.lower() == "darwin" else self.work_dir / ".minecraft"
|
|
|
|
|
|
2026-07-14 01:13:36 +08:00
|
|
|
@property
|
|
|
|
|
def resources_dir(self):
|
|
|
|
|
return self.program_dir / "resources"
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def icon_path(self):
|
|
|
|
|
return self.resources_dir / "icons" / "icon.png"
|
|
|
|
|
|
2026-07-14 16:41:14 +08:00
|
|
|
@property
|
|
|
|
|
def icon_dir(self):
|
|
|
|
|
return self.resources_dir / "icons"
|
|
|
|
|
|
2026-07-14 01:13:36 +08:00
|
|
|
@property
|
|
|
|
|
def launcher_version(self):
|
|
|
|
|
return LAUNCHER_VERSION
|
2026-07-14 16:41:14 +08:00
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def styles_path(self):
|
|
|
|
|
return self.resources_dir / "styles"
|
|
|
|
|
|
|
|
|
|
def apply_qss(self, qss_relative_path: Path, apply_qss_callback: Callable[[str], None]) -> str:
|
|
|
|
|
full_path = self.styles_path / qss_relative_path
|
|
|
|
|
if not full_path.exists():
|
|
|
|
|
messagebox.error(
|
2026-08-03 16:02:45 +08:00
|
|
|
None,
|
2026-07-14 16:41:14 +08:00
|
|
|
"Resource Error",
|
|
|
|
|
"Missing stylesheet file: {}".format(full_path),
|
|
|
|
|
)
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
data = full_path.read_text()
|
|
|
|
|
apply_qss_callback(data)
|
|
|
|
|
except Exception as e:
|
|
|
|
|
messagebox.error(
|
|
|
|
|
self.main_window,
|
|
|
|
|
"Resource Error",
|
|
|
|
|
"Unable to apply QSS stylesheet {}: {}".format(full_path, e),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
2026-07-28 13:35:04 +08:00
|
|
|
def get_main_window(self):
|
|
|
|
|
return self.main_window
|