]> git.sesse.net Git - remoteglot/blob - remoteglot.pl
Add a quit ocmmand, for easier profiling.
[remoteglot] / remoteglot.pl
1 #! /usr/bin/perl
2
3 #
4 # remoteglot - Connects an abitrary UCI-speaking engine to ICS for easier post-game
5 #              analysis, or for live analysis of relayed games. (Do not use for
6 #              cheating! Cheating is bad for your karma, and your abuser flag.)
7 #
8 # Copyright 2007 Steinar H. Gunderson <sgunderson@bigfoot.com>
9 # Licensed under the GNU General Public License, version 2.
10 #
11
12 use AnyEvent;
13 use AnyEvent::Handle;
14 use AnyEvent::HTTP;
15 use Chess::PGN::Parse;
16 use EV;
17 use Net::Telnet;
18 use FileHandle;
19 use IPC::Open2;
20 use Time::HiRes;
21 use JSON::XS;
22 require 'Position.pm';
23 require 'Engine.pm';
24 use strict;
25 use warnings;
26
27 # Configuration
28 my $server = "freechess.org";
29 my $target = "GMCarlsen";
30 my $engine_cmdline = "'./Deep Rybka 4 SSE42 x64'";
31 my $engine2_cmdline = "./stockfish_13111119_x64_modern_sse42";  # undef for none
32 my $uci_assume_full_compliance = 0;                    # dangerous :-)
33 my $update_max_interval = 1.0;
34 my @masters = (
35         'Sesse',
36         'Sessse',
37         'Sesssse',
38         'greatestguns',
39         'beuki'
40 );
41
42 # Program starts here
43 $SIG{ALRM} = sub { output(); };
44 my $latest_update = undef;
45 my $http_timer = undef;
46
47 $| = 1;
48
49 open(FICSLOG, ">ficslog.txt")
50         or die "ficslog.txt: $!";
51 print FICSLOG "Log starting.\n";
52 select(FICSLOG);
53 $| = 1;
54
55 open(UCILOG, ">ucilog.txt")
56         or die "ucilog.txt: $!";
57 print UCILOG "Log starting.\n";
58 select(UCILOG);
59 $| = 1;
60 select(STDOUT);
61
62 # open the chess engine
63 my $engine = open_engine($engine_cmdline, 'E1', sub { handle_uci(@_, 1); });
64 my $engine2 = open_engine($engine2_cmdline, 'E2', sub { handle_uci(@_, 0); });
65 my $last_move;
66 my $last_text = '';
67 my ($pos_waiting, $pos_calculating, $pos_calculating_second_engine);
68
69 uciprint($engine, "setoption name UCI_AnalyseMode value true");
70 # uciprint($engine, "setoption name NalimovPath value /srv/tablebase");
71 uciprint($engine, "setoption name NalimovUsage value Rarely");
72 uciprint($engine, "setoption name Hash value 1024");
73 # uciprint($engine, "setoption name MultiPV value 2");
74 uciprint($engine, "ucinewgame");
75
76 if (defined($engine2)) {
77         uciprint($engine2, "setoption name UCI_AnalyseMode value true");
78         # uciprint($engine2, "setoption name NalimovPath value /srv/tablebase");
79         uciprint($engine2, "setoption name NalimovUsage value Rarely");
80         uciprint($engine2, "setoption name Hash value 1024");
81         uciprint($engine2, "setoption name Threads value 8");
82         uciprint($engine2, "setoption name MultiPV value 500");
83         uciprint($engine2, "ucinewgame");
84 }
85
86 print "Chess engine ready.\n";
87
88 # now talk to FICS
89 my $t = Net::Telnet->new(Timeout => 10, Prompt => '/fics% /');
90 $t->input_log(\*FICSLOG);
91 $t->open($server);
92 $t->print("SesseBOT");
93 $t->waitfor('/Press return to enter the server/');
94 $t->cmd("");
95
96 # set some options
97 $t->cmd("set shout 0");
98 $t->cmd("set seek 0");
99 $t->cmd("set style 12");
100 $t->cmd("observe $target");
101 print "FICS ready.\n";
102
103 my $ev1 = AnyEvent->io(
104         fh => fileno($t),
105         poll => 'r',
106         cb => sub {    # what callback to execute
107                 while (1) {
108                         my $line = $t->getline(Timeout => 0, errmode => 'return');
109                         return if (!defined($line));
110
111                         chomp $line;
112                         $line =~ tr/\r//d;
113                         handle_fics($line);
114                 }
115         }
116 );
117 # Engine events have already been set up by Engine.pm.
118 EV::run;
119
120 sub handle_uci {
121         my ($engine, $line, $primary) = @_;
122
123         $line =~ s/  / /g;  # Sometimes needed for Zappa Mexico
124         print UCILOG localtime() . " $engine->{'tag'} <= $line\n";
125         if ($line =~ /^info/) {
126                 my (@infos) = split / /, $line;
127                 shift @infos;
128
129                 parse_infos($engine, @infos);
130         }
131         if ($line =~ /^id/) {
132                 my (@ids) = split / /, $line;
133                 shift @ids;
134
135                 parse_ids($engine, @ids);
136         }
137         if ($line =~ /^bestmove/) {
138                 if ($primary) {
139                         return if (!$uci_assume_full_compliance);
140                         if (defined($pos_waiting)) {
141                                 uciprint($engine, "position fen " . $pos_waiting->fen());
142                                 uciprint($engine, "go infinite");
143
144                                 $pos_calculating = $pos_waiting;
145                                 $pos_waiting = undef;
146                         }
147                 } else {
148                         $engine2->{'info'} = {};
149                         my $pos = $pos_waiting // $pos_calculating;
150                         uciprint($engine2, "position fen " . $pos->fen());
151                         uciprint($engine2, "go infinite");
152                         $pos_calculating_second_engine = $pos;
153                 }
154         }
155         output();
156 }
157
158 sub handle_fics {
159         my $line = shift;
160         if ($line =~ /^<12> /) {
161                 handle_position(Position->new($line));
162         }
163         if ($line =~ /^([A-Za-z]+)(?:\([A-Z]+\))* tells you: (.*)$/) {
164                 my ($who, $msg) = ($1, $2);
165
166                 next if (grep { $_ eq $who } (@masters) == 0);
167
168                 if ($msg =~ /^fics (.*?)$/) {
169                         $t->cmd("tell $who Executing '$1' on FICS.");
170                         $t->cmd($1);
171                 } elsif ($msg =~ /^uci (.*?)$/) {
172                         $t->cmd("tell $who Sending '$1' to the engine.");
173                         print { $engine->{'write'} } "$1\n";
174                 } elsif ($msg =~ /^pgn (.*?)$/) {
175                         my $url = $1;
176                         $t->cmd("tell $who Starting to poll '$url'.");
177                         AnyEvent::HTTP::http_get($url, sub {
178                                 handle_pgn(@_, $url);
179                         });
180                 } elsif ($msg =~ /^stoppgn$/) {
181                         $t->cmd("tell $who Stopping poll.");
182                         $http_timer = undef;
183                 } elsif ($msg =~ /^quit$/) {
184                         $t->cmd("tell $who Bye bye.");
185                         exit;
186                 } else {
187                         $t->cmd("tell $who Couldn't understand '$msg', sorry.");
188                 }
189         }
190         #print "FICS: [$line]\n";
191 }
192
193 sub handle_pgn {
194         my ($body, $header, $url) = @_;
195         my $pgn = Chess::PGN::Parse->new(undef, $body);
196         if (!defined($pgn) || !$pgn->read_game()) {
197                 warn "Error in parsing PGN from $url\n";
198         } else {
199                 $pgn->quick_parse_game;
200                 my $pos = Position->start_pos($pgn->white, $pgn->black);
201                 my $moves = $pgn->moves;
202                 for my $move (@$moves) {
203                         my ($from_row, $from_col, $to_row, $to_col, $promo) = $pos->parse_pretty_move($move);
204                         $pos = $pos->make_move($from_row, $from_col, $to_row, $to_col, $promo);
205                 }
206                 handle_position($pos);
207         }
208         
209         $http_timer = AnyEvent->timer(after => 1.0, cb => sub {
210                 AnyEvent::HTTP::http_get($url, sub {
211                         handle_pgn(@_, $url);
212                 });
213         });
214 }
215
216 sub handle_position {
217         my ($pos) = @_;
218                 
219         # if this is already in the queue, ignore it
220         return if (defined($pos_waiting) && $pos->fen() eq $pos_waiting->fen());
221
222         # if we're already chewing on this and there's nothing else in the queue,
223         # also ignore it
224         return if (!defined($pos_waiting) && defined($pos_calculating) &&
225                  $pos->fen() eq $pos_calculating->fen());
226
227         # if we're already thinking on something, stop and wait for the engine
228         # to approve
229         if (defined($pos_calculating)) {
230                 if (!defined($pos_waiting)) {
231                         uciprint($engine, "stop");
232                 }
233                 if ($uci_assume_full_compliance) {
234                         $pos_waiting = $pos;
235                 } else {
236                         uciprint($engine, "position fen " . $pos->fen());
237                         uciprint($engine, "go infinite");
238                         $pos_calculating = $pos;
239                 }
240         } else {
241                 # it's wrong just to give the FEN (the move history is useful,
242                 # and per the UCI spec, we should really have sent "ucinewgame"),
243                 # but it's easier
244                 uciprint($engine, "position fen " . $pos->fen());
245                 uciprint($engine, "go infinite");
246                 $pos_calculating = $pos;
247         }
248
249         if (defined($engine2)) {
250                 if (defined($pos_calculating_second_engine)) {
251                         uciprint($engine2, "stop");
252                 } else {
253                         uciprint($engine2, "position fen " . $pos->fen());
254                         uciprint($engine2, "go infinite");
255                         $pos_calculating_second_engine = $pos;
256                 }
257                 $engine2->{'info'} = {};
258         }
259
260         $engine->{'info'} = {};
261         $last_move = time;
262
263         # 
264         # Output a command every move to note that we're
265         # still paying attention -- this is a good tradeoff,
266         # since if no move has happened in the last half
267         # hour, the analysis/relay has most likely stopped
268         # and we should stop hogging server resources.
269         #
270         $t->cmd("date");
271 }
272
273 sub parse_infos {
274         my ($engine, @x) = @_;
275         my $mpv = '';
276
277         my $info = $engine->{'info'};
278
279         # Search for "multipv" first of all, since e.g. Stockfish doesn't put it first.
280         for my $i (0..$#x - 1) {
281                 if ($x[$i] =~ 'multipv') {
282                         $mpv = $x[$i + 1];
283                         next;
284                 }
285         }
286
287         while (scalar @x > 0) {
288                 if ($x[0] =~ 'multipv') {
289                         # Dealt with above
290                         shift @x;
291                         shift @x;
292                         next;
293                 }
294                 if ($x[0] =~ /^(currmove|currmovenumber|cpuload)$/) {
295                         my $key = shift @x;
296                         my $value = shift @x;
297                         $info->{$key} = $value;
298                         next;
299                 }
300                 if ($x[0] =~ /^(depth|seldepth|hashfull|time|nodes|nps|tbhits)$/) {
301                         my $key = shift @x;
302                         my $value = shift @x;
303                         $info->{$key . $mpv} = $value;
304                         next;
305                 }
306                 if ($x[0] eq 'score') {
307                         shift @x;
308
309                         delete $info->{'score_cp' . $mpv};
310                         delete $info->{'score_mate' . $mpv};
311
312                         while ($x[0] =~ /^(cp|mate|lowerbound|upperbound)$/) {
313                                 if ($x[0] eq 'cp') {
314                                         shift @x;
315                                         $info->{'score_cp' . $mpv} = shift @x;
316                                 } elsif ($x[0] eq 'mate') {
317                                         shift @x;
318                                         $info->{'score_mate' . $mpv} = shift @x;
319                                 } else {
320                                         shift @x;
321                                 }
322                         }
323                         next;
324                 }
325                 if ($x[0] eq 'pv') {
326                         $info->{'pv' . $mpv} = [ @x[1..$#x] ];
327                         last;
328                 }
329                 if ($x[0] eq 'string' || $x[0] eq 'UCI_AnalyseMode' || $x[0] eq 'setting' || $x[0] eq 'contempt') {
330                         last;
331                 }
332
333                 #print "unknown info '$x[0]', trying to recover...\n";
334                 #shift @x;
335                 die "Unknown info '" . join(',', @x) . "'";
336
337         }
338 }
339
340 sub parse_ids {
341         my ($engine, @x) = @_;
342
343         while (scalar @x > 0) {
344                 if ($x[0] =~ /^(name|author)$/) {
345                         my $key = shift @x;
346                         my $value = join(' ', @x);
347                         $engine->{'id'}{$key} = $value;
348                         last;
349                 }
350
351                 # unknown
352                 shift @x;
353         }
354 }
355
356 sub prettyprint_pv {
357         my ($board, @pvs) = @_;
358
359         if (scalar @pvs == 0 || !defined($pvs[0])) {
360                 return ();
361         }
362
363         my $pv = shift @pvs;
364         my ($from_col, $from_row, $to_col, $to_row, $promo) = parse_uci_move($pv);
365         my ($pretty, $nb) = $board->prettyprint_move($from_row, $from_col, $to_row, $to_col, $promo);
366         return ($pretty, prettyprint_pv($nb, @pvs));
367 }
368
369 sub output {
370         #return;
371
372         return if (!defined($pos_calculating));
373
374         # Don't update too often.
375         my $age = Time::HiRes::tv_interval($latest_update);
376         if ($age < $update_max_interval) {
377                 Time::HiRes::alarm($update_max_interval + 0.01 - $age);
378                 return;
379         }
380         
381         my $info = $engine->{'info'};
382         
383         #
384         # Some programs _always_ report MultiPV, even with only one PV.
385         # In this case, we simply use that data as if MultiPV was never
386         # specified.
387         #
388         if (exists($info->{'pv1'}) && !exists($info->{'pv2'})) {
389                 for my $key (qw(pv score_cp score_mate nodes nps depth seldepth tbhits)) {
390                         if (exists($info->{$key . '1'})) {
391                                 $info->{$key} = $info->{$key . '1'};
392                         }
393                 }
394         }
395         
396         #
397         # Check the PVs first. if they're invalid, just wait, as our data
398         # is most likely out of sync. This isn't a very good solution, as
399         # it can frequently miss stuff, but it's good enough for most users.
400         #
401         eval {
402                 my $dummy;
403                 if (exists($info->{'pv'})) {
404                         $dummy = prettyprint_pv($pos_calculating->{'board'}, @{$info->{'pv'}});
405                 }
406         
407                 my $mpv = 1;
408                 while (exists($info->{'pv' . $mpv})) {
409                         $dummy = prettyprint_pv($pos_calculating->{'board'}, @{$info->{'pv' . $mpv}});
410                         ++$mpv;
411                 }
412         };
413         if ($@) {
414                 $engine->{'info'} = {};
415                 return;
416         }
417
418         output_screen();
419         output_json();
420         $latest_update = [Time::HiRes::gettimeofday];
421 }
422
423 sub output_screen {
424         my $info = $engine->{'info'};
425         my $id = $engine->{'id'};
426
427         my $text = 'Analysis';
428         if ($pos_calculating->{'last_move'} ne 'none') {
429                 if ($pos_calculating->{'toplay'} eq 'W') {
430                         $text .= sprintf ' after %u. ... %s', ($pos_calculating->{'move_num'}-1), $pos_calculating->{'last_move'};
431                 } else {
432                         $text .= sprintf ' after %u. %s', $pos_calculating->{'move_num'}, $pos_calculating->{'last_move'};
433                 }
434                 if (exists($id->{'name'})) {
435                         $text .= ',';
436                 }
437         }
438
439         if (exists($id->{'name'})) {
440                 $text .= " by $id->{'name'}:\n\n";
441         } else {
442                 $text .= ":\n\n";
443         }
444
445         return unless (exists($pos_calculating->{'board'}));
446                 
447         if (exists($info->{'pv1'}) && exists($info->{'pv2'})) {
448                 # multi-PV
449                 my $mpv = 1;
450                 while (exists($info->{'pv' . $mpv})) {
451                         $text .= sprintf "  PV%2u", $mpv;
452                         my $score = short_score($info, $pos_calculating, $mpv);
453                         $text .= "  ($score)" if (defined($score));
454
455                         my $tbhits = '';
456                         if (exists($info->{'tbhits' . $mpv}) && $info->{'tbhits' . $mpv} > 0) {
457                                 if ($info->{'tbhits' . $mpv} == 1) {
458                                         $tbhits = ", 1 tbhit";
459                                 } else {
460                                         $tbhits = sprintf ", %u tbhits", $info->{'tbhits' . $mpv};
461                                 }
462                         }
463
464                         if (exists($info->{'nodes' . $mpv}) && exists($info->{'nps' . $mpv}) && exists($info->{'depth' . $mpv})) {
465                                 $text .= sprintf " (%5u kn, %3u kn/s, %2u ply$tbhits)",
466                                         $info->{'nodes' . $mpv} / 1000, $info->{'nps' . $mpv} / 1000, $info->{'depth' . $mpv};
467                         }
468
469                         $text .= ":\n";
470                         $text .= "  " . join(', ', prettyprint_pv($pos_calculating->{'board'}, @{$info->{'pv' . $mpv}})) . "\n";
471                         $text .= "\n";
472                         ++$mpv;
473                 }
474         } else {
475                 # single-PV
476                 my $score = long_score($info, $pos_calculating, '');
477                 $text .= "  $score\n" if defined($score);
478                 $text .=  "  PV: " . join(', ', prettyprint_pv($pos_calculating->{'board'}, @{$info->{'pv'}}));
479                 $text .=  "\n";
480
481                 if (exists($info->{'nodes'}) && exists($info->{'nps'}) && exists($info->{'depth'})) {
482                         $text .= sprintf "  %u nodes, %7u nodes/sec, depth %u ply",
483                                 $info->{'nodes'}, $info->{'nps'}, $info->{'depth'};
484                 }
485                 if (exists($info->{'seldepth'})) {
486                         $text .= sprintf " (%u selective)", $info->{'seldepth'};
487                 }
488                 if (exists($info->{'tbhits'}) && $info->{'tbhits'} > 0) {
489                         if ($info->{'tbhits'} == 1) {
490                                 $text .= ", one Syzygy hit";
491                         } else {
492                                 $text .= sprintf ", %u Syzygy hits", $info->{'tbhits'};
493                         }
494                 }
495                 $text .= "\n\n";
496         }
497
498         #$text .= book_info($pos_calculating->fen(), $pos_calculating->{'board'}, $pos_calculating->{'toplay'});
499
500         my @refutation_lines = ();
501         if (defined($engine2)) {
502                 for (my $mpv = 1; $mpv < 500; ++$mpv) {
503                         my $info = $engine2->{'info'};
504                         last if (!exists($info->{'pv' . $mpv}));
505                         eval {
506                                 my $pv = $info->{'pv' . $mpv};
507
508                                 my $pretty_move = join('', prettyprint_pv($pos_calculating_second_engine->{'board'}, $pv->[0]));
509                                 my @pretty_pv = prettyprint_pv($pos_calculating_second_engine->{'board'}, @$pv);
510                                 if (scalar @pretty_pv > 5) {
511                                         @pretty_pv = @pretty_pv[0..4];
512                                         push @pretty_pv, "...";
513                                 }
514                                 my $key = $pretty_move;
515                                 my $line = sprintf("  %-6s %6s %3s  %s",
516                                         $pretty_move,
517                                         short_score($info, $pos_calculating_second_engine, $mpv, 0),
518                                         "d" . $info->{'depth' . $mpv},
519                                         join(', ', @pretty_pv));
520                                 push @refutation_lines, [ $key, $line ];
521                         };
522                 }
523         }
524
525         if ($#refutation_lines >= 0) {
526                 $text .= "Shallow search of all legal moves:\n\n";
527                 for my $line (sort { $a->[0] cmp $b->[0] } @refutation_lines) {
528                         $text .= $line->[1] . "\n";
529                 }
530                 $text .= "\n\n";        
531         }       
532
533         if ($last_text ne $text) {
534                 print "\e[H\e[2J"; # clear the screen
535                 print $text;
536                 $last_text = $text;
537         }
538 }
539
540 sub output_json {
541         my $info = $engine->{'info'};
542
543         my $json = {};
544         $json->{'position'} = $pos_calculating->to_json_hash();
545         $json->{'id'} = $engine->{'id'};
546         $json->{'score'} = long_score($info, $pos_calculating, '');
547
548         $json->{'nodes'} = $info->{'nodes'};
549         $json->{'nps'} = $info->{'nps'};
550         $json->{'depth'} = $info->{'depth'};
551         $json->{'tbhits'} = $info->{'tbhits'};
552         $json->{'seldepth'} = $info->{'seldepth'};
553
554         # single-PV only for now
555         $json->{'pv_uci'} = $info->{'pv'};
556         $json->{'pv_pretty'} = [ prettyprint_pv($pos_calculating->{'board'}, @{$info->{'pv'}}) ];
557
558         my %refutation_lines = ();
559         my @refutation_lines = ();
560         if (defined($engine2)) {
561                 for (my $mpv = 1; $mpv < 500; ++$mpv) {
562                         my $info = $engine2->{'info'};
563                         my $pretty_move = "";
564                         my @pretty_pv = ();
565                         last if (!exists($info->{'pv' . $mpv}));
566
567                         eval {
568                                 my $pv = $info->{'pv' . $mpv};
569                                 my $pretty_move = join('', prettyprint_pv($pos_calculating->{'board'}, $pv->[0]));
570                                 my @pretty_pv = prettyprint_pv($pos_calculating->{'board'}, @$pv);
571                                 $refutation_lines{$pv->[0]} = {
572                                         sort_key => $pretty_move,
573                                         depth => $info->{'depth' . $mpv},
574                                         score_sort_key => score_sort_key($info, $pos_calculating, $mpv, 0),
575                                         pretty_score => short_score($info, $pos_calculating, $mpv, 0),
576                                         pretty_move => $pretty_move,
577                                         pv_pretty => \@pretty_pv,
578                                 };
579                                 $refutation_lines{$pv->[0]}->{'pv_uci'} = $pv;
580                         };
581                 }
582         }
583         $json->{'refutation_lines'} = \%refutation_lines;
584
585         open my $fh, ">/srv/analysis.sesse.net/www/analysis.json.tmp"
586                 or return;
587         print $fh JSON::XS::encode_json($json);
588         close $fh;
589         rename("/srv/analysis.sesse.net/www/analysis.json.tmp", "/srv/analysis.sesse.net/www/analysis.json");
590 }
591
592 sub uciprint {
593         my ($engine, $msg) = @_;
594         $engine->print($msg);
595         print UCILOG localtime() . " $engine->{'tag'} => $msg\n";
596 }
597
598 sub short_score {
599         my ($info, $pos, $mpv, $invert) = @_;
600
601         $invert //= 0;
602         if ($pos->{'toplay'} eq 'B') {
603                 $invert = !$invert;
604         }
605
606         if (defined($info->{'score_mate' . $mpv})) {
607                 if ($invert) {
608                         return sprintf "M%3d", -$info->{'score_mate' . $mpv};
609                 } else {
610                         return sprintf "M%3d", $info->{'score_mate' . $mpv};
611                 }
612         } else {
613                 if (exists($info->{'score_cp' . $mpv})) {
614                         my $score = $info->{'score_cp' . $mpv} * 0.01;
615                         if ($score == 0) {
616                                 return " 0.00";
617                         }
618                         if ($invert) {
619                                 $score = -$score;
620                         }
621                         return sprintf "%+5.2f", $score;
622                 }
623         }
624
625         return undef;
626 }
627
628 sub score_sort_key {
629         my ($info, $pos, $mpv, $invert) = @_;
630
631         if (defined($info->{'score_mate' . $mpv})) {
632                 if ($invert) {
633                         return 99999 - $info->{'score_mate' . $mpv};
634                 } else {
635                         return -(99999 - $info->{'score_mate' . $mpv});
636                 }
637         } else {
638                 if (exists($info->{'score_cp' . $mpv})) {
639                         my $score = $info->{'score_cp' . $mpv};
640                         if ($invert) {
641                                 $score = -$score;
642                         }
643                         return $score;
644                 }
645         }
646
647         return undef;
648 }
649
650 sub long_score {
651         my ($info, $pos, $mpv) = @_;
652
653         if (defined($info->{'score_mate' . $mpv})) {
654                 my $mate = $info->{'score_mate' . $mpv};
655                 if ($pos->{'toplay'} eq 'B') {
656                         $mate = -$mate;
657                 }
658                 if ($mate > 0) {
659                         return sprintf "White mates in %u", $mate;
660                 } else {
661                         return sprintf "Black mates in %u", -$mate;
662                 }
663         } else {
664                 if (exists($info->{'score_cp' . $mpv})) {
665                         my $score = $info->{'score_cp' . $mpv} * 0.01;
666                         if ($score == 0) {
667                                 return "Score:  0.00";
668                         }
669                         if ($pos->{'toplay'} eq 'B') {
670                                 $score = -$score;
671                         }
672                         return sprintf "Score: %+5.2f", $score;
673                 }
674         }
675
676         return undef;
677 }
678
679 my %book_cache = ();
680 sub book_info {
681         my ($fen, $board, $toplay) = @_;
682
683         if (exists($book_cache{$fen})) {
684                 return $book_cache{$fen};
685         }
686
687         my $ret = `./booklook $fen`;
688         return "" if ($ret =~ /Not found/ || $ret eq '');
689
690         my @moves = ();
691
692         for my $m (split /\n/, $ret) {
693                 my ($move, $annotation, $win, $draw, $lose, $rating, $rating_div) = split /,/, $m;
694
695                 my $pmove;
696                 if ($move eq '')  {
697                         $pmove = '(current)';
698                 } else {
699                         ($pmove) = prettyprint_pv($board, $move);
700                         $pmove .= $annotation;
701                 }
702
703                 my $score;
704                 if ($toplay eq 'W') {
705                         $score = 1.0 * $win + 0.5 * $draw + 0.0 * $lose;
706                 } else {
707                         $score = 0.0 * $win + 0.5 * $draw + 1.0 * $lose;
708                 }
709                 my $n = $win + $draw + $lose;
710                 
711                 my $percent;
712                 if ($n == 0) {
713                         $percent = "     ";
714                 } else {
715                         $percent = sprintf "%4u%%", int(100.0 * $score / $n + 0.5);
716                 }
717
718                 push @moves, [ $pmove, $n, $percent, $rating ];
719         }
720
721         @moves[1..$#moves] = sort { $b->[2] cmp $a->[2] } @moves[1..$#moves];
722         
723         my $text = "Book moves:\n\n              Perf.     N     Rating\n\n";
724         for my $m (@moves) {
725                 $text .= sprintf "  %-10s %s   %6u    %4s\n", $m->[0], $m->[2], $m->[1], $m->[3]
726         }
727
728         return $text;
729 }
730
731 sub open_engine {
732         my ($cmdline, $tag, $cb) = @_;
733         return undef if (!defined($cmdline));
734         return Engine->open($cmdline, $tag, $cb);
735 }
736
737 sub col_letter_to_num {
738         return ord(shift) - ord('a');
739 }
740
741 sub row_letter_to_num {
742         return 7 - (ord(shift) - ord('1'));
743 }
744
745 sub parse_uci_move {
746         my $move = shift;
747         my $from_col = col_letter_to_num(substr($move, 0, 1));
748         my $from_row = row_letter_to_num(substr($move, 1, 1));
749         my $to_col   = col_letter_to_num(substr($move, 2, 1));
750         my $to_row   = row_letter_to_num(substr($move, 3, 1));
751         my $promo    = substr($move, 4, 1);
752         return ($from_col, $from_row, $to_col, $to_row, $promo);
753 }