X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=b7127b758153c9fd008563f2f7412a5802ebdfad;hp=f82a5f0a967eccf8318fcddd1b799998f0943959;hb=6fa6da3ee13d2b7bdbec3cd24ff8ca43233c74fb;hpb=3c07603dac03f0da20194097cf4eb1a396fea60d diff --git a/src/uci.cpp b/src/uci.cpp index f82a5f0a..b7127b75 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -74,7 +74,7 @@ namespace { while (is >> token && (m = UCI::to_move(pos, token)) != MOVE_NONE) { SetupStates->push(StateInfo()); - pos.do_move(m, SetupStates->top()); + pos.do_move(m, SetupStates->top(), pos.gives_check(m, CheckInfo(pos))); } } @@ -220,7 +220,7 @@ string UCI::value(Value v) { stringstream ss; - if (abs(v) < VALUE_MATE_IN_MAX_PLY) + if (abs(v) < VALUE_MATE - MAX_PLY) ss << "cp " << v * 100 / PawnValueEg; else ss << "mate " << (v > 0 ? VALUE_MATE - v + 1 : -VALUE_MATE - v) / 2; @@ -232,9 +232,7 @@ string UCI::value(Value v) { /// UCI::square() converts a Square to a string in algebraic notation (g1, a7, etc.) std::string UCI::square(Square s) { - - char sq[] = { char('a' + file_of(s)), char('1' + rank_of(s)), 0 }; // NULL terminated - return sq; + return std::string{ char('a' + file_of(s)), char('1' + rank_of(s)) }; } @@ -274,9 +272,9 @@ Move UCI::to_move(const Position& pos, string& str) { if (str.length() == 5) // Junior could send promotion piece in uppercase str[4] = char(tolower(str[4])); - for (const ExtMove& ms : MoveList(pos)) - if (str == UCI::move(ms.move, pos.is_chess960())) - return ms.move; + for (const auto& m : MoveList(pos)) + if (str == UCI::move(m, pos.is_chess960())) + return m; return MOVE_NONE; }