X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmovegen.h;h=0c781a6ba1c3aaa576628049652ea8e00ad609d1;hb=37d551fb39a4e631946156fcb76cde7fcde37ba4;hp=6a04248ac3a3199c80f087aaf3a180ff5bc7ad4f;hpb=5ba85ef441fb12738732824092f74aa49149fcf9;p=stockfish diff --git a/src/movegen.h b/src/movegen.h index 6a04248a..0c781a6b 100644 --- a/src/movegen.h +++ b/src/movegen.h @@ -30,11 +30,26 @@ enum MoveType { MV_NON_CAPTURE_CHECK, MV_EVASION, MV_NON_EVASION, - MV_LEGAL, - MV_PSEUDO_LEGAL + MV_LEGAL }; template MoveStack* generate(const Position& pos, MoveStack* 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)) {} + void operator++() { cur++; } + bool end() const { return cur == last; } + Move move() const { return cur->move; } + int size() const { return int(last - mlist); } + +private: + MoveStack mlist[MAX_MOVES]; + MoveStack *cur, *last; +}; + #endif // !defined(MOVEGEN_H_INCLUDED)