]> git.sesse.net Git - stockfish/commitdiff
Send back a prettyprinted version of the move on hash probe.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 19 Nov 2016 11:04:21 +0000 (12:04 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 24 Nov 2018 10:17:41 +0000 (11:17 +0100)
src/client.cpp
src/hashprobe.h
src/hashprobe.proto
src/main.cpp

index 6049495a4a0d430a9660fdaadf9580f334c7fa42..a57879050bf0164b61ee14c2b662e3b61eac5818 100644 (file)
@@ -15,7 +15,7 @@ using namespace hashprobe;
 
 std::string FormatMove(const HashProbeMove &move) {
   if (move.from_sq().empty()) return "MOVE_NONE";
-  return move.from_sq() + move.to_sq() + move.promotion();
+  return move.pretty();
 }
 
 int main(int argc, char** argv) {
index 67b283f551ea40ed9175642534122bdfc08e4909..999266d520dc7ad72bec91388669a798b1160078 100644 (file)
@@ -18,7 +18,7 @@ public:
                           hashprobe::HashProbeResponse *response);
 
 private:
-       void FillMove(Move move, hashprobe::HashProbeMove* decoded);
+       void FillMove(Position* pos, Move move, hashprobe::HashProbeMove* decoded);
        void ProbeMove(Position* pos, std::deque<StateInfo>* setup_states, bool invert, hashprobe::HashProbeLine* response);
        void FillValue(Value value, hashprobe::HashProbeScore* score);
 };
index bb34806dfdc53a3a13fdbe5e679d34b987011231..175cd7731a32784054db230a74af697815e605e0 100644 (file)
@@ -30,6 +30,8 @@ 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 {
index 76aca51d2e8f5f13d8178029ab1f4427bbdab0d3..5eb1b1f0f632c5fcc50681c85b79c4108bd33dfd 100644 (file)
@@ -62,7 +62,7 @@ Status HashProbeImpl::Probe(ServerContext* context,
        MoveList<LEGAL> moves(pos);
        for (const ExtMove* em = moves.begin(); em != moves.end(); ++em) {
                HashProbeLine *line = response->add_line();
-               FillMove(em->move, line->mutable_move());
+               FillMove(&pos, em->move, line->mutable_move());
                setup_states->push_back(StateInfo());
                pos.do_move(em->move, setup_states->back(), pos.gives_check(em->move));
                ProbeMove(&pos, setup_states.get(), !invert, line);
@@ -72,7 +72,7 @@ Status HashProbeImpl::Probe(ServerContext* context,
        return Status::OK;
 }
 
-void HashProbeImpl::FillMove(Move move, HashProbeMove* decoded) {
+void HashProbeImpl::FillMove(Position *pos, Move move, HashProbeMove* decoded) {
        if (!is_ok(move)) return;
 
        Square from = from_sq(move);
@@ -88,6 +88,73 @@ void HashProbeImpl::FillMove(Move move, HashProbeMove* decoded) {
        if (type_of(move) == PROMOTION) {
                decoded->set_promotion(std::string() + " PNBRQK"[promotion_type(move)]);
        }
+
+       Piece moved_piece = pos->moved_piece(move);
+       std::string pretty;
+       if (type_of(move) == CASTLING) {
+               if (to > from) {
+                       pretty = "O-O";
+               } else {
+                       pretty = "O-O-O";
+               }
+       } else if (type_of(moved_piece) == PAWN) {
+               if (type_of(move) == ENPASSANT || pos->piece_on(to) != NO_PIECE) {
+                       // Capture.
+                       pretty = char('a' + file_of(from));
+                       pretty += "x";
+               }
+               pretty += UCI::square(to);
+               if (type_of(move) == PROMOTION) {
+                       pretty += "=";
+                       pretty += " PNBRQK"[promotion_type(move)];
+               }
+       } else {
+               pretty = " PNBRQK"[type_of(moved_piece)];
+               Bitboard attackers = pos->attackers_to(to) & pos->pieces(color_of(moved_piece), type_of(moved_piece));
+               if (more_than_one(attackers)) {
+                       // Remove all illegal moves to disambiguate.
+                       Bitboard att_copy = attackers;
+                       while (att_copy) {
+                               Square s = pop_lsb(&att_copy);
+                               Move m = make_move(s, to);
+                               if (!pos->pseudo_legal(m) || !pos->legal(m)) {
+                                       attackers &= ~SquareBB[s];
+                               }
+                       }
+               }
+               if (more_than_one(attackers)) {
+                       // Disambiguate by file if possible.
+                       Bitboard attackers_this_file = attackers & file_bb(file_of(from));
+                       if (attackers != attackers_this_file) {
+                               pretty += char('a' + file_of(from));
+                               attackers = attackers_this_file;
+                       }
+                       if (more_than_one(attackers)) {
+                               // Still ambiguous, so need to disambiguate by rank.
+                               pretty += char('1' + rank_of(from));
+                       }
+               }
+
+               if (type_of(move) == ENPASSANT || pos->piece_on(to) != NO_PIECE) {
+                       pretty += "x";
+               }
+
+               pretty += UCI::square(to);
+       }
+
+       if (pos->gives_check(move)) {
+               // Check if mate.
+               StateInfo si;
+               pos->do_move(move, si, true);
+               if (MoveList<LEGAL>(*pos).size() > 0) {
+                       pretty += "+";
+               } else {
+                       pretty += "#";
+               }
+               pos->undo_move(move);
+       }
+
+       decoded->set_pretty(pretty);
 }
 
 void HashProbeImpl::ProbeMove(Position* pos, std::deque<StateInfo>* setup_states, bool invert, HashProbeLine* response) {
@@ -122,7 +189,7 @@ void HashProbeImpl::ProbeMove(Position* pos, std::deque<StateInfo>* setup_states
                while (found && is_ok(entry->move()) &&
                       pos->pseudo_legal(entry->move()) &&
                       pos->legal(entry->move())) {
-                       FillMove(entry->move(), response->add_pv());
+                       FillMove(pos, entry->move(), response->add_pv());
                        if (seen.count(pos->key())) break;
                        pv.push(entry->move());
                        seen.insert(pos->key());