2011-11-12 20:44:06 +01:00
|
|
|
/*
|
|
|
|
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
|
|
|
|
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
2015-02-01 01:46:09 +01:00
|
|
|
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
|
2018-12-03 20:38:40 +01:00
|
|
|
Copyright (C) 2015-2019 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
|
2011-11-12 20:44:06 +01:00
|
|
|
|
|
|
|
Stockfish is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Stockfish is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-09-10 10:30:09 +02:00
|
|
|
#include <cassert>
|
2011-11-12 20:44:06 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "evaluate.h"
|
2015-02-01 01:46:09 +01:00
|
|
|
#include "movegen.h"
|
2011-11-12 20:44:06 +01:00
|
|
|
#include "position.h"
|
|
|
|
#include "search.h"
|
2012-01-01 01:52:19 +01:00
|
|
|
#include "thread.h"
|
2015-10-23 22:58:14 +02:00
|
|
|
#include "timeman.h"
|
2018-12-03 20:38:40 +01:00
|
|
|
#include "tt.h"
|
2015-02-01 01:46:09 +01:00
|
|
|
#include "uci.h"
|
2017-09-10 10:30:09 +02:00
|
|
|
#include "syzygy/tbprobe.h"
|
2011-11-12 20:44:06 +01:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2017-09-10 10:30:09 +02:00
|
|
|
extern vector<string> setup_bench(const Position&, istream&);
|
2012-06-04 18:25:51 +02:00
|
|
|
|
2011-11-12 20:44:06 +01:00
|
|
|
namespace {
|
|
|
|
|
2012-01-01 01:52:19 +01:00
|
|
|
// FEN string of the initial position, normal chess
|
|
|
|
const char* StartFEN = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
|
2011-11-12 20:44:06 +01:00
|
|
|
|
|
|
|
|
2013-08-20 20:02:33 +02:00
|
|
|
// position() is called when engine receives the "position" UCI command.
|
2014-05-31 14:23:03 +02:00
|
|
|
// The function sets up the position described in the given FEN string ("fen")
|
2012-09-16 17:16:15 +02:00
|
|
|
// or the starting position ("startpos") and then makes the moves given in the
|
|
|
|
// following move list ("moves").
|
2011-11-12 20:44:06 +01:00
|
|
|
|
2017-09-10 10:30:09 +02:00
|
|
|
void position(Position& pos, istringstream& is, StateListPtr& states) {
|
2011-11-12 20:44:06 +01:00
|
|
|
|
2012-01-01 01:52:19 +01:00
|
|
|
Move m;
|
2011-11-12 20:44:06 +01:00
|
|
|
string token, fen;
|
|
|
|
|
2012-01-01 01:52:19 +01:00
|
|
|
is >> token;
|
2011-11-12 20:44:06 +01:00
|
|
|
|
|
|
|
if (token == "startpos")
|
|
|
|
{
|
2012-01-01 01:52:19 +01:00
|
|
|
fen = StartFEN;
|
|
|
|
is >> token; // Consume "moves" token if any
|
2011-11-12 20:44:06 +01:00
|
|
|
}
|
|
|
|
else if (token == "fen")
|
2012-01-01 01:52:19 +01:00
|
|
|
while (is >> token && token != "moves")
|
2011-11-12 20:44:06 +01:00
|
|
|
fen += token + " ";
|
2012-01-01 01:52:19 +01:00
|
|
|
else
|
|
|
|
return;
|
2011-11-12 20:44:06 +01:00
|
|
|
|
2017-09-10 10:30:09 +02:00
|
|
|
states = StateListPtr(new std::deque<StateInfo>(1)); // Drop old and create a new one
|
|
|
|
pos.set(fen, Options["UCI_Chess960"], &states->back(), Threads.main());
|
2011-11-12 20:44:06 +01:00
|
|
|
|
|
|
|
// Parse move list (if any)
|
2015-02-01 01:46:09 +01:00
|
|
|
while (is >> token && (m = UCI::to_move(pos, token)) != MOVE_NONE)
|
2012-01-01 01:52:19 +01:00
|
|
|
{
|
2017-09-10 10:30:09 +02:00
|
|
|
states->emplace_back();
|
|
|
|
pos.do_move(m, states->back());
|
2012-01-01 01:52:19 +01:00
|
|
|
}
|
2011-11-12 20:44:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-20 20:02:33 +02:00
|
|
|
// setoption() is called when engine receives the "setoption" UCI command. The
|
2012-01-01 01:52:19 +01:00
|
|
|
// function updates the UCI option ("name") to the given value ("value").
|
2011-11-12 20:44:06 +01:00
|
|
|
|
2013-08-20 20:02:33 +02:00
|
|
|
void setoption(istringstream& is) {
|
2011-11-12 20:44:06 +01:00
|
|
|
|
2012-01-01 01:52:19 +01:00
|
|
|
string token, name, value;
|
2011-11-12 20:44:06 +01:00
|
|
|
|
2012-01-01 01:52:19 +01:00
|
|
|
is >> token; // Consume "name" token
|
2011-11-12 20:44:06 +01:00
|
|
|
|
2012-01-01 01:52:19 +01:00
|
|
|
// Read option name (can contain spaces)
|
|
|
|
while (is >> token && token != "value")
|
2018-12-03 20:38:40 +01:00
|
|
|
name += (name.empty() ? "" : " ") + token;
|
2011-11-12 20:44:06 +01:00
|
|
|
|
2012-01-01 01:52:19 +01:00
|
|
|
// Read option value (can contain spaces)
|
|
|
|
while (is >> token)
|
2018-12-03 20:38:40 +01:00
|
|
|
value += (value.empty() ? "" : " ") + token;
|
2011-11-12 20:44:06 +01:00
|
|
|
|
2012-06-04 18:25:51 +02:00
|
|
|
if (Options.count(name))
|
2012-01-01 01:52:19 +01:00
|
|
|
Options[name] = value;
|
2012-06-04 18:25:51 +02:00
|
|
|
else
|
2012-09-16 17:16:15 +02:00
|
|
|
sync_cout << "No such option: " << name << sync_endl;
|
2011-11-12 20:44:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-01 01:52:19 +01:00
|
|
|
// go() is called when engine receives the "go" UCI command. The function sets
|
2015-02-01 01:46:09 +01:00
|
|
|
// the thinking time and other parameters from the input string, then starts
|
2012-06-04 18:25:51 +02:00
|
|
|
// the search.
|
2011-11-12 20:44:06 +01:00
|
|
|
|
2017-09-10 10:30:09 +02:00
|
|
|
void go(Position& pos, istringstream& is, StateListPtr& states) {
|
2011-11-12 20:44:06 +01:00
|
|
|
|
2012-01-01 01:52:19 +01:00
|
|
|
Search::LimitsType limits;
|
2012-06-04 18:25:51 +02:00
|
|
|
string token;
|
2017-09-10 10:30:09 +02:00
|
|
|
bool ponderMode = false;
|
2011-11-12 20:44:06 +01:00
|
|
|
|
2015-10-23 22:58:14 +02:00
|
|
|
limits.startTime = now(); // As early as possible!
|
|
|
|
|
2012-01-01 01:52:19 +01:00
|
|
|
while (is >> token)
|
2013-05-03 19:03:42 +02:00
|
|
|
if (token == "searchmoves")
|
2012-01-01 01:52:19 +01:00
|
|
|
while (is >> token)
|
2015-02-01 01:46:09 +01:00
|
|
|
limits.searchmoves.push_back(UCI::to_move(pos, token));
|
2013-05-03 19:03:42 +02:00
|
|
|
|
|
|
|
else if (token == "wtime") is >> limits.time[WHITE];
|
|
|
|
else if (token == "btime") is >> limits.time[BLACK];
|
|
|
|
else if (token == "winc") is >> limits.inc[WHITE];
|
|
|
|
else if (token == "binc") is >> limits.inc[BLACK];
|
|
|
|
else if (token == "movestogo") is >> limits.movestogo;
|
|
|
|
else if (token == "depth") is >> limits.depth;
|
|
|
|
else if (token == "nodes") is >> limits.nodes;
|
|
|
|
else if (token == "movetime") is >> limits.movetime;
|
|
|
|
else if (token == "mate") is >> limits.mate;
|
2017-09-10 10:30:09 +02:00
|
|
|
else if (token == "perft") is >> limits.perft;
|
2015-10-23 22:58:14 +02:00
|
|
|
else if (token == "infinite") limits.infinite = 1;
|
2017-09-10 10:30:09 +02:00
|
|
|
else if (token == "ponder") ponderMode = true;
|
|
|
|
|
|
|
|
Threads.start_thinking(pos, states, limits, ponderMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// bench() is called when engine receives the "bench" command. Firstly
|
|
|
|
// a list of UCI commands is setup according to bench parameters, then
|
|
|
|
// it is run one by one printing a summary at the end.
|
|
|
|
|
|
|
|
void bench(Position& pos, istream& args, StateListPtr& states) {
|
|
|
|
|
|
|
|
string token;
|
|
|
|
uint64_t num, nodes = 0, cnt = 1;
|
|
|
|
|
|
|
|
vector<string> list = setup_bench(pos, args);
|
|
|
|
num = count_if(list.begin(), list.end(), [](string s) { return s.find("go ") == 0; });
|
|
|
|
|
|
|
|
TimePoint elapsed = now();
|
2011-11-12 20:44:06 +01:00
|
|
|
|
2017-09-10 10:30:09 +02:00
|
|
|
for (const auto& cmd : list)
|
|
|
|
{
|
|
|
|
istringstream is(cmd);
|
|
|
|
is >> skipws >> token;
|
|
|
|
|
|
|
|
if (token == "go")
|
|
|
|
{
|
|
|
|
cerr << "\nPosition: " << cnt++ << '/' << num << endl;
|
|
|
|
go(pos, is, states);
|
|
|
|
Threads.main()->wait_for_search_finished();
|
|
|
|
nodes += Threads.nodes_searched();
|
|
|
|
}
|
|
|
|
else if (token == "setoption") setoption(is);
|
|
|
|
else if (token == "position") position(pos, is, states);
|
|
|
|
else if (token == "ucinewgame") Search::clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
elapsed = now() - elapsed + 1; // Ensure positivity to avoid a 'divide by zero'
|
|
|
|
|
|
|
|
dbg_print(); // Just before exiting
|
|
|
|
|
|
|
|
cerr << "\n==========================="
|
|
|
|
<< "\nTotal time (ms) : " << elapsed
|
|
|
|
<< "\nNodes searched : " << nodes
|
|
|
|
<< "\nNodes/second : " << 1000 * nodes / elapsed << endl;
|
2011-11-12 20:44:06 +01:00
|
|
|
}
|
2014-05-31 14:23:03 +02:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
2015-02-01 01:46:09 +01:00
|
|
|
/// UCI::loop() waits for a command from stdin, parses it and calls the appropriate
|
|
|
|
/// function. Also intercepts EOF from stdin to ensure gracefully exiting if the
|
|
|
|
/// GUI dies unexpectedly. When called with some command line arguments, e.g. to
|
|
|
|
/// run 'bench', once the command is executed the function returns immediately.
|
|
|
|
/// In addition to the UCI ones, also some additional debug commands are supported.
|
2014-05-31 14:23:03 +02:00
|
|
|
|
|
|
|
void UCI::loop(int argc, char* argv[]) {
|
|
|
|
|
2016-05-30 20:56:34 +02:00
|
|
|
Position pos;
|
2014-05-31 14:23:03 +02:00
|
|
|
string token, cmd;
|
2017-09-10 10:30:09 +02:00
|
|
|
StateListPtr states(new std::deque<StateInfo>(1));
|
|
|
|
auto uiThread = std::make_shared<Thread>(0);
|
2014-05-31 14:23:03 +02:00
|
|
|
|
2017-09-10 10:30:09 +02:00
|
|
|
pos.set(StartFEN, false, &states->back(), uiThread.get());
|
2016-05-30 20:56:34 +02:00
|
|
|
|
2014-05-31 14:23:03 +02:00
|
|
|
for (int i = 1; i < argc; ++i)
|
|
|
|
cmd += std::string(argv[i]) + " ";
|
|
|
|
|
|
|
|
do {
|
2015-02-01 01:46:09 +01:00
|
|
|
if (argc == 1 && !getline(cin, cmd)) // Block here waiting for input or EOF
|
2014-05-31 14:23:03 +02:00
|
|
|
cmd = "quit";
|
|
|
|
|
|
|
|
istringstream is(cmd);
|
|
|
|
|
2017-09-10 10:30:09 +02:00
|
|
|
token.clear(); // Avoid a stale if getline() returns empty or blank line
|
2014-05-31 14:23:03 +02:00
|
|
|
is >> skipws >> token;
|
|
|
|
|
2017-09-10 10:30:09 +02:00
|
|
|
// The GUI sends 'ponderhit' to tell us the user has played the expected move.
|
|
|
|
// So 'ponderhit' will be sent if we were told to ponder on the same move the
|
|
|
|
// user has played. We should continue searching but switch from pondering to
|
|
|
|
// normal search. In case Threads.stopOnPonderhit is set we are waiting for
|
|
|
|
// 'ponderhit' to stop the search, for instance if max search depth is reached.
|
2015-02-01 01:46:09 +01:00
|
|
|
if ( token == "quit"
|
|
|
|
|| token == "stop"
|
2017-09-10 10:30:09 +02:00
|
|
|
|| (token == "ponderhit" && Threads.stopOnPonderhit))
|
|
|
|
Threads.stop = true;
|
|
|
|
|
2015-02-01 01:46:09 +01:00
|
|
|
else if (token == "ponderhit")
|
2017-09-10 10:30:09 +02:00
|
|
|
Threads.ponder = false; // Switch to normal search
|
2014-05-31 14:23:03 +02:00
|
|
|
|
|
|
|
else if (token == "uci")
|
|
|
|
sync_cout << "id name " << engine_info(true)
|
|
|
|
<< "\n" << Options
|
|
|
|
<< "\nuciok" << sync_endl;
|
|
|
|
|
|
|
|
else if (token == "setoption") setoption(is);
|
2017-09-10 10:30:09 +02:00
|
|
|
else if (token == "go") go(pos, is, states);
|
|
|
|
else if (token == "position") position(pos, is, states);
|
|
|
|
else if (token == "ucinewgame") Search::clear();
|
|
|
|
else if (token == "isready") sync_cout << "readyok" << sync_endl;
|
2015-02-01 01:46:09 +01:00
|
|
|
|
2017-09-10 10:30:09 +02:00
|
|
|
// Additional custom non-UCI commands, mainly for debugging
|
|
|
|
else if (token == "flip") pos.flip();
|
|
|
|
else if (token == "bench") bench(pos, is, states);
|
|
|
|
else if (token == "d") sync_cout << pos << sync_endl;
|
|
|
|
else if (token == "eval") sync_cout << Eval::trace(pos) << sync_endl;
|
2014-05-31 14:23:03 +02:00
|
|
|
else
|
|
|
|
sync_cout << "Unknown command: " << cmd << sync_endl;
|
|
|
|
|
2017-09-10 10:30:09 +02:00
|
|
|
} while (token != "quit" && argc == 1); // Command line args are one-shot
|
2011-11-12 20:44:06 +01:00
|
|
|
}
|
2015-02-01 01:46:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
/// UCI::value() converts a Value to a string suitable for use with the UCI
|
|
|
|
/// protocol specification:
|
|
|
|
///
|
|
|
|
/// cp <x> The score from the engine's point of view in centipawns.
|
|
|
|
/// mate <y> Mate in y moves, not plies. If the engine is getting mated
|
|
|
|
/// use negative values for y.
|
|
|
|
|
|
|
|
string UCI::value(Value v) {
|
|
|
|
|
2017-09-10 10:30:09 +02:00
|
|
|
assert(-VALUE_INFINITE < v && v < VALUE_INFINITE);
|
|
|
|
|
2015-02-01 01:46:09 +01:00
|
|
|
stringstream ss;
|
|
|
|
|
|
|
|
if (abs(v) < VALUE_MATE - MAX_PLY)
|
|
|
|
ss << "cp " << v * 100 / PawnValueEg;
|
|
|
|
else
|
|
|
|
ss << "mate " << (v > 0 ? VALUE_MATE - v + 1 : -VALUE_MATE - v) / 2;
|
|
|
|
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// UCI::square() converts a Square to a string in algebraic notation (g1, a7, etc.)
|
|
|
|
|
|
|
|
std::string UCI::square(Square s) {
|
2015-10-23 22:58:14 +02:00
|
|
|
return std::string{ char('a' + file_of(s)), char('1' + rank_of(s)) };
|
2015-02-01 01:46:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// UCI::move() converts a Move to a string in coordinate notation (g1f3, a7a8q).
|
|
|
|
/// The only special case is castling, where we print in the e1g1 notation in
|
|
|
|
/// normal chess mode, and in e1h1 notation in chess960 mode. Internally all
|
|
|
|
/// castling moves are always encoded as 'king captures rook'.
|
|
|
|
|
|
|
|
string UCI::move(Move m, bool chess960) {
|
|
|
|
|
|
|
|
Square from = from_sq(m);
|
|
|
|
Square to = to_sq(m);
|
|
|
|
|
|
|
|
if (m == MOVE_NONE)
|
|
|
|
return "(none)";
|
|
|
|
|
|
|
|
if (m == MOVE_NULL)
|
|
|
|
return "0000";
|
|
|
|
|
|
|
|
if (type_of(m) == CASTLING && !chess960)
|
|
|
|
to = make_square(to > from ? FILE_G : FILE_C, rank_of(from));
|
|
|
|
|
|
|
|
string move = UCI::square(from) + UCI::square(to);
|
|
|
|
|
|
|
|
if (type_of(m) == PROMOTION)
|
|
|
|
move += " pnbrqk"[promotion_type(m)];
|
|
|
|
|
|
|
|
return move;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// UCI::to_move() converts a string representing a move in coordinate notation
|
|
|
|
/// (g1f3, a7a8q) to the corresponding legal Move, if any.
|
|
|
|
|
|
|
|
Move UCI::to_move(const Position& pos, string& str) {
|
|
|
|
|
|
|
|
if (str.length() == 5) // Junior could send promotion piece in uppercase
|
|
|
|
str[4] = char(tolower(str[4]));
|
|
|
|
|
2015-10-23 22:58:14 +02:00
|
|
|
for (const auto& m : MoveList<LEGAL>(pos))
|
|
|
|
if (str == UCI::move(m, pos.is_chess960()))
|
|
|
|
return m;
|
2015-02-01 01:46:09 +01:00
|
|
|
|
|
|
|
return MOVE_NONE;
|
|
|
|
}
|