I have made a game called Tic Tac Toe it is a 2 player game and it is when you have etheir get 3 Xs or 3 Os in a row or diagonally.
Code:
from guizero import *
empty = ' '
player = "X"
def clicked(z):
button = buttonlist[int(z)] # Finds out which button was pressed
global empty, player
if button.text != empty:
pass # If button already pushed do nothing
else:
# Marks button with user's go
button.text = player
# Switches players
if player == "X":
player = "O"
else:
player = "X"
return
app = App(title="Tic Tac Toe", layout="grid", width=200, height=200)
buttonlist = [] # Empty list to contain a list of Buttons
text_box = TextBox(app, text="enter username", align="top")
# Create Buttons for game, in 3 rows of 3
for y in range(3):
for x in range(3):
z = (3*y) + x
buttonlist.append(PushButton(app, text=empty,
args=str(z), grid=[y, x], command=clicked))
app.display()
The problem that I am having is when I put in the line:
text_box = TextBox(app, text="enter username", align="top")
The game still opens up but I get an error saying:
*** GUIZERO WARNING *** [TextBox] object with text "enter username" will not be displayed because it has a missing grid reference.
So could some one please help me fix this.