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 {
71 Ferz = Queen,
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;
86 virtual void generateMovesForPiece(QVarLengthArray<Move>& moves,
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
A board for Shatranj.
Definition: shatranjboard.h:55
ShatranjPieceType
Definition: shatranjboard.h:69
The side or color of a chess player.
Definition: side.h:36
A board for western chess variants.
Definition: westernboard.h:41