17 gtp_prefix(char prefix
, int id
)
20 printf("%c%d ", prefix
, id
);
22 printf("%c ", prefix
);
26 gtp_output(char prefix
, int id
, va_list params
)
28 gtp_prefix(prefix
, id
);
30 while ((s
= va_arg(params
, char *))) {
33 putchar('\n'); putchar('\n');
38 gtp_reply(int id
, ...)
42 gtp_output('=', id
, params
);
47 gtp_error(int id
, ...)
51 gtp_output('?', id
, params
);
56 /* XXX: THIS IS TOTALLY INSECURE!!!!
57 * Even basic input checking is missing. */
60 gtp_parse(struct board
*board
, struct engine
*engine
, char *buf
)
62 #define next_tok(to_) \
64 next = next + strcspn(next, " \t\r\n"); \
67 next += strspn(next, " \t\r\n"); \
71 *strchr(buf
, '#') = 0;
73 char *cmd
, *next
= buf
;
85 if (!strcasecmp(cmd
, "protocol_version")) {
86 gtp_reply(id
, "2", NULL
);
88 } else if (!strcasecmp(cmd
, "name")) {
90 gtp_reply(id
, "Pachi ", engine
->name
, NULL
);
92 } else if (!strcasecmp(cmd
, "version")) {
93 gtp_reply(id
, PACHI_VERSION
, ": ", engine
->comment
, NULL
);
95 /* TODO: known_command */
97 } else if (!strcasecmp(cmd
, "list_commands")) {
98 gtp_reply(id
, "protocol_version\nname\nversion\nlist_commands\nquit\nboardsize\nclear_board\nkomi\nplay\ngenmove\nset_free_handicap\nplace_free_handicap\nfinal_status_list", NULL
);
100 } else if (!strcasecmp(cmd
, "quit")) {
104 } else if (!strcasecmp(cmd
, "boardsize")) {
107 board_resize(board
, atoi(arg
));
111 } else if (!strcasecmp(cmd
, "clear_board")) {
115 } else if (!strcasecmp(cmd
, "komi")) {
118 sscanf(arg
, "%f", &board
->komi
);
122 } else if (!strcasecmp(cmd
, "play")) {
127 m
.color
= str2stone(arg
);
129 coord_t
*c
= str2coord(arg
, board_size(board
));
130 m
.coord
= *c
; coord_done(c
);
133 fprintf(stderr
, "got move %d,%d,%d\n", m
.color
, coord_x(m
.coord
, board
), coord_y(m
.coord
, board
));
134 engine
->notify_play(engine
, board
, &m
);
135 if (board_play(board
, &m
) < 0) {
137 fprintf(stderr
, "! ILLEGAL MOVE %d,%d,%d\n", m
.color
, coord_x(m
.coord
, board
), coord_y(m
.coord
, board
));
138 board_print(board
, stderr
);
140 gtp_error(id
, "illegal move", NULL
);
145 } else if (!strcasecmp(cmd
, "genmove")) {
148 enum stone color
= str2stone(arg
);
149 coord_t
*c
= engine
->genmove(engine
, board
, color
);
150 struct move m
= { *c
, color
};
151 board_play(board
, &m
);
152 char *str
= coord2str(*c
, board
);
154 fprintf(stderr
, "playing move %s\n", str
);
155 gtp_reply(id
, str
, NULL
);
156 free(str
); coord_done(c
);
158 } else if (!strcasecmp(cmd
, "set_free_handicap")) {
165 coord_t
*c
= str2coord(arg
, board_size(board
));
166 m
.coord
= *c
; coord_done(c
);
168 fprintf(stderr
, "setting handicap %d,%d\n", coord_x(m
.coord
, board
), coord_y(m
.coord
, board
));
170 if (board_play(board
, &m
) < 0) {
172 fprintf(stderr
, "! ILLEGAL MOVE %d,%d,%d\n", m
.color
, coord_x(m
.coord
, board
), coord_y(m
.coord
, board
));
173 gtp_error(id
, "illegal move", NULL
);
179 /* TODO: Engine should choose free handicap; however, it tends to take
180 * overly long to think it all out, and unless it's clever its
181 * handicap stones won't be of much help. ;-) */
182 } else if (!strcasecmp(cmd
, "place_free_handicap")
183 || !strcasecmp(cmd
, "fixed_handicap")) {
186 int stones
= atoi(arg
);
189 board_handicap(board
, stones
, stdout
);
190 printf("\n\n"); fflush(stdout
);
192 } else if (!strcasecmp(cmd
, "final_score")) {
193 float score
= board_official_score(board
);
196 fprintf(stderr
, "counted score %.1f\n", score
);
198 gtp_reply(id
, "0", NULL
);
199 } else if (score
> 0) {
200 snprintf(str
, 64, "W+%.1f", score
);
201 gtp_reply(id
, str
, NULL
);
203 snprintf(str
, 64, "B+%.1f", -score
);
204 gtp_reply(id
, str
, NULL
);
207 /* XXX: This is a huge hack. */
208 } else if (!strcasecmp(cmd
, "final_status_list")) {
211 assert(!strcasecmp(arg
, "dead")); // yes, I know...
212 gtp_reply(id
, "", NULL
);
214 /* Custom commands for handling UCT opening book */
215 } else if (!strcasecmp(cmd
, "uct_genbook")) {
216 /* Board must be initialized properly, as if for genmove;
217 * makes sense only as 'uct_genbook b'. */
220 enum stone color
= str2stone(arg
);
221 if (uct_genbook(engine
, board
, color
))
224 gtp_error(id
, "error generating book", NULL
);
226 } else if (!strcasecmp(cmd
, "uct_dumpbook")) {
229 enum stone color
= str2stone(arg
);
230 uct_dumpbook(engine
, board
, color
);
234 gtp_error(id
, "unknown command", NULL
);