mirror of
https://github.com/sockspls/badfish
synced 2025-04-29 16:23:09 +00:00
Small cleanup in uci.cpp
No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
56de5ae561
commit
2d63f2157e
1 changed files with 60 additions and 51 deletions
111
src/uci.cpp
111
src/uci.cpp
|
@ -47,16 +47,16 @@ namespace {
|
||||||
// FEN string for the initial position
|
// FEN string for the initial position
|
||||||
const string StartPositionFEN = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
|
const string StartPositionFEN = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
|
||||||
|
|
||||||
// UCIInputParser is a class for parsing UCI input. The class
|
// UCIParser is a class for parsing UCI input. The class
|
||||||
// is actually a string stream built on a given input string.
|
// is actually a string stream built on a given input string.
|
||||||
typedef istringstream UCIInputParser;
|
typedef istringstream UCIParser;
|
||||||
|
|
||||||
// Local functions
|
// Local functions
|
||||||
bool handle_command(Position& pos, const string& command);
|
bool handle_command(Position& pos, const string& command);
|
||||||
void set_option(UCIInputParser& uip);
|
void set_option(UCIParser& uip);
|
||||||
void set_position(Position& pos, UCIInputParser& uip);
|
void set_position(Position& pos, UCIParser& uip);
|
||||||
bool go(Position& pos, UCIInputParser& uip);
|
bool go(Position& pos, UCIParser& uip);
|
||||||
void perft(Position& pos, UCIInputParser& uip);
|
void perft(Position& pos, UCIParser& uip);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ namespace {
|
||||||
/// called immediately after the program has finished initializing.
|
/// called immediately after the program has finished initializing.
|
||||||
/// The program remains in this loop until it receives the "quit" UCI
|
/// 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. It waits for a command from the user, and passes this
|
||||||
/// command to handle_command and also intercepts EOF from stdin,
|
/// command to handle_command() and also intercepts EOF from stdin,
|
||||||
/// by translating EOF to the "quit" command. This ensures that Stockfish
|
/// by translating EOF to the "quit" command. This ensures that Stockfish
|
||||||
/// exits gracefully if the GUI dies unexpectedly.
|
/// exits gracefully if the GUI dies unexpectedly.
|
||||||
|
|
||||||
|
@ -92,24 +92,24 @@ void uci_main_loop() {
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
// handle_command() takes a text string as input, uses a
|
// handle_command() takes a string as input, uses a UCIParser
|
||||||
// UCIInputParser object to parse this text string as a UCI command,
|
// object to parse this text string as a UCI command, and calls
|
||||||
// and calls the appropriate functions. In addition to the UCI
|
// the appropriate functions. In addition to the UCI commands,
|
||||||
// commands, the function also supports a few debug commands.
|
// the function also supports a few debug commands.
|
||||||
|
|
||||||
bool handle_command(Position& pos, const string& command) {
|
bool handle_command(Position& pos, const string& command) {
|
||||||
|
|
||||||
UCIInputParser uip(command);
|
UCIParser up(command);
|
||||||
string token;
|
string token;
|
||||||
|
|
||||||
if (!(uip >> token)) // operator>>() skips any whitespace
|
if (!(up >> token)) // operator>>() skips any whitespace
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
if (token == "quit")
|
if (token == "quit")
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (token == "go")
|
if (token == "go")
|
||||||
return go(pos, uip);
|
return go(pos, up);
|
||||||
|
|
||||||
if (token == "uci")
|
if (token == "uci")
|
||||||
{
|
{
|
||||||
|
@ -120,18 +120,20 @@ namespace {
|
||||||
}
|
}
|
||||||
else if (token == "ucinewgame")
|
else if (token == "ucinewgame")
|
||||||
pos.from_fen(StartPositionFEN);
|
pos.from_fen(StartPositionFEN);
|
||||||
|
|
||||||
else if (token == "isready")
|
else if (token == "isready")
|
||||||
cout << "readyok" << endl;
|
cout << "readyok" << endl;
|
||||||
else if (token == "position")
|
|
||||||
set_position(pos, uip);
|
|
||||||
else if (token == "setoption")
|
|
||||||
set_option(uip);
|
|
||||||
|
|
||||||
// The remaining commands are for debugging purposes only.
|
else if (token == "position")
|
||||||
// Perhaps they should be removed later in order to reduce the
|
set_position(pos, up);
|
||||||
// size of the program binary.
|
|
||||||
|
else if (token == "setoption")
|
||||||
|
set_option(up);
|
||||||
|
|
||||||
|
// The remaining commands are for debugging purposes only
|
||||||
else if (token == "d")
|
else if (token == "d")
|
||||||
pos.print();
|
pos.print();
|
||||||
|
|
||||||
else if (token == "flip")
|
else if (token == "flip")
|
||||||
{
|
{
|
||||||
Position p(pos, pos.thread());
|
Position p(pos, pos.thread());
|
||||||
|
@ -148,8 +150,10 @@ namespace {
|
||||||
cout << "key: " << hex << pos.get_key()
|
cout << "key: " << hex << pos.get_key()
|
||||||
<< "\nmaterial key: " << pos.get_material_key()
|
<< "\nmaterial key: " << pos.get_material_key()
|
||||||
<< "\npawn key: " << pos.get_pawn_key() << endl;
|
<< "\npawn key: " << pos.get_pawn_key() << endl;
|
||||||
|
|
||||||
else if (token == "perft")
|
else if (token == "perft")
|
||||||
perft(pos, uip);
|
perft(pos, up);
|
||||||
|
|
||||||
else
|
else
|
||||||
cout << "Unknown command: " << command << endl;
|
cout << "Unknown command: " << command << endl;
|
||||||
|
|
||||||
|
@ -158,16 +162,16 @@ 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 UCIInputParser. 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
|
||||||
// ("position"), and is ready to read the second token ("startpos"
|
// ("position"), and is ready to read the second token ("startpos"
|
||||||
// or "fen", if the input is well-formed).
|
// or "fen", if the input is well-formed).
|
||||||
|
|
||||||
void set_position(Position& pos, UCIInputParser& uip) {
|
void set_position(Position& pos, UCIParser& up) {
|
||||||
|
|
||||||
string token;
|
string token;
|
||||||
|
|
||||||
if (!(uip >> token)) // operator>>() skips any whitespace
|
if (!(up >> token)) // operator>>() skips any whitespace
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (token == "startpos")
|
if (token == "startpos")
|
||||||
|
@ -175,7 +179,7 @@ namespace {
|
||||||
else if (token == "fen")
|
else if (token == "fen")
|
||||||
{
|
{
|
||||||
string fen;
|
string fen;
|
||||||
while (uip >> token && token != "moves")
|
while (up >> token && token != "moves")
|
||||||
{
|
{
|
||||||
fen += token;
|
fen += token;
|
||||||
fen += ' ';
|
fen += ' ';
|
||||||
|
@ -183,16 +187,16 @@ namespace {
|
||||||
pos.from_fen(fen);
|
pos.from_fen(fen);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (uip.good())
|
if (up.good())
|
||||||
{
|
{
|
||||||
if (token != "moves")
|
if (token != "moves")
|
||||||
uip >> token;
|
up >> token;
|
||||||
|
|
||||||
if (token == "moves")
|
if (token == "moves")
|
||||||
{
|
{
|
||||||
Move move;
|
Move move;
|
||||||
StateInfo st;
|
StateInfo st;
|
||||||
while (uip >> token)
|
while (up >> token)
|
||||||
{
|
{
|
||||||
move = move_from_uci(pos, token);
|
move = move_from_uci(pos, token);
|
||||||
pos.do_move(move, st);
|
pos.do_move(move, st);
|
||||||
|
@ -210,22 +214,23 @@ namespace {
|
||||||
|
|
||||||
|
|
||||||
// set_option() is called when Stockfish receives the "setoption" UCI
|
// set_option() is called when Stockfish receives the "setoption" UCI
|
||||||
// command. The input parameter is a UCIInputParser. 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
|
||||||
// ("setoption"), and is ready to read the second token ("name", if
|
// ("setoption"), and is ready to read the second token ("name", if
|
||||||
// the input is well-formed).
|
// the input is well-formed).
|
||||||
|
|
||||||
void set_option(UCIInputParser& uip) {
|
void set_option(UCIParser& up) {
|
||||||
|
|
||||||
string token, name, value;
|
string token, name, value;
|
||||||
|
|
||||||
if (!(uip >> token)) // operator>>() skips any whitespace
|
if (!(up >> token) || token != "name") // operator>>() skips any whitespace
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (token != "name" || !(uip >> name))
|
if (!(up >> name))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
while (uip >> token && token != "value")
|
// Handle names with included spaces
|
||||||
|
while (up >> token && token != "value")
|
||||||
name += (" " + token);
|
name += (" " + token);
|
||||||
|
|
||||||
if (Options.find(name) == Options.end())
|
if (Options.find(name) == Options.end())
|
||||||
|
@ -234,13 +239,18 @@ namespace {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (token != "value" || !(uip >> value))
|
// Is a button ?
|
||||||
|
if (token != "value")
|
||||||
{
|
{
|
||||||
Options[name].set_value("true");
|
Options[name].set_value("true");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (uip >> token)
|
if (!(up >> value))
|
||||||
|
return;
|
||||||
|
|
||||||
|
// Handle values with included spaces
|
||||||
|
while (up >> token)
|
||||||
value += (" " + token);
|
value += (" " + token);
|
||||||
|
|
||||||
Options[name].set_value(value);
|
Options[name].set_value(value);
|
||||||
|
@ -248,7 +258,7 @@ namespace {
|
||||||
|
|
||||||
|
|
||||||
// go() is called when Stockfish receives the "go" UCI command. The
|
// go() is called when Stockfish receives the "go" UCI command. The
|
||||||
// input parameter is a UCIInputParser. It is assumed that this
|
// input parameter is a UCIParser. It is assumed that this
|
||||||
// parser has consumed the first token of the UCI command ("go"),
|
// parser has consumed the first token of the UCI command ("go"),
|
||||||
// and is ready to read the second token. The function sets the
|
// and is ready to read the second token. The function sets the
|
||||||
// thinking time and other parameters from the input string, and
|
// thinking time and other parameters from the input string, and
|
||||||
|
@ -256,7 +266,7 @@ namespace {
|
||||||
// parameters. Returns false if a quit command is received while
|
// parameters. Returns false if a quit command is received while
|
||||||
// thinking, returns true otherwise.
|
// thinking, returns true otherwise.
|
||||||
|
|
||||||
bool go(Position& pos, UCIInputParser& uip) {
|
bool go(Position& pos, UCIParser& up) {
|
||||||
|
|
||||||
string token;
|
string token;
|
||||||
|
|
||||||
|
@ -267,32 +277,32 @@ namespace {
|
||||||
|
|
||||||
searchMoves[0] = MOVE_NONE;
|
searchMoves[0] = MOVE_NONE;
|
||||||
|
|
||||||
while (uip >> token)
|
while (up >> token)
|
||||||
{
|
{
|
||||||
if (token == "infinite")
|
if (token == "infinite")
|
||||||
infinite = true;
|
infinite = true;
|
||||||
else if (token == "ponder")
|
else if (token == "ponder")
|
||||||
ponder = true;
|
ponder = true;
|
||||||
else if (token == "wtime")
|
else if (token == "wtime")
|
||||||
uip >> time[0];
|
up >> time[0];
|
||||||
else if (token == "btime")
|
else if (token == "btime")
|
||||||
uip >> time[1];
|
up >> time[1];
|
||||||
else if (token == "winc")
|
else if (token == "winc")
|
||||||
uip >> inc[0];
|
up >> inc[0];
|
||||||
else if (token == "binc")
|
else if (token == "binc")
|
||||||
uip >> inc[1];
|
up >> inc[1];
|
||||||
else if (token == "movestogo")
|
else if (token == "movestogo")
|
||||||
uip >> movesToGo;
|
up >> movesToGo;
|
||||||
else if (token == "depth")
|
else if (token == "depth")
|
||||||
uip >> depth;
|
up >> depth;
|
||||||
else if (token == "nodes")
|
else if (token == "nodes")
|
||||||
uip >> nodes;
|
up >> nodes;
|
||||||
else if (token == "movetime")
|
else if (token == "movetime")
|
||||||
uip >> moveTime;
|
up >> moveTime;
|
||||||
else if (token == "searchmoves")
|
else if (token == "searchmoves")
|
||||||
{
|
{
|
||||||
int numOfMoves = 0;
|
int numOfMoves = 0;
|
||||||
while (uip >> token)
|
while (up >> token)
|
||||||
searchMoves[numOfMoves++] = move_from_uci(pos, token);
|
searchMoves[numOfMoves++] = move_from_uci(pos, token);
|
||||||
|
|
||||||
searchMoves[numOfMoves] = MOVE_NONE;
|
searchMoves[numOfMoves] = MOVE_NONE;
|
||||||
|
@ -305,12 +315,11 @@ namespace {
|
||||||
depth, nodes, moveTime, searchMoves);
|
depth, nodes, moveTime, searchMoves);
|
||||||
}
|
}
|
||||||
|
|
||||||
void perft(Position& pos, UCIInputParser& uip) {
|
void perft(Position& pos, UCIParser& up) {
|
||||||
|
|
||||||
string token;
|
|
||||||
int depth, tm, n;
|
int depth, tm, n;
|
||||||
|
|
||||||
if (!(uip >> depth))
|
if (!(up >> depth))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
tm = get_system_time();
|
tm = get_system_time();
|
||||||
|
|
Loading…
Add table
Reference in a new issue