From: Marco Costalba Date: Sat, 22 Jun 2013 10:45:14 +0000 (+0200) Subject: Name functions along corresponding UCI commands X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=fe2ed426614f729435338f0d7451f7b0d5fe30dd;ds=inline Name functions along corresponding UCI commands No functional change. --- diff --git a/src/uci.cpp b/src/uci.cpp index c8f50446..3bd3c1a5 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -43,8 +43,8 @@ namespace { // position just before to start searching). Needed by repetition draw detection. Search::StateStackPtr SetupStates; - void set_option(istringstream& up); - void set_position(Position& pos, istringstream& up); + void setoption(istringstream& up); + void position(Position& pos, istringstream& up); void go(const Position& pos, istringstream& up); } @@ -105,8 +105,8 @@ void UCI::loop(const string& args) { else if (token == "ucinewgame") TT.clear(); else if (token == "go") go(pos, is); - else if (token == "position") set_position(pos, is); - else if (token == "setoption") set_option(is); + else if (token == "position") position(pos, is); + else if (token == "setoption") setoption(is); else if (token == "flip") pos.flip(); else if (token == "bench") benchmark(pos, is); else if (token == "d") sync_cout << pos.pretty() << sync_endl; @@ -123,12 +123,12 @@ void UCI::loop(const string& args) { namespace { - // set_position() is called when engine receives the "position" UCI command. + // position() is called when engine receives the "position" UCI command. // The function sets up the position described in the given fen string ("fen") // or the starting position ("startpos") and then makes the moves given in the // following move list ("moves"). - void set_position(Position& pos, istringstream& is) { + void position(Position& pos, istringstream& is) { Move m; string token, fen; @@ -158,10 +158,10 @@ namespace { } - // set_option() is called when engine receives the "setoption" UCI command. The + // setoption() is called when engine receives the "setoption" UCI command. The // function updates the UCI option ("name") to the given value ("value"). - void set_option(istringstream& is) { + void setoption(istringstream& is) { string token, name, value;