Cute Chess 0.1
shatranjboard.h
1/*
2 This file is part of Cute Chess.
3
4 Cute Chess is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
8
9 Cute Chess is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with Cute Chess. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#ifndef SHATRANJBOARD_H
19#define SHATRANJBOARD_H
20
21#include "westernboard.h"
22
23namespace Chess {
24
54class LIB_EXPORT ShatranjBoard : public WesternBoard
55{
56 public:
59
60 // Inherited from WesternBoard
61 virtual Board* copy() const;
62 virtual QString variant() const;
63 virtual QString defaultFenString() const;
64 virtual Result result();
65
66 protected:
69 {
73 Alfil = Bishop
74 };
75
77 static const unsigned FerzMovement = 16;
79 static const unsigned AlfilMovement = 32;
80
81 // Inherited from WesternBoard
82 virtual bool hasCastling() const;
83 virtual bool pawnHasDoubleStep() const;
84 virtual void vInitialize();
85 virtual bool inCheck(Side side, int square = 0) const;
87 int pieceType,
88 int square) const;
89 virtual void addPromotions(int sourceSquare,
90 int targetSquare,
91 QVarLengthArray<Move>& moves) const;
92
97 virtual bool canBareOpponentKing();
98 private:
99 QVarLengthArray<int> m_ferzOffsets;
100 QVarLengthArray<int> m_alfilOffsets;
101 bool bareKing(Side side, int count = 0) const;
102};
103
104} // namespace Chess
105#endif // SHATRANJBOARD_H
An internal chessboard class.
Definition board.h:58
The result of a chess game.
Definition result.h:35
virtual bool pawnHasDoubleStep() const
Definition shatranjboard.cpp:50
virtual bool canBareOpponentKing()
Definition shatranjboard.cpp:185
virtual Board * copy() const
Definition shatranjboard.cpp:30
virtual void addPromotions(int sourceSquare, int targetSquare, QVarLengthArray< Move > &moves) const
Definition shatranjboard.cpp:74
virtual Result result()
Definition shatranjboard.cpp:121
ShatranjBoard()
Definition shatranjboard.cpp:23
virtual void generateMovesForPiece(QVarLengthArray< Move > &moves, int pieceType, int square) const
Definition shatranjboard.cpp:81
virtual void vInitialize()
Definition shatranjboard.cpp:55
static const unsigned FerzMovement
Definition shatranjboard.h:77
static const unsigned AlfilMovement
Definition shatranjboard.h:79
virtual QString defaultFenString() const
Definition shatranjboard.cpp:40
virtual bool inCheck(Side side, int square=0) const
Definition shatranjboard.cpp:92
ShatranjPieceType
Definition shatranjboard.h:69
@ Ferz
Ferz (leaps 1 square diag.) overrides Queen.
Definition shatranjboard.h:71
virtual bool hasCastling() const
Definition shatranjboard.cpp:45
virtual QString variant() const
Definition shatranjboard.cpp:35
The side or color of a chess player.
Definition side.h:36
WesternBoard(WesternZobrist *zobrist)
Definition westernboard.cpp:26
@ Bishop
Bishop.
Definition westernboard.h:48
@ Queen
Queen.
Definition westernboard.h:50