X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsquare.h;h=0e314b04ac809f017d42d162a8d381caad9b8d99;hp=621e398fb19069180f141df29423c4af171de2b6;hb=324ca87affc4959f7017e83437fb06b6e770449c;hpb=6080fecf9cba9ac063f8f07bd25004c14016bd33 diff --git a/src/square.h b/src/square.h index 621e398f..0e314b04 100644 --- a/src/square.h +++ b/src/square.h @@ -17,25 +17,15 @@ along with this program. If not, see . */ - #if !defined(SQUARE_H_INCLUDED) #define SQUARE_H_INCLUDED -//// -//// Includes -//// - #include // for abs() #include #include "color.h" #include "misc.h" - -//// -//// Types -//// - enum Square { SQ_A1, SQ_B1, SQ_C1, SQ_D1, SQ_E1, SQ_F1, SQ_G1, SQ_H1, SQ_A2, SQ_B2, SQ_C2, SQ_D2, SQ_E2, SQ_F2, SQ_G2, SQ_H2, @@ -49,59 +39,33 @@ enum Square { }; enum File { - FILE_A, FILE_B, FILE_C, FILE_D, FILE_E, FILE_F, FILE_G, FILE_H, FILE_NONE + FILE_A, FILE_B, FILE_C, FILE_D, FILE_E, FILE_F, FILE_G, FILE_H }; enum Rank { - RANK_1, RANK_2, RANK_3, RANK_4, RANK_5, RANK_6, RANK_7, RANK_8, RANK_NONE + RANK_1, RANK_2, RANK_3, RANK_4, RANK_5, RANK_6, RANK_7, RANK_8 }; enum SquareDelta { - DELTA_N = 8, DELTA_E = 1, DELTA_S = -8, DELTA_W = -1, + DELTA_N = 8, DELTA_E = 1, DELTA_S = -8, DELTA_W = -1, DELTA_NONE = 0, DELTA_NN = DELTA_N + DELTA_N, DELTA_NE = DELTA_N + DELTA_E, DELTA_SE = DELTA_S + DELTA_E, DELTA_SS = DELTA_S + DELTA_S, DELTA_SW = DELTA_S + DELTA_W, - DELTA_NW = DELTA_N + DELTA_W, -}; - -enum Direction { - DIR_E = 0, DIR_N = 1, DIR_NE = 2, DIR_NW = 3, DIR_NONE = 4 + DELTA_NW = DELTA_N + DELTA_W }; -enum SignedDirection { - SIGNED_DIR_E = 0, SIGNED_DIR_W = 1, - SIGNED_DIR_N = 2, SIGNED_DIR_S = 3, - SIGNED_DIR_NE = 4, SIGNED_DIR_SW = 5, - SIGNED_DIR_NW = 6, SIGNED_DIR_SE = 7, - SIGNED_DIR_NONE = 8 -}; - -ENABLE_OPERATORS_ON(Square); -ENABLE_OPERATORS_ON(File); -ENABLE_OPERATORS_ON(Rank); -ENABLE_OPERATORS_ON(SquareDelta); -ENABLE_OPERATORS_ON(SignedDirection); - - -//// -//// Constants -//// +ENABLE_OPERATORS_ON(Square) +ENABLE_OPERATORS_ON(File) +ENABLE_OPERATORS_ON(Rank) +ENABLE_OPERATORS_ON(SquareDelta) const int FlipMask = 56; const int FlopMask = 7; -extern uint8_t DirectionTable[64][64]; -extern uint8_t SignedDirectionTable[64][64]; - - -//// -//// Inline functions -//// - inline Square operator+ (Square x, SquareDelta i) { return x + Square(i); } inline void operator+= (Square& x, SquareDelta i) { x = x + Square(i); } inline Square operator- (Square x, SquareDelta i) { return x - Square(i); } @@ -131,17 +95,21 @@ inline Square relative_square(Color c, Square s) { return Square(int(s) ^ (int(c) * FlipMask)); } +inline Rank relative_rank(Color c, Rank r) { + return Rank(int(r) ^ (int(c) * 7)); +} + inline Rank relative_rank(Color c, Square s) { - return square_rank(relative_square(c, s)); + return relative_rank(c, square_rank(s)); } inline SquareColor square_color(Square s) { return SquareColor((int(square_file(s)) + int(square_rank(s))) & 1); } -inline bool same_color_squares(Square s1, Square s2) { +inline bool opposite_color_squares(Square s1, Square s2) { int s = int(s1) ^ int(s2); - return (((s >> 3) ^ s) & 1) == 0; + return ((s >> 3) ^ s) & 1; } inline int file_distance(File f1, File f2) { @@ -194,25 +162,7 @@ inline bool rank_is_ok(Rank r) { } inline bool square_is_ok(Square s) { - return file_is_ok(square_file(s)) && rank_is_ok(square_rank(s)); + return s >= SQ_A1 && s <= SQ_H8; } -inline Direction direction_between_squares(Square s1, Square s2) { - return Direction(DirectionTable[s1][s2]); -} - -inline int direction_is_diagonal(Square s1, Square s2) { - return DirectionTable[s1][s2] & 2; -} - -inline bool direction_is_straight(Square s1, Square s2) { - return DirectionTable[s1][s2] < 2; -} - -//// -//// Prototypes -//// - -extern void init_direction_table(); - #endif // !defined(SQUARE_H_INCLUDED)