-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathassemblyEngine.py
More file actions
470 lines (369 loc) · 16 KB
/
assemblyEngine.py
File metadata and controls
470 lines (369 loc) · 16 KB
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
import random
import UniversalClasses
import copy
from PyQt5.QtWidgets import QMessageBox
# Debugging Functions
def printMove(move):
if move["type"] == "a":
print("Attach: ", move["state1"].returnLabel(),
" at ", move["x"], ", ", move["y"])
if move["type"] == "t":
print("Transition ", move["state1"].returnLabel(), ", ", move["state2"].returnLabel(
), " to ", move["state1Final"].returnLabel(), ", ", move["state2Final"].returnLabel())
print(" at ", move["x"], ", ", move["y"])
class Engine:
def __init__(self, currentSystem):
self.reset_engine(currentSystem)
def reset_engine(self, currentSystem):
self.system = currentSystem
self.moveList = []
self.TimeTaken = []
self.currentIndex = 0
self.lastIndex = 0
self.errorStates = ""
#construct seed assembly from the seed states present in the respective system,
self.system.makeSeedAssembly()
#get resulting seed assembly
self.seedAssembly = self.system.returnSeedAssembly()
self.currentAssembly = self.seedAssembly
self.currentAssembly = copy.deepcopy(self.seedAssembly)
self.validMoves = self.currentAssembly.returnMoves(self.system)
def step(self, nextMove=None):
# we are in our history, but they did NOT give us a new move
if nextMove == None and self.currentIndex < self.lastIndex:
move = self.moveList[self.currentIndex]
res = self.build(move)
if res == -1:
return res
else:
# added a duplicate inside of build, remove it
self.moveList.pop()
self.currentIndex += 1
return 0
# we are in our history, and they gave us a new move to use instead
if nextMove != None and self.currentIndex < self.lastIndex:
# remove move list entries that are ahead of us
while self.currentIndex != self.lastIndex:
self.moveList.pop()
self.lastIndex -= 1
# now we can act like this is just a normal step
# fall out the if statement into the normal step case
# No history to worry about, just call build
res = self.build(nextMove)
if res == -1:
return res
else:
self.lastIndex += 1
self.currentIndex += 1
return 0
def back(self):
if(self.currentIndex > 0):
self.currentIndex = self.currentIndex - 1
move = self.moveList[self.currentIndex]
self.build(move, False)
def first(self):
self.currentIndex = 0
self.currentAssembly = copy.deepcopy(self.seedAssembly)
self.validMoves = self.currentAssembly.returnMoves(self.system)
def last(self):
while self.currentIndex < self.lastIndex:
# Will update current assembly, break if terminal
if self.step() == -1:
break
def getCurrentAssembly(self):
return self.currentAssembly
def getCurrentIndex(self):
return self.currentIndex
def getCurrentMove(self):
if len(self.moveList) != 0:
return self.moveList[self.getCurrentIndex() - 1]
def getLastMove(self):
if len(self.moveList) != 0:
return self.moveList[self.getCurrentIndex()]
def getCurrentBorders(self):
return self.currentAssembly.returnBorders()
def build(self, nextMove=None, forwards=True):
# Check if assembly is terminal
if(len(self.validMoves) == 0 and forwards):
print("Terminal")
self.currentAssembly.print_size()
return -1
# Add or Update only if we going forwards
if forwards:
if len(self.TimeTaken) <= self.currentIndex:
self.TimeTaken.append(len(self.validMoves))
else:
self.TimeTaken[self.currentIndex] = len(self.validMoves)
# Get next assembly and add to list
# If given a move, choose that one, otherwise do random move
move = None
if nextMove == None:
move = random.choice(self.validMoves)
else:
move = nextMove
moveX = move["x"]
moveY = move["y"]
# get all moves that need to be removed
# If Attachment
if move["type"] == "a":
# Remove other moves for self
attOldMoves = self.currentAssembly.getAttat(
self.system, moveX, moveY)
self.removeMoves(attOldMoves)
# remove Attachments for neighbors
nAtts = self.currentAssembly.getAttat(
self.system, moveX, moveY + 1)
self.removeMoves(nAtts)
sAtts = self.currentAssembly.getAttat(
self.system, moveX, moveY - 1)
self.removeMoves(sAtts)
wAtts = self.currentAssembly.getAttat(
self.system, moveX - 1, moveY)
self.removeMoves(wAtts)
eAtts = self.currentAssembly.getAttat(
self.system, moveX + 1, moveY)
self.removeMoves(eAtts)
# remove transitions when going backwards
if not forwards:
# remove other move for self
trOldMoves = self.currentAssembly.getTRat(
self.system, moveX, moveY)
self.removeMoves(trOldMoves)
# remove "v" TR moves from N neighbor
vOldMoves = self.currentAssembly.getTRat(
self.system, moveX, moveY + 1, "v")
self.removeMoves(vOldMoves)
# remove "h" TR moves from W Neighbor
hOldMoves = self.currentAssembly.getTRat(
self.system, moveX - 1, moveY, "h")
self.removeMoves(hOldMoves)
elif move["type"] == "t":
#quick check to see if states exist
errorState = ""
if move["state1Final"] == None:
errorState += self.findProblemTile(move["state1"], move["state2"], move["dir"], 1)
if move["dir"] != "s":
if move["state2Final"] == None:
errorState += self.findProblemTile(move["state1"], move["state2"], move["dir"], 2)
if errorState != "":
#self.validMoves = 0
msgBox = QMessageBox()
msgBox.setIcon(QMessageBox.Information)
msgBox.setText("The following states dont exist: \n" + errorState)
msgBox.setWindowTitle("Missing states")
msgBox.setStandardButtons(QMessageBox.Ok)
returnValue = msgBox.exec()
return -1
# Removing Moves
# remove other move for self
trOldMoves = self.currentAssembly.getTRat(
self.system, moveX, moveY)
self.removeMoves(trOldMoves)
# remove "v" TR moves from N neighbor
vOldMoves = self.currentAssembly.getTRat(
self.system, moveX, moveY + 1, "v")
self.removeMoves(vOldMoves)
# remove "h" TR moves from W Neighbor
hOldMoves = self.currentAssembly.getTRat(
self.system, moveX - 1, moveY, "h")
self.removeMoves(hOldMoves)
# remove attachment rules from neighbors
nAtts = self.currentAssembly.getAttat(
self.system, moveX, moveY + 1)
self.removeMoves(nAtts)
sAtts = self.currentAssembly.getAttat(
self.system, moveX, moveY - 1)
self.removeMoves(sAtts)
wAtts = self.currentAssembly.getAttat(
self.system, moveX - 1, moveY)
self.removeMoves(wAtts)
eAtts = self.currentAssembly.getAttat(
self.system, moveX + 1, moveY)
self.removeMoves(eAtts)
# Update tile 2
# If V rule
if move["dir"] == "v":
# Removing moves
# remove TR from self
vOldMoves = self.currentAssembly.getTRat(
self.system, moveX, moveY - 1)
self.removeMoves(vOldMoves)
# Remove "h" rules for SW
swMoves = self.currentAssembly.getTRat(
self.system, moveX - 1, moveY - 1, "h")
self.removeMoves(swMoves)
# Remove attachments from neighbors
s2Atts = self.currentAssembly.getAttat(
self.system, moveX, moveY - 2)
self.removeMoves(s2Atts)
swAtts = self.currentAssembly.getAttat(
self.system, moveX - 1, moveY - 1)
self.removeMoves(swAtts)
seAtts = self.currentAssembly.getAttat(
self.system, moveX + 1, moveY - 1)
self.removeMoves(seAtts)
# If H rule
if move["dir"] == "h":
# remove TR from self
vOldMoves = self.currentAssembly.getTRat(
self.system, moveX + 1, moveY)
self.removeMoves(vOldMoves)
# Remove "v" rules for NE
neMoves = self.currentAssembly.getTRat(
self.system, moveX + 1, moveY + 1, "v")
self.removeMoves(neMoves)
# remove attachments from neighbors
e2Atts = self.currentAssembly.getAttat(
self.system, moveX + 2, moveY)
self.removeMoves(e2Atts)
neAtts = self.currentAssembly.getAttat(
self.system, moveX + 1, moveY + 1)
self.removeMoves(neAtts)
seAtts = self.currentAssembly.getAttat(
self.system, moveX + 1, moveY - 1)
self.removeMoves(seAtts)
# perform move
if forwards:
self.currentAssembly.performMove(move)
self.moveList.append(move)
else:
self.currentAssembly = self.currentAssembly.undoMove(move)
# add all moves that need to be added
# If Attachment
if move["type"] == "a":
# Add Attachments for neighbors
nAtts = self.currentAssembly.getAttat(
self.system, moveX, moveY + 1)
self.addMoves(nAtts)
sAtts = self.currentAssembly.getAttat(
self.system, moveX, moveY - 1)
self.addMoves(sAtts)
wAtts = self.currentAssembly.getAttat(
self.system, moveX - 1, moveY)
self.addMoves(wAtts)
eAtts = self.currentAssembly.getAttat(
self.system, moveX + 1, moveY)
self.addMoves(eAtts)
# Add attachments for the current x,y when going backwards
if not forwards:
backwardMoves = self.currentAssembly.getAttat(
self.system, moveX, moveY)
self.addMoves(backwardMoves)
# Add transitions for self
newTR = self.currentAssembly.getTRat(self.system, moveX, moveY)
self.addMoves(newTR)
# Add "v" transitions for North Neighbor (New assembly)
vTR = self.currentAssembly.getTRat(
self.system, moveX, moveY + 1, "v")
self.addMoves(vTR)
# Add "h" transitions for W Neighbor (New Assembly)
hTR = self.currentAssembly.getTRat(
self.system, moveX - 1, moveY, "h")
self.addMoves(hTR)
elif move["type"] == "t":
# Adding Moves
# add new transitions rules for self
newTR = self.currentAssembly.getTRat(self.system, moveX, moveY)
self.addMoves(newTR)
# Add "v" transitions for North Neighbor (New assembly)
vTR = self.currentAssembly.getTRat(
self.system, moveX, moveY + 1, "v")
self.addMoves(vTR)
# Add "h" transitions for W Neighbor (New Assembly)
hTR = self.currentAssembly.getTRat(
self.system, moveX - 1, moveY, "h")
self.addMoves(hTR)
# remove attachment rules from neighbors
nAtts = self.currentAssembly.getAttat(
self.system, moveX, moveY + 1)
self.addMoves(nAtts)
sAtts = self.currentAssembly.getAttat(
self.system, moveX, moveY - 1)
self.addMoves(sAtts)
wAtts = self.currentAssembly.getAttat(
self.system, moveX - 1, moveY)
self.addMoves(wAtts)
eAtts = self.currentAssembly.getAttat(
self.system, moveX + 1, moveY)
self.addMoves(eAtts)
# Update tile 2
# If V rule
if move["dir"] == "v":
# Adding Moves
# Add TR to self
vNewMoves = self.currentAssembly.getTRat(
self.system, moveX, moveY - 1)
self.addMoves(vNewMoves)
# Add "h" rules for SW
swNewMoves = self.currentAssembly.getTRat(
self.system, moveX - 1, moveY - 1, "h")
self.addMoves(swNewMoves)
# Add attachments from neighbors
s2Atts = self.currentAssembly.getAttat(
self.system, moveX, moveY - 2)
self.addMoves(s2Atts)
swAtts = self.currentAssembly.getAttat(
self.system, moveX - 1, moveY - 1)
self.addMoves(swAtts)
seAtts = self.currentAssembly.getAttat(
self.system, moveX + 1, moveY - 1)
self.addMoves(seAtts)
# If H rule
if move["dir"] == "h":
# add TR from self
vNewMoves = self.currentAssembly.getTRat(
self.system, moveX + 1, moveY)
self.addMoves(vNewMoves)
# add "v" rules for ne
neMoves = self.currentAssembly.getTRat(
self.system, moveX + 1, moveY + 1, "v")
self.addMoves(neMoves)
# add attachments from neighbors
e2Atts = self.currentAssembly.getAttat(
self.system, moveX + 2, moveY)
self.addMoves(e2Atts)
neAtts = self.currentAssembly.getAttat(
self.system, moveX + 1, moveY + 1)
self.addMoves(neAtts)
seAtts = self.currentAssembly.getAttat(
self.system, moveX + 1, moveY - 1)
self.addMoves(seAtts)
return 0
def removeMoves(self, oldMoves):
if oldMoves == None:
return
if not isinstance(oldMoves, list):
oldMoves = [oldMoves]
for oMove in oldMoves:
self.validMoves.remove(oMove)
def addMoves(self, newMoves):
if newMoves == None:
return
if not isinstance(newMoves, list):
newMoves = [newMoves]
for nMove in newMoves:
self.validMoves.append(nMove)
def timeTaken(self):
if len(self.TimeTaken) > 0:
return 1 / self.TimeTaken[self.currentIndex - 1]
else:
return 0
def findProblemTile(self, tile1, tile2, dir, problem):
errorTile = ""
sys_h_tr = self.system.returnHorizontalTransitionDict()
sys_v_tr = self.system.returnVerticalTransitionDict()
if dir == "v":
rules = sys_v_tr.get((tile1.returnLabel(), tile2.returnLabel()))
if dir == "h":
rules = sys_h_tr.get((tile1.returnLabel(), tile2.returnLabel()))
if rules != None:
for i in range(0, len(rules), 2):
if problem == 1:
if self.system.returnState(rules[i]) == None:
errorTile += rules[i]
errorTile += " "
elif problem == 2:
if self.system.returnState(rules[i+1]) == None:
errorTile += rules[i + 1]
errorTile += " "
return errorTile