Spaces:
Sleeping
Sleeping
Commit
·
c1db03c
1
Parent(s):
69af54f
Init with bot player
Browse files- .gitignore +2 -0
- app.py +162 -0
- requirements.txt +1 -0
.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
.idea
|
2 |
+
venv
|
app.py
ADDED
@@ -0,0 +1,162 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
from typing import List
|
3 |
+
|
4 |
+
DESCRIPTION = '''
|
5 |
+
<div>
|
6 |
+
<h1 style="text-align: center;">Tic Tac Toe</h1>
|
7 |
+
<h2>Simple Tic Tac Toe game with a computer opponent.</h2>
|
8 |
+
'''
|
9 |
+
|
10 |
+
LICENSE = """
|
11 |
+
---
|
12 |
+
Built with ❤️ by [Gradio](https://gradio.app)
|
13 |
+
"""
|
14 |
+
|
15 |
+
boardTemplate = """
|
16 |
+
<center>
|
17 |
+
<table>
|
18 |
+
<tr>
|
19 |
+
<td>{0}</td>
|
20 |
+
<td>{1}</td>
|
21 |
+
<td>{2}</td>
|
22 |
+
</tr>
|
23 |
+
<tr>
|
24 |
+
<td>{3}</td>
|
25 |
+
<td>{4}</td>
|
26 |
+
<td>{5}</td>
|
27 |
+
</tr>
|
28 |
+
<tr>
|
29 |
+
<td>{6}</td>
|
30 |
+
<td>{7}</td>
|
31 |
+
<td>{8}</td>
|
32 |
+
</tr>
|
33 |
+
</table>
|
34 |
+
</center>
|
35 |
+
"""
|
36 |
+
|
37 |
+
css = """
|
38 |
+
table {
|
39 |
+
border-collapse: collapse;
|
40 |
+
}
|
41 |
+
|
42 |
+
td {
|
43 |
+
border: 1px solid gray;
|
44 |
+
width: 50px;
|
45 |
+
height: 50px;
|
46 |
+
text-align: center;
|
47 |
+
}
|
48 |
+
"""
|
49 |
+
|
50 |
+
winConditions = [
|
51 |
+
[0, 1, 2],
|
52 |
+
[3, 4, 5],
|
53 |
+
[6, 7, 8],
|
54 |
+
[0, 3, 6],
|
55 |
+
[1, 4, 7],
|
56 |
+
[2, 5, 8],
|
57 |
+
[0, 4, 8],
|
58 |
+
[2, 4, 6],
|
59 |
+
]
|
60 |
+
|
61 |
+
squares: List[str] = [" " for i in range(9)]
|
62 |
+
|
63 |
+
|
64 |
+
def botPlayer(squares: List[str]) -> int:
|
65 |
+
print("Bot's turn")
|
66 |
+
if squares[4] == " ":
|
67 |
+
return 4
|
68 |
+
lockable_moves: List[int] = []
|
69 |
+
|
70 |
+
for condition in winConditions:
|
71 |
+
for vacantPosition in range(3):
|
72 |
+
if (
|
73 |
+
squares[condition[vacantPosition]] == " "
|
74 |
+
and squares[condition[(vacantPosition + 1) % 3]] == " X "
|
75 |
+
and squares[condition[(vacantPosition + 2) % 3]] == " X "
|
76 |
+
):
|
77 |
+
lockable_moves.append(condition[vacantPosition])
|
78 |
+
if not lockable_moves:
|
79 |
+
for square in squares:
|
80 |
+
if square == " ":
|
81 |
+
return squares.index(square)
|
82 |
+
return lockable_moves[0]
|
83 |
+
|
84 |
+
|
85 |
+
def checkWin(current_player: bool, squares: List[str]):
|
86 |
+
player_mark: str = " X " if current_player else " O "
|
87 |
+
for condition in winConditions:
|
88 |
+
if (
|
89 |
+
squares[condition[0]] == player_mark
|
90 |
+
and squares[condition[1]] == player_mark
|
91 |
+
and squares[condition[2]] == player_mark
|
92 |
+
):
|
93 |
+
return True
|
94 |
+
return False
|
95 |
+
|
96 |
+
|
97 |
+
def is_empty(squares: List[str], index: int) -> bool:
|
98 |
+
return squares[index] == " "
|
99 |
+
|
100 |
+
|
101 |
+
def reset_squares():
|
102 |
+
global squares
|
103 |
+
squares = [" " for i in range(9)]
|
104 |
+
|
105 |
+
|
106 |
+
def is_square_empty():
|
107 |
+
for square in squares:
|
108 |
+
if square == " ":
|
109 |
+
return True
|
110 |
+
return False
|
111 |
+
|
112 |
+
|
113 |
+
def on_submit(number):
|
114 |
+
if not is_square_empty():
|
115 |
+
reset_squares()
|
116 |
+
|
117 |
+
if is_empty(squares, number):
|
118 |
+
squares[number] = " X "
|
119 |
+
if checkWin(True, squares):
|
120 |
+
gr.Info("You win!")
|
121 |
+
return "<h3>You win!</h3>"
|
122 |
+
else:
|
123 |
+
gr.Info("Move already made!")
|
124 |
+
return boardTemplate.format(*squares)
|
125 |
+
|
126 |
+
bot_move = botPlayer(squares)
|
127 |
+
if is_empty(squares, bot_move):
|
128 |
+
squares[bot_move] = " O "
|
129 |
+
if checkWin(False, squares):
|
130 |
+
gr.Info("You lose!")
|
131 |
+
return "<h3>You lose!</h3>"
|
132 |
+
|
133 |
+
if not is_square_empty():
|
134 |
+
gr.Info("It's a tie!")
|
135 |
+
return "<h3>It's a tie!</h3>"
|
136 |
+
|
137 |
+
return boardTemplate.format(*squares)
|
138 |
+
|
139 |
+
|
140 |
+
with (gr.Blocks(css=css) as demo):
|
141 |
+
gr.Markdown(DESCRIPTION)
|
142 |
+
|
143 |
+
with gr.Row():
|
144 |
+
with gr.Column():
|
145 |
+
board = gr.HTML(
|
146 |
+
boardTemplate.format(*squares),
|
147 |
+
)
|
148 |
+
|
149 |
+
with gr.Column():
|
150 |
+
num = gr.Number(
|
151 |
+
0,
|
152 |
+
label="Player X move",
|
153 |
+
minimum=0,
|
154 |
+
maximum=8,
|
155 |
+
step=1,
|
156 |
+
)
|
157 |
+
num.submit(on_submit, inputs=[num], outputs=[board])
|
158 |
+
|
159 |
+
gr.Markdown(LICENSE)
|
160 |
+
|
161 |
+
if __name__ == "__main__":
|
162 |
+
demo.launch()
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
gradio==4.26.0
|