-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtictac.py
More file actions
166 lines (159 loc) · 5.18 KB
/
Copy pathtictac.py
File metadata and controls
166 lines (159 loc) · 5.18 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
from tkinter import *
from tkinter import messagebox
window=Tk()
window.title("Welcome to The Gaming world TIC-Tac-Toe ")
window.geometry("400x400")
lbl=Label(window,text="Tic-tac-toe Game",font=('Helvetica','15'))
lbl.grid(row=0,column=0)
lbl=Label(window,text="Player 1: X",font=('Helvetica','20'))
lbl.grid(row=2,column=0)
lbl=Label(window,text="Player 2: O",font=('Helvetica','20'))
lbl.grid(row=3,column=0)
lbl=Label(window,text="\nMade by: \nDjZeak",font =('Times New Roman','22'))
lbl.place(x=290,y=290)
turn=1; #For first person turn.
def clicked1():
global turn
if btn1["text"]==" ": #For getting the text of a button
if turn==1:
turn =2;
btn1["text"]="X"
elif turn==2:
turn=1;
btn1["text"]="O"
check();
def clicked2():
global turn
if btn2["text"]==" ":
if turn==1:
turn =2;
btn2["text"]="X"
elif turn==2:
turn=1;
btn2["text"]="O"
check();
def clicked3():
global turn
if btn3["text"]==" ":
if turn==1:
turn =2;
btn3["text"]="X"
elif turn==2:
turn=1;
btn3["text"]="O"
check();
def clicked4():
global turn
if btn4["text"]==" ":
if turn==1:
turn =2;
btn4["text"]="X"
elif turn==2:
turn=1;
btn4["text"]="O"
check();
def clicked5():
global turn
if btn5["text"]==" ":
if turn==1:
turn =2;
btn5["text"]="X"
elif turn==2:
turn=1;
btn5["text"]="O"
check();
def clicked6():
global turn
if btn6["text"]==" ":
if turn==1:
turn =2;
btn6["text"]="X"
elif turn==2:
turn=1;
btn6["text"]="O"
check();
def clicked7():
global turn
if btn7["text"]==" ":
if turn==1:
turn =2;
btn7["text"]="X"
elif turn==2:
turn=1;
btn7["text"]="O"
check();
def clicked8():
global turn
if btn8["text"]==" ":
if turn==1:
turn =2;
btn8["text"]="X"
elif turn==2:
turn=1;
btn8["text"]="O"
check();
def clicked9():
global turn
if btn9["text"]==" ":
if turn==1:
turn =2;
btn9["text"]="X"
elif turn==2:
turn=1;
btn9["text"]="O"
check();
flag=1;
def check():
global flag;
b1 = btn1["text"];
b2 = btn2["text"];
b3 = btn3["text"];
b4 = btn4["text"];
b5 = btn5["text"];
b6 = btn6["text"];
b7 = btn7["text"];
b8 = btn8["text"];
b9 = btn9["text"];
flag=flag+1;
if b1==b2 and b1==b3 and b1=="O" or b1==b2 and b1==b3 and b1=="X":
win(btn1["text"])
if b4==b5 and b4==b6 and b4=="O" or b4==b5 and b4==b6 and b4=="X":
win(btn4["text"]);
if b7==b8 and b7==b9 and b7=="O" or b7==b8 and b7==b9 and b7=="X":
win(btn7["text"]);
if b1==b4 and b1==b7 and b1=="O" or b1==b4 and b1==b7 and b1=="X":
win(btn1["text"]);
if b2==b5 and b2==b8 and b2=="O" or b2==b5 and b2==b8 and b2=="X":
win(btn2["text"]);
if b3==b6 and b3==b9 and b3=="O" or b3==b6 and b3==b9 and b3=="X":
win(btn3["text"]);
if b1==b5 and b1==b9 and b1=="O" or b1==b5 and b1==b9 and b1=="X":
win(btn1["text"]);
if b7==b5 and b7==b3 and b7=="O" or b7==b5 and b7==b3 and b7=="X":
win(btn7["text"]);
if flag ==10:
messagebox.showinfo("Tie", "Match Tied!!! Try again :)")
window.destroy()
def win(player):
ans = "Game complete " +player + " wins ";
messagebox.showinfo("Congratulations", ans)
window.destroy() # is used to close the program
btn1 = Button(window, text=" ",bg="yellow", fg="Black",width=3,height=1,font=('Helvetica','20'),command=clicked1)
btn1.grid(column=1, row=1)
btn2 = Button(window, text=" ",bg="yellow", fg="Black",width=3,height=1,font=('Helvetica','20'),command=clicked2)
btn2.grid(column=2, row=1)
btn3 = Button(window, text=" ",bg="yellow", fg="Black",width=3,height=1,font=('Helvetica','20'),command=clicked3)
btn3.grid(column=3, row=1)
btn4 = Button(window, text=" ",bg="yellow", fg="Black",width=3,height=1,font=('Helvetica','20'),command=clicked4)
btn4.grid(column=1, row=2)
btn5 = Button(window, text=" ",bg="yellow", fg="Black",width=3,height=1,font=('Helvetica','20'),command=clicked5)
btn5.grid(column=2, row=2)
btn6 = Button(window, text=" ",bg="yellow", fg="Black",width=3,height=1,font=('Helvetica','20'),command=clicked6)
btn6.grid(column=3, row=2)
btn7 = Button(window, text=" ",bg="yellow", fg="Black",width=3,height=1,font=('Helvetica','20'),command=clicked7)
btn7.grid(column=1, row=3)
btn8 = Button(window, text=" ",bg="yellow", fg="Black",width=3,height=1,font=('Helvetica','20'),command=clicked8)
btn8.grid(column=2, row=3)
btn9 = Button(window, text=" ",bg="yellow", fg="Black",width=3,height=1,font=('Helvetica','20'),command=clicked9)
btn9.grid(column=3, row=3)
window.mainloop()