]> git.sesse.net Git - stockfish/blobdiff - src/movegen.h
Remove one indentation level in get_next_move()
[stockfish] / src / movegen.h
index 636e439dc841f30604dbcc786c4c231afa702260..6a04248ac3a3199c80f087aaf3a180ff5bc7ad4f 100644 (file)
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-
 #if !defined(MOVEGEN_H_INCLUDED)
 #define MOVEGEN_H_INCLUDED
 
+#include "move.h"
 #include "position.h"
 
-enum MoveGeneration {
-  CAPTURES,
-  NON_CAPTURES,
-  NON_CAPTURE_CHECKS,
-  EVASIONS,
-  NON_EVASIONS,
-  ALL_MOVES
+enum MoveType {
+  MV_CAPTURE,
+  MV_NON_CAPTURE,
+  MV_CHECK,
+  MV_NON_CAPTURE_CHECK,
+  MV_EVASION,
+  MV_NON_EVASION,
+  MV_LEGAL,
+  MV_PSEUDO_LEGAL
 };
 
-template<MoveGeneration T>
+template<MoveType>
 MoveStack* generate(const Position& pos, MoveStack* mlist);
 
-extern MoveStack* generate_moves(const Position& pos, MoveStack* mlist, bool pseudoLegal = false);
-extern bool move_is_legal(const Position& pos, const Move m, Bitboard pinned);
-extern bool move_is_legal(const Position& pos, const Move m);
-
-
 #endif // !defined(MOVEGEN_H_INCLUDED)