13 /* The board implementation has bunch of optional features.
14 * Turn them on below: */
16 #define WANT_BOARD_C // capturable groups queue
18 //#define BOARD_SIZE 9 // constant board size, allows better optimization
20 //#define BOARD_SPATHASH // incremental patternsp.h hashes
21 #define BOARD_SPATHASH_MAXD 3 // maximal diameter
23 #define BOARD_PAT3 // incremental 3x3 pattern codes
25 //#define BOARD_TRAITS 1 // incremental point traits (see struct btraits)
28 /* To avoid running out of time, assume we always have at least 10 more moves to play
29 * if we don't have more precise information from gtp time_left: */
30 #define MIN_MOVES_LEFT 10
32 /* Allow board_play_random_move() to return pass even when
33 * there are other moves available. */
34 extern bool random_pass
;
37 /* Some engines might normalize their reading and skip symmetrical
38 * moves. We will tell them how can they do it. */
39 struct board_symmetry
{
40 /* Playground is in this rectangle. */
42 /* d == 0: Full rectangle
43 * d == 1: Top triangle */
45 /* General symmetry type. */
46 /* Note that the above is redundant to this, but just provided
47 * for easier usage. */
59 typedef uint64_t hash_t
;
60 #define PRIhash PRIx64
63 /* Note that "group" is only chain of stones that is solidly
64 * connected for us. */
65 typedef coord_t group_t
;
68 /* We keep track of only up to GROUP_KEEP_LIBS; over that, we
70 /* _Combination_ of these two values can make some difference
71 * in performance - fine-tune. */
72 #define GROUP_KEEP_LIBS 10
73 // refill lib[] only when we hit this; this must be at least 2!
74 // Moggy requires at least 3 - see below for semantic impact.
75 #define GROUP_REFILL_LIBS 5
76 coord_t lib
[GROUP_KEEP_LIBS
];
77 /* libs is only LOWER BOUND for the number of real liberties!!!
78 * It denotes only number of items in lib[], thus you can rely
79 * on it to store real liberties only up to <= GROUP_REFILL_LIBS. */
83 struct neighbor_colors
{
88 /* Point traits bitmap; we update this information incrementally,
89 * it can be used e.g. for fast pattern.h features matching. */
91 /* Number of neighbors we can capture. 0=this move is
92 * not capturing, 1..4=this many neighbors we can capture
93 * (can be multiple neighbors of same group). */
98 /* You should treat this struct as read-only. Always call functions below if
99 * you want to change it. */
102 int size
; /* Including S_OFFBOARD margin - see below. */
103 int size2
; /* size^2 */
108 /* Iterator offsets for foreach_neighbor*() */
109 int nei8
[8], dnei
[4];
112 struct move last_move
;
113 struct move last_move2
; /* second-to-last move */
114 /* Whether we tried to add a hash twice; board_play*() can
115 * set this, but it will still carry out the move as well! */
116 bool superko_violation
;
118 /* The following two structures are goban maps and are indexed by
119 * coord.pos. The map is surrounded by a one-point margin from
120 * S_OFFBOARD stones in order to speed up some internal loops.
121 * Some of the foreach iterators below might include these points;
122 * you need to handle them yourselves, if you need to. */
124 /* Stones played on the board */
125 enum stone
*b
; /* enum stone */
126 /* Group id the stones are part of; 0 == no group */
128 /* Positions of next stones in the stone group; 0 == last stone */
130 /* Neighboring colors; numbers of neighbors of index color */
131 struct neighbor_colors
*n
;
132 /* Zobrist hash for each position */
134 #ifdef BOARD_SPATHASH
135 /* For spatial hashes, we use only 24 bits. */
136 /* [0] is d==1, we don't keep hash for d==0. */
137 /* We keep hashes for black-to-play ([][0]) and white-to-play
138 * ([][1], reversed stone colors since we match all patterns as
140 uint32_t (*spathash
)[BOARD_SPATHASH_MAXD
][2];
143 /* 3x3 pattern code for each position; see pattern3.h for encoding
144 * specification. The information is only valid for empty points. */
148 /* Incrementally matched point traits information. */
149 /* The information is only valid for empty points. */
153 /* Group information - indexed by gid (which is coord of base group stone) */
156 /* Positions of free positions - queue (not map) */
157 /* Note that free position here is any valid move; including single-point eyes! */
158 coord_t
*f
; int flen
;
161 /* Queue of capturable groups */
162 group_t
*c
; int clen
;
165 /* Symmetry information */
166 struct board_symmetry symmetry
;
168 /* Last ko played on the board. */
175 /* Engine-specific state; persistent through board development,
176 * is reset only at clear_board. */
179 /* Playout-specific state; persistent through board development,
180 * but its lifetime is maintained in play_random_game(); it should
181 * not be set outside of it. */
185 /* --- PRIVATE DATA --- */
187 /* For superko check: */
189 /* Board "history" - hashes encountered. Size of the hash should be
190 * >> board_size^2. */
191 #define history_hash_bits 12
192 #define history_hash_mask ((1 << history_hash_bits) - 1)
193 #define history_hash_prev(i) ((i - 1) & history_hash_mask)
194 #define history_hash_next(i) ((i + 1) & history_hash_mask)
195 hash_t history_hash
[1 << history_hash_bits
];
196 /* Hash of current board position. */
201 /* Avoid unused variable warnings */
202 #define board_size(b_) (((b_) == (b_)) ? BOARD_SIZE + 2 : 0)
203 #define board_size2(b_) (board_size(b_) * board_size(b_))
205 #define board_size(b_) ((b_)->size)
206 #define board_size2(b_) ((b_)->size2)
209 #define board_at(b_, c) ((b_)->b[coord_raw(c)])
210 #define board_atxy(b_, x, y) ((b_)->b[(x) + board_size(b_) * (y)])
212 #define group_at(b_, c) ((b_)->g[coord_raw(c)])
213 #define group_atxy(b_, x, y) ((b_)->g[(x) + board_size(b_) * (y)])
215 /* Warning! Neighbor count is kept up-to-date for S_NONE! */
216 #define neighbor_count_at(b_, coord, color) ((b_)->n[coord_raw(coord)].colors[(enum stone) color])
217 #define set_neighbor_count_at(b_, coord, color, count) (neighbor_count_at(b_, coord, color) = (count))
218 #define inc_neighbor_count_at(b_, coord, color) (neighbor_count_at(b_, coord, color)++)
219 #define dec_neighbor_count_at(b_, coord, color) (neighbor_count_at(b_, coord, color)--)
220 #define immediate_liberty_count(b_, coord) (4 - neighbor_count_at(b_, coord, S_BLACK) - neighbor_count_at(b_, coord, S_WHITE) - neighbor_count_at(b_, coord, S_OFFBOARD))
222 #define groupnext_at(b_, c) ((b_)->p[coord_raw(c)])
223 #define groupnext_atxy(b_, x, y) ((b_)->p[(x) + board_size(b_) * (y)])
225 #define group_base(g_) (g_)
226 #define board_group_info(b_, g_) ((b_)->gi[(g_)])
227 #define board_group_captured(b_, g_) (board_group_info(b_, g_).libs == 0)
228 #define group_is_onestone(b_, g_) (groupnext_at(b_, group_base(g_)) == 0)
230 #define hash_at(b_, coord, color) ((b_)->h[((color) == S_BLACK ? board_size2(b_) : 0) + coord_raw(coord)])
232 struct board
*board_init(void);
233 struct board
*board_copy(struct board
*board2
, struct board
*board1
);
234 void board_done_noalloc(struct board
*board
);
235 void board_done(struct board
*board
);
236 /* size here is without the S_OFFBOARD margin. */
237 void board_resize(struct board
*board
, int size
);
238 void board_clear(struct board
*board
);
241 typedef void (*board_cprint
)(struct board
*b
, coord_t c
, FILE *f
);
242 void board_print(struct board
*board
, FILE *f
);
243 void board_print_custom(struct board
*board
, FILE *f
, board_cprint cprint
);
245 /* Place given handicap on the board; coordinates are printed to f. */
246 void board_handicap(struct board
*board
, int stones
, FILE *f
);
248 /* Returns group id, 0 on allowed suicide, pass or resign, -1 on error */
249 int board_play(struct board
*board
, struct move
*m
);
250 /* Like above, but plays random move; the move coordinate is recorded
251 * to *coord. This method will never fill your own eye. pass is played
252 * when no move can be played. You can impose extra restrictions if you
253 * supply your own permit function. */
254 typedef bool (*ppr_permit
)(void *data
, struct board
*b
, struct move
*m
);
255 void board_play_random(struct board
*b
, enum stone color
, coord_t
*coord
, ppr_permit permit
, void *permit_data
);
257 /* Returns true if given move can be played. */
258 static bool board_is_valid_move(struct board
*b
, struct move
*m
);
259 /* Returns true if ko was just taken. */
260 static bool board_playing_ko_threat(struct board
*b
);
261 /* Returns 0 or ID of neighboring group in atari. */
262 static group_t
board_get_atari_neighbor(struct board
*b
, coord_t coord
, enum stone group_color
);
264 /* Adjust symmetry information as if given coordinate has been played. */
265 void board_symmetry_update(struct board
*b
, struct board_symmetry
*symmetry
, coord_t c
);
267 /* Returns true if given coordinate has all neighbors of given color or the edge. */
268 static bool board_is_eyelike(struct board
*board
, coord_t
*coord
, enum stone eye_color
);
269 /* Returns true if given coordinate could be a false eye; this check makes
270 * sense only if you already know the coordinate is_eyelike(). */
271 bool board_is_false_eyelike(struct board
*board
, coord_t
*coord
, enum stone eye_color
);
272 /* Returns true if given coordinate is a 1-pt eye (checks against false eyes, or
273 * at least tries to). */
274 bool board_is_one_point_eye(struct board
*board
, coord_t
*c
, enum stone eye_color
);
275 /* Returns color of a 1pt eye owner, S_NONE if not an eye. */
276 enum stone
board_get_one_point_eye(struct board
*board
, coord_t
*c
);
278 /* board_official_score() is the scoring method for yielding score suitable
279 * for external presentation. For fast scoring of entirely filled boards
280 * (e.g. playouts), use board_fast_score(). */
281 /* Positive: W wins */
282 /* Compare number of stones + 1pt eyes. */
283 float board_fast_score(struct board
*board
);
284 /* Tromp-Taylor scoring, assuming given groups are actually dead. */
286 float board_official_score(struct board
*board
, struct move_queue
*mq
);
288 /* Returns estimated number of remaining moves for one player until end of game. */
289 int board_estimated_moves_left(struct board
*b
);
293 #define foreach_point(board_) \
295 coord_t c; coord_pos(c, 0, (board_)); \
296 for (; coord_raw(c) < board_size(board_) * board_size(board_); coord_raw(c)++)
297 #define foreach_point_and_pass(board_) \
299 coord_t c; coord_pos(c, -1, (board_)); \
300 for (; coord_raw(c) < board_size(board_) * board_size(board_); coord_raw(c)++)
301 #define foreach_point_end \
304 #define foreach_in_group(board_, group_) \
306 struct board *board__ = board_; \
307 coord_t c = group_base(group_); \
308 coord_t c2 = c; coord_raw(c2) = groupnext_at(board__, c2); \
310 #define foreach_in_group_end \
311 c = c2; coord_raw(c2) = groupnext_at(board__, c2); \
312 } while (coord_raw(c) != 0); \
315 /* NOT VALID inside of foreach_point() or another foreach_neighbor(), or rather
316 * on S_OFFBOARD coordinates. */
317 #define foreach_neighbor(board_, coord_, loop_body) \
319 struct board *board__ = board_; \
320 coord_t coord__ = coord_; \
322 coord_pos(c, coord_raw(coord__) - 1, (board__)); do { loop_body } while (0); \
323 coord_pos(c, coord_raw(coord__) - board_size(board__), (board__)); do { loop_body } while (0); \
324 coord_pos(c, coord_raw(coord__) + 1, (board__)); do { loop_body } while (0); \
325 coord_pos(c, coord_raw(coord__) + board_size(board__), (board__)); do { loop_body } while (0); \
328 #define foreach_8neighbor(board_, coord_) \
331 coord_t c = (coord_); \
332 for (fn__i = 0; fn__i < 8; fn__i++) { \
333 c += (board_)->nei8[fn__i];
334 #define foreach_8neighbor_end \
338 #define foreach_diag_neighbor(board_, coord_) \
341 coord_t c = (coord_); \
342 for (fn__i = 0; fn__i < 4; fn__i++) { \
343 c += (board_)->dnei[fn__i];
344 #define foreach_diag_neighbor_end \
350 board_is_eyelike(struct board
*board
, coord_t
*coord
, enum stone eye_color
)
352 return (neighbor_count_at(board
, *coord
, eye_color
)
353 + neighbor_count_at(board
, *coord
, S_OFFBOARD
)) == 4;
357 board_is_valid_move(struct board
*board
, struct move
*m
)
359 if (board_at(board
, m
->coord
) != S_NONE
)
361 if (!board_is_eyelike(board
, &m
->coord
, stone_other(m
->color
)))
363 /* Play within {true,false} eye-ish formation */
364 if (board
->ko
.coord
== m
->coord
&& board
->ko
.color
== m
->color
)
366 int groups_in_atari
= 0;
367 foreach_neighbor(board
, m
->coord
, {
368 group_t g
= group_at(board
, c
);
369 groups_in_atari
+= (board_group_info(board
, g
).libs
== 1);
371 return !!groups_in_atari
;
375 board_playing_ko_threat(struct board
*b
)
377 return !is_pass(b
->ko
.coord
);
380 static inline group_t
381 board_get_atari_neighbor(struct board
*b
, coord_t coord
, enum stone group_color
)
384 if (!b
->t
[coord
].cap
) return 0;
386 foreach_neighbor(b
, coord
, {
387 group_t g
= group_at(b
, c
);
388 if (g
&& board_at(b
, c
) == group_color
&& board_group_info(b
, g
).libs
== 1)
390 /* We return first match. */