X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=e4a4393cfe7280d4e3ef9bbfd77da6e86d9cba30;hp=df01836b3d8069c48519db4a909c5144ae3ce4d8;hb=b2c0634d4898a78a9e82fca9197467d442e5cb95;hpb=ada55c5d0a899a5ccfbb3abe9967cf9c2b29c363 diff --git a/src/uci.cpp b/src/uci.cpp index df01836b..e4a4393c 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -143,13 +143,16 @@ namespace { /// that we exit gracefully if the GUI dies unexpectedly. In addition to the UCI /// commands, the function also supports a few debug commands. -void UCI::loop(const string& args) { +void UCI::loop(int argc, char* argv[]) { Position pos(StartFEN, false, Threads.main()); // The root position - string token, cmd = args; + string token, cmd; + + for (int i = 1; i < argc; ++i) + cmd += std::string(argv[i]) + " "; do { - if (args.empty() && !getline(cin, cmd)) // Block here waiting for input + if (argc == 1 && !getline(cin, cmd)) // Block here waiting for input cmd = "quit"; istringstream is(cmd); @@ -208,7 +211,7 @@ void UCI::loop(const string& args) { else sync_cout << "Unknown command: " << cmd << sync_endl; - } while (token != "quit" && args.empty()); // Args have one-shot behaviour + } while (token != "quit" && argc == 1); // Passed args have one-shot behaviour Threads.wait_for_think_finished(); // Cannot quit whilst the search is running }