mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
This appears to be incompatible with pyinstaller. I get the following when trying to run the executable generated with pyside6: ``` Traceback (most recent call last): File "qt_ui\main.py", line 29, in <module> File "PyInstaller\loader\pyimod03_importers.py", line 476, in exec_module File "qt_ui\windows\QLiberationWindow.py", line 28, in <module> File "PyInstaller\loader\pyimod03_importers.py", line 476, in exec_module File "qt_ui\widgets\map\QLiberationMap.py", line 11, in <module> ImportError: could not import module 'PySide6.QtPrintSupport' ```
62 lines
1.7 KiB
Python
62 lines
1.7 KiB
Python
from __future__ import annotations
|
|
|
|
import logging
|
|
from pathlib import Path
|
|
from typing import (
|
|
Optional,
|
|
)
|
|
|
|
from PySide2.QtCore import QUrl
|
|
from PySide2.QtWebChannel import QWebChannel
|
|
from PySide2.QtWebEngineWidgets import (
|
|
QWebEnginePage,
|
|
QWebEngineView,
|
|
)
|
|
|
|
from game import Game
|
|
from qt_ui.models import GameModel
|
|
from qt_ui.simcontroller import SimController
|
|
from qt_ui.widgets.map.mapmodel import MapModel
|
|
|
|
|
|
class LoggingWebPage(QWebEnginePage):
|
|
def javaScriptConsoleMessage(
|
|
self,
|
|
level: QWebEnginePage.JavaScriptConsoleMessageLevel,
|
|
message: str,
|
|
line_number: int,
|
|
source: str,
|
|
) -> None:
|
|
if level == QWebEnginePage.JavaScriptConsoleMessageLevel.ErrorMessageLevel:
|
|
logging.error(message)
|
|
elif level == QWebEnginePage.JavaScriptConsoleMessageLevel.WarningMessageLevel:
|
|
logging.warning(message)
|
|
else:
|
|
logging.info(message)
|
|
|
|
|
|
class QLiberationMap(QWebEngineView):
|
|
def __init__(
|
|
self, game_model: GameModel, sim_controller: SimController, parent
|
|
) -> None:
|
|
super().__init__(parent)
|
|
self.game_model = game_model
|
|
self.setMinimumSize(800, 600)
|
|
self.map_model = MapModel(game_model, sim_controller)
|
|
|
|
self.channel = QWebChannel()
|
|
self.channel.registerObject("game", self.map_model)
|
|
|
|
self.page = LoggingWebPage(self)
|
|
self.page.setWebChannel(self.channel)
|
|
self.page.load(
|
|
QUrl.fromLocalFile(str(Path("resources/ui/map/canvas.html").resolve()))
|
|
)
|
|
self.setPage(self.page)
|
|
|
|
def set_game(self, game: Optional[Game]) -> None:
|
|
if game is None:
|
|
self.map_model.clear()
|
|
else:
|
|
self.map_model.reset()
|