]> git.sesse.net Git - stockfish/commitdiff
Move to_char() and to_string() to notation
authorlucasart <lucas.braesch@gmail.com>
Sat, 9 Aug 2014 05:11:36 +0000 (13:11 +0800)
committerlucasart <lucas.braesch@gmail.com>
Sat, 9 Aug 2014 05:25:05 +0000 (13:25 +0800)
Where they better belong.

Also, this removes '#include <string>' from types.h, which reduces the amount of code to compile (every
translation unit includes types.h).

No functional change.

src/bitboard.h
src/notation.h
src/position.cpp
src/types.h

index 9814268327afdd9c269d728077d1f82770035c87..7330a199e1fba11a416da7a37fe379f543eaa9de 100644 (file)
@@ -21,6 +21,7 @@
 #ifndef BITBOARD_H_INCLUDED
 #define BITBOARD_H_INCLUDED
 
+#include <string>
 #include "types.h"
 
 namespace Bitboards {
index 730e8416b5da4d843a81211e2c745ce22c801228..a8168c53b3c2ddea0a8ea88d4179947866c5eab6 100644 (file)
@@ -32,4 +32,17 @@ const std::string move_to_uci(Move m, bool chess960);
 const std::string move_to_san(Position& pos, Move m);
 std::string pretty_pv(Position& pos, int depth, Value score, int64_t msecs, Move pv[]);
 
+inline char to_char(File f, bool tolower = true) {
+  return char(f - FILE_A + (tolower ? 'a' : 'A'));
+}
+
+inline char to_char(Rank r) {
+  return char(r - RANK_1 + '1');
+}
+
+inline const std::string to_string(Square s) {
+  char ch[] = { to_char(file_of(s)), to_char(rank_of(s)), 0 };
+  return ch;
+}
+
 #endif // #ifndef NOTATION_H_INCLUDED
index 7b067723925a5559b949b80f8024c3192b481103..db4c857b0d25401cf97e3f70b56c8aeb10a46ee1 100644 (file)
@@ -30,6 +30,7 @@
 #include "rkiss.h"
 #include "thread.h"
 #include "tt.h"
+#include "notation.h"
 
 using std::string;
 
index c3911446e7ab38c0528a27ee941033d182bd82bf..f921f9e105cb66cd503d81b87635e538e30dda93 100644 (file)
@@ -405,14 +405,6 @@ inline bool opposite_colors(Square s1, Square s2) {
   return ((s >> 3) ^ s) & 1;
 }
 
-inline char to_char(File f, bool tolower = true) {
-  return char(f - FILE_A + (tolower ? 'a' : 'A'));
-}
-
-inline char to_char(Rank r) {
-  return char(r - RANK_1 + '1');
-}
-
 inline Square pawn_push(Color c) {
   return c == WHITE ? DELTA_N : DELTA_S;
 }
@@ -446,11 +438,4 @@ inline bool is_ok(Move m) {
   return from_sq(m) != to_sq(m); // Catches also MOVE_NULL and MOVE_NONE
 }
 
-#include <string>
-
-inline const std::string to_string(Square s) {
-  char ch[] = { to_char(file_of(s)), to_char(rank_of(s)), 0 };
-  return ch;
-}
-
 #endif // #ifndef TYPES_H_INCLUDED