mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +00:00
Retire uci_main_loop()
No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
2d63f2157e
commit
6afcfd00f2
2 changed files with 96 additions and 116 deletions
16
src/main.cpp
16
src/main.cpp
|
@ -46,7 +46,7 @@
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
extern void uci_main_loop();
|
extern bool execute_uci_command(const string& cmd);
|
||||||
extern void benchmark(int argc, char* argv[]);
|
extern void benchmark(int argc, char* argv[]);
|
||||||
|
|
||||||
////
|
////
|
||||||
|
@ -83,8 +83,18 @@ int main(int argc, char* argv[]) {
|
||||||
if (CpuHasPOPCNT)
|
if (CpuHasPOPCNT)
|
||||||
cout << "Good! CPU has hardware POPCNT." << endl;
|
cout << "Good! CPU has hardware POPCNT." << endl;
|
||||||
|
|
||||||
// Enter UCI mode
|
// Wait for a command from the user, and passes this command to
|
||||||
uci_main_loop();
|
// 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
|
else // Process command line arguments
|
||||||
{
|
{
|
||||||
|
|
74
src/uci.cpp
74
src/uci.cpp
|
@ -38,9 +38,6 @@
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
////
|
|
||||||
//// Local definitions:
|
|
||||||
////
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
|
@ -52,7 +49,6 @@ namespace {
|
||||||
typedef istringstream UCIParser;
|
typedef istringstream UCIParser;
|
||||||
|
|
||||||
// Local functions
|
// Local functions
|
||||||
bool handle_command(Position& pos, const string& command);
|
|
||||||
void set_option(UCIParser& uip);
|
void set_option(UCIParser& uip);
|
||||||
void set_position(Position& pos, UCIParser& uip);
|
void set_position(Position& pos, UCIParser& uip);
|
||||||
bool go(Position& pos, UCIParser& uip);
|
bool go(Position& pos, UCIParser& uip);
|
||||||
|
@ -60,46 +56,15 @@ namespace {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
////
|
/// execute_uci_command() takes a string as input, uses a UCIParser
|
||||||
//// Functions
|
/// object to parse this text string as a UCI command, and calls
|
||||||
////
|
/// the appropriate functions. In addition to the UCI commands,
|
||||||
|
/// the function also supports a few debug commands.
|
||||||
|
|
||||||
/// uci_main_loop() is the only global function in this file. It is
|
bool execute_uci_command(const string& cmd) {
|
||||||
/// called immediately after the program has finished initializing.
|
|
||||||
/// The program remains in this loop until it receives the "quit" UCI
|
|
||||||
/// command. It waits for a command from the user, and passes this
|
|
||||||
/// command to handle_command() and also intercepts EOF from stdin,
|
|
||||||
/// by translating EOF to the "quit" command. This ensures that Stockfish
|
|
||||||
/// exits gracefully if the GUI dies unexpectedly.
|
|
||||||
|
|
||||||
void uci_main_loop() {
|
static Position pos(StartPositionFEN, 0); // The root position
|
||||||
|
UCIParser up(cmd);
|
||||||
Position pos(StartPositionFEN, 0); // The root position
|
|
||||||
string command;
|
|
||||||
|
|
||||||
do {
|
|
||||||
// Wait for a command from stdin
|
|
||||||
if (!getline(cin, command))
|
|
||||||
command = "quit";
|
|
||||||
|
|
||||||
} while (handle_command(pos, command));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
////
|
|
||||||
//// Local functions
|
|
||||||
////
|
|
||||||
|
|
||||||
namespace {
|
|
||||||
|
|
||||||
// handle_command() takes a string as input, uses a UCIParser
|
|
||||||
// object to parse this text string as a UCI command, and calls
|
|
||||||
// the appropriate functions. In addition to the UCI commands,
|
|
||||||
// the function also supports a few debug commands.
|
|
||||||
|
|
||||||
bool handle_command(Position& pos, const string& command) {
|
|
||||||
|
|
||||||
UCIParser up(command);
|
|
||||||
string token;
|
string token;
|
||||||
|
|
||||||
if (!(up >> token)) // operator>>() skips any whitespace
|
if (!(up >> token)) // operator>>() skips any whitespace
|
||||||
|
@ -155,12 +120,18 @@ namespace {
|
||||||
perft(pos, up);
|
perft(pos, up);
|
||||||
|
|
||||||
else
|
else
|
||||||
cout << "Unknown command: " << command << endl;
|
cout << "Unknown command: " << cmd << endl;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
////
|
||||||
|
//// Local functions
|
||||||
|
////
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
// set_position() is called when Stockfish receives the "position" UCI
|
// set_position() is called when Stockfish receives the "position" UCI
|
||||||
// command. The input parameter is a UCIParser. It is assumed
|
// command. The input parameter is a UCIParser. It is assumed
|
||||||
// that this parser has consumed the first token of the UCI command
|
// that this parser has consumed the first token of the UCI command
|
||||||
|
@ -171,12 +142,16 @@ namespace {
|
||||||
|
|
||||||
string token;
|
string token;
|
||||||
|
|
||||||
if (!(up >> token)) // operator>>() skips any whitespace
|
if (!(up >> token) || (token != "startpos" && token != "fen"))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (token == "startpos")
|
if (token == "startpos")
|
||||||
|
{
|
||||||
pos.from_fen(StartPositionFEN);
|
pos.from_fen(StartPositionFEN);
|
||||||
else if (token == "fen")
|
if (!(up >> token))
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else // fen
|
||||||
{
|
{
|
||||||
string fen;
|
string fen;
|
||||||
while (up >> token && token != "moves")
|
while (up >> token && token != "moves")
|
||||||
|
@ -187,13 +162,10 @@ namespace {
|
||||||
pos.from_fen(fen);
|
pos.from_fen(fen);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (up.good())
|
|
||||||
{
|
|
||||||
if (token != "moves")
|
if (token != "moves")
|
||||||
up >> token;
|
return;
|
||||||
|
|
||||||
if (token == "moves")
|
// Parse optional move list
|
||||||
{
|
|
||||||
Move move;
|
Move move;
|
||||||
StateInfo st;
|
StateInfo st;
|
||||||
while (up >> token)
|
while (up >> token)
|
||||||
|
@ -209,8 +181,6 @@ namespace {
|
||||||
// its content inside pos before it disappears.
|
// its content inside pos before it disappears.
|
||||||
pos.detach();
|
pos.detach();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// set_option() is called when Stockfish receives the "setoption" UCI
|
// set_option() is called when Stockfish receives the "setoption" UCI
|
||||||
|
|
Loading…
Add table
Reference in a new issue