X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovegen.h;h=38351e32f70c1b29eaf2df30acb5e197a2df980a;hp=4e58d0ffaea115d9e801deb8d5fb175f5f19a209;hb=9cb187762a68e431559ee9e4b1ed8c6f16826d89;hpb=53ccba8457231677897f531ff283136edc550cf2 diff --git a/src/movegen.h b/src/movegen.h index 4e58d0ff..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, @@ -33,9 +32,13 @@ enum MoveType { 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 { @@ -43,7 +46,7 @@ struct MoveList { void operator++() { cur++; } bool end() const { return cur == last; } Move move() const { return cur->move; } - int size() const { return last - mlist; } + int size() const { return int(last - mlist); } private: MoveStack mlist[MAX_MOVES];