-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathisPossibleToWin.py
More file actions
105 lines (97 loc) · 2.81 KB
/
isPossibleToWin.py
File metadata and controls
105 lines (97 loc) · 2.81 KB
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
#!/usr/bin/env python3
def is_possible_to_win_hor(board, x, y, c, o, boardSize, nbHor):
spaces = 0
xStock = x
end = False
while (x >= 0 and end == False and spaces < (5 - nbHor)):
if board[y][x] == o:
end = True
elif board[y][x] == '.':
spaces+=1
x-=1
end = False
x = xStock + 1
while (x <= (boardSize - 1) and end == False and spaces < (5 - nbHor)):
if board[y][x] == o:
end = True
elif board[y][x] == '.':
spaces+=1
x+=1
if ((5 - nbHor) == spaces):
return (True)
return (False)
def is_possible_to_win_ver(board, x, y, c, o, boardSize, nbHor):
spaces = 0
yStock = y
end = False
while (y >= 0 and end == False and spaces < (5 - nbHor)):
if board[y][x] == o:
end = True
elif board[y][x] == '.':
spaces+=1
y-=1
end = False
y = yStock + 1
while (y <= (boardSize - 1) and end == False and spaces < (5 - nbHor)):
if board[y][x] == o:
end = True
elif board[y][x] == '.':
spaces+=1
y+=1
if ((5 - nbHor) == spaces):
return (True)
return (False)
def is_possible_to_win_diag_top_to_bot(board, x, y, c, o, boardSize, nbDiag):
print("v")
spaces = 0
xStock = x
yStock = y
end = False
while y <= (boardSize - 1) and x <= (boardSize - 1) and end == False and spaces < (5 - nbDiag):
if board[y][x] == o:
end = True
elif board[y][x] == '.':
spaces+=1
y-=1
x-=1
end = False
x = xStock + 1
y = yStock + 1
while y <= (boardSize - 1) and x <= (boardSize - 1) and end == False and spaces < (5 - nbDiag):
if board[y][x] == o:
end = True
elif board[y][x] == '.':
spaces+=1
y+=1
x+=1
if ((5 - nbDiag) == spaces):
print("can win")
return (True)
print("cant win")
return (False)
def is_possible_to_win_diag_bot_to_top(board, x, y, c, o, boardSize, nbDiag):
print("f")
spaces = 0
xStock = x
yStock = y
end = False
while y <= (boardSize - 1) and x <= (boardSize - 1) and end == False and spaces < (5 - nbDiag):
if board[y][x] == o:
end = True
elif board[y][x] == '.':
spaces+=1
y+=1
x-=1
end = False
x = xStock + 1
y = yStock - 1
while y <= (boardSize - 1) and x <= (boardSize - 1) and end == False and spaces < (5 - nbDiag):
if board[y][x] == o:
end = True
elif board[y][x] == '.':
spaces+=1
y-=1
x+=1
if ((5 - nbDiag) == spaces):
return (True)
return (False)