]> git.sesse.net Git - remoteglot/blobdiff - remoteglot.pl
Don't output values if we don't have them; fixes warnings.
[remoteglot] / remoteglot.pl
index 454cc324108dd33b77766e369b278fd846198b65..bcc123caaefcfdad2bcf1fdc53ade30aa3ed0581 100644 (file)
@@ -390,16 +390,24 @@ sub output_screen {
        if (defined($uciinfo{'score_mate'})) {
                printf "  Mate in %d\n", $uciinfo{'score_mate'};
        } else {
-               my $score = $uciinfo{'score_cp'} * 0.01;
-               if ($ficsinfo{'toplay'} eq 'B') {
-                       $score = -$score;
+               if (exists($uciinfo{'score_cp'})) {
+                       my $score = $uciinfo{'score_cp'} * 0.01;
+                       if ($ficsinfo{'toplay'} eq 'B') {
+                               $score = -$score;
+                       }
+                       printf "  Score: %+5.2f\n", $score;
                }
-               printf "  Score: %+5.2f\n", $score;
        }
-       print  "  PV: ", join(', ', prettyprint_pv($ficsinfo{'board'}, @{$uciinfo{'pv'}}));
-       print  "\n";
-       printf "  %u nodes, %7u nodes/sec, depth %u ply",
-               $uciinfo{'nodes'}, $uciinfo{'nps'}, $uciinfo{'depth'};
+
+       if (exists($ficsinfo{'board'})) {
+               print  "  PV: ", join(', ', prettyprint_pv($ficsinfo{'board'}, @{$uciinfo{'pv'}}));
+               print  "\n";
+       }
+
+       if (exists($uciinfo{'nodes'}) && exists($uciinfo{'nps'}) && exists($uciinfo{'depth'})) {
+               printf "  %u nodes, %7u nodes/sec, depth %u ply",
+                       $uciinfo{'nodes'}, $uciinfo{'nps'}, $uciinfo{'depth'};
+       }
        if (exists($uciinfo{'tbhits'})) {
                printf ", %u Nalimov hits", $uciinfo{'tbhits'};
        }