12 #define coord_raw(c) (c)
13 #define coord_x(c, b) ((c) % board_size(b))
14 #define coord_y(c, b) ((c) / board_size(b))
15 #define coord_eq(c1, c2) ((c1) == (c2))
16 /* TODO: Smarter way to do this? */
17 #define coord_dx(c1, c2, b) (coord_x(c1, b) - coord_x(c2, b))
18 #define coord_dy(c1, c2, b) (coord_y(c1, b) - coord_y(c2, b))
20 static coord_t pass
= -1;
21 static coord_t resign
= -2;
22 #define is_pass(c) (coord_eq(c, pass))
23 #define is_resign(c) (coord_eq(c, resign))
25 /* Initialize existing coord */
26 #define coord_pos(coord, pos_, board) do { (coord) = (pos_); } while (0)
27 #define coord_xy(board, x, y) ((x) + (y) * board_size(board))
28 #define coord_xy_otf(x, y, board) coord_xy(board, x, y) // obsolete
30 #define coord_is_adjecent(c1, c2, b) (abs(c1 - c2) == 1 || abs(c1 - c2) == board_size(b))
31 #define coord_is_8adjecent(c1, c2, b) (abs(c1 - c2) == 1 || abs(abs(c1 - c2) - board_size(b)) < 2)
34 static coord_t
*coord_init(int x
, int y
, int size
);
35 static coord_t
*coord_copy(coord_t c
);
36 static coord_t
*coord_pass(void);
37 static coord_t
*coord_resign(void);
38 static void coord_done(coord_t
*c
);
41 /* Return coordinate string in a dynamically allocated buffer. Thread-safe. */
42 char *coord2str(coord_t c
, struct board
*b
);
43 /* Return coordinate string in a static buffer; multiple buffers are shuffled
44 * to enable use for multiple printf() parameters, but it is NOT safe for
45 * anything but debugging - in particular, it is NOT thread-safe! */
46 char *coord2sstr(coord_t c
, struct board
*b
);
47 coord_t
*str2coord(char *str
, int board_size
);
57 static inline coord_t
*
58 coord_init(int x
, int y
, int size
)
60 coord_t
*c
= calloc2(1, sizeof(coord_t
));
65 static inline coord_t
*
68 coord_t
*c2
= calloc2(1, sizeof(coord_t
));
69 memcpy(c2
, &c
, sizeof(c
));
73 static inline coord_t
*
76 return coord_copy(pass
);
79 static inline coord_t
*
82 return coord_copy(resign
);
86 coord_done(coord_t
*c
)