From fb560fa5d77297f8deaa5c7375059e2ea9c36cd0 Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Mon, 27 Apr 2009 10:12:34 +0100 Subject: [PATCH] Convert piece.cpp to C++ No functional change. Signed-off-by: Marco Costalba --- src/piece.cpp | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/piece.cpp b/src/piece.cpp index 40babba6..84ed22d7 100644 --- a/src/piece.cpp +++ b/src/piece.cpp @@ -22,10 +22,11 @@ //// Includes //// -#include +#include #include "piece.h" +using namespace std; //// //// Functions @@ -33,13 +34,16 @@ /// Translating piece types to/from English piece letters -static const char PieceChars[] = " pnbrqk"; +static const string PieceChars(" pnbrqk PNBRQK"); char piece_type_to_char(PieceType pt, bool upcase) { - return char(upcase? toupper(PieceChars[pt]) : PieceChars[pt]); + + return PieceChars[pt + upcase * 7]; } PieceType piece_type_from_char(char c) { - const char* ch = strchr(PieceChars, tolower(c)); - return ch? PieceType(ch - PieceChars) : NO_PIECE_TYPE; + + size_t idx = PieceChars.find(c); + + return idx != string::npos ? PieceType(idx % 7) : NO_PIECE_TYPE; } -- 2.39.2