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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/* 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.
*
*/
#ifndef SCUMM_HE_MOONBASE_AI_TRAVELER_H
#define SCUMM_HE_MOONBASE_AI_TRAVELER_H
#include "scumm/he/moonbase/ai_node.h"
namespace Scumm {
const int NUM_TO_GEN = 9;
const int NUM_POWER_STEPS = 3;
const double SIZE_POWER_STEP = .15;
const int SIZE_ANGLE_STEP = 45;
const int VARIATION_EXTENT = 3;
const int DIRECTION_WEIGHT = 5;
class Traveller : public IContainedObject {
private:
static int _targetPosX;
static int _targetPosY;
static int _maxDist;
static int _numToGen;
static int _sizeAngleStep;
int _sourceHub;
int _posX;
int _posY;
int _angleTo;
int _powerTo;
int _disabled;
int _waterFlag;
int _waterSourceX;
int _waterSourceY;
int _waterDestX;
int _waterDestY;
AI *_ai;
protected:
virtual float calcH();
public:
Traveller(AI *ai);
Traveller(int originX, int originY, AI *ai);
~Traveller() {}
IContainedObject *duplicate() { return this; }
static void setTargetPosX(int posX) { _targetPosX = posX; }
static void setTargetPosY(int posY) { _targetPosY = posY; }
static void setMaxDist(int maxDist) { _maxDist = maxDist; }
void setSourceHub(int sourceHub) { _sourceHub = sourceHub; }
void setPosX(int posX) { _posX = posX; }
void setPosY(int posY) { _posY = posY; }
void setAngleTo(int angleTo) { _angleTo = angleTo; }
void setPowerTo(int powerTo) { _powerTo = powerTo; }
void setWaterSourceX(int waterSourceX) { _waterSourceX = waterSourceX; }
void setWaterSourceY(int waterSourceY) { _waterSourceY = waterSourceY; }
void setWaterDestX(int waterDestX) { _waterDestX = waterDestX; }
void setWaterDestY(int waterDestY) { _waterDestY = waterDestY; }
int getSourceHub() const { return _sourceHub; }
int getPosX() const { return _posX; }
int getPosY() const { return _posY; }
int getAngleTo() const { return _angleTo; }
int getPowerTo() const { return _powerTo; }
int getWaterSourceX() const { return _waterSourceX; }
int getWaterSourceY() const { return _waterSourceY; }
int getWaterDestX() const { return _waterDestX; }
int getWaterDestY() const { return _waterDestY; }
void setDisabled() { _disabled = 1; }
void unsetDisabled() { _disabled = 0; }
int getDisabled() { return _disabled; }
void adjustPosX(int offsetX);
void adjustPosY(int offsetY);
void adjustXY(int offsetX, int offsetY);
void enableWaterFlag() { _waterFlag = 1; }
void disableWaterFlag() { _waterFlag = 0; }
int getWaterFlag() const { return _waterFlag; }
virtual int numChildrenToGen();
virtual IContainedObject *createChildObj(int, int &);
virtual int checkSuccess();
virtual float calcT();
};
} // End of namespace Scumm
#endif
|