-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPuzzleGame.py
501 lines (421 loc) · 18.3 KB
/
PuzzleGame.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
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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
from tkinter import*
from tkinter import filedialog
import tkinter.messagebox as tkmb
from PIL import Image, ImageTk
import random
import os
import csv
from pathlib import Path
from queue import Queue, PriorityQueue
import networkx as nx
import time
#===================================================================================================================================================================================================================
# This is the Tiles class. It is resposible for storing the tiles in a list, and most manupulation that happens, happens here.
class Tiles(Label):
def __init__(self,grid):
self.tiles = []
self.grid = grid
self.gap = None
self.moves =0
# Tiles into int list
def toList(self):
mylys = []
for tile in self.tiles:
mylys.append(tile.listNum)
return mylys
# This function adds a tile to the list
def add(self,tile):
self.tiles.append(tile)
# Get the tile object at the specific position
def getTile(self, pos):
for tile in self.tiles:
if tile.pos == pos:
return tile
# Get the tile objects around the gap. This is the tiles that can be moved.
def getTileAroundGap(self):
gRow,gCol = self.gap.pos
return self.getTile((gRow,gCol-1)),self.getTile((gRow-1,gCol)),self.getTile((gRow,gCol+1)),self.getTile((gRow+1,gCol))
# Change the gap with the tile that was clicked
def changeGap(self, tile):
gPos = self.gap.pos
self.gap.pos = tile.pos
tile.pos = gPos
self.moves += 1
a,b = self.tiles.index(self.gap), self.tiles.index(tile)
self.tiles[b], self.tiles[a] = self.tiles[a], self.tiles[b]
# Function that uses the getgetTileAroundGap() function to determin if the move is valid
# Function then use the changeGap() function to switch the tile and the gap (make the move)
def slide(self, pos):
left,top,down,right = self.getTileAroundGap()
currentTile = self.getTile(pos)
if currentTile == left or currentTile == top or currentTile == down or currentTile == right :
self.changeGap(currentTile)
self.show()
# Set the gap in the puzzle
def setGap(self, index):
self.gap = self.tiles[index]
self.show()
# Check to see if the tiles are in the correct order
def isCorrect(self):
for tile in self.tiles:
if not tile.isCorrectPos():
return False
return True
# Shuffle the tiles
def shuffle(self):
random.shuffle(self.tiles)
i=0
for row in range(self.grid):
for col in range(self.grid):
self.tiles[i].pos = (row,col)
i+=1
if not self.isSolvable(self.toList()):
self.shuffle()
# Change the state of the puzzle
def importState(self, stateList):
i = 0
j = 0
self.moves += 1
tempAr = []
for row in range(self.grid):
for col in range(self.grid):
j=0
for tile in self.tiles:
if tile.listNum == int(stateList[i]):
self.tiles[j].pos = (row,col)
tempAr.append(self.tiles[j])
j+=1
i+=1
self.tiles = tempAr
self.show()
# Def to show the tiles, excluding the gap
def show(self):
for tile in self.tiles:
if self.gap != tile:
tile.show()
# Get inversion count
def getInvCount(self, arr):
tmp = arr.index(9)
arr[tmp] = 0
inv_count = 0
for i in range(8):
for j in range(i+1,9):
if (arr[j] and arr[i] and arr[i] > arr[j]):
inv_count+=1
return inv_count
# Check if puzzle is solvable
def isSolvable(self, arr):
inversionCount = self.getInvCount(arr)
print(arr)
print(inversionCount)
return (inversionCount%2 == 0)
#====================================================================================================================================================================================================================
# This is the Tile class. It is responsible to show the picture on the puzzle. The picture are devided into 9 Tiles.
class Tile(Label):
def __init__(self, parent, image, pos, listNum):
Label.__init__(self, parent, image=image)
self.bind("<Button-1>", self.click)
self.parent = parent # Save reference to parent
self.image = image
self.pos = pos
self.ogPos = pos # Original Position (1,2,3,4,5,6,7,8,9)
self.listNum = listNum
# Click detection, then calls slideIt() function from the Board class
def click(self, event):
self.parent.slideIt(self.pos) # Call method on parent
# Function to show the tile in the grid
def show(self):
self.grid(row = self.pos[0], column = self.pos[1])
# Check if the tile is in the correct position. It compares the
def isCorrectPos(self):
return self.pos == self.ogPos
#===================================================================================================================================================================================================================
# Board class. The tiles are shown on a grid on the board. This is the parent class.
class Board(Frame):
MAX_SIZE = 450
def __init__(self, parent, image, grid, win, *args, **kwargs):
Frame.__init__(self,parent,*args,**kwargs)
self.parent = parent
self.grid = grid
self.win = win
Button(self, text = "Breadth first solver", command = lambda: self.solveBFS(),font= ("Times New Roman",12)).grid(row=4, column=0)
Button(self, text = "Import board state", command = lambda: self.openCSV(),font= ("Times New Roman",12)).grid(row=4, column=1)
Button(self, text = "Best first solver", command = lambda: self.solveBest(),font= ("Times New Roman",12)).grid(row=4, column=2)
self.label = Label(self, text = "0 moves", font= ("Times New Roman",20))
self.label.grid(row=5, column=1)
self.image = self.openImage(image)
self.tileSize = self.image.size[0]/self.grid
self.tiles = self.createTiles()
self.tiles.shuffle()
self.tiles.show()
# Function to open a CSV file
def openCSV(self):
script_location = Path(__file__).absolute().parent
file_location = script_location / 'BoardState.csv'
with open(file_location, 'r') as csv_file:
csv_reader = csv.reader(csv_file)
next(csv_reader)
for line in csv_reader:
stateList = line
self.tiles.importState(stateList)
self.tiles.show()
movess = "{0} moves".format(self.tiles.moves)
self.label.config(text=movess)
# Function to open and crop the image to fit into a sqaure
def openImage(self,image):
image = Image.open(image)
if (image.size[0] > 450 or image.size[1] > 450):
image = image.resize((self.MAX_SIZE,self.MAX_SIZE),Image.ANTIALIAS)
if image.size[0] != image.size[1]:
image = image.crop((0,0,image.size[0],image.size[0]))
return image
# Function called when clicked on a tile. Update the moves and calls the slide function from Tiles. Also checks if goal state is reached.
def slideIt(self, pos):
self.tiles.slide(pos)
movess = "{0} moves".format(self.tiles.moves)
self.label.config(text=movess)
if self.tiles.isCorrect():
self.win(self.tiles.moves)
# Creates the tiles and the gap. Automatically crops the image into 9 pieces
def createTiles(self):
tiles = Tiles(self.grid)
i = 1
for row in range(self.grid):
for col in range(self.grid):
x0 = col*self.tileSize
y0 = row*self.tileSize
x1 = x0+self.tileSize
y1 = y0+self.tileSize
tileImage = ImageTk.PhotoImage(self.image.crop((x0,y0,x1,y1)))
if col == 2 and row == 2:
tile = Tile(self, None, (row,col),i)
tiles.add(tile)
tiles.setGap(-1)
tiles.show()
else:
tile = Tile(self, tileImage, (row,col),i)
tiles.add(tile)
tiles.show()
i += 1
return tiles
# Converts list to string for BFS
def toString(self, lys):
myString = ''
for item in lys:
temp = str(item)
myString += temp
return myString
# Show how search solve
def solveIt(self, statelist):
for state in statelist:
self.tiles.importState((list(state)))
self.tiles.show()
movess = "{0} moves".format(self.tiles.moves)
self.label.config(text=movess)
time.sleep(1)
root.update()
time.sleep(2)
if self.tiles.isCorrect():
self.win(self.tiles.moves)
# Checks for possible moves for search function
def possibleMoves(self, chosenNode):
validMoves = []
i = chosenNode.index('9')
if i == 0:
validMoves.extend([1,3])
elif i == 1:
validMoves.extend([0,2,4])
elif i == 2:
validMoves.extend([1,5])
elif i == 3:
validMoves.extend([0,4,6])
elif i == 4:
validMoves.extend([1,3,5,7])
elif i == 5:
validMoves.extend([2,4,8])
elif i == 6:
validMoves.extend([3,7])
elif i == 7:
validMoves.extend([4,6,8])
elif i == 8:
validMoves.extend([5,7])
return validMoves,i
# BFS search
def solveBFS(self):
tic = time.perf_counter()
g = nx.Graph()
rootNode = self.toString(self.tiles.toList())
print(rootNode)
goalNode = '123456789'
g.add_node(rootNode)
parents = {}
parents[rootNode] = None
openNodes = Queue()
openNodes.put(rootNode)
closedNodes = []
goal = False
while goal is False:
if not openNodes.empty():
chosenNode = openNodes.get(block=False)
if chosenNode == goalNode:
goal = True
else:
print(chosenNode)
validMoves, i = self.possibleMoves(chosenNode)
for j in range(0,len(validMoves)):
temp = list(chosenNode)
temp[i], temp[validMoves[j]] = temp[validMoves[j]], temp[i]
tempStr = self.toString(temp)
g.add_node(tempStr)
g.add_edge(chosenNode, tempStr)
pass
children = g.neighbors(chosenNode)
closedNodes.append(chosenNode)
for child in children:
if child not in closedNodes and child not in openNodes.queue:
parents[child] = chosenNode
openNodes.put(child)
else:
break
# If goal state is reached, backtrack from goalstate to root, else go on
if goal:
backtrackPath = []
currentNode = goalNode
backtrackPath.append(currentNode)
stateList = []
count = 0
while currentNode is not rootNode:
currentNode = parents[currentNode]
backtrackPath.append(currentNode)
print('\nPuzzle is solved!')
print('\nSteps to solve:')
for node in reversed(backtrackPath):
if(node != rootNode):
stateList.append(node)
count += 1
toc = time.perf_counter()
msg = f'Do you want me to solve this puzzle? {count} moves from here. \nIt took {toc - tic:0.4f} seconds to solve!'
MsgBox = tkmb.askquestion ('Solution Found',msg,icon = 'question')
if MsgBox == 'yes':
self.solveIt(stateList)
else:
print("Self solve")
else:
print('Not solved')
# Calculate the cost of the edge for BEST FIRST
def calcCost(self, theStr):
cost = 0
goalNode = '123456789'
for nom in range(0, len(theStr)):
if theStr[nom] != goalNode[nom]:
cost += 1
return cost
# BEST FIRST search
def solveBest(self):
tic = time.perf_counter()
g = nx.Graph()
rootNode = self.toString(self.tiles.toList())
goalNode = '123456789'
rootCost = self.calcCost(rootNode)
g.add_node(rootNode)
parents = {}
parents[rootNode] = None
openNodes = PriorityQueue()
openNodes.put((rootCost, rootNode))
closedNodes = []
goal = False
while goal is False:
if not openNodes.empty():
cost, chosenNode = openNodes.get()
if chosenNode == goalNode:
goal = True
else:
validMoves, i = self.possibleMoves(chosenNode)
for j in range(0,len(validMoves)):
temp = list(chosenNode)
temp[i], temp[validMoves[j]] = temp[validMoves[j]], temp[i]
tempStr = self.toString(temp)
g.add_node(tempStr)
g.add_edge(chosenNode, tempStr, length = self.calcCost(tempStr))
pass
children = g.neighbors(chosenNode)
closedNodes.append(chosenNode)
for child in children:
if child not in closedNodes and child not in openNodes.queue:
cost = self.calcCost(child)
parents[child] = chosenNode
openNodes.put((cost, child))
else:
break
# If goal state is reached, backtrack from goalstate to root, else go on
if goal:
backtrackPath = []
currentNode = goalNode
backtrackPath.append(currentNode)
stateList = []
count = 0
while currentNode is not rootNode:
currentNode = parents[currentNode]
backtrackPath.append(currentNode)
print('\nPuzzle is solved!')
print('\nSteps to solve:')
for node in reversed(backtrackPath):
if(node != rootNode):
stateList.append(node)
count += 1
toc = time.perf_counter()
msg = f'Do you want me to solve this puzzle? {count} moves from here. \nIt took {toc - tic:0.4f} seconds to solve!'
MsgBox = tkmb.askquestion ('Solution Found',msg,icon = 'question')
if MsgBox == 'yes':
self.solveIt(stateList)
else:
print("Self solve")
else:
print('Not solved')
#===================================================================================================================================================================================================================
# Main class. This is the main menu where you choose the image and start the game.
class Main():
def __init__(self,parent):
self.parent = parent
self.image = StringVar()
self.winText = StringVar()
self.createWidgets()
# Creates the widgets for the starting page, win page and board page
def createWidgets(self):
self.mainFrame = Frame(self.parent)
Label(self.mainFrame, text = 'AI Puzzle Game', font= ("Times New Roman",40)).pack(padx = 10, pady = 10)
frame = Frame(self.mainFrame)
Label(frame, text = 'Image').grid(sticky = W)
Entry(frame,textvariable = self.image).grid(row=0, column=1, padx = 30, pady = 30)
Button(frame, text = "Browse", command = self.browse).grid(row=0, column=2, padx = 30, pady = 30)
frame.pack(padx = 30, pady = 30)
Button(self.mainFrame, text = "Start", command = self.start,font= ("Arial",15,"bold")).pack(padx = 30, pady = 30)
self.mainFrame.pack()
self.board = Frame(self.parent)
self.winFrame = Frame(self.parent)
Label(self.winFrame, textvariable = self.winText,font = ('',50)).pack(padx = 30, pady = 30)
Button(self.winFrame, text = "Play again", command = self.playAgain).pack(padx = 30, pady = 30)
# Start button function, close main and open Board
def start(self):
image = self.image.get()
if os.path.exists(image):
self.board = Board(self.parent,image,3,self.win)
self.mainFrame.pack_forget()
self.board.pack()
# File dialog for image to use on puzzle
def browse(self):
self.image.set(filedialog.askopenfilename(title = "Select Image", filetype = (("JPG File","*.jpg"),("PNG File","*.png"))))
# Win state page
def win(self,moves):
self.board.pack_forget()
self.winText.set("You WON! You made {0} moves".format(moves))
self.winFrame.pack()
# Play again button's method
def playAgain(self):
self.winFrame.pack_forget()
self.mainFrame.pack()
# Set the app root to main page
if __name__ == "__main__":
root = Tk()
Main(root)
root.mainloop()