X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmain.cpp;h=de77e5823eff1a756f249ae1119493d441890921;hb=d40a12f948590e280a4c0e874cb8a73b6b7929c2;hp=f9ed8de52c361fd10c3f8e8b280e8f711af30314;hpb=efeb37c33f15a903dbe5706529a7a26511e9ca58;p=stockfish diff --git a/src/main.cpp b/src/main.cpp index f9ed8de5..de77e582 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -46,7 +46,7 @@ using namespace std; -extern void uci_main_loop(); +extern bool execute_uci_command(const string& cmd); extern void benchmark(int argc, char* argv[]); //// @@ -83,8 +83,18 @@ int main(int argc, char* argv[]) { if (CpuHasPOPCNT) cout << "Good! CPU has hardware POPCNT." << endl; - // Enter UCI mode - uci_main_loop(); + // Wait for a command from the user, and passes this command to + // execute_uci_command() and also intercepts EOF from stdin, by + // translating EOF to the "quit" command. This ensures that we + // exit gracefully if the GUI dies unexpectedly. + string cmd; + + do { + // Wait for a command from stdin + if (!getline(cin, cmd)) + cmd = "quit"; + + } while (execute_uci_command(cmd)); } else // Process command line arguments {