X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovegen.h;h=38351e32f70c1b29eaf2df30acb5e197a2df980a;hp=6a04248ac3a3199c80f087aaf3a180ff5bc7ad4f;hb=07f3f0384a95a6de8a4a6a066e1ec81de24b41f1;hpb=5ba85ef441fb12738732824092f74aa49149fcf9 diff --git a/src/movegen.h b/src/movegen.h index 6a04248a..38351e32 100644 --- a/src/movegen.h +++ b/src/movegen.h @@ -20,8 +20,7 @@ #if !defined(MOVEGEN_H_INCLUDED) #define MOVEGEN_H_INCLUDED -#include "move.h" -#include "position.h" +#include "types.h" enum MoveType { MV_CAPTURE, @@ -30,11 +29,28 @@ enum MoveType { MV_NON_CAPTURE_CHECK, MV_EVASION, MV_NON_EVASION, - MV_LEGAL, - MV_PSEUDO_LEGAL + MV_LEGAL }; +class Position; + 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)