-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtesting.py
55 lines (49 loc) · 2 KB
/
testing.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
import gomill.boards
import gomill.ascii_boards
board_size = 9
board = ['w', '.', 'w', 'w', '.', 'w', 'w', '.', 'w', 'w', 'w', '.', 'w', 'w', 'w', '.', 'w', '.', 'w', '.', 'w', '.', 'w', 'w', 'w', '.', 'w', 'w', 'w', 'w', 'w', 'b', 'w', 'b', 'w', 'w', 'w', 'w', 'b', 'b', 'b', 'b', 'b', 'b', 'b', 'w', 'b', 'b', '.', '.', '.', 'b', 'b', '.', 'b', 'b', 'b', 'b', 'b', '.', 'b', '.', '.', 'b', 'b', 'b', '.', 'b', '.', 'b', '.', '.', '.', '.', '.', 'b', '.', 'b', '.', 'b', '.']
board188 = ['.', 'b', 'b', 'w', '.', 'b', 'b', '.', '.', 'b', '.', '.', '.', 'b', 'b', 'b', '.', '.', '.', 'b', 'b', '.', '.', 'b', 'b', 'b', 'b', 'b', '.', 'b', 'b', '.', 'b', 'w', 'b', 'w', 'b', 'b', '.', 'b', 'b', 'w', 'w', 'w', 'w', 'w', 'b', 'b', 'b', 'b', 'w', 'w', 'w', 'w', 'w', 'w', 'w', 'w', 'b', 'w', 'w', 'w', '.', 'w', 'w', 'w', 'w', 'w', '.', 'w', '.', 'w', '.', 'b', 'w', 'w', '.', 'w', 'w', 'w', 'w']
komi = 7
def init_board():
global end_board
mainTab = []
for i in range(board_size):
tempTab = []
for i in range(board_size):
tempTab.append("+")
mainTab.append(tempTab)
return mainTab
def play(_turn):
global game_board
x = _turn[1]
y = _turn[2]
color = _turn[0]
game_board.play(x, y, color)
def translate(board):
_move_list = []
for i in range(len(board)):
x = i%9
y = i/9
y = str(int(y))
y = y[0]
y = int(y)
print(x)
print(y)
if board[i] == "b" or board[i] == "B":
_move = ["b", x, y]
_move_list.append(_move)
if board[i] == "w" or board[i] == "W":
_move = ["w", x, y]
_move_list.append(_move)
return _move_list
game_board = gomill.boards.Board(board_size)
initboard = init_board()
movelist = translate(board188)
for i in movelist:
play(i)
#play(["b", 2,1])
area_score = game_board.area_score() - komi
print("Area Score:", area_score, "\n")
play(["b", 2,1])
area_score = game_board.area_score() - komi
print("Area Score:", area_score, "\n")