1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "titanic/star_control/base_stars.h"
#include "common/rect.h"
#ifndef TITANIC_STAR_REF_H
#define TITANIC_STAR_REF_H
namespace Titanic {
class CStarCamera;
class CSurfaceArea;
class CBaseStarRef {
protected:
CBaseStars *_stars;
public:
CBaseStarRef(CBaseStars *stars) : _stars(stars) {}
CBaseStarRef() : _stars(nullptr) {}
virtual ~CBaseStarRef() {}
void process(CSurfaceArea *surface, CStarCamera *camera);
virtual bool check(const Common::Point &pt, int index) { return false; }
};
class CStarRef1 : public CBaseStarRef {
private:
Common::Point _position;
public:
int _index;
public:
CStarRef1(CBaseStars *stars, const Common::Point &pt) :
CBaseStarRef(stars), _position(pt), _index(-1) {}
virtual ~CStarRef1() {}
virtual bool check(const Common::Point &pt, int index);
};
class CStarRefArray : public CBaseStarRef {
private:
Common::Array<CStarPosition> *_positions;
public:
int _index;
public:
CStarRefArray(CBaseStars *stars, Common::Array<CStarPosition> *positions) :
CBaseStarRef(stars), _positions(positions), _index(0) {}
virtual ~CStarRefArray() {}
virtual bool check(const Common::Point &pt, int index);
};
class CStarRef3 : public CBaseStarRef {
public:
int _index;
public:
CStarRef3(CBaseStars *stars) :CBaseStarRef(stars), _index(0) {}
virtual ~CStarRef3() {}
virtual bool check(const Common::Point &pt, int index);
};
} // End of namespace Titanic
#endif /* TITANIC_STAR_REF_H */
|