-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
executable file
·55 lines (41 loc) · 1.14 KB
/
main.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
#!/usr/bin/env python3
import sys
import minesweeper as mine
import aiclp
def main():
total_games = 10
won_games = 0
args = sys.argv[1:]
if len(args) > 0:
args[0] = int(args[0])
if len(args) > 1:
args[1] = int(args[1])
if len(args) > 2:
try:
args[2] = int(args[2])
except ValueError:
args[2] = float(args[2])
game = mine.MineSweeper(*args)
ai = aiclp.AI()
for _ in range(total_games):
ai.new_game(game.board.shape[1], game.board.shape[0])
while not game.finished:
board = game.board
print(game)
move, *coord = ai.next_move(board)
if move == 'click':
game.click(*coord)
elif move == 'flag':
game.flag(*coord)
else:
raise ValueError("move %r not understood" % move)
print(game)
if game.won:
print("You won")
won_games += 1
if game.lost:
print("You lost")
game.restart()
print("Won %d/%d games" % (won_games, total_games))
if __name__ == '__main__':
main()