/*************************************************************************** kbchooserstrategy.h ---------- Developers: (c) 2001 Kevin Krammer ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef KBCHOOSERSTRATEGY_H #define KBCHOOSERSTRATEGY_H #include #include "kbstrategy.h" #include "kbdestroyshipstrategy.h" class KBChooserStrategy : public KBStrategy { public: KBChooserStrategy(KBStrategy *parent = 0); virtual ~KBChooserStrategy(); virtual void init(KBattleField *field, const TQRect &field_rect); virtual const TQPoint nextShot(); virtual bool hasMoreShots(); virtual void shotAt(const TQPoint &pos); private: bool advance(); KBStrategy *m_child; KBDestroyShipStrategy *m_destroyer; KRandomSequence *m_random; bool m_destroying; }; #endif