X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovegen.h;h=2a4cda90dffef0117e450fdbe1a7491103f30bb8;hp=9db23dd407c1d23e35d03cb4874040005c3b931b;hb=45b0aea875860e9f0fe2d0435ee6163906639194;hpb=8ceef922662c75c33d105d99732475c125b01081 diff --git a/src/movegen.h b/src/movegen.h index 9db23dd4..2a4cda90 100644 --- a/src/movegen.h +++ b/src/movegen.h @@ -17,7 +17,7 @@ along with this program. If not, see . */ -#if !defined(MOVEGEN_H_INCLUDED) +#ifndef MOVEGEN_H_INCLUDED #define MOVEGEN_H_INCLUDED #include "types.h" @@ -34,26 +34,25 @@ enum GenType { class Position; template -MoveStack* generate(const Position& pos, MoveStack* mlist); +ExtMove* generate(const Position& pos, ExtMove* mlist); /// The MoveList struct is a simple wrapper around generate(), sometimes comes /// handy to use this class instead of the low level generate() function. template struct MoveList { - explicit MoveList(const Position& pos) : cur(mlist), last(generate(pos, mlist)) {} + explicit MoveList(const Position& pos) : cur(mlist), last(generate(pos, mlist)) { last->move = MOVE_NONE; } void operator++() { cur++; } Move operator*() const { return cur->move; } - bool end() const { return cur == last; } size_t size() const { return last - mlist; } bool contains(Move m) const { - for (const MoveStack* it(mlist); it != last; ++it) if (it->move == m) return true; + for (const ExtMove* it(mlist); it != last; ++it) if (it->move == m) return true; return false; } private: - MoveStack mlist[MAX_MOVES]; - MoveStack *cur, *last; + ExtMove mlist[MAX_MOVES]; + ExtMove *cur, *last; }; -#endif // !defined(MOVEGEN_H_INCLUDED) +#endif // #ifndef MOVEGEN_H_INCLUDED