-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathttt_nonai.py
112 lines (99 loc) · 2.38 KB
/
ttt_nonai.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
'''
SHIV's
Tic Tac Toe game using a non AI method
Haha... So damn easy. My code rocks
'''
# this will be my board
board = ['_' for i in range(9)]
# show the board
def show_board():
for r in range(0, 9, 3):
print(board[r], board[r+1], board[r+2])
print("\n---------------\n")
# go will return true if move possible else false
def go(symbol, pos):
if(board[pos] == '_'):
board[pos] = symbol
return True
else:
return False
# a generator that returns the corner that is not taken
def corner(symbol):
cc = [0,2,6,8]
for c in cc:
if board[c] == '_':
yield c
yield -1
# a generator that returns the edge that is not taken
def edge(symbol):
cc = [1,3,5,7]
for c in cc:
if board[c] == '_':
yield c
yield -1
# returns the winning position
def poswin(symbol):
opp = 'X'
if symbol == 'X':
opp = 'O'
# eight winning lines
# 3 horizontal, 3 vertical and 2 diagonal
win_pos_matrix = [[0,1,2], [3,4,5], [6,7,8],[0,3,6], [1,4,7], [2,5,8],[0,4,8], [2,4,6]]
for (p,q,r) in win_pos_matrix:
mov_lis = [p,q,r]
if [board[p], board[q], board[r]].count(symbol) == 2 and opp not in [board[p], board[q], board[r]]:
ind = [board[p], board[q], board[r]].index('_')
# print([board[p], board[q], board[r]], p,q,r, symbol, mov_lis[ind])
# return index of the blank space
return mov_lis[ind]
# no winning move possible :( return 0
return 0
player = input("select symbol (X or O) (X plays first): ")
opp = 'X'
toggle = False
if player == 'X':
opp = 'O'
toggle = True
# main game loop
to, tx = 0, 0
for i in range(9):
if toggle:
print("player makes move")
toggle = False
while not go(player, int(input("make a move [0-8]:"))):
print("invalid move. Try again!")
show_board()
tx+=1
else:
print("computer moves")
toggle = True
if board[4] == '_' and tx < 2:
go(opp, 4)
elif tx < 2:
go(opp, next(corner(opp)))
# don't let opponent win
if tx == 2 and to != tx:
if poswin(player) != 0:
go(opp, poswin(player))
else:
go(opp, next(corner(opp)))
# now win for yourself
if to >= 2 :
if poswin(opp) != 0:
print("heheiehi")
go(opp, poswin(opp))
show_board()
print("hahah Computer wins!")
break
elif poswin(player) != 0:
go(opp, poswin(player))
to+=1
show_board()
continue
else:
val = go(opp, next(corner(opp)))
if val == -1:
go(opp, next(edge(opp)))
to+=1
show_board()
print(to, ":comp ",tx, ":player")