-
Notifications
You must be signed in to change notification settings - Fork 0
/
NaughtsAndCrossesLib.py
executable file
·280 lines (222 loc) · 8.12 KB
/
NaughtsAndCrossesLib.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
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
#Imports
import math
import random
import copy
#Global Variables
Board = [["1","2","3"],["4","5","6"],["7","8","9"]]
O = True
Victory = False
TurnNum = 0
OWin = 0
XWin = 0
Draw = 0
#ToDO
# Change O to Player=O|X
# Change board to 1d array
#Functions
def Display():
if int(NumOfTurns) < 3:
print("")
for i in range(0,3):
print(Board[i])
def PlayTurn(O):
global Board
ValidTurn = False
if O:
Mark = "O"
else:
Mark = "X"
while ValidTurn == False:
j = input("Player " + Mark + " input number of square to replace: ")
if (j.isnumeric() == True):
j = int(j)
if (j <= 9) and (j >= 1):
x = (j%3)-1 # Calculate Board array position from entered grid position
if x == -1:
x += 3
y = math.ceil(j/3)-1
if Board[y][x].isnumeric(): # Check position not already taken
ValidTurn = True
# ToDo Replace 4 lines below with 1 line?
if O == True:
Board[y][x] = "O"
else:
Board[y][x] = "X"
def ComputerRandomTurn(O):
global Board
ValidTurn = False
if O:
Mark = "O"
else:
Mark = "X"
while ValidTurn == False:
RandPos = random.randint(1,9)
x = (RandPos%3)-1 # Calculate Board array position from entered grid position
if x == -1:
x += 3
y = math.ceil(RandPos/3)-1
if Board[y][x].isnumeric(): # Check position not already taken
ValidTurn = True
# ToDo Replace 4 lines below with 1 line?
if O == True:
Board[y][x] = "O"
else:
Board[y][x] = "X"
if int(NumOfTurns) < 3:
print("Computer " + Mark + " input number of square to replace: " + str(RandPos))
def ComputerCalculatedTurn(O):
global Board
if O:
Mark = "O"
else:
Mark = "X"
# Will we win on this square? If so - take the square
for n in range (0,3):
for m in range (0,3): # Cycle through all squares
TempBoard = copy.deepcopy(Board) # Take a copy of the board
CurrentSquare = TempBoard[n][m]
if (CurrentSquare.isnumeric() == True): # Is the square empty
TempBoard[n][m] = Mark
Victory, WinMark = WinCondition(O, TempBoard)
if Victory:
if int(NumOfTurns) < 3:
print("Win " + str(n) + " " + str(m))
Board[n][m] = Mark # If taking this square wins, then take this square
return False # ComputerCalculatedTurn Complete
if int(NumOfTurns) < 3:
print("Cant win on this turn")
# Will the enemy win on this square? If so - take the square
if O:
EnemyMark = "X"
else:
EnemyMark = "O"
for n in range (0,3):
for m in range (0,3): # Cycle through all squares
TempBoard = copy.deepcopy(Board) # Take a copy of the board
CurrentSquare = TempBoard[n][m]
if (CurrentSquare.isnumeric() == True): # Is the square empty
TempBoard[n][m] = EnemyMark
Victory, WinMark = WinCondition(not O, TempBoard)
if Victory:
Board[n][m] = Mark # If taking this square stops yuor opoppnent winning, then take this square
if int(NumOfTurns) < 3:
print("Stop Win " + str(n) + " " + str(m))
print("This square is stopping opponent victory")
return False # ComputerCalculatedTurn Complete
if int(NumOfTurns) < 3:
print("Cant lose on this turn")
# If the middle square is free - take it
if (Board[1][1].isnumeric() == True): # Is the square empty
Board[1][1] = Mark
if int(NumOfTurns) < 3:
print("This is a critical square")
return False
if int(NumOfTurns) < 3:
print("Cant take centre square")
ComputerRandomTurn(O) # If we haven't found any other better turn, take a random turn.
if int(NumOfTurns) < 3:
print("So take a random turn")
def NextPlayer():
global O
O = not O
def ChoosePlayers():
Valid = False
while Valid == False:
pO = input("Player O: Human[1] Easy Computer[2] Hard Computer[3] \n")
if pO == "1":
Valid = True
pO = "Human"
elif pO == "2":
Valid = True
pO = "Easy Computer"
elif pO == "3":
Valid = True
pO = "Hard Computer"
Valid = False
while Valid == False:
pX = input("Player X: Human[1] Easy Computer[2] Hard Computer[3] \n")
if pX == "1":
Valid = True
pX = "Human"
elif pX == "2":
Valid = True
pX = "Easy Computer"
elif pX == "3":
Valid = True
pX = "Hard Computer"
Valid = False
while Valid == False:
NumOfTurns = input("How many turns do you want to take? ")
if (Board[1][1].isnumeric() == True):
Valid = True
return pO, pX, NumOfTurns
def WinCondition(O, LocalBoard):
if O == True:
Mark = "O"
else:
Mark = "X"
#print("DEBUG: LocalBoard: ")
#print(*LocalBoard)
if (LocalBoard[1][1] == Mark):
if (LocalBoard[0][0] == Mark and LocalBoard[2][2] == Mark):
return(True, Mark)
if (LocalBoard[0][1] == Mark and LocalBoard[2][1] == Mark):
return(True, Mark)
if (LocalBoard[0][2] == Mark and LocalBoard[2][0] == Mark):
return(True, Mark)
if (LocalBoard[1][0] == Mark and LocalBoard[1][2] == Mark):
return(True, Mark)
if (LocalBoard[0][0] == Mark):
if (LocalBoard[0][1] == Mark and LocalBoard[0][2] == Mark):
return(True, Mark)
if (LocalBoard[1][0] == Mark and LocalBoard[2][0] == Mark):
return(True, Mark)
if (LocalBoard[2][2] == Mark):
if (LocalBoard[1][2] == Mark and LocalBoard[0][2] == Mark):
return(True, Mark)
if (LocalBoard[2][0] == Mark and LocalBoard[2][1] == Mark):
return(True, Mark)
return(False, Mark)
# Main Game
def main():
# Check if player O and player X are humans or randomcomputers
pO, pX, NumOfTurns = ChoosePlayers()
for t in range (0,int(NumOfTurns)):
Board = [["1","2","3"],["4","5","6"],["7","8","9"]]
O = True
Victory = False
TurnNum = 0
while (TurnNum < 9) and (Victory == False):
Display()
if O:
if pO == "Human":
PlayTurn(O)
elif pO == "Easy Computer":
ComputerRandomTurn(O)
elif pO == "Hard Computer":
ComputerCalculatedTurn(O)
else:
if pX == "Human":
PlayTurn(O)
elif pX == "Easy Computer":
ComputerRandomTurn(O)
elif pX == "Hard Computer":
ComputerCalculatedTurn(O)
Victory, Mark = WinCondition(O, Board)
NextPlayer()
TurnNum += 1
Display()
if Victory and Mark == "O":
print("You Win O!")
OWin +=1
elif Victory and Mark == "X":
print("You Win X!")
XWin +=1
else:
print("The game is a Draw")
Draw +=1
print("O won " + str(OWin) + " times")
print("X won " + str(XWin) + " times")
print("They drew " + str(Draw) + " times")
if __name__ == '__main__':
main()