]> git.sesse.net Git - stockfish/commitdiff
Retire piece.cpp
authorMarco Costalba <mcostalba@gmail.com>
Mon, 22 Nov 2010 10:50:58 +0000 (11:50 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Mon, 22 Nov 2010 12:13:48 +0000 (13:13 +0100)
No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/Makefile
src/move.cpp
src/piece.cpp [deleted file]
src/piece.h
src/san.cpp

index aed8271b0591a2c80b1cb0f52168fa5960014894..25bb0f0b0e280833693aa211c56e4bc428630f38 100644 (file)
@@ -34,7 +34,7 @@ PGOBENCH = ./$(EXE) bench 32 1 10 default depth
 
 ### Object files
 OBJS = application.o bitboard.o pawns.o material.o endgame.o evaluate.o main.o \
 
 ### Object files
 OBJS = application.o bitboard.o pawns.o material.o endgame.o evaluate.o main.o \
-       misc.o move.o movegen.o history.o movepick.o search.o piece.o position.o \
+       misc.o move.o movegen.o history.o movepick.o search.o position.o \
        direction.o tt.o uci.o ucioption.o book.o bitbase.o san.o benchmark.o timeman.o
 
 
        direction.o tt.o uci.o ucioption.o book.o bitbase.o san.o benchmark.o timeman.o
 
 
index 31622c2d8bc06de2e081092c261a1bc3525d91b0..5ef64fe4b5c0f8c14864887f976b386294dc4a0d 100644 (file)
@@ -23,6 +23,7 @@
 ////
 
 #include <cassert>
 ////
 
 #include <cassert>
+#include <cctype>
 
 #include "move.h"
 #include "piece.h"
 
 #include "move.h"
 #include "piece.h"
@@ -128,7 +129,7 @@ const std::string move_to_string(Move move, bool chess960) {
 
       str = square_to_string(from) + square_to_string(to);
       if (move_is_promotion(move))
 
       str = square_to_string(from) + square_to_string(to);
       if (move_is_promotion(move))
-          str += piece_type_to_char(move_promotion_piece(move), false);
+          str += char(tolower(piece_type_to_char(move_promotion_piece(move))));
   }
   return str;
 }
   }
   return str;
 }
diff --git a/src/piece.cpp b/src/piece.cpp
deleted file mode 100644 (file)
index a9adf57..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
-  Stockfish, a UCI chess playing engine derived from Glaurung 2.1
-  Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
-  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
-  the Free Software Foundation, either version 3 of the License, or
-  (at your option) any later version.
-
-  Stockfish is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-  GNU General Public License for more details.
-
-  You should have received a copy of the GNU General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#include <string>
-
-#include "piece.h"
-
-static const std::string PieceChars(" pnbrqk PNBRQK");
-
-
-/// Translating piece types to/from English piece letters
-
-char piece_type_to_char(PieceType pt, bool upcase) {
-
-  return PieceChars[pt + (upcase ? 7 : 0)];
-}
-
-PieceType piece_type_from_char(char c) {
-
-  size_t idx = PieceChars.find(c);
-
-  return idx != std::string::npos ? PieceType(idx % 7) : PIECE_TYPE_NONE;
-}
index df81e5ff47e53c47161fe26ef0be0c77c46213c4..59fb83924d1f79dfc7fbffb8a95401ef77bae915 100644 (file)
@@ -25,6 +25,8 @@
 //// Includes
 ////
 
 //// Includes
 ////
 
+#include <string>
+
 #include "color.h"
 #include "square.h"
 #include "value.h"
 #include "color.h"
 #include "square.h"
 #include "value.h"
@@ -98,13 +100,12 @@ inline bool piece_is_ok(Piece pc) {
   return piece_type_is_ok(type_of_piece(pc)) && color_is_ok(color_of_piece(pc));
 }
 
   return piece_type_is_ok(type_of_piece(pc)) && color_is_ok(color_of_piece(pc));
 }
 
+inline char piece_type_to_char(PieceType pt) {
+  return std::string(" PNBRQK")[pt];
+}
 
 
-////
-//// Prototypes
-////
-
-extern char piece_type_to_char(PieceType pt, bool upcase = false);
-extern PieceType piece_type_from_char(char c);
-
+inline PieceType piece_type_from_char(char c) {
+  return PieceType(std::string(" PNBRQK").find(c));
+}
 
 #endif // !defined(PIECE_H_INCLUDED)
 
 #endif // !defined(PIECE_H_INCLUDED)
index 6a8fd137e4e69e3f19f7635a2a368e941b2fa48c..ef22626f950c51e65c8033c42f89d6a94f1642dc 100644 (file)
@@ -85,7 +85,7 @@ const string move_to_san(Position& pos, Move m) {
   {
       if (pt != PAWN)
       {
   {
       if (pt != PAWN)
       {
-          san += piece_type_to_char(pt, true);
+          san += piece_type_to_char(pt);
 
           switch (move_ambiguity(pos, m)) {
           case AMBIGUITY_NONE:
 
           switch (move_ambiguity(pos, m)) {
           case AMBIGUITY_NONE:
@@ -113,7 +113,7 @@ const string move_to_san(Position& pos, Move m) {
       if (move_is_promotion(m))
       {
           san += "=";
       if (move_is_promotion(m))
       {
           san += "=";
-          san += piece_type_to_char(move_promotion_piece(m), true);
+          san += piece_type_to_char(move_promotion_piece(m));
       }
   }
 
       }
   }