refresh e50354d3ef3d92779d3796094388f4161b20460c
[tagua/yd.git] / src / variants / shogi / behaviour.h
blob0c97e777e283c9574795b02c79abdced39731692
1 /*
2 Copyright (c) 2007 Paolo Capriotti <p.capriotti@gmail.com>
4 This program 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 2 of the License, or
7 (at your option) any later version.
8 */
10 #ifndef SHOGI__BEHAVIOUR_H
11 #define SHOGI__BEHAVIOUR_H
13 #include <core/delegators/behaviour.h>
14 #include <core/promotionmanager.h>
16 class Move;
18 namespace Shogi {
20 class TAGUA_EXPORT Behaviour : public Component, virtual public Delegators::Behaviour {
21 private:
22 PromotionManager* m_promotionmanager;
23 Behaviour* m_delegator;
24 public:
25 Behaviour(IBehaviour* behaviour);
27 virtual IBehaviour* clone() const;
29 virtual void captureOn(IState* state, const Point& square) const;
31 void setPromotionManager(PromotionManager* pm) { m_promotionmanager = pm; }
32 const PromotionManager* promotionManager() const { return m_promotionmanager; }
34 virtual bool mayPromote(const IState* state, const Move& move) const;
35 virtual unsigned promotionZoneWidth() const { return 3; }
38 } // namespace Shogi
40 #endif // SHOGI__BEHAVIOUR_H