]> git.sesse.net Git - stockfish/blobdiff - src/hashprobe.proto
Send back a prettyprinted version of the move on hash probe.
[stockfish] / src / hashprobe.proto
index dfd16fdcd3dcfbd4bcdc75799449d6cce69c48af..175cd7731a32784054db230a74af697815e605e0 100644 (file)
@@ -30,11 +30,14 @@ message HashProbeMove {
        string from_sq = 1;  // a1, a2, etc.
        string to_sq = 2;
        string promotion = 3;  // Q, R, etc.
+
+       string pretty = 4;  // e.g. Rxf6+
 }
 message HashProbeScore {
        enum ScoreType {
-               SCORE_CP = 0;
-               SCORE_MATE = 1;
+               SCORE_NONE = 0;
+               SCORE_CP = 1;
+               SCORE_MATE = 2;
        }
        ScoreType score_type = 1;
        int32 score_cp = 2;