-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRouteWidget.py
307 lines (235 loc) · 10.2 KB
/
RouteWidget.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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
import re
from PyQt5 import QtCore, QtWidgets, QtGui
Qt = QtCore.Qt
class RouteEditorWidget(QtWidgets.QWidget):
def __init__(self, parent=None):
QtWidgets.QWidget.__init__(self, parent=parent)
self.archiveContents = []
self.fileLoaded = False
self.currentLoadedFile = ''
self.selectedFile = ''
self.layout = QtWidgets.QVBoxLayout(self)
# Create Widgets
self.fileSelector = QtWidgets.QComboBox()
self.scrollArea = QtWidgets.QScrollArea()
self.routeEntries = RouteEntryTable()
self.addRowButton = QtWidgets.QPushButton('Insert Row')
self.delRowButton = QtWidgets.QPushButton('Remove Row')
self.importButton = QtWidgets.QPushButton('Import')
self.exportButton = QtWidgets.QPushButton('Export')
# Add Icons
self.addRowButton.setIcon(QtGui.QIcon('RouteEditData/icons/plus.png'))
self.delRowButton.setIcon(QtGui.QIcon('RouteEditData/icons/minus.png'))
self.importButton.setIcon(QtGui.QIcon('RouteEditData/icons/import.png'))
self.exportButton.setIcon(QtGui.QIcon('RouteEditData/icons/export.png'))
# Default Widgets to disabled
self.fileSelector.setDisabled(True)
self.scrollArea.setDisabled(True)
# Setup Scroll Area
self.scrollArea.setWidgetResizable(True)
self.scrollArea.setWidget(self.routeEntries)
# Setup Signals
self.fileSelector.currentIndexChanged.connect(self.fileIndexChanged)
self.addRowButton.pressed.connect(self.addRow)
self.delRowButton.pressed.connect(self.delRow)
self.importButton.pressed.connect(self.importData)
self.exportButton.pressed.connect(self.exportData)
# add widgets to layout
topLayout = QtWidgets.QHBoxLayout()
topLayout.addWidget(self.fileSelector, 1, Qt.AlignVCenter)
topLayout.addWidget(self.importButton, 0, Qt.AlignVCenter)
topLayout.addWidget(self.exportButton, 0, Qt.AlignVCenter)
bottomLayout = QtWidgets.QHBoxLayout()
bottomLayout.addWidget(self.addRowButton, 1, Qt.AlignVCenter)
bottomLayout.addWidget(self.delRowButton, 1, Qt.AlignVCenter)
bottomLayout.insertStretch(2, 2)
self.layout.addLayout(topLayout)
self.layout.addWidget(self.scrollArea)
self.layout.addLayout(bottomLayout)
def loadData(self, archiveContents):
self.archiveContents = archiveContents
QtCore.QObject.blockSignals(self.fileSelector, True)
# Add elements to file selector drop-down
for file in self.archiveContents:
self.fileSelector.addItem(str(file.name)[5:-4])
QtCore.QObject.blockSignals(self.fileSelector, False)
# Enable the Ui
self.scrollArea.setDisabled(False)
self.fileSelector.setDisabled(False)
# load initial file
self.fileIndexChanged()
def closeData(self):
self.archiveContents = []
self.fileLoaded = False
self.currentLoadedFile = ''
self.selectedFile = ''
self.routeEntries.clearTable()
self.fileSelector.setDisabled(True)
self.scrollArea.setDisabled(True)
self.fileSelector.clear()
def fileIndexChanged(self):
# store the currently selected file's name
self.selectedFile = 'route' + self.fileSelector.currentText() + '.csv'
# check if a file is already open
if self.fileLoaded:
# if a file is already open, store the changes made and close the file
self.storeChanges()
self.routeEntries.clearTable()
self.loadSelectedFile()
else:
self.loadSelectedFile()
def loadSelectedFile(self):
dataArray = []
# load the data for the file the user selected
for file in self.archiveContents:
if file.name == self.selectedFile:
data = file.data
data = data.decode('shiftjis')
# split data by row
rows = str(data).split()
# split rows elements but don't break substrings
for row in rows:
row = re.split(''',(?=(?:[^'"]|'[^']*'|"[^"]*")*$)''', row)
dataArray.append(row)
# create a route entry container
self.routeEntries.populate(dataArray)
self.fileLoaded = True
self.currentLoadedFile = self.selectedFile
def storeChanges(self):
data = self.routeEntries.saveContents()
data = data.encode('shiftjis')
for file in self.archiveContents:
if str(file.name) == self.currentLoadedFile:
file.data = data
def getArchiveContents(self):
self.storeChanges()
return self.archiveContents
def addRow(self):
self.routeEntries.addRow()
def delRow(self):
self.routeEntries.delRow()
def importData(self):
fileName = QtWidgets.QFileDialog.getOpenFileName(self, 'Import file', '', 'csv files (*.csv)')[0]
if fileName == '':
return
with open(fileName, 'rb') as f:
data = f.read()
self.routeEntries.saveContents()
for file in self.archiveContents:
if str(file.name) == self.currentLoadedFile:
file.data = data
self.routeEntries.clearTable()
self.loadSelectedFile()
def exportData(self):
file = self.routeEntries.saveContents()
path = QtWidgets.QFileDialog.getSaveFileName(self, 'Export file', '' +self.currentLoadedFile, 'csv files (*.csv)')[0]
if path == '':
return
with open(path, 'wb+') as f:
f.write(file.encode('shiftjis'))
class RouteEntryTable(QtWidgets.QTableWidget):
def __init__(self):
QtWidgets.QTableWidget.__init__(self)
# Setup Table Properties
self.setColumnCount(3)
self.setAlternatingRowColors(True)
self.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection)
# Setup Header Bar
header = self.horizontalHeader()
header.setStretchLastSection(True)
header.setSectionResizeMode(QtWidgets.QHeaderView.Stretch)
self.setHorizontalHeaderItem(0, QtWidgets.QTableWidgetItem('Path'))
self.setHorizontalHeaderItem(1, QtWidgets.QTableWidgetItem('Action'))
self.setHorizontalHeaderItem(2, QtWidgets.QTableWidgetItem('Sound'))
# Hide Row Numbers
self.verticalHeader().setVisible(False)
def populate(self, dataArray):
i = 0
# Iterate through each entry in the data array
while i < len(dataArray):
pos = self.rowCount()
# Create a row for each entry in the array
self.insertRow(pos)
# Populate the new row with the contents of that entry in the array
self.setItem(pos, 0, QtWidgets.QTableWidgetItem(dataArray[i][0])) # Path
self.setCellWidget(pos, 1, ActionEditor(dataArray[i][1])) # Action
self.setCellWidget(pos, 2, SoundEffectsEditor(dataArray[i][2])) # Sound
i += 1
def addRow(self):
self.insertRow(self.currentRow()+1)
# Initialise the row
self.setItem(self.currentRow()+1, 0, QtWidgets.QTableWidgetItem()) # Path
self.setCellWidget(self.currentRow()+1, 1, ActionEditor()) # Action
self.setCellWidget(self.currentRow()+1, 2, SoundEffectsEditor()) # Sound
def delRow(self):
self.removeRow(self.currentRow())
def saveContents(self):
outData = []
row = 0
# Iterate through each row of the table
while row < self.rowCount():
col = 0
rowData = []
# Iterate through each column for the current row
while col < 3:
# Store the contents of the column
if col == 0:
rowData.append(self.item(row, col).text())
else:
rowData.append(self.cellWidget(row, col).getValue())
col += 1
# Store the contents of each row
rowString = ','.join(rowData)
outData.append(rowString)
row += 1
outString = '\r\n'.join(outData)
return outString
def clearTable(self):
while self.rowCount() > 0:
self.removeRow(0)
class SoundEffectsEditor(QtWidgets.QComboBox):
def __init__(self, data=None, parent=None):
QtWidgets.QWidget.__init__(self, parent=parent)
# Create a dictionary to translate the sfx names from jp to english
self.sfx = {}
with open('RouteEditData/SoundEffects.txt', 'rt', encoding='utf-8-sig') as f:
for line in f:
(jp, eng) = line.split(':')
eng = str(eng).strip('\n')
self.sfx[jp] = eng
# Add translated sound effect names to the combobox
for jp, eng in self.sfx.items():
self.addItem(eng)
if data is not None:
self.getIndexByName(data)
def getIndexByName(self, data):
for jp, eng in self.sfx.items():
if not str(data).find(jp):
self.setCurrentIndex(self.findText(eng))
def getValue(self):
for jp, eng in self.sfx.items():
if not self.currentText().find(eng):
return jp
class ActionEditor(QtWidgets.QComboBox):
def __init__(self, data=None, parent=None):
QtWidgets.QWidget.__init__(self, parent=parent)
# Create a dictionary to translate the action names from jp to english
self.actions = {}
with open('RouteEditData/Actions.txt', 'rt', encoding='utf-8-sig') as f:
for line in f:
(jp, eng) = line.split(':')
eng = str(eng).strip('\n')
self.actions[jp] = eng
# Add translated action names to the combobox
for jp, eng in self.actions.items():
self.addItem(eng)
if data is not None:
self.getIndexByName(data)
def getIndexByName(self, data):
for jp, eng in self.actions.items():
if not str(data).find(jp):
self.setCurrentIndex(self.findText(eng))
def getValue(self):
for jp, eng in self.actions.items():
if not self.currentText().find(eng):
return jp