]> git.sesse.net Git - stockfish/blobdiff - src/main.cpp
Deal with Stockfish internal API changes.
[stockfish] / src / main.cpp
index e80d066dfdad353082fea62dc017b3e9f15be7bf..de220eec97a8ae16bf98a85c0c59df3f0b400865 100644 (file)
@@ -18,7 +18,9 @@
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
+#include <deque>
 #include <iostream>
+#include <stack>
 #include <thread>
 
 #include "bitboard.h"
@@ -45,13 +47,15 @@ using namespace hashprobe;
 Status HashProbeImpl::Probe(ServerContext* context,
                             const HashProbeRequest* request,
                            HashProbeResponse *response) {
-       Position pos(request->fen(), /*isChess960=*/false, Threads.main());
+       Position pos;
+       StateInfo st;
+       pos.set(request->fen(), /*isChess960=*/false, &st, Threads.main());
        if (!pos.pos_is_ok()) {
                return Status(StatusCode::INVALID_ARGUMENT, "Invalid FEN");
        }
 
        bool invert = (pos.side_to_move() == BLACK);
-       Search::StateStackPtr setup_states = Search::StateStackPtr(new std::stack<StateInfo>);
+       StateListPtr setup_states = StateListPtr(new std::deque<StateInfo>(1));
 
        ProbeMove(&pos, setup_states.get(), invert, response->mutable_root());
 
@@ -59,8 +63,8 @@ Status HashProbeImpl::Probe(ServerContext* context,
        for (const ExtMove* em = moves.begin(); em != moves.end(); ++em) {
                HashProbeLine *line = response->add_line();
                FillMove(em->move, line->mutable_move());
-               setup_states->push(StateInfo());
-               pos.do_move(em->move, setup_states->top(), pos.gives_check(em->move, CheckInfo(pos)));
+               setup_states->push_back(StateInfo());
+               pos.do_move(em->move, setup_states->back(), pos.gives_check(em->move));
                ProbeMove(&pos, setup_states.get(), !invert, line);
                pos.undo_move(em->move);
        }
@@ -86,7 +90,7 @@ void HashProbeImpl::FillMove(Move move, HashProbeMove* decoded) {
        }
 }
 
-void HashProbeImpl::ProbeMove(Position* pos, std::stack<StateInfo>* setup_states, bool invert, HashProbeLine* response) {
+void HashProbeImpl::ProbeMove(Position* pos, std::deque<StateInfo>* setup_states, bool invert, HashProbeLine* response) {
        bool found;
        TTEntry *entry = TT.probe(pos->key(), found);
        response->set_found(found);
@@ -120,8 +124,8 @@ void HashProbeImpl::ProbeMove(Position* pos, std::stack<StateInfo>* setup_states
                        if (seen.count(pos->key())) break;
                        pv.push(entry->move());
                        seen.insert(pos->key());
-                       setup_states->push(StateInfo());
-                       pos->do_move(entry->move(), setup_states->top(), pos->gives_check(entry->move(), CheckInfo(*pos)));
+                       setup_states->push_back(StateInfo());
+                       pos->do_move(entry->move(), setup_states->back(), pos->gives_check(entry->move()));
                        entry = TT.probe(pos->key(), found);
                }
 
@@ -173,8 +177,6 @@ int main(int argc, char* argv[]) {
   Threads.set(Options["Threads"]);
   Search::clear(); // After threads are up
 
-  HashProbeThread thr("0.0.0.0:50051");
-
   UCI::loop(argc, argv);
 
   Threads.set(0);