19 gtp_prefix(char prefix
, int id
)
22 printf("%c%d ", prefix
, id
);
24 printf("%c ", prefix
);
35 gtp_output(char prefix
, int id
, va_list params
)
37 gtp_prefix(prefix
, id
);
39 while ((s
= va_arg(params
, char *))) {
47 gtp_reply(int id
, ...)
51 gtp_output('=', id
, params
);
56 gtp_error(int id
, ...)
60 gtp_output('?', id
, params
);
65 /* XXX: THIS IS TOTALLY INSECURE!!!!
66 * Even basic input checking is missing. */
69 gtp_parse(struct board
*board
, struct engine
*engine
, struct time_info
*ti
, char *buf
)
71 #define next_tok(to_) \
73 next = next + strcspn(next, " \t\r\n"); \
76 next += strspn(next, " \t\r\n"); \
80 *strchr(buf
, '#') = 0;
82 char *cmd
, *next
= buf
;
94 if (!strcasecmp(cmd
, "protocol_version")) {
95 gtp_reply(id
, "2", NULL
);
97 } else if (!strcasecmp(cmd
, "name")) {
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"
117 "kgs-genmove_cleanup\n"
118 "set_free_handicap\n"
119 "place_free_handicap\n"
120 "final_status_list\n"
124 "kgs-time_settings", NULL
);
126 } else if (!strcasecmp(cmd
, "quit")) {
130 } else if (!strcasecmp(cmd
, "boardsize")) {
133 board_resize(board
, atoi(arg
));
137 } else if (!strcasecmp(cmd
, "clear_board")) {
141 board_print(board
, stderr
);
144 } else if (!strcasecmp(cmd
, "komi")) {
147 sscanf(arg
, "%f", &board
->komi
);
150 board_print(board
, stderr
);
153 } else if (!strcasecmp(cmd
, "play")) {
158 m
.color
= str2stone(arg
);
160 coord_t
*c
= str2coord(arg
, board_size(board
));
161 m
.coord
= *c
; coord_done(c
);
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) {
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
);
178 board_print(board
, stderr
);
179 gtp_reply(id
, reply
, NULL
);
182 } else if (!strcasecmp(cmd
, "genmove") || !strcasecmp(cmd
, "kgs-genmove_cleanup")) {
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
);
193 fprintf(stderr
, "playing move %s\n", str
);
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")) {
207 coord_t
*c
= str2coord(arg
, board_size(board
));
208 m
.coord
= *c
; coord_done(c
);
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) {
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
);
221 board_print(board
, stderr
);
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")) {
231 int stones
= atoi(arg
);
234 board_handicap(board
, stones
, stdout
);
236 board_print(board
, stderr
);
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
);
247 fprintf(stderr
, "counted score %.1f\n", score
);
249 gtp_reply(id
, "0", NULL
);
250 } else if (score
> 0) {
251 snprintf(str
, 64, "W+%.1f", score
);
252 gtp_reply(id
, str
, NULL
);
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")) {
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")) {
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
;
278 } else if (!strcasecmp(arg
, "seki") || !strcasecmp(arg
, "alive")) {
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
++) {
289 foreach_in_group(board
, g
) {
290 printf("%s ", coord2sstr(c
, board
));
291 } foreach_in_group_end
;
293 printed_group
= true;
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'. */
309 enum stone color
= str2stone(arg
);
310 if (uct_genbook(engine
, board
, &ti
[color
], color
))
313 gtp_error(id
, "error generating book", NULL
);
315 } else if (!strcasecmp(cmd
, "uct_dumpbook")) {
318 enum stone color
= str2stone(arg
);
319 uct_dumpbook(engine
, board
, color
);
322 } else if (!strcasecmp(cmd
, "kgs-chat")) {
331 reply
= engine
->chat(engine
, board
, msg
);
333 gtp_reply(id
, reply
, NULL
);
335 gtp_error(id
, "unknown chat command", NULL
);
337 } else if (!strcasecmp(cmd
, "time_left")) {
340 enum stone color
= str2stone(arg
);
342 int time
= atoi(arg
);
344 int stones
= atoi(arg
);
345 time_left(&ti
[color
], time
, stones
);
349 } else if (!strcasecmp(cmd
, "time_settings") || !strcasecmp(cmd
, "kgs-time_settings")) {
350 char *time_system
= "canadian";
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
358 } else if (!strcasecmp(time_system
, "absolute")) {
360 main_time
= atoi(arg
);
361 } else if (!strcasecmp(time_system
, "byoyomi")) {
363 main_time
= atoi(arg
);
365 byoyomi_time
= atoi(arg
);
368 byoyomi_periods
= atoi(arg
);
371 if (main_time
< 0) { // canadian time system
373 main_time
= atoi(arg
);
375 byoyomi_time
= atoi(arg
);
377 byoyomi_stones
= atoi(arg
);
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
];
388 gtp_error(id
, "unknown command", NULL
);