X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovegen.h;h=a80db334cbef6e9c1ba4e92e802588168ee4601b;hp=f14558e7ed4ea66a0b5ed9a3fea968d6fb7898ff;hb=ad1f28bc1c1c5426fb8ab246f5d43ad57002b4d5;hpb=54f1c383d36f461a740eeaa93856b408e8d3faa3 diff --git a/src/movegen.h b/src/movegen.h index f14558e7..a80db334 100644 --- a/src/movegen.h +++ b/src/movegen.h @@ -20,7 +20,7 @@ #if !defined(MOVEGEN_H_INCLUDED) #define MOVEGEN_H_INCLUDED -#include "position.h" +#include "move.h" enum MoveType { MV_CAPTURE, @@ -29,11 +29,26 @@ enum MoveType { MV_NON_CAPTURE_CHECK, MV_EVASION, MV_NON_EVASION, - MV_LEGAL, - MV_PSEUDO_LEGAL + MV_LEGAL }; -template +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)