X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsquare.h;h=e4eab2ac2bad85b6d54717bb41cbc6cf9e86c16e;hp=eb5a5c39eb13903abc3e25023e71feefcc3304ea;hb=d6904157aab50f7b2a53843f681b232247e866e2;hpb=539051b1e0fb099c0d0da69d20d6a4c2b98a2cb6 diff --git a/src/square.h b/src/square.h index eb5a5c39..e4eab2ac 100644 --- a/src/square.h +++ b/src/square.h @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008 Marco Costalba + Copyright (C) 2008-2010 Marco Costalba, Joona Kiiski, Tord Romstad Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -135,8 +135,13 @@ inline Rank relative_rank(Color c, Square s) { return square_rank(relative_square(c, s)); } -inline Color square_color(Square s) { - return Color((int(square_file(s)) + int(square_rank(s))) & 1); +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) { + int s = int(s1) ^ int(s2); + return (((s >> 3) ^ s) & 1) == 0; } inline int file_distance(File f1, File f2) { @@ -159,21 +164,41 @@ inline int square_distance(Square s1, Square s2) { return Max(file_distance(s1, s2), rank_distance(s1, s2)); } +inline File file_from_char(char c) { + return File(c - 'a') + FILE_A; +} -//// -//// Prototypes -//// +inline char file_to_char(File f) { + return char(f - FILE_A + int('a')); +} -extern File file_from_char(char c); -extern char file_to_char(File f); -extern Rank rank_from_char(char c); -extern char rank_to_char(Rank r); -extern Square square_from_string(const std::string &str); -extern const std::string square_to_string(Square s); +inline Rank rank_from_char(char c) { + return Rank(c - '1') + RANK_1; +} -extern bool file_is_ok(File f); -extern bool rank_is_ok(Rank r); -extern bool square_is_ok(Square s); +inline char rank_to_char(Rank r) { + return char(r - RANK_1 + int('1')); +} +inline Square square_from_string(const std::string& str) { + return make_square(file_from_char(str[0]), rank_from_char(str[1])); +} + +inline const std::string square_to_string(Square s) { + return std::string(1, file_to_char(square_file(s))) + + std::string(1, rank_to_char(square_rank(s))); +} + +inline bool file_is_ok(File f) { + return f >= FILE_A && f <= FILE_H; +} + +inline bool rank_is_ok(Rank r) { + return r >= RANK_1 && r <= RANK_8; +} + +inline bool square_is_ok(Square s) { + return file_is_ok(square_file(s)) && rank_is_ok(square_rank(s)); +} #endif // !defined(SQUARE_H_INCLUDED)