X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=www%2Fopening-stats.pl;h=f9e85484eb0ca749df78fbd604b9a10a7f748319;hb=a2d81b1c374f7d37394b9129179a34aeb3c074cc;hp=06f67b26931905884642f75c9210b03f7e56f842;hpb=0197df32ce4c4b199c02574a12abca18920d37ec;p=remoteglot-book diff --git a/www/opening-stats.pl b/www/opening-stats.pl index 06f67b2..f9e8548 100755 --- a/www/opening-stats.pl +++ b/www/opening-stats.pl @@ -5,24 +5,34 @@ use CGI; use JSON::XS; use lib '..'; use Position; -use ECO; +use IPC::Open2; -ECO::unpersist("../openings.txt"); +our %openings = (); +read_openings(); my $cgi = CGI->new; -my $fen = $cgi->param('fen'); +my ($chld_out, $chld_in); +my $pid = IPC::Open2::open2($chld_out, $chld_in, "../binlookup", "../open.mtbl", "40"); + +# Root position. Basically ignore everything except the opening (and later some root game stuff). +my $fen = $cgi->param('fen') // 'rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1'; my $pos = Position->from_fen($fen); my $hex = unpack('H*', $pos->bitpacked_fen); -open my $fh, "-|", "../binlookup", "../open.mtbl", $hex - or die "../binlookup: $!"; +print $chld_in $hex, "\n"; +chomp (my $line = <$chld_out>); -my $opening; +my ($white, $draw, $black, $opening_num, $white_avg_elo, $black_avg_elo, $num_elo, $timestamp, @moves) = split / /, $line; +my $opening = $openings{$opening_num} // 'A00: Start position'; -my @moves = (); -while (<$fh>) { - chomp; - my ($move, $white, $draw, $black, $opening_num, $white_avg_elo, $black_avg_elo, $num_elo) = split; - push @moves, { +# Explore one move out. +my @json_moves = (); +for my $move (@moves) { + my ($np, $uci_move) = $pos->make_pretty_move($move); + my $hex = unpack('H*', $np->bitpacked_fen); + print $chld_in $hex, "\n"; + my $line = <$chld_out>; + my ($white, $draw, $black, $opening_num, $white_avg_elo, $black_avg_elo, $num_elo) = split / /, $line; + push @json_moves, { move => $move, white => $white * 1, draw => $draw * 1, @@ -31,16 +41,27 @@ while (<$fh>) { black_avg_elo => $black_avg_elo * 1, num_elo => $num_elo * 1 }; - $opening = $ECO::openings[$opening_num]; } -close $fh; - -@moves = sort { num($b) <=> num($a) } @moves; print $cgi->header(-type=>'application/json'); -print JSON::XS::encode_json({ moves => \@moves, opening => $opening }); +print JSON::XS::encode_json({ moves => \@json_moves, opening => $opening }); sub num { my $x = shift; return $x->{'white'} + $x->{'draw'} + $x->{'black'}; } + +sub read_openings { + open my $fh, "../openings.txt" + or die "../openings.txt: $!"; + for my $line (<$fh>) { + chomp $line; + my ($hash, $eco, $opening, $variation, $subvariation) = split /\t/, $line; + if ($variation eq '') { + $openings{$hash} = $eco . ": " . $opening; + } else { + $openings{$hash} = $eco . ": " . $opening . ": " . $variation; + } + } + close $fh; +}