Distributed engine: Display number of missed buffers
[pachi.git] / gtp.c
blobcc05fb9dfb2bb0365f2b8bd5742cdad3d7a6675c
1 #define DEBUG
2 #include <assert.h>
3 #include <ctype.h>
4 #include <stdarg.h>
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <string.h>
8 #include <unistd.h>
10 #include "board.h"
11 #include "debug.h"
12 #include "engine.h"
13 #include "gtp.h"
14 #include "mq.h"
15 #include "uct/uct.h"
16 #include "version.h"
17 #include "timeinfo.h"
19 #define NO_REPLY (-2)
21 /* Sleep 5 seconds after a game ends to give time to kill the program. */
22 #define GAME_OVER_SLEEP 5
24 void
25 gtp_prefix(char prefix, int id)
27 if (id == NO_REPLY) return;
28 if (id >= 0)
29 printf("%c%d ", prefix, id);
30 else
31 printf("%c ", prefix);
34 void
35 gtp_flush(void)
37 putchar('\n');
38 fflush(stdout);
41 void
42 gtp_output(char prefix, int id, va_list params)
44 if (id == NO_REPLY) return;
45 gtp_prefix(prefix, id);
46 char *s;
47 while ((s = va_arg(params, char *))) {
48 fputs(s, stdout);
50 putchar('\n');
51 gtp_flush();
54 void
55 gtp_reply(int id, ...)
57 va_list params;
58 va_start(params, id);
59 gtp_output('=', id, params);
60 va_end(params);
63 void
64 gtp_error(int id, ...)
66 va_list params;
67 va_start(params, id);
68 gtp_output('?', id, params);
69 va_end(params);
72 /* List of known gtp commands. The internal command pachi-genmoves is not exported,
73 * it should only be used between master and slaves of the distributed engine. */
74 static char *known_commands =
75 "protocol_version\n"
76 "name\n"
77 "version\n"
78 "list_commands\n"
79 "quit\n"
80 "boardsize\n"
81 "clear_board\n"
82 "kgs-game_over\n"
83 "komi\n"
84 "kgs-rules\n"
85 "play\n"
86 "genmove\n"
87 "kgs-genmove_cleanup\n"
88 "set_free_handicap\n"
89 "place_free_handicap\n"
90 "final_status_list\n"
91 "kgs-chat\n"
92 "time_left\n"
93 "time_settings\n"
94 "kgs-time_settings";
97 /* Return true if cmd is a valid gtp command. */
98 bool
99 gtp_is_valid(char *cmd)
101 if (!cmd || !*cmd) return false;
102 char *s = strcasestr(known_commands, cmd);
103 if (!s) return false;
105 int len = strlen(cmd);
106 return s[len] == '\0' || s[len] == '\n';
109 /* XXX: THIS IS TOTALLY INSECURE!!!!
110 * Even basic input checking is missing. */
112 enum parse_code
113 gtp_parse(struct board *board, struct engine *engine, struct time_info *ti, char *buf)
115 #define next_tok(to_) \
116 to_ = next; \
117 next = next + strcspn(next, " \t\r\n"); \
118 if (*next) { \
119 *next = 0; next++; \
120 next += strspn(next, " \t\r\n"); \
123 if (strchr(buf, '#'))
124 *strchr(buf, '#') = 0;
126 char *cmd, *next = buf;
127 next_tok(cmd);
129 int id = -1;
130 if (isdigit(*cmd)) {
131 id = atoi(cmd);
132 next_tok(cmd);
135 if (!*cmd)
136 return P_OK;
138 if (!strcasecmp(cmd, "protocol_version")) {
139 gtp_reply(id, "2", NULL);
140 return P_OK;
142 } else if (!strcasecmp(cmd, "name")) {
143 /* KGS hack */
144 gtp_reply(id, "Pachi ", engine->name, NULL);
145 return P_OK;
147 } else if (!strcasecmp(cmd, "version")) {
148 gtp_reply(id, PACHI_VERSION, ": ", engine->comment, NULL);
149 return P_OK;
151 } else if (!strcasecmp(cmd, "list_commands")) {
152 gtp_reply(id, known_commands, NULL);
153 return P_OK;
156 if (engine->notify) {
157 char *reply;
158 enum parse_code c = engine->notify(engine, board, id, cmd, next, &reply);
159 if (c == P_NOREPLY) {
160 id = NO_REPLY;
161 } else if (c == P_DONE_OK) {
162 gtp_reply(id, reply, NULL);
163 return P_OK;
164 } else if (c == P_DONE_ERROR) {
165 gtp_error(id, reply, NULL);
166 /* This is an internal error for the engine, but
167 * it is still OK from main's point of view. */
168 return P_OK;
169 } else if (c != P_OK) {
170 return c;
174 if (!strcasecmp(cmd, "quit")) {
175 gtp_reply(id, NULL);
176 exit(0);
178 } else if (!strcasecmp(cmd, "boardsize")) {
179 char *arg;
180 next_tok(arg);
181 board_resize(board, atoi(arg));
183 gtp_reply(id, NULL);
185 } else if (!strcasecmp(cmd, "clear_board") || !strcasecmp(cmd, "kgs-game_over")) {
186 board_clear(board);
187 if (DEBUGL(1))
188 board_print(board, stderr);
189 if (!strcasecmp(cmd, "kgs-game_over")) {
190 if (DEBUGL(0))
191 fprintf(stderr, "game is over\n");
192 /* Sleep before replying, so that kgs doesn't
193 * start another game immediately. */
194 sleep(GAME_OVER_SLEEP);
196 gtp_reply(id, NULL);
197 return P_ENGINE_RESET;
199 } else if (!strcasecmp(cmd, "komi")) {
200 char *arg;
201 next_tok(arg);
202 sscanf(arg, "%f", &board->komi);
204 if (DEBUGL(1))
205 board_print(board, stderr);
206 gtp_reply(id, NULL);
208 } else if (!strcasecmp(cmd, "kgs-rules")) {
209 char *arg;
210 next_tok(arg);
211 if (!strcasecmp(arg, "japanese")) {
212 board->rules = RULES_JAPANESE;
213 } else if (!strcasecmp(arg, "chinese")) {
214 board->rules = RULES_CHINESE;
215 } else if (!strcasecmp(arg, "aga")) {
216 board->rules = RULES_AGA;
217 } else if (!strcasecmp(arg, "new_zealand")) {
218 board->rules = RULES_NEW_ZEALAND;
219 } else {
220 gtp_error(id, "unknown rules", NULL);
221 return P_OK;
223 gtp_reply(id, NULL);
225 } else if (!strcasecmp(cmd, "play")) {
226 struct move m;
228 char *arg;
229 next_tok(arg);
230 m.color = str2stone(arg);
231 next_tok(arg);
232 coord_t *c = str2coord(arg, board_size(board));
233 m.coord = *c; coord_done(c);
234 char *reply = NULL;
236 if (DEBUGL(1))
237 fprintf(stderr, "got move %d,%d,%d\n", m.color, coord_x(m.coord, board), coord_y(m.coord, board));
239 // This is where kgs starts the timer, not at genmove!
240 time_start_timer(&ti[stone_other(m.color)]);
242 if (engine->notify_play)
243 reply = engine->notify_play(engine, board, &m);
244 if (board_play(board, &m) < 0) {
245 if (DEBUGL(0)) {
246 fprintf(stderr, "! ILLEGAL MOVE %d,%d,%d\n", m.color, coord_x(m.coord, board), coord_y(m.coord, board));
247 board_print(board, stderr);
249 gtp_error(id, "illegal move", NULL);
250 } else {
251 if (DEBUGL(1))
252 board_print_custom(board, stderr, engine->printhook);
253 gtp_reply(id, reply, NULL);
256 } else if (!strcasecmp(cmd, "genmove") || !strcasecmp(cmd, "kgs-genmove_cleanup")) {
257 char *arg;
258 next_tok(arg);
259 enum stone color = str2stone(arg);
261 coord_t *c = engine->genmove(engine, board, &ti[color], color, !strcasecmp(cmd, "kgs-genmove_cleanup"));
262 struct move m = { *c, color };
263 board_play(board, &m);
264 char *str = coord2str(*c, board);
265 if (DEBUGL(1))
266 fprintf(stderr, "playing move %s\n", str);
267 if (DEBUGL(1)) {
268 board_print_custom(board, stderr, engine->printhook);
270 gtp_reply(id, str, NULL);
271 free(str); coord_done(c);
273 /* Account for spent time. If our GTP peer keeps our clock, this will
274 * be overriden by next time_left GTP command properly. */
275 /* (XXX: Except if we pass to byoyomi and the peer doesn't, but that
276 * should be absolutely rare situation and we will just spend a little
277 * less time than we could on next few moves.) */
278 if (ti[color].period != TT_NULL && ti[color].dim == TD_WALLTIME)
279 time_sub(&ti[color], time_now() - ti[color].len.t.timer_start, true);
281 } else if (!strcasecmp(cmd, "pachi-genmoves") || !strcasecmp(cmd, "pachi-genmoves_cleanup")) {
282 char *arg;
283 next_tok(arg);
284 enum stone color = str2stone(arg);
285 void *stats;
286 int stats_size;
288 char *reply = engine->genmoves(engine, board, &ti[color], color, next,
289 !strcasecmp(cmd, "pachi-genmoves_cleanup"),
290 &stats, &stats_size);
291 if (!reply) {
292 gtp_error(id, "genmoves error", NULL);
293 return P_OK;
295 if (DEBUGL(3))
296 fprintf(stderr, "proposing moves %s\n", reply);
297 if (DEBUGL(4))
298 board_print_custom(board, stderr, engine->printhook);
299 gtp_reply(id, reply, NULL);
300 if (stats_size > 0) {
301 double start = time_now();
302 fwrite(stats, 1, stats_size, stdout);
303 fflush(stdout);
304 if (DEBUGVV(2))
305 fprintf(stderr, "sent reply %d bytes in %.4fms\n",
306 stats_size, (time_now() - start)*1000);
309 } else if (!strcasecmp(cmd, "set_free_handicap")) {
310 struct move m;
311 m.color = S_BLACK;
313 char *arg;
314 next_tok(arg);
315 do {
316 coord_t *c = str2coord(arg, board_size(board));
317 m.coord = *c; coord_done(c);
318 if (DEBUGL(1))
319 fprintf(stderr, "setting handicap %d,%d\n", coord_x(m.coord, board), coord_y(m.coord, board));
321 if (board_play(board, &m) < 0) {
322 if (DEBUGL(0))
323 fprintf(stderr, "! ILLEGAL MOVE %d,%d,%d\n", m.color, coord_x(m.coord, board), coord_y(m.coord, board));
324 gtp_error(id, "illegal move", NULL);
326 board->handicap++;
327 next_tok(arg);
328 } while (*arg);
329 if (DEBUGL(1))
330 board_print(board, stderr);
331 gtp_reply(id, NULL);
333 /* TODO: Engine should choose free handicap; however, it tends to take
334 * overly long to think it all out, and unless it's clever its
335 * handicap stones won't be of much help. ;-) */
336 } else if (!strcasecmp(cmd, "place_free_handicap")
337 || !strcasecmp(cmd, "fixed_handicap")) {
338 char *arg;
339 next_tok(arg);
340 int stones = atoi(arg);
342 gtp_prefix('=', id);
343 board_handicap(board, stones, id == NO_REPLY ? NULL : stdout);
344 if (DEBUGL(1))
345 board_print(board, stderr);
346 if (id == NO_REPLY) return P_OK;
347 putchar('\n');
348 gtp_flush();
350 } else if (!strcasecmp(cmd, "final_score")) {
351 struct move_queue q = { .moves = 0 };
352 if (engine->dead_group_list)
353 engine->dead_group_list(engine, board, &q);
354 float score = board_official_score(board, &q);
355 char str[64];
356 if (DEBUGL(1))
357 fprintf(stderr, "counted score %.1f\n", score);
358 if (score == 0) {
359 gtp_reply(id, "0", NULL);
360 } else if (score > 0) {
361 snprintf(str, 64, "W+%.1f", score);
362 gtp_reply(id, str, NULL);
363 } else {
364 snprintf(str, 64, "B+%.1f", -score);
365 gtp_reply(id, str, NULL);
368 /* XXX: This is a huge hack. */
369 } else if (!strcasecmp(cmd, "final_status_list")) {
370 if (id == NO_REPLY) return P_OK;
371 char *arg;
372 next_tok(arg);
373 struct move_queue q = { .moves = 0 };
374 if (engine->dead_group_list)
375 engine->dead_group_list(engine, board, &q);
376 /* else we return empty list - i.e. engine not supporting
377 * this assumes all stones alive at the game end. */
378 if (!strcasecmp(arg, "dead")) {
379 gtp_prefix('=', id);
380 for (unsigned int i = 0; i < q.moves; i++) {
381 foreach_in_group(board, q.move[i]) {
382 printf("%s ", coord2sstr(c, board));
383 } foreach_in_group_end;
384 putchar('\n');
386 if (!q.moves)
387 putchar('\n');
388 gtp_flush();
389 } else if (!strcasecmp(arg, "seki") || !strcasecmp(arg, "alive")) {
390 gtp_prefix('=', id);
391 bool printed_group = false;
392 foreach_point(board) { // foreach_group, effectively
393 group_t g = group_at(board, c);
394 if (!g || g != c) continue;
396 for (unsigned int i = 0; i < q.moves; i++) {
397 if (q.move[i] == g)
398 goto next_group;
400 foreach_in_group(board, g) {
401 printf("%s ", coord2sstr(c, board));
402 } foreach_in_group_end;
403 putchar('\n');
404 printed_group = true;
405 next_group:;
406 } foreach_point_end;
407 if (!printed_group)
408 putchar('\n');
409 gtp_flush();
410 } else {
411 gtp_error(id, "illegal status specifier", NULL);
414 /* Custom commands for handling UCT opening book */
415 } else if (!strcasecmp(cmd, "uct_genbook")) {
416 /* Board must be initialized properly, as if for genmove;
417 * makes sense only as 'uct_genbook b'. */
418 char *arg;
419 next_tok(arg);
420 enum stone color = str2stone(arg);
421 if (uct_genbook(engine, board, &ti[color], color))
422 gtp_reply(id, NULL);
423 else
424 gtp_error(id, "error generating book", NULL);
426 } else if (!strcasecmp(cmd, "uct_dumpbook")) {
427 char *arg;
428 next_tok(arg);
429 enum stone color = str2stone(arg);
430 uct_dumpbook(engine, board, color);
431 gtp_reply(id, NULL);
433 } else if (!strcasecmp(cmd, "kgs-chat")) {
434 char *loc;
435 next_tok(loc);
436 char *src;
437 next_tok(src);
438 char *msg;
439 next_tok(msg);
440 char *reply = NULL;
441 if (engine->chat)
442 reply = engine->chat(engine, board, msg);
443 if (reply)
444 gtp_reply(id, reply, NULL);
445 else
446 gtp_error(id, "unknown chat command", NULL);
448 } else if (!strcasecmp(cmd, "time_left")) {
449 char *arg;
450 next_tok(arg);
451 enum stone color = str2stone(arg);
452 next_tok(arg);
453 int time = atoi(arg);
454 next_tok(arg);
455 int stones = atoi(arg);
456 if (!ti[color].ignore_gtp) {
457 time_left(&ti[color], time, stones);
458 } else {
459 if (DEBUGL(2)) fprintf(stderr, "ignored time info\n");
462 gtp_reply(id, NULL);
464 } else if (!strcasecmp(cmd, "time_settings") || !strcasecmp(cmd, "kgs-time_settings")) {
465 char *time_system;
466 char *arg;
467 if (!strcasecmp(cmd, "kgs-time_settings")) {
468 next_tok(time_system);
469 } else {
470 time_system = "canadian";
473 int main_time = 0, byoyomi_time = 0, byoyomi_stones = 0, byoyomi_periods = 0;
474 if (!strcasecmp(time_system, "none")) {
475 main_time = -1;
476 } else if (!strcasecmp(time_system, "absolute")) {
477 next_tok(arg);
478 main_time = atoi(arg);
479 } else if (!strcasecmp(time_system, "byoyomi")) {
480 next_tok(arg);
481 main_time = atoi(arg);
482 next_tok(arg);
483 byoyomi_time = atoi(arg);
484 next_tok(arg);
485 byoyomi_periods = atoi(arg);
486 } else if (!strcasecmp(time_system, "canadian")) {
487 next_tok(arg);
488 main_time = atoi(arg);
489 next_tok(arg);
490 byoyomi_time = atoi(arg);
491 next_tok(arg);
492 byoyomi_stones = atoi(arg);
495 if (DEBUGL(1))
496 fprintf(stderr, "time_settings %d %d/%d*%d\n",
497 main_time, byoyomi_time, byoyomi_stones, byoyomi_periods);
498 if (!ti[S_BLACK].ignore_gtp) {
499 time_settings(&ti[S_BLACK], main_time, byoyomi_time, byoyomi_stones, byoyomi_periods);
500 ti[S_WHITE] = ti[S_BLACK];
501 } else {
502 if (DEBUGL(1)) fprintf(stderr, "ignored time info\n");
505 gtp_reply(id, NULL);
507 } else {
508 gtp_error(id, "unknown command", NULL);
509 return P_UNKNOWN_COMMAND;
511 return P_OK;
513 #undef next_tok