Spend more time in the middle game.
[pachi.git] / gtp.c
blob1c392da395f4981d567bd5c2c062a638818ef59f
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>
9 #include "board.h"
10 #include "debug.h"
11 #include "engine.h"
12 #include "gtp.h"
13 #include "mq.h"
14 #include "uct/uct.h"
15 #include "version.h"
16 #include "timeinfo.h"
18 void
19 gtp_prefix(char prefix, int id)
21 if (id >= 0)
22 printf("%c%d ", prefix, id);
23 else
24 printf("%c ", prefix);
27 void
28 gtp_flush(void)
30 putchar('\n');
31 fflush(stdout);
34 void
35 gtp_output(char prefix, int id, va_list params)
37 gtp_prefix(prefix, id);
38 char *s;
39 while ((s = va_arg(params, char *))) {
40 fputs(s, stdout);
42 putchar('\n');
43 gtp_flush();
46 void
47 gtp_reply(int id, ...)
49 va_list params;
50 va_start(params, id);
51 gtp_output('=', id, params);
52 va_end(params);
55 void
56 gtp_error(int id, ...)
58 va_list params;
59 va_start(params, id);
60 gtp_output('?', id, params);
61 va_end(params);
65 /* XXX: THIS IS TOTALLY INSECURE!!!!
66 * Even basic input checking is missing. */
68 void
69 gtp_parse(struct board *board, struct engine *engine, struct time_info *ti, char *buf)
71 #define next_tok(to_) \
72 to_ = next; \
73 next = next + strcspn(next, " \t\r\n"); \
74 if (*next) { \
75 *next = 0; next++; \
76 next += strspn(next, " \t\r\n"); \
79 if (strchr(buf, '#'))
80 *strchr(buf, '#') = 0;
82 char *cmd, *next = buf;
83 next_tok(cmd);
85 int id = -1;
86 if (isdigit(*cmd)) {
87 id = atoi(cmd);
88 next_tok(cmd);
91 if (!*cmd)
92 return;
94 if (!strcasecmp(cmd, "protocol_version")) {
95 gtp_reply(id, "2", NULL);
97 } else if (!strcasecmp(cmd, "name")) {
98 /* KGS hack */
99 gtp_reply(id, "Pachi ", engine->name, NULL);
101 } else if (!strcasecmp(cmd, "version")) {
102 gtp_reply(id, PACHI_VERSION, ": ", engine->comment, NULL);
104 /* TODO: known_command */
106 } else if (!strcasecmp(cmd, "list_commands")) {
107 gtp_reply(id, "protocol_version\n"
108 "name\n"
109 "version\n"
110 "list_commands\n"
111 "quit\n"
112 "boardsize\n"
113 "clear_board\n"
114 "komi\n"
115 "play\n"
116 "genmove\n"
117 "kgs-genmove_cleanup\n"
118 "set_free_handicap\n"
119 "place_free_handicap\n"
120 "final_status_list\n"
121 "kgs-chat\n"
122 "time_left\n"
123 "time_settings\n"
124 "kgs-time_settings", NULL);
126 } else if (!strcasecmp(cmd, "quit")) {
127 gtp_reply(id, NULL);
128 exit(0);
130 } else if (!strcasecmp(cmd, "boardsize")) {
131 char *arg;
132 next_tok(arg);
133 board_resize(board, atoi(arg));
135 gtp_reply(id, NULL);
137 } else if (!strcasecmp(cmd, "clear_board")) {
138 board_clear(board);
139 engine_reset = true;
140 if (DEBUGL(1))
141 board_print(board, stderr);
142 gtp_reply(id, NULL);
144 } else if (!strcasecmp(cmd, "komi")) {
145 char *arg;
146 next_tok(arg);
147 sscanf(arg, "%f", &board->komi);
149 if (DEBUGL(1))
150 board_print(board, stderr);
151 gtp_reply(id, NULL);
153 } else if (!strcasecmp(cmd, "play")) {
154 struct move m;
156 char *arg;
157 next_tok(arg);
158 m.color = str2stone(arg);
159 next_tok(arg);
160 coord_t *c = str2coord(arg, board_size(board));
161 m.coord = *c; coord_done(c);
162 char *reply = NULL;
164 if (DEBUGL(1))
165 fprintf(stderr, "got move %d,%d,%d\n", m.color, coord_x(m.coord, board), coord_y(m.coord, board));
167 time_start_timer(&ti[stone_other(m.color)]); // This is where kgs starts our timer, not at coming genmove
168 if (engine->notify_play)
169 reply = engine->notify_play(engine, board, &m);
170 if (board_play(board, &m) < 0) {
171 if (DEBUGL(0)) {
172 fprintf(stderr, "! ILLEGAL MOVE %d,%d,%d\n", m.color, coord_x(m.coord, board), coord_y(m.coord, board));
173 board_print(board, stderr);
175 gtp_error(id, "illegal move", NULL);
176 } else {
177 if (DEBUGL(1))
178 board_print(board, stderr);
179 gtp_reply(id, reply, NULL);
182 } else if (!strcasecmp(cmd, "genmove") || !strcasecmp(cmd, "kgs-genmove_cleanup")) {
183 char *arg;
184 next_tok(arg);
185 enum stone color = str2stone(arg);
186 time_prepare_move(&ti[color], board);
188 coord_t *c = engine->genmove(engine, board, &ti[color], color, !strcasecmp(cmd, "kgs-genmove_cleanup"));
189 struct move m = { *c, color };
190 board_play(board, &m);
191 char *str = coord2str(*c, board);
192 if (DEBUGL(1))
193 fprintf(stderr, "playing move %s\n", str);
194 if (DEBUGL(1)) {
195 board_print_custom(board, stderr, engine->printhook);
197 gtp_reply(id, str, NULL);
198 free(str); coord_done(c);
200 } else if (!strcasecmp(cmd, "set_free_handicap")) {
201 struct move m;
202 m.color = S_BLACK;
204 char *arg;
205 next_tok(arg);
206 do {
207 coord_t *c = str2coord(arg, board_size(board));
208 m.coord = *c; coord_done(c);
209 if (DEBUGL(1))
210 fprintf(stderr, "setting handicap %d,%d\n", coord_x(m.coord, board), coord_y(m.coord, board));
212 if (board_play(board, &m) < 0) {
213 if (DEBUGL(0))
214 fprintf(stderr, "! ILLEGAL MOVE %d,%d,%d\n", m.color, coord_x(m.coord, board), coord_y(m.coord, board));
215 gtp_error(id, "illegal move", NULL);
217 board->handicap++;
218 next_tok(arg);
219 } while (*arg);
220 if (DEBUGL(1))
221 board_print(board, stderr);
222 gtp_reply(id, NULL);
224 /* TODO: Engine should choose free handicap; however, it tends to take
225 * overly long to think it all out, and unless it's clever its
226 * handicap stones won't be of much help. ;-) */
227 } else if (!strcasecmp(cmd, "place_free_handicap")
228 || !strcasecmp(cmd, "fixed_handicap")) {
229 char *arg;
230 next_tok(arg);
231 int stones = atoi(arg);
233 gtp_prefix('=', id);
234 board_handicap(board, stones, stdout);
235 if (DEBUGL(1))
236 board_print(board, stderr);
237 putchar('\n');
238 gtp_flush();
240 } else if (!strcasecmp(cmd, "final_score")) {
241 struct move_queue q = { .moves = 0 };
242 if (engine->dead_group_list)
243 engine->dead_group_list(engine, board, &q);
244 float score = board_official_score(board, &q);
245 char str[64];
246 if (DEBUGL(1))
247 fprintf(stderr, "counted score %.1f\n", score);
248 if (score == 0) {
249 gtp_reply(id, "0", NULL);
250 } else if (score > 0) {
251 snprintf(str, 64, "W+%.1f", score);
252 gtp_reply(id, str, NULL);
253 } else {
254 snprintf(str, 64, "B+%.1f", -score);
255 gtp_reply(id, str, NULL);
258 /* XXX: This is a huge hack. */
259 } else if (!strcasecmp(cmd, "final_status_list")) {
260 char *arg;
261 next_tok(arg);
262 struct move_queue q = { .moves = 0 };
263 if (engine->dead_group_list)
264 engine->dead_group_list(engine, board, &q);
265 /* else we return empty list - i.e. engine not supporting
266 * this assumes all stones alive at the game end. */
267 if (!strcasecmp(arg, "dead")) {
268 gtp_prefix('=', id);
269 for (int i = 0; i < q.moves; i++) {
270 foreach_in_group(board, q.move[i]) {
271 printf("%s ", coord2sstr(c, board));
272 } foreach_in_group_end;
273 putchar('\n');
275 if (!q.moves)
276 putchar('\n');
277 gtp_flush();
278 } else if (!strcasecmp(arg, "seki") || !strcasecmp(arg, "alive")) {
279 gtp_prefix('=', id);
280 bool printed_group = false;
281 foreach_point(board) { // foreach_group, effectively
282 group_t g = group_at(board, c);
283 if (!g || g != c) continue;
285 for (int i = 0; i < q.moves; i++) {
286 if (q.move[i] == g)
287 goto next_group;
289 foreach_in_group(board, g) {
290 printf("%s ", coord2sstr(c, board));
291 } foreach_in_group_end;
292 putchar('\n');
293 printed_group = true;
294 next_group:;
295 } foreach_point_end;
296 if (!printed_group)
297 putchar('\n');
298 gtp_flush();
299 } else {
300 gtp_error(id, "illegal status specifier", NULL);
303 /* Custom commands for handling UCT opening book */
304 } else if (!strcasecmp(cmd, "uct_genbook")) {
305 /* Board must be initialized properly, as if for genmove;
306 * makes sense only as 'uct_genbook b'. */
307 char *arg;
308 next_tok(arg);
309 enum stone color = str2stone(arg);
310 if (uct_genbook(engine, board, &ti[color], color))
311 gtp_reply(id, NULL);
312 else
313 gtp_error(id, "error generating book", NULL);
315 } else if (!strcasecmp(cmd, "uct_dumpbook")) {
316 char *arg;
317 next_tok(arg);
318 enum stone color = str2stone(arg);
319 uct_dumpbook(engine, board, color);
320 gtp_reply(id, NULL);
322 } else if (!strcasecmp(cmd, "kgs-chat")) {
323 char *loc;
324 next_tok(loc);
325 char *src;
326 next_tok(src);
327 char *msg;
328 next_tok(msg);
329 char *reply = NULL;
330 if (engine->chat)
331 reply = engine->chat(engine, board, msg);
332 if (reply)
333 gtp_reply(id, reply, NULL);
334 else
335 gtp_error(id, "unknown chat command", NULL);
337 } else if (!strcasecmp(cmd, "time_left")) {
338 char *arg;
339 next_tok(arg);
340 enum stone color = str2stone(arg);
341 next_tok(arg);
342 int time = atoi(arg);
343 next_tok(arg);
344 int stones = atoi(arg);
345 time_left(&ti[color], time, stones);
347 gtp_reply(id, NULL);
349 } else if (!strcasecmp(cmd, "time_settings") || !strcasecmp(cmd, "kgs-time_settings")) {
350 char *time_system = "canadian";
351 char *arg;
352 int main_time = -1, byoyomi_time = 0, byoyomi_stones = 0, byoyomi_periods = 0;
353 if (!strcasecmp(cmd, "kgs-time_settings")) {
354 next_tok(time_system);
355 if (!strcasecmp(time_system, "none")) {
356 byoyomi_time = 1; // time > 0, stones 0 : convention for unlimited
357 main_time = 0;
358 } else if (!strcasecmp(time_system, "absolute")) {
359 next_tok(arg);
360 main_time = atoi(arg);
361 } else if (!strcasecmp(time_system, "byoyomi")) {
362 next_tok(arg);
363 main_time = atoi(arg);
364 next_tok(arg);
365 byoyomi_time = atoi(arg);
366 byoyomi_stones = 1;
367 next_tok(arg);
368 byoyomi_periods = atoi(arg);
371 if (main_time < 0) { // canadian time system
372 next_tok(arg);
373 main_time = atoi(arg);
374 next_tok(arg);
375 byoyomi_time = atoi(arg);
376 next_tok(arg);
377 byoyomi_stones = atoi(arg);
379 if (DEBUGL(1))
380 fprintf(stderr, "time_settings %d %d %d %d\n",
381 main_time, byoyomi_time, byoyomi_stones, byoyomi_periods);
382 time_settings(&ti[S_BLACK], main_time, byoyomi_time, byoyomi_stones, byoyomi_periods);
383 ti[S_WHITE] = ti[S_BLACK];
385 gtp_reply(id, NULL);
387 } else {
388 gtp_error(id, "unknown command", NULL);
391 #undef next_tok