-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathGUI.py
281 lines (222 loc) · 9.99 KB
/
GUI.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
import matplotlib
matplotlib.use("QT4Agg")
import sys
from PyQt4 import QtGui,QtCore
from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas
from matplotlib.figure import Figure
import UI
import os
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
class matplotlibWidget(QtGui.QWidget):
"""
MUST Preceed "from window import *"
"""
def __init__(self, parent = None):
QtGui.QWidget.__init__(self, parent)
self.canvas = MplCanvas()
self.vbl = QtGui.QVBoxLayout()
self.vbl.addWidget(self.canvas)
self.setLayout(self.vbl)
from window import *
class GUI(QtGui.QMainWindow):
""" Sets up Graphical User Interface for this Program. Requires PyQt4"""
def __init__(self, parent=None):
QtGui.QMainWindow.__init__(self, parent)
self.ui = Ui_MainWindow()
self.ui.setupUi(self)
from procedural_city_generation.additional_stuff.IOHelper import StdoutRedirector
redirector=StdoutRedirector(self.ui.console,app)
sys.stdout=redirector
#### 1: ROADMAP ####
UI.setRoadmapGUI(self)
self.ui.roadmap_widget.hide()
self.ui.roadmap_Run.clicked.connect(self.start_roadmap)
self.createTable("roadmap")
self.ui.roadmap_splitter.setSizes([90, 800])
self.ui.roadmap_table.hide()
#### 2: POLYGONS ####
UI.setPolygonsGUI(self)
self.ui.polygons_widget.hide()
self.ui.polygons_Run.clicked.connect(self.start_polygons)
self.createTable("polygons")
self.ui.polygons_splitter.setSizes([90, 800])
#### 3: BUILDING_GENERATION ####
UI.setBuilding_generationGUI(self)
self.ui.building_generation_widget.hide()
self.ui.building_generation_Run.clicked.connect(self.start_building_generation)
self.createTable("building_generation")
self.ui.building_generation_splitter.setSizes([90, 800])
#### 4: VISUALIZATION ####
self.ui.visualization_Run.clicked.connect(UI.visualization)
self.createTable("visualization")
self.ui.visualization_splitter.setSizes([90, 800])
#### 5: ADVANCED ####
self.ui.clean_directories.clicked.connect(self.clean_directories)
sys.stderr=redirector
#TODO Finish method
def saveOptions(self, submodule="roadmap"):
button=getattr(self.ui, submodule+"_save_button")
table=getattr(self.ui, submodule+"_table")
button.hide()
table.hide()
# return saver
def createTable(self, submodule):
""" Creates the Options Table as PyQT4 Objects when called with a submodule. Very messy code, needs to be rewritten.
Parameters
----------
submodule: String, name of submodule
"""
#Initial Pixel Width and Height of Options Table - should be replaced by getWindowSize()-like
h=411
w=891
from procedural_city_generation.additional_stuff.Param import paramsFromJson, jsonFromParams
from procedural_city_generation.additional_stuff.Singleton import Singleton
#Load Parameters from .conf
params=paramsFromJson(os.getcwd()+"/procedural_city_generation/inputs/"+submodule+".conf")
#Add Buttons and assign functions
table=QtGui.QTableWidget(getattr(self.ui, submodule+"_frame"))
save_button=QtGui.QPushButton(getattr(self.ui, submodule+"_frame"), text="Save")
save_button.setGeometry(QtCore.QRect(w-100, h, 100, 31))
save_button.hide()
default_button=QtGui.QPushButton(getattr(self.ui, submodule+"_frame"), text="Reset Defaults")
default_button.setGeometry(QtCore.QRect(w-260, h, 150, 31))
default_button.hide()
table.hide()
#Set Table Geometry, code looks repetitive and should be reworked
table.setGeometry(QtCore.QRect(0, 0, w, h))
table.setColumnCount(6)
table.setHorizontalHeaderItem(0, QtGui.QTableWidgetItem("Parameter Name"))
table.setColumnWidth(0, int(0.2*w))
table.setHorizontalHeaderItem(1, QtGui.QTableWidgetItem("Description"))
table.setColumnWidth(1, int(0.5*w))
table.setHorizontalHeaderItem(2, QtGui.QTableWidgetItem("Default Value"))
table.setColumnWidth(2, int(0.125*w))
table.setHorizontalHeaderItem(3, QtGui.QTableWidgetItem("Value"))
table.setColumnWidth(3, int(0.125*w))
table.setHorizontalHeaderItem(4, QtGui.QTableWidgetItem("min"))
table.setColumnWidth(4, int(0.1*w))
table.setHorizontalHeaderItem(5, QtGui.QTableWidgetItem("max"))
table.setColumnWidth(5, int(0.1*w))
table.setRowCount(len(params))
#Fill out Table with Parameters. Code Looks repetitive, should be reworked
i=0
for parameter in params:
g=QtGui.QTableWidgetItem(str(parameter.name) )
g.setFlags( g.flags() & ~QtCore.Qt.ItemIsEditable )
g.setBackground(QtGui.QBrush(QtGui.QColor(235, 235, 235)))
table.setItem( i, 0 , g)
g=QtGui.QTableWidgetItem(str(parameter.description))
g.setFlags( g.flags() & ~QtCore.Qt.ItemIsEditable)
g.setBackground(QtGui.QBrush(QtGui.QColor(235, 235, 235)))
table.setItem( i, 1 , g)
g=QtGui.QTableWidgetItem(str(parameter.default))
g.setFlags( g.flags() & ~QtCore.Qt.ItemIsEditable)
g.setBackground(QtGui.QBrush(QtGui.QColor(235, 235, 235)))
table.setItem( i, 2 , g)
g=QtGui.QTableWidgetItem(str(parameter.value))
table.setItem( i, 3 , g)
s = "" if parameter.value_lower_bound is None else str(parameter.value_lower_bound)
g=QtGui.QTableWidgetItem(s)
g.setFlags( g.flags() & ~QtCore.Qt.ItemIsEditable)
g.setBackground(QtGui.QBrush(QtGui.QColor(235, 235, 235)))
table.setItem( i, 4 , g)
s = "" if parameter.value_upper_bound is None else str(parameter.value_upper_bound)
g=QtGui.QTableWidgetItem(s)
g.setFlags( g.flags() & ~QtCore.Qt.ItemIsEditable)
g.setBackground(QtGui.QBrush(QtGui.QColor(235, 235, 235)))
table.setItem( i, 5 , g)
i+=1
#Connect functions to buttons
getattr(self.ui, submodule+"_Options").clicked.connect(table.show)
getattr(self.ui, submodule+"_Options").clicked.connect(save_button.show)
getattr(self.ui, submodule+"_Options").clicked.connect(default_button.show)
setattr(self.ui, submodule+"_table", table)
def save_params():
for i, param in enumerate(params):
it=table.item(i, 3).text()
try:
it=eval(str(it))
except:
it=str(it)
param.setValue(it)
Singleton(submodule).kill()
jsonFromParams(os.getcwd()+"/procedural_city_generation/inputs/"+submodule+".conf", params)
print("Save successful")
save_button.hide()
default_button.hide()
table.hide()
print(UI.donemessage)
save_button.clicked.connect(save_params)
setattr(self.ui, submodule+"_save_button", save_button)
def default_params():
for i, param in enumerate(params):
table.item(i, 3).setText(_fromUtf8(str(param.default)))
default_button.clicked.connect(default_params)
setattr(self.ui, submodule+"_default_button", default_button)
def plot(self, x, y, linewidth=1, color="red"):
self.active_widget.canvas.ax.plot(x, y, linewidth=linewidth, color=color)
def clear(self):
self.active_widget.canvas.ax.clear()
def start_roadmap(self):
self.active_widget=self.ui.roadmap_widget
self.active_widget.show()
self.clear()
UI.roadmap()
def start_polygons(self):
self.active_widget=self.ui.polygons_widget
self.active_widget.show()
self.clear()
UI.polygons()
def start_building_generation(self):
self.active_widget=self.ui.building_generation_widget
self.active_widget.show()
self.clear()
UI.building_generation()
def clean_directories(self):
from procedural_city_generation.additional_stuff.clean_tools import clean_pyc_files
print("removing all .pyc files")
clean_pyc_files(os.getcwd())
print("removing all items in /procedural_city_generation/temp/ directory")
os.system("rm -f " +os.getcwd()+"/procedural_city_generation/temp/*")
print("removing all items in /procedural_city_generation/outputs/ directory")
os.system("rm -f " +os.getcwd()+"/procedural_city_generation/outputs/*")
print(UI.donemessage)
def set_xlim(self, tpl):
self.active_widget.canvas.ax.set_xlim(tpl)
def set_ylim(self, tpl):
self.active_widget.canvas.ax.set_ylim(tpl)
def update(self):
self.active_widget.canvas.draw()
global app
app.processEvents()
class FigureSaver:
class __FigureSaver:
def __init__(self, fig=None):
self.plot=fig.plot
self.show=fig.show
instance=None
def __init__(self, fig=None):
if not FigureSaver.instance and (fig is not None):
FigureSaver.instance=FigureSaver.__FigureSaver(fig)
def __getattr__(self, name):
return getattr(self.instance, name)
def __setattr__(self, name, value):
setattr(self.instance, name, value)
class MplCanvas(FigureCanvas):
def __init__(self):
self.fig = Figure(frameon=False)
self.ax = self.fig.add_subplot(111)
self.ax.get_yaxis().set_visible(False)
self.ax.get_xaxis().set_visible(False)
FigureCanvas.__init__(self, self.fig)
FigureCanvas.setSizePolicy(self, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
FigureCanvas.updateGeometry(self)
if __name__ == "__main__":
global app
app = QtGui.QApplication(sys.argv)
myapp = GUI()
myapp.show()
app.exec_()