-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTicTacToe.py
125 lines (107 loc) · 4.22 KB
/
TicTacToe.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
from PySimpleGUI import *
X,O = 0,0
theme('DarkAmber')
def createLayout():
global X,O
#dimensions of each display box
dimensions = [2,1]
#list of buttons and display boxes is initialised
display = []
for i in range(3):
disp = [Text(" "*14)]
for j in range(1,4):
#create display boxes in the rows
disp.append(Text(background_color = '#bbbbcc',size = (dimensions[0],dimensions[1]),key = f'{i*3+j}',enable_events = True,font = ("Helvetica",25)))
# add rows of display boxes
display.append(disp)
layout =[ [Text(f"X:{X}\t\tO:{O}",key = 'score',font = ('Cambria',20))],
[Text(text=" "*23+" Tic Tac Toe",enable_events = True, click_submits = True,key = 'click',font = ('Constantia',12),text_color = "#99CAFF")],
*display,
[Text(" "*9),Text("X's turn",size = (20,1),key = 'out',font = ('Leelawadee',12),background_color = "#660066")],
[Text()],
[Text(" "*5),Button(button_text = 'RESET BOARD',key = 'resetboard'),Button(button_text = 'RESET SCORE',key = 'resetscore')],
[],
[Text(" "*27),Button(button_text = 'QUIT',key = 'quit')]]
return layout
#game table to keep track of things
gameTable = [[None for i in range(3)] for i in range(3)]
#reset gameTable
def resetTable():
global gameTable
gameTable = [[None for i in range(3)] for i in range(3)]
d = {1:' O',0:' X'}
#game move counter
curr_player = 0
#to check if anyone has won
hasWon = 0
#keynames
options = [str(i) for i in range(1,10)]
oneGame = True
def reset(window):
global curr_player,hasWon,oneGame
hasWon = 0
oneGame = True
curr_player = 0
for i in range(1,10):
window[f"{i}"].update('')
resetTable()
def checkWin():
global gameTable,d,hasWon
if hasWon == 0:
for i in range(3):
if gameTable[0][i] != None:
if gameTable[0][i] == gameTable[1][i] and gameTable[1][i] == gameTable[2][i]:
hasWon = 1 if gameTable[0][i] == ' X' else 2
if gameTable[i][0] != None:
if gameTable[i][0] == gameTable[i][1] and gameTable[i][1] == gameTable[i][2]:
hasWon = 1 if gameTable[i][0] == ' X' else 2
if gameTable[1][1] != None:
if (gameTable[0][0] == gameTable[1][1] and gameTable[1][1] == gameTable[2][2]) or (gameTable[2][0] == gameTable[1][1] and gameTable[1][1] == gameTable[0][2]):
hasWon = 1 if gameTable[1][1] == ' X' else 2
return None
def loop():
global curr_player,hasWon,options,gameTable,d,X,O,oneGame
layout = createLayout()
#Create window with given layout
window = Window('Tic Tac Toe', layout,margins = (100,100))
while True:
event, values = window.Read()
if event == 'click':
print('Clicked')
if oneGame:
if event in options:
r,c = divmod(int(event)-1,3)
if gameTable[r][c] == None:
gameTable[r][c] = d[curr_player%2]
print(event)
window[event].update(d[curr_player%2])
curr_player+=1
if event == 'resetboard':
reset(window)
checkWin()
if hasWon:
if oneGame:
oneGame = False
if d[hasWon-1] == ' X':
X+=1
else:
O+=1
window['out'].update(f'{d[hasWon-1]} has won the game!')
else:
if curr_player == 9:
window['out'].update(f"Tied!")
else:
window['out'].update(f"{d[curr_player%2].strip()}'s turn")
if event == WINDOW_CLOSED:
break
if event == 'quit':
res = popup_yes_no("Do you want to quit?")
if res.lower() == "yes":
break
else:
pass
if event == 'resetscore':
X,O = 0,0
window['score'].update(f"X:{X}\t\tO:{O}")
window.close()
loop()