13 #define coord_xy(board, x, y) ((x) + (y) * board_size(board))
14 #define coord_x(c, b) ((b)->coord[c][0])
15 #define coord_y(c, b) ((b)->coord[c][1])
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) (c == pass)
23 #define is_resign(c) (c == resign)
25 #define coord_is_adjecent(c1, c2, b) (abs(c1 - c2) == 1 || abs(c1 - c2) == board_size(b))
26 #define coord_is_8adjecent(c1, c2, b) (abs(c1 - c2) == 1 || abs(abs(c1 - c2) - board_size(b)) < 2)
30 * 2 3 (vertically reversed from board_print output, of course!)
31 * Middle coordinates are included in lower-valued quadrants. */
32 #define coord_quadrant(c, b) ((coord_x(c, b) > board_size(b) / 2) + 2 * (coord_y(c, b) > board_size(b) / 2))
35 static coord_t
*coord_init(int x
, int y
, int size
);
36 static coord_t
*coord_copy(coord_t c
);
37 static coord_t
*coord_pass(void);
38 static coord_t
*coord_resign(void);
39 static void coord_done(coord_t
*c
);
42 char *coord2bstr(char *buf
, coord_t c
, struct board
*board
);
43 /* Return coordinate string in a dynamically allocated buffer. Thread-safe. */
44 char *coord2str(coord_t c
, struct board
*b
);
45 /* Return coordinate string in a static buffer; multiple buffers are shuffled
46 * to enable use for multiple printf() parameters, but it is NOT safe for
47 * anything but debugging - in particular, it is NOT thread-safe! */
48 char *coord2sstr(coord_t c
, struct board
*b
);
49 coord_t
*str2coord(char *str
, int board_size
);
59 static inline coord_t
*
60 coord_init(int x
, int y
, int size
)
62 coord_t
*c
= calloc2(1, sizeof(coord_t
));
67 static inline coord_t
*
70 coord_t
*c2
= calloc2(1, sizeof(coord_t
));
71 memcpy(c2
, &c
, sizeof(c
));
75 static inline coord_t
*
78 return coord_copy(pass
);
81 static inline coord_t
*
84 return coord_copy(resign
);
87 /* No sanity checking */
89 str2scoord(char *str
, int size
)
91 if (!strcasecmp(str
, "pass")) {
93 } else if (!strcasecmp(str
, "resign")) {
96 char xc
= tolower(str
[0]);
97 return xc
- 'a' - (xc
> 'i') + 1 + atoi(str
+ 1) * size
;
102 coord_done(coord_t
*c
)