You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/kbattleship/kbattleship/kbdiagonalshotstrategy.h

44 lines
1.5 KiB

/***************************************************************************
kbdiagonalshotstrategy.h
----------
Developers: (c) 2001 Kevin Krammer <kevin.krammer@gmx.at>
***************************************************************************/
/***************************************************************************
* *
* 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 KBDIAGONALSHOTSTRATEGY_H
#define KBDIAGONALSHOTSTRATEGY_H
#include "kbstrategy.h"
class KBDiagonalShotStrategy : public KBStrategy
{
public:
enum Direction {LEFTUP, LEFTDOWN, RIGHTUP, RIGHTDOWN};
KBDiagonalShotStrategy(KBStrategy *parent = 0);
virtual const TQPoint nextShot();
virtual bool hasMoreShots();
virtual void shotAt(const TQPoint &pos);
virtual void startAt(int col, int row, Direction dir);
virtual TQPoint endPoint();
private:
bool advance();
int m_row;
int m_column;
int m_vertical;
int m_horizontal;
};
#endif