X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=e6f01d3c72670a24da0f7ed22c5c48651d264fec;hp=39270c6ff93697b1ff3206f4022637be613fecad;hb=a1f9bf19d9aa542fd5109a4ce997eac8122568d4;hpb=1d0159075e916c738760b788d605b71b3736cb7c diff --git a/src/uci.cpp b/src/uci.cpp index 39270c6f..e6f01d3c 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -59,7 +59,7 @@ bool execute_uci_command(const string& cmd) { UCIParser up(cmd); string token; - up >> token; // operator>>() skips any whitespace + up >> skipws >> token; if (token == "quit") return false; @@ -120,9 +120,10 @@ namespace { void set_position(Position& pos, UCIParser& up) { + Move m; string token, fen; - up >> token; // operator>>() skips any whitespace + up >> token; if (token == "startpos") { @@ -139,8 +140,8 @@ namespace { else return; // Parse move list (if any) - while (up >> token) - pos.do_setup_move(move_from_uci(pos, token)); + while (up >> token && (m = move_from_uci(pos, token)) != MOVE_NONE) + pos.do_setup_move(m); } @@ -150,24 +151,20 @@ namespace { void set_option(UCIParser& up) { - string token, name; - string value = "true"; // UCI buttons don't have a "value" field + string token, name, value; up >> token; // Consume "name" token - up >> name; // Read option name - // Handle names with included spaces + // Read option name (can contain spaces) while (up >> token && token != "value") - name += " " + token; - - up >> value; // Read option value + name += string(" ", !name.empty()) + token; - // Handle values with included spaces + // Read option value (can contain spaces) while (up >> token) - value += " " + token; + value += string(" ", !value.empty()) + token; if (Options.find(name) != Options.end()) - Options[name].set_value(value); + Options[name].set_value(value.empty() ? "true" : value); // UCI buttons don't have "value" else cout << "No such option: " << name << endl; } @@ -216,15 +213,13 @@ namespace { limits.time = time[pos.side_to_move()]; limits.increment = inc[pos.side_to_move()]; - assert(pos.is_ok()); - return think(pos, limits, searchMoves); } // perft() is called when engine receives the "perft" command. // The function calls perft() passing the required search depth - // then prints counted nodes and elapsed time. + // then prints counted leaf nodes and elapsed time. void perft(Position& pos, UCIParser& up) {