Cute Chess  0.1
courierboard.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 COURIERBOARD_H
19 #define COURIERBOARD_H
20 
21 #include "shatranjboard.h"
22 
23 namespace Chess {
24 
54 class LIB_EXPORT CourierBoard : public ShatranjBoard
55 {
56  public:
58  CourierBoard();
59 
60  // Inherited from ShatranjBoard
61  virtual Board* copy() const;
62  virtual QString variant() const;
63  virtual int width() const;
64  virtual QString defaultFenString() const;
65 
66  protected:
69  {
71  Courier = King + 1,
73  Mann,
75  Schleich
76  };
77 
79  static const unsigned WazirMovement = 64;
80 
81  // Inherited from ShatranjBoard
82  virtual void vInitialize();
83  virtual bool inCheck(Side side, int square = 0) const;
84  virtual void generateMovesForPiece(QVarLengthArray<Move>& moves,
85  int pieceType,
86  int square) const;
87  private:
88  QVarLengthArray<int> m_wazirOffsets;
89 };
90 
91 } // namespace Chess
92 #endif // COURIERBOARD_H
A board for Courier Chess.
Definition: courierboard.h:54
A board for Shatranj.
Definition: shatranjboard.h:54
An internal chessboard class.
Definition: board.h:57
Definition: boardscene.h:29
The side or color of a chess player.
Definition: side.h:35
CourierPieceType
Definition: courierboard.h:68