X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fposition.h;h=946608c657672b743edfa3c39c4dd337a7b4acb6;hp=b51002eb5eb929253188db27072bc36101638539;hb=676b2c8435502409145491f2f86454f11f99dae8;hpb=0439a79566d03065317b2025b9b479b9ae9f2d65 diff --git a/src/position.h b/src/position.h index b51002eb..946608c6 100644 --- a/src/position.h +++ b/src/position.h @@ -29,6 +29,7 @@ /// The checkInfo struct is initialized at c'tor time and keeps info used /// to detect if a move gives check. class Position; +class Thread; struct CheckInfo { @@ -83,19 +84,15 @@ struct StateInfo { /// * A counter for detecting 50 move rule draws. class Position { - - // No copy c'tor or assignment operator allowed - Position(const Position&); - Position& operator=(const Position&); - public: Position() {} - Position(const Position& pos, int th) { copy(pos, th); } - Position(const std::string& fen, bool isChess960, int th); + Position(const Position& p) { *this = p; } + Position(const Position& p, Thread* t) { *this = p; thisThread = t; } + Position(const std::string& f, bool c960, Thread* t) { from_fen(f, c960, t); } + void operator=(const Position&); // Text input/output - void copy(const Position& pos, int th); - void from_fen(const std::string& fen, bool isChess960); + void from_fen(const std::string& fen, bool isChess960, Thread* th); const std::string to_fen() const; void print(Move m = MOVE_NONE) const; @@ -175,7 +172,7 @@ public: Color side_to_move() const; int startpos_ply_counter() const; bool is_chess960() const; - int this_thread() const; + Thread* this_thread() const; int64_t nodes_searched() const; void set_nodes_searched(int64_t n); template bool is_draw() const; @@ -223,7 +220,7 @@ private: int64_t nodes; int startPosPly; Color sideToMove; - int threadID; + Thread* thisThread; StateInfo* st; int chess960; @@ -433,8 +430,8 @@ inline PieceType Position::captured_piece_type() const { return st->capturedType; } -inline int Position::this_thread() const { - return threadID; +inline Thread* Position::this_thread() const { + return thisThread; } #endif // !defined(POSITION_H_INCLUDED)