-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMainWindow.py
168 lines (156 loc) · 6 KB
/
MainWindow.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
from PyQt5.QtCore import (QLineF, QPointF, QRectF, Qt)
from PyQt5.QtGui import (QBrush, QColor, QPainter, QIcon)
from PyQt5.QtWidgets import (QApplication, QGraphicsView, QGraphicsScene, QGraphicsItem,
QGridLayout, QVBoxLayout, QHBoxLayout, QMainWindow, QMessageBox,
QLabel, QLineEdit, QPushButton, QSpinBox, QStyleFactory, QAction, QActionGroup)
from GameLogic.World import World
from MapView import MapView
from ControlPanel import ControlPanel
from GraphicsLoader import Graphics
from StatusBar import StatusBar
from Dialog.NewGameWindow import NewGameWindow
from Dialog.PolicyWindow import PolicyWindow
from Dialog.NewsWindow import NewsWindow
from Dialog.CloseUpWindow import CloseUpWindow
from Dialog.ScoresWindow import ScoresWindow
from Dialog.LostGameWindow import LostGameWindow
from Menu import Menu
from constants import DEFAULT_OPTS, INAVL_MAP_MODES
import json
import time
import pickle
import Local
from functools import partial
class MainWindow(QMainWindow):
def __init__(self,parent):
super(MainWindow, self).__init__()
self.graphics = Graphics()
self.parent = parent
self.setFixedSize(950,631)
self.setWindowTitle("Balance of Power")
self.setStyleSheet("QMainWindow::separator{ width: 0px; height: 0px, margin: -10px; }")
self.world = World(4,False,0)
self.policyWindow = PolicyWindow(self)
self.mapView = MapView(self, self.world)
self.statusBar = StatusBar(self)
self.newGameWindow = NewGameWindow(self)
self.newsWindow = NewsWindow(self)
self.closeUpWindow = CloseUpWindow(self)
self.scoresWindow = ScoresWindow(self)
self.controlPanel = ControlPanel(self)
self.lostGameWindow = LostGameWindow(self)
for i in range(2,80,1):
self.world.addNews(self.world.country[1], self.world.country[i], self.world.country[i], 2 + i%4, 1, 2, False)
self.addDockWidget(Qt.BottomDockWidgetArea, self.controlPanel)
self.addDockWidget(Qt.TopDockWidgetArea, self.statusBar)
self.setCentralWidget(self.mapView)
self.setWindowIcon(QIcon(self.graphics.progIcon))
self.controlPanel.connectActions()
self.menu = Menu(self)
self.setMenuBar(self.menu)
self.loadOptions()
self.mapView.resetMapView()
self.loadWorld()
def loadOptions(self):
try:
with open("options.dat", "r") as f:
options = json.load(f)
except: options = DEFAULT_OPTS
for i,j in zip(options[:3], self.menu.options[:3]):
j.setChecked(i)
self.newGameWindow.levelOpt[options[4]].setChecked(True)
self.newGameWindow.modeOpt[options[5]].setChecked(True)
self.newGameWindow.sideOpt[options[6]].setChecked(True)
self.menu.languages[options[3]].setChecked(True)
def saveOptions(self):
options = [i.isChecked() for i in self.menu.options[:3]]
for i in self.menu.languages.values():
if i.isChecked():
options += [i.text().lower() + ".json"]
break
options += [i.checkedId() for i in self.newGameWindow.buttonGroups]
try:
with open("options.dat", "w") as f:
json.dump(options, f)
except: pass
def updateLevel(self):
for i in INAVL_MAP_MODES[self.world.level - 1]:
self.controlPanel.mapModeAction[i].setEnabled(False)
self.controlPanel.mapModeButton[i].setEnabled(False)
def setStatus(self, id):
"""Set status label in the top part of the window"""
# if -1, set currently moving player
if id == -1:
if self.world.twoPFlag:
self.statusBar.setLabel(Local.strings[Local.MAIN_PANEL][15] \
+ Local.strings[Local.DATA_COUNTRIES + self.world.human][Local.CTRY_NAME])
else: self.statusBar.setLabel(Local.strings[Local.MAIN_PANEL][14])
else: self.statusBar.setLabel(Local.strings[Local.MAIN_PANEL][id])
time.sleep(.1)
QApplication.processEvents()
def endGame(self):
"""Show effects of the game ending, depends on the active flag"""
status = 0
if self.world.winFlag:
self.scoresWindow.setVisible(True)
status = 27
elif self.world.ANWFlag or self.world.NWFlag:
self.lostGameWindow.showUp(self.world.ANWFlag)
status = 28
self.setStatus(status)
def saveWorld(self, manual=False):
"""Save the self.world property into the save.dat file using the pickle protocol"""
try:
pickle.dump(self.world, open("save.dat", "wb"))
if manual:
QMessageBox.information(self, Local.strings[Local.MENU][61], Local.strings[Local.MENU][70])
except Exception as e:
if manual:
QMessageBox.critical(self, Local.strings[Local.MENU][61], Local.strings[Local.MENU][71])
def loadWorld(self):
"""Load the pickled save.dat file into the self.world property"""
try:
self.setWorld(pickle.load(open("save.dat", "rb")))
w = self.world
self.setStatus(-1)
self.controlPanel.drawScores()
self.controlPanel.yearLabel.setText(str(w.year))
self.controlPanel.switchPlayerButton.setEnabled(w.twoPFlag)
self.controlPanel.nextTurnButton.setEnabled(not any((w.winFlag, w.ANWFlag, w.NWFlag, w.beingQuestioned)))
if w.winFlag: self.setStatus(27)
elif w.ANWFlag or w.NWFlag: self.setStatus(28)
else: self.setStatus(-1)
self.mapView.scene().mapPainter.recalculateMapBuffer()
self.mapView.resetMapView()
except: pass
def setWorld(self, newWorld):
"""Set the self.world property"""
# Backup old graphics polygons items
polys = [c.mapPolyObject for c in self.world.country]
# Make sure all the data are cleared
try: del self.world
except: pass
# Create the new world
self.world = newWorld
self.mapView.scene().mapPainter.setWorld(self.world)
self.updateLevel()
# Move old graphics polygons onto the new world
for poly,cntry in zip(polys, self.world.country):
cntry.mapPolyObject = poly
# Reset the news window
self.newsWindow.setLocked(any((newWorld.winFlag, newWorld.ANWFlag, newWorld.NWFlag)))
self.newsWindow.question.setEnabled(False)
self.newsWindow.backDown.setEnabled(False)
self.newsWindow.filters[2 * newWorld.cmptr].setChecked(True)
def closeEvent(self, event):
if self.menu.options[0].isChecked():
self.saveWorld()
event.accept()
if __name__ == '__main__':
import sys
app = QApplication(sys.argv)
#print(QStyleFactory.keys())
#app.setStyle(QStyleFactory.keys()[0])
mainWindow = MainWindow(app)
mainWindow.show()
sys.exit(app.exec_())