-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTicTacToe.py
129 lines (109 loc) · 4.55 KB
/
TicTacToe.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
# -*- coding: utf-8 -*-
"""
Created on Fri Nov 13 12:03:11 2020
@author: chrambo
"""
# =============================================================================
# One Player Tic-Tac-Toe Game
# =============================================================================
import random
#%%Build the board
#Create board dictionary
gameBoard = {'1': ' ' , '2': ' ' , '3': ' ' ,
'4': ' ' , '5': ' ' , '6': ' ' ,
'7': ' ' , '8': ' ' , '9': ' ' }
#Will be printing the board a lot so set up a function
printBoard = lambda board:(
print(' ' + board['1'] + '| ' + board['2'] + ' | ' + board['3'],
'\n--+---+--\n',
board['4'] + '| ' + board['5'] + ' | ' + board['6'],
'\n--+---+--\n',
board['7'] + '| ' + board['8'] + ' | ' + board['9']))
board = []
for place in gameBoard:
board.append(place) #Clear the board
#%%Introduce the game
print('Welcome to the game of Tic-Tac-Toe, you are playing as X and will go first \n',
'The board is stuctured like')
print(' ' + '1' + '| ' + '2' + ' | ' + '3',
'\n--+---+--\n',
'4' + '| ' + '5' + ' | ' + '6',
'\n--+---+--\n',
'7' + '| ' + '8' + ' | ' + '9')
print('Unfortunately for you I am a lazy programmer so even if a board will result in a tie, \n'
'you will have to play to the end. Best of five wins! Good luck.\n')
#%% Play the game (I lost the game!)
#Starting conditions
playerScore = 0
comScore = 0
player = 'X'
turns = 0
play = True
while (playerScore or comScore) < 3:
if player == 'X': #Player takes their turn with keyboard input
play = str(input('It\'s your turn. Where do you want to play? '))
if gameBoard[play] == ' ': #Location must be empty
gameBoard[play] = 'X' #Location is recorded for the player
turns += 1
else:
print('That place is already taken. Please try another location')
continue
if player == 'O': #Computer Takes its turn randomly
play = str(random.randint(1,9))
if gameBoard[play] == ' ': #Location must be empty
gameBoard[play] = 'O' #Location is recorded for the computer
turns += 1 #Tie condition increases
print('The computer has played.')
else:
continue
printBoard(gameBoard)
# Check if any win conditions are met
if (gameBoard['1'] == gameBoard['2'] == gameBoard['3'] != ' ') or (# Top
gameBoard['4'] == gameBoard['5'] == gameBoard['6'] != ' ') or (# Middle
gameBoard['7'] == gameBoard['8'] == gameBoard['9'] != ' ') or (# Bottom
gameBoard['1'] == gameBoard['4'] == gameBoard['7'] != ' ') or (# Left
gameBoard['2'] == gameBoard['5'] == gameBoard['8'] != ' ') or (# Middle
gameBoard['3'] == gameBoard['6'] == gameBoard['9'] != ' ') or (# Right
gameBoard['1'] == gameBoard['5'] == gameBoard['9'] != ' ') or (# /
gameBoard['7'] == gameBoard['5'] == gameBoard['3'] != ' '): # \
print("\nRound over.")
print(player + " has won the round!")
if player =='X':
playerScore += 1 #Record player win
else:
comScore += 1 #Record computer win
for place in board:
gameBoard[place] = " " #Clear the board, reset turns
turns = 0
#Give the scores
print('Your score is ' + str(playerScore) +
' the computer\'s score is ' + str(comScore) +".\n")
# Check if tie condition has been met
if turns == 9:
print("It's a tie, please start again.\n")
for place in board:
gameBoard[place] = " " #Clear the board, reset turns
turns = 0
print('A new round starts now.')
# Change players
if player =='X':
player = 'O'
else:
player = 'X'
#Check scores/restart
if playerScore == 3:
restart = input('You have won the game! Would you like to start again? (y/n)')
if restart == "y" or restart == "Y":
playerScore = 0 #Set up new game
comScore = 0
player = 'X'
else:
break
elif comScore == 3:
restart = input('Game Over. You have lost. Would you like to start again? (y/n)')
if restart == "y" or restart == "Y":
playerScore = 0 #Set up new game
comScore = 0
player = 'X'
else:
break