X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fhashprobe.proto;h=b02a7a92fccac6313b4e5898893c06d61a6ee953;hp=393553e94b46043ca75af59db3c550b82aa8ed79;hb=027ba2704dfbc26e671ca3f0a0db1b01c3becff3;hpb=6f00ea1c0fa32f3c1923e7e29a70cfc0d8dc1cc5 diff --git a/src/hashprobe.proto b/src/hashprobe.proto index 393553e9..b02a7a92 100644 --- a/src/hashprobe.proto +++ b/src/hashprobe.proto @@ -1,13 +1,20 @@ syntax = "proto3"; +package hashprobe; + message HashProbeRequest { string fen = 1; } message HashProbeResponse { - bool found = 1; - int32 move = 2; // See types.h - int32 value = 3; // Dynamic eval (may be inexact, see the "bound" field) - int32 eval = 4; // Static eval - int32 depth = 5; + repeated HashProbeLine line = 1; +} +message HashProbeLine { + HashProbeMove move = 1; + bool found = 2; + + repeated HashProbeMove pv = 3; + int32 value = 4; // Dynamic eval (may be inexact, see the "bound" field) + int32 eval = 5; // Static eval + int32 depth = 6; enum ValueBound { BOUND_NONE = 0; @@ -15,7 +22,13 @@ message HashProbeResponse { BOUND_LOWER = 2; BOUND_EXACT = 3; }; - ValueBound bound = 6; + ValueBound bound = 7; +} + +message HashProbeMove { + string from_sq = 1; // a1, a2, etc. + string to_sq = 2; + string promotion = 3; // Q, R, etc. } service HashProbe {