X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fuci.cpp;h=931891a0263cc6c32f7df193a8380a487e9aa905;hb=03ad183384d484990248cb22394a93926f421520;hp=e6f01d3c72670a24da0f7ed22c5c48651d264fec;hpb=07e0dd27fbbfb446cc966a90f58a7440dca8d447;p=stockfish diff --git a/src/uci.cpp b/src/uci.cpp index e6f01d3c..931891a0 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -21,6 +21,7 @@ #include #include #include +#include #include "evaluate.h" #include "misc.h" @@ -36,6 +37,10 @@ namespace { // FEN string for the initial position const string StartPositionFEN = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1"; + // Keep track of position keys along the setup moves (from start position to the + // position just before to start searching). This is needed by draw detection. + std::vector SetupState(200, StateInfo()); + // UCIParser is a class for parsing UCI input. The class // is actually a string stream built on a given input string. typedef istringstream UCIParser; @@ -139,9 +144,14 @@ namespace { } else return; + SetupState.clear(); + // Parse move list (if any) while (up >> token && (m = move_from_uci(pos, token)) != MOVE_NONE) - pos.do_setup_move(m); + { + SetupState.push_back(StateInfo()); + pos.do_move(m, SetupState.back()); + } } @@ -179,7 +189,7 @@ namespace { string token; SearchLimits limits; - Move searchMoves[MAX_MOVES], *cur = searchMoves; + std::vector searchMoves; int time[] = { 0, 0 }, inc[] = { 0, 0 }; while (up >> token) @@ -206,14 +216,14 @@ namespace { up >> limits.maxTime; else if (token == "searchmoves") while (up >> token) - *cur++ = move_from_uci(pos, token); + searchMoves.push_back(move_from_uci(pos, token)); } - *cur = MOVE_NONE; + searchMoves.push_back(MOVE_NONE); limits.time = time[pos.side_to_move()]; limits.increment = inc[pos.side_to_move()]; - return think(pos, limits, searchMoves); + return think(pos, limits, &searchMoves[0]); }