-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtkinter_tic-tac-toe.py
261 lines (242 loc) · 8.58 KB
/
tkinter_tic-tac-toe.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
import tkinter as tk
import tkinter.messagebox
from tkinter.tix import COLUMN
window=tk.Tk()
window.title('Tic Tac Toe')
frame=tk.Frame(master=window)
frame.pack(pady=10)
label=tk.Label(master=frame,text="Tic Tac Toe",font=("Arial", 15))
label.pack()
frame1=tk.Frame(master=window,borderwidth=2,relief=tk.SUNKEN,bg='#dadec3')
frame1.pack(padx=10,pady=10)
button1=tk.Button(master=frame1,text='',width=10,height=5,bg='white',command=lambda : buttonclick(1))
button1.grid(row=0,column=0,padx=5,pady=5)
button2=tk.Button(master=frame1,text='',width=10,height=5,bg='white',command=lambda : buttonclick(2))
button2.grid(row=0,column=1,padx=5,pady=5)
button3=tk.Button(master=frame1,text='',width=10,height=5,bg='white',command=lambda : buttonclick(3))
button3.grid(row=0,column=2,padx=5,pady=5)
button4=tk.Button(master=frame1,text='',width=10,height=5,bg='white',command=lambda : buttonclick(4))
button4.grid(row=1,column=0,padx=5,pady=5)
button5=tk.Button(master=frame1,text='',width=10,height=5,bg='white',command=lambda : buttonclick(5))
button5.grid(row=1,column=1,padx=5,pady=5)
button6=tk.Button(master=frame1,text='',width=10,height=5,bg='white',command=lambda : buttonclick(6))
button6.grid(row=1,column=2,padx=5,pady=5)
button7=tk.Button(master=frame1,text='',width=10,height=5,bg='white',command=lambda : buttonclick(7))
button7.grid(row=2,column=0,padx=5,pady=5)
button8=tk.Button(master=frame1,text='',width=10,height=5,bg='white',command=lambda : buttonclick(8))
button8.grid(row=2,column=1,padx=5,pady=5)
button9=tk.Button(master=frame1,text='',width=10,height=5,bg='white',command=lambda : buttonclick(9))
button9.grid(row=2,column=2,padx=5,pady=5)
frame2=tk.Frame(master=window,border=2,relief=tk.SUNKEN,bg='#dadec3')
frame2.pack()
label1=tk.Label(master=frame2,text="Player 1 --> X\nPlayer 2 --> O",width=10)
label1.grid(row=0,column=0,padx=5)
button_restart=tk.Button(master=frame2,text="Restart",width=10,height=3,relief=tk.GROOVE,command=lambda: restartbutton())
button_restart.grid(row=0,column=1,padx=10,pady=10)
label2=tk.Label(master=frame2,text='Player-1 Turn',bg="skyblue",width=10,height=3,relief=tk.SUNKEN)
label2.grid(row=0,column=2,padx=5)
a=1
b=0
c=0
def disablebutton():
button1['state']=tk.DISABLED
button2['state']=tk.DISABLED
button3['state']=tk.DISABLED
button4['state']=tk.DISABLED
button5['state']=tk.DISABLED
button6['state']=tk.DISABLED
button7['state']=tk.DISABLED
button8['state']=tk.DISABLED
button9['state']=tk.DISABLED
def restartbutton():
global a,b,c
a=1
b=0
c=0
label2['bg']="skyblue"
label2['text']='Player-1 Turn'
button1['text']=''
button1['bg']='white'
button2['text']=''
button2['bg']='white'
button3['text']=''
button3['bg']='white'
button4['text']=''
button4['bg']='white'
button5['text']=''
button5['bg']='white'
button6['text']=''
button6['bg']='white'
button7['text']=''
button7['bg']='white'
button8['text']=''
button8['bg']='white'
button9['text']=''
button9['bg']='white'
button1['state']=tk.NORMAL
button2['state']=tk.NORMAL
button3['state']=tk.NORMAL
button4['state']=tk.NORMAL
button5['state']=tk.NORMAL
button6['state']=tk.NORMAL
button7['state']=tk.NORMAL
button8['state']=tk.NORMAL
button9['state']=tk.NORMAL
def buttonclick(x):
global a,b,c
#for player 1
if(x==1 and a==1 and button1['text']==''):
button1['text']="X"
button1['bg']="skyblue"
label2['bg']="#e8956f"
label2['text']='Player-2 Turn'
a=0
b+=1
if(x==2 and a==1 and button2['text']==''):
button2['text']="X"
button2['bg']="skyblue"
label2['bg']="#e8956f"
label2['text']='Player-2 Turn'
a=0
b+=1
if(x==3 and a==1 and button3['text']==''):
button3['text']="X"
button3['bg']="skyblue"
label2['bg']="#e8956f"
label2['text']='Player-2 Turn'
a=0
b+=1
if(x==4 and a==1 and button4['text']==''):
button4['text']="X"
button4['bg']="skyblue"
label2['bg']="#e8956f"
label2['text']='Player-2 Turn'
a=0
b+=1
if(x==5 and a==1 and button5['text']==''):
button5['text']="X"
button5['bg']="skyblue"
label2['bg']="#e8956f"
label2['text']='Player-2 Turn'
a=0
b+=1
if(x==6 and a==1 and button6['text']==''):
button6['text']="X"
button6['bg']="skyblue"
label2['bg']="#e8956f"
label2['text']='Player-2 Turn'
a=0
b+=1
if(x==7 and a==1 and button7['text']==''):
button7['text']="X"
button7['bg']="skyblue"
label2['bg']="#e8956f"
label2['text']='Player-2 Turn'
a=0
b+=1
if(x==8 and a==1 and button8['text']==''):
button8['text']="X"
button8['bg']="skyblue"
label2['bg']="#e8956f"
label2['text']='Player-2 Turn'
a=0
b+=1
if(x==9 and a==1 and button9['text']==''):
button9['text']="X"
button9['bg']="skyblue"
label2['bg']="#e8956f"
label2['text']='Player-2 Turn'
a=0
b+=1
#for player 2
if(x==1 and a==0 and button1['text']==''):
button1['text']='O'
button1['bg']="#e8956f"
label2['bg']="skyblue"
label2['text']='Player-1 Turn'
a=1
b+=1
if(x==2 and a==0 and button2['text']==''):
button2['text']='O'
button2['bg']="#e8956f"
label2['bg']="skyblue"
label2['text']='Player-1 Turn'
a=1
b+=1
if(x==3 and a==0 and button3['text']==''):
button3['text']='O'
button3['bg']="#e8956f"
label2['bg']="skyblue"
label2['text']='Player-1 Turn'
a=1
b+=1
if(x==4 and a==0 and button4['text']==''):
button4['text']='O'
button4['bg']="#e8956f"
label2['bg']="skyblue"
label2['text']='Player-1 Turn'
a=1
b+=1
if(x==5 and a==0 and button5['text']==''):
button5['text']='O'
button5['bg']="#e8956f"
label2['bg']="skyblue"
label2['text']='Player-1 Turn'
a=1
b+=1
if(x==6 and a==0 and button6['text']==''):
button6['text']='O'
button6['bg']="#e8956f"
label2['bg']="skyblue"
label2['text']='Player-1 Turn'
a=1
b+=1
if(x==7 and a==0 and button7['text']==''):
button7['text']='O'
button7['bg']="#e8956f"
label2['bg']="skyblue"
label2['text']='Player-1 Turn'
a=1
b+=1
if(x==8 and a==0 and button8['text']==''):
button8['text']='O'
button8['bg']="#e8956f"
label2['bg']="skyblue"
label2['text']='Player-1 Turn'
a=1
b+=1
if(x==9 and a==0 and button9['text']==''):
button9['text']='O'
button9['bg']="#e8956f"
label2['bg']="skyblue"
label2['text']='Player-1 Turn'
a=1
b+=1
#checking winner
if(button1['text']=='X' and button2['text']=='X' and button3['text']=='X' or
button4['text']=='X' and button5['text']=='X' and button6['text']=='X' or
button7['text']=='X' and button8['text']=='X' and button9['text']=='X' or
button1['text']=='X' and button4['text']=='X' and button7['text']=='X' or
button2['text']=='X' and button5['text']=='X' and button8['text']=='X' or
button3['text']=='X' and button6['text']=='X' and button9['text']=='X' or
button1['text']=='X' and button5['text']=='X' and button9['text']=='X' or
button3['text']=='X' and button5['text']=='X' and button7['text']=='X'):
disablebutton()
c=1
tkinter.messagebox.showinfo("Tic Tac Toe","Winner is player 1")
elif( button1['text']=='O' and button2['text']=='O' and button3['text']=='O' or
button4['text']=='O' and button5['text']=='O' and button6['text']=='O' or
button7['text']=='O' and button8['text']=='O' and button9['text']=='O' or
button1['text']=='O' and button4['text']=='O' and button7['text']=='O' or
button2['text']=='O' and button5['text']=='O' and button8['text']=='O' or
button3['text']=='O' and button6['text']=='O' and button9['text']=='O' or
button1['text']=='O' and button5['text']=='O' and button9['text']=='O' or
button3['text']=='O' and button5['text']=='O' and button7['text']=='O'):
disablebutton()
c=1
tkinter.messagebox.showinfo("Tic Tac Toe","Winner is player 2")
elif(b==9):
disablebutton()
c=1
tkinter.messagebox.showinfo("Tic Tac Toe","Match is Draw.")
window.mainloop()