Spaces:
Sleeping
Sleeping
File size: 4,898 Bytes
c1db03c bd1188e c1db03c bd1188e c1db03c bd1188e 8d15210 bd1188e 8d15210 bd1188e 3cf10ed bd1188e 15408a8 bd1188e c1db03c 15408a8 c1db03c 15408a8 c1db03c 15408a8 c1db03c |
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 |
import gradio as gr
from typing import List
from gradio_client import Client
DESCRIPTION = '''
<div>
<h1 style="text-align: center;">Tic Tac Toe</h1>
<h2>Simple Tic Tac Toe game with a computer opponent.</h2>
'''
LICENSE = """
---
Built with ❤️ by [Gradio](https://gradio.app)
"""
boardTemplate = """
<center>
<table>
<tr>
<td>{0}</td>
<td>{1}</td>
<td>{2}</td>
</tr>
<tr>
<td>{3}</td>
<td>{4}</td>
<td>{5}</td>
</tr>
<tr>
<td>{6}</td>
<td>{7}</td>
<td>{8}</td>
</tr>
</table>
</center>
"""
aiBoardTemplate = """"
0 1 2
+-----+-----+-----+
| {0} | {1} | {2} |
+-----+-----+-----+
3 | {3} | {4} | {5} | 5
+-----+-----+-----+
| {6} | {7} | {8} |
+-----+-----+-----+
6 7 8
"""
css = """
table {
border-collapse: collapse;
}
td {
border: 1px solid gray;
width: 50px;
height: 50px;
text-align: center;
}
"""
winConditions = [
[0, 1, 2],
[3, 4, 5],
[6, 7, 8],
[0, 3, 6],
[1, 4, 7],
[2, 5, 8],
[0, 4, 8],
[2, 4, 6],
]
squares: List[str] = [" " for i in range(9)]
def aiPlayer(squares: List[str]) -> int:
print("AI's turn")
prompt = f""""
# Tic Tac Toe
The board is:
{aiBoardTemplate.format(*squares)}
It's your turn. Enter the number of the square you want to place your 'O' in.
Only enter the number of the square. For example, if you want to place your 'O' in the top right square,
no any text or spaces, just enter 2.
"""
client = Client("sithumonline/llama-cpp-python-cpu-gradio")
result = client.predict(
message=prompt,
api_name="/chat"
)
print(f"AI's move: {result}")
return int(result)
def botPlayer(squares: List[str]) -> int:
print("Bot's turn")
if squares[4] == " ":
return 4
lockable_moves: List[int] = []
for condition in winConditions:
for vacantPosition in range(3):
if (
squares[condition[vacantPosition]] == " "
and squares[condition[(vacantPosition + 1) % 3]] == " X "
and squares[condition[(vacantPosition + 2) % 3]] == " X "
):
lockable_moves.append(condition[vacantPosition])
if not lockable_moves:
for square in squares:
if square == " ":
return squares.index(square)
return lockable_moves[0]
def checkWin(current_player: bool, squares: List[str]):
player_mark: str = " X " if current_player else " O "
for condition in winConditions:
if (
squares[condition[0]] == player_mark
and squares[condition[1]] == player_mark
and squares[condition[2]] == player_mark
):
return True
return False
def is_empty(squares: List[str], index: int) -> bool:
return squares[index] == " "
def reset_squares():
global squares
squares = [" " for i in range(9)]
def is_square_empty():
for square in squares:
if square == " ":
return True
return False
def on_submit(number, chk):
if not is_square_empty():
reset_squares()
if is_empty(squares, number):
squares[number] = " X "
if checkWin(True, squares):
gr.Info("You win!")
return "<h3>You win!</h3>"
else:
gr.Info("Move already made!")
return boardTemplate.format(*squares)
if chk:
ai_move = aiPlayer(squares)
if is_empty(squares, ai_move):
squares[ai_move] = " O "
if checkWin(False, squares):
gr.Info("You lose!")
return "<h3>You lose!</h3>"
else:
bot_move = botPlayer(squares)
if is_empty(squares, bot_move):
squares[bot_move] = " O "
if checkWin(False, squares):
gr.Info("You lose!")
return "<h3>You lose!</h3>"
if not is_square_empty():
gr.Info("It's a tie!")
return "<h3>It's a tie!</h3>"
return boardTemplate.format(*squares)
with (gr.Blocks(css=css) as demo):
gr.Markdown(DESCRIPTION)
with gr.Row():
with gr.Column():
board = gr.HTML(
boardTemplate.format(*squares),
)
with gr.Column():
num = gr.Number(
0,
label="Player X move",
minimum=0,
maximum=8,
step=1,
)
chk = gr.Checkbox(
False,
label="AI Component",
)
num.submit(on_submit, inputs=[num, chk], outputs=[board])
gr.Markdown(LICENSE)
if __name__ == "__main__":
demo.launch()
|