refresh ded80ada673478789e2cf32be211118c33bb1dbf
[tagua/yd.git] / src / variants / shogi / king.cpp
blob8a6da220435504561379ed7cc9a3a26062c71d7d
1 /*
2 Copyright (c) 2007 Paolo Capriotti <p.capriotti@gmail.com>
3 (c) 2007 Maurizio Monge <maurizio.monge@kdemail.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9 */
11 #include "king.h"
12 #include <core/move.h>
14 namespace Shogi {
16 King::King() { }
18 QString King::name() const { return "king"; }
20 bool King::canMove(const Piece& piece, const Piece&,
21 Move& move, const IState* state) const {
22 if (abs(move.delta().x) <= 1 && abs(move.delta().y) <= 1) return true;
23 return false;
26 int King::index() const { return 10000; }
28 King* King::self() {
29 static King s_instance;
30 return &s_instance;