forked from mchlnix/SMB3-Foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmb3-foundry.py
executable file
·59 lines (44 loc) · 1.49 KB
/
smb3-foundry.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python3
import logging
import os
import sys
import traceback
import warnings
from PySide6.QtWidgets import QApplication, QMessageBox
from foundry import auto_save_rom_path, github_issue_link
from foundry.gui.AutoSaveDialog import AutoSaveDialog
# compatibility for dark mode
warnings.warning = warnings.warn
logger = logging.getLogger(__name__)
# change into the tmp directory pyinstaller uses for the data
if hasattr(sys, "_MEIPASS"):
logger.info(f"Changing current dir to {getattr(sys, '_MEIPASS')}")
os.chdir(getattr(sys, "_MEIPASS"))
from foundry.gui.FoundryMainWindow import FoundryMainWindow # noqa
def main(path_to_rom):
app = QApplication()
if auto_save_rom_path.exists():
result = AutoSaveDialog().exec()
if result == QMessageBox.AcceptRole:
path_to_rom = auto_save_rom_path
QMessageBox.information(
None, "Auto Save recovered", "Don't forget to save the loaded ROM under a new name!"
)
FoundryMainWindow(path_to_rom)
app.exec()
if __name__ == "__main__":
if len(sys.argv) > 1:
path = sys.argv[1]
else:
path = ""
try:
main(path)
except Exception as e:
box = QMessageBox()
box.setWindowTitle("Crash report")
box.setText(
f"An unexpected error occurred! Please contact the developers at {github_issue_link} "
f"with the error below:\n\n{e}\n\n{traceback.format_exc()}"
)
box.exec()
raise