]> git.sesse.net Git - stockfish/commitdiff
Micro-optimize move_to_san()
authorMarco Costalba <mcostalba@gmail.com>
Sun, 24 Jun 2012 11:08:07 +0000 (12:08 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Sun, 24 Jun 2012 11:38:29 +0000 (12:38 +0100)
Calculate the attacks only for the piece to disambiguate,
not for all.

Also some reformatting while there.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/notation.cpp
src/types.h

index 7736dbcb6fcd491ef56c93dcef47037d8986f28f..69a44d95bf8b8de90186fd423547bb4b577e750c 100644 (file)
@@ -25,6 +25,8 @@
 
 using std::string;
 
+static const char* PieceToChar = " PNBRQK pnbrqk";
+
 /// move_to_uci() converts a move to a string in coordinate notation
 /// (g1f3, a7a8q, etc.). The only special case is castling moves, where we print
 /// in the e1g1 notation in normal chess mode, and in e1h1 notation in chess960
@@ -47,7 +49,7 @@ const string move_to_uci(Move m, bool chess960) {
   string move = square_to_string(from) + square_to_string(to);
 
   if (type_of(m) == PROMOTION)
-      move += char(tolower(piece_type_to_char(promotion_type(m))));
+      move += PieceToChar[promotion_type(m) + 7]; // Lower case
 
   return move;
 }
@@ -85,24 +87,25 @@ const string move_to_san(Position& pos, Move m) {
   Bitboard attackers;
   bool ambiguousMove, ambiguousFile, ambiguousRank;
   string san;
+  Color us = pos.side_to_move();
   Square from = from_sq(m);
   Square to = to_sq(m);
-  PieceType pt = type_of(pos.piece_on(from));
+  Piece pc = pos.piece_on(from);
 
   if (type_of(m) == CASTLE)
       san = to > from ? "O-O" : "O-O-O";
   else
   {
-      if (pt != PAWN)
+      if (type_of(pc) != PAWN)
       {
-          san = piece_type_to_char(pt);
+          san = PieceToChar[pc];
 
           // Disambiguation if we have more then one piece with destination 'to'
           // note that for pawns is not needed because starting file is explicit.
-          attackers = pos.attackers_to(to) & pos.pieces(pos.side_to_move(), pt);
-          attackers ^= from;
           ambiguousMove = ambiguousFile = ambiguousRank = false;
 
+          attackers = (pos.attacks_from(pc, to) & pos.pieces(us)) ^ from;
+
           while (attackers)
           {
               Square sq = pop_1st_bit(&attackers);
@@ -128,19 +131,16 @@ const string move_to_san(Position& pos, Move m) {
                   san += square_to_string(from);
           }
       }
+      else if (pos.is_capture(m))
+          san = file_to_char(file_of(from));
 
       if (pos.is_capture(m))
-      {
-          if (pt == PAWN)
-              san += file_to_char(file_of(from));
-
           san += 'x';
-      }
 
       san += square_to_string(to);
 
       if (type_of(m) == PROMOTION)
-          san += string("=") + piece_type_to_char(promotion_type(m));
+          san += string("=") + PieceToChar[promotion_type(m)];
   }
 
   if (pos.move_gives_check(m, CheckInfo(pos)))
index 17661c01e800a12b3ee61108173e8773be171477..8934cc4833bcd5755e9f72746cd785af9c4c23c2 100644 (file)
@@ -415,10 +415,6 @@ inline int square_distance(Square s1, Square s2) {
   return SquareDistance[s1][s2];
 }
 
-inline char piece_type_to_char(PieceType pt) {
-  return " PNBRQK"[pt];
-}
-
 inline char file_to_char(File f) {
   return char(f - FILE_A + int('a'));
 }