]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AIBase.hxx
Merge branch 'next' of gitorious.org:fg/flightgear into next
[flightgear.git] / src / AIModel / AIBase.hxx
1 // FGAIBase.hxx - abstract base class for AI objects
2 // Written by David Culp, started Nov 2003, based on
3 // David Luff's FGAIEntity class.
4 // - davidculp2@comcast.net 
5 //
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License as
8 // published by the Free Software Foundation; either version 2 of the
9 // License, or (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful, but
12 // WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19
20 #ifndef _FG_AIBASE_HXX
21 #define _FG_AIBASE_HXX
22
23 #include <string>
24 #include <list>
25
26 #include <simgear/constants.h>
27 #include <simgear/math/SGMath.hxx>
28 #include <simgear/scene/model/placement.hxx>
29 #include <simgear/misc/sg_path.hxx>
30 #include <simgear/structure/SGSharedPtr.hxx>
31 #include <simgear/structure/SGReferenced.hxx>
32 #include <simgear/sg_inlines.h>
33
34 #include <simgear/math/sg_geodesy.hxx>
35
36
37 #include <Main/fg_props.hxx>
38
39
40 using std::string;
41 using std::list;
42
43 class SGMaterial;
44 class FGAIManager;
45 class FGAIFlightPlan;
46
47 class FGAIBase : public SGReferenced {
48
49 public:
50     enum object_type { otNull = 0, otAircraft, otShip, otCarrier, otBallistic,
51         otRocket, otStorm, otThermal, otStatic, otWingman, otGroundVehicle,
52         otEscort, otMultiplayer,
53         MAX_OBJECTS };  // Needs to be last!!!
54
55     FGAIBase(object_type ot, bool enableHot);
56     virtual ~FGAIBase();
57
58     virtual void readFromScenario(SGPropertyNode* scFileNode);
59
60     virtual bool init(bool search_in_AI_path=false);
61     virtual void initModel(osg::Node *node);
62     virtual void update(double dt);
63     virtual void bind();
64     virtual void unbind();
65     virtual void reinit() {}
66
67     void updateLOD();
68     void setManager(FGAIManager* mgr, SGPropertyNode* p);
69     void setPath( const char* model );
70     void setSMPath( const string& p );
71     void setCallSign(const string& );
72     void setSpeed( double speed_KTAS );
73     void setAltitude( double altitude_ft );
74     void setAltitudeAGL( double altitude_agl_ft );
75     void setHeading( double heading );
76     void setLatitude( double latitude );
77     void setLongitude( double longitude );
78     void setBank( double bank );
79     void setPitch( double newpitch );
80     void setRadius ( double radius );
81     void setXoffset( double x_offset );
82     void setYoffset( double y_offset );
83     void setZoffset( double z_offset );
84     void setPitchoffset( double x_offset );
85     void setRolloffset( double y_offset );
86     void setYawoffset( double z_offset );
87     void setServiceable ( bool serviceable );
88     void setDie( bool die );
89     void setCollisionData( bool i, double lat, double lon, double elev );
90     void setImpactData( bool d );
91     void setImpactLat( double lat );
92     void setImpactLon( double lon );
93     void setImpactElev( double e );
94     void setParentName(const string& p);
95     void setName(const string& n);
96     void setMaxSpeed(double kts);
97
98     void calcRangeBearing(double lat, double lon, double lat2, double lon2,
99         double &range, double &bearing) const;
100     double calcRelBearingDeg(double bearing, double heading);
101     double calcTrueBearingDeg(double bearing, double heading);
102     double calcRecipBearingDeg(double bearing);
103
104     bool setParentNode();
105
106     int getID() const;
107     int _getSubID() const;
108
109     bool getDie();
110
111     SGVec3d getCartPosAt(const SGVec3d& off) const;
112     SGVec3d getCartPos() const;
113
114     bool getGroundElevationM(const SGGeod& pos, double& elev,
115         const SGMaterial** material) const;
116
117     double _elevation_m;
118     const SGMaterial* _material;
119
120     double _getCartPosX() const;
121     double _getCartPosY() const;
122     double _getCartPosZ() const;
123
124     double _x_offset;
125     double _y_offset;
126     double _z_offset;
127
128     double _pitch_offset;
129     double _roll_offset;
130     double _yaw_offset;
131
132     double _max_speed;
133
134     string _path;
135     string _callsign;
136     string _submodel;
137     string _name;
138     string _parent;
139
140     SGGeod userpos;
141
142
143 protected:
144
145     SGPropertyNode_ptr _selected_ac;
146     SGPropertyNode_ptr props;
147     SGPropertyNode_ptr trigger_node;
148     SGPropertyNode_ptr model_removed; // where to report model removal
149     FGAIManager* manager;
150
151     // these describe the model's actual state
152     SGGeod pos; // WGS84 lat & lon in degrees, elev above sea-level in meters
153     double hdg;         // True heading in degrees
154     double roll;        // degrees, left is negative
155     double pitch;       // degrees, nose-down is negative
156     double speed;       // knots true airspeed
157     double altitude_ft; // feet above sea level
158     double vs;          // vertical speed, feet per minute
159     double speed_north_deg_sec;
160     double speed_east_deg_sec;
161     double turn_radius_ft; // turn radius ft at 15 kts rudder angle 15 degrees
162     double altitude_agl_ft;
163
164     double ft_per_deg_lon;
165     double ft_per_deg_lat;
166
167     // these describe the model's desired state
168     double tgt_heading;     // target heading, degrees true
169     double tgt_altitude_ft; // target altitude, *feet* above sea level
170     double tgt_speed;       // target speed, KTAS
171     double tgt_roll;
172     double tgt_pitch;
173     double tgt_yaw;
174     double tgt_vs;
175
176     // these describe radar information for the user
177     bool in_range;       // true if in range of the radar, otherwise false
178     double bearing;      // true bearing from user to this model
179     double elevation;    // elevation in degrees from user to this model
180     double range;        // range from user to this model, nm
181     double rdot;         // range rate, in knots
182     double horiz_offset; // look left/right from user to me, deg
183     double vert_offset;  // look up/down from user to me, deg
184     double x_shift;      // value used by radar display instrument
185     double y_shift;      // value used by radar display instrument
186     double rotation;     // value used by radar display instrument
187     double ht_diff;              // value used by radar display instrument
188
189     string model_path;     //Path to the 3D model
190     SGModelPlacement aip;
191
192     bool delete_me;
193     bool invisible;
194     bool no_roll;
195     bool serviceable;
196     bool _installed;
197     int _subID;
198
199     double life;
200
201     FGAIFlightPlan *fp;
202
203     bool _impact_reported;
204     bool _collision_reported;
205     bool _expiry_reported;
206
207     double _impact_lat;
208     double _impact_lon;
209     double _impact_elev;
210     double _impact_hdg;
211     double _impact_pitch;
212     double _impact_roll;
213     double _impact_speed;
214
215     void Transform();
216     void CalculateMach();
217     double UpdateRadar(FGAIManager* manager);
218
219     static int _newAIModelID();
220
221 private:
222     int _refID;
223     object_type _otype;
224     bool _initialized;
225     osg::ref_ptr<osg::LOD> _model; //The 3D model LOD object
226
227 public:
228     object_type getType();
229
230     virtual const char* getTypeString(void) const { return "null"; }
231
232     bool isa( object_type otype );
233
234     void _setVS_fps( double _vs );
235     void _setAltitude( double _alt );
236     void _setLongitude( double longitude );
237     void _setLatitude ( double latitude );
238     void _setSubID( int s );
239     void _setUserPos();
240
241     double _getAltitudeAGL(SGGeod inpos, double start);
242
243     double _getVS_fps() const;
244     double _getAltitude() const;
245     double _getLongitude() const;
246     double _getLatitude() const;
247     double _getElevationFt() const;
248     double _getRdot() const;
249     double _getH_offset() const;
250     double _getV_offset() const;
251     double _getX_shift() const;
252     double _getY_shift() const;
253     double _getRotation() const;
254     double _getSpeed() const;
255     double _getRoll() const;
256     double _getPitch() const;
257     double _getHeading() const;
258     double _get_speed_east_fps() const;
259     double _get_speed_north_fps() const;
260     double _get_SubPath() const;
261     double _getImpactLat() const;
262     double _getImpactLon() const;
263     double _getImpactElevFt() const;
264     double _getImpactHdg() const;
265     double _getImpactPitch() const;
266     double _getImpactRoll() const;
267     double _getImpactSpeed() const;
268     double _getXOffset() const;
269     double _getYOffset() const;
270     double _getZOffset() const;
271     //unsigned int _getCount() const;
272
273     bool   _getServiceable() const;
274     bool   _getFirstTime() const;
275     bool   _getImpact();
276     bool   _getImpactData();
277     bool   _getCollisionData();
278     bool   _getExpiryData();
279
280     SGPropertyNode* _getProps() const;
281
282     const char* _getPath() const;
283     const char* _getSMPath() const;
284     const char* _getCallsign() const;
285     const char* _getTriggerNode() const;
286     const char* _getName() const;
287     const char* _getSubmodel() const;
288
289
290     // These are used in the Mach number calculations
291
292     double rho;
293     double T;                             // temperature, degs farenheit
294     double p;                             // pressure lbs/sq ft
295     double a;                             // speed of sound at altitude (ft/s)
296     double Mach;                          // Mach number
297
298     static const double e;
299     static const double lbs_to_slugs;
300
301     inline double _getRange() { return range; };
302     inline double _getBearing() { return bearing; };
303
304     static bool _isNight();
305
306      string & getCallSign();
307 };
308
309 inline void FGAIBase::setManager(FGAIManager* mgr, SGPropertyNode* p) {
310     manager = mgr;
311     props = p;
312 }
313
314 inline void FGAIBase::setPath(const char* model ) {
315     model_path.append(model);
316 }
317
318 inline void FGAIBase::setSMPath(const string& p) {
319     _path = p;
320 }
321
322 inline void FGAIBase::setServiceable(bool s) {
323     serviceable = s;
324 }
325
326 inline void FGAIBase::setSpeed( double speed_KTAS ) {
327     speed = tgt_speed = speed_KTAS;
328 }
329
330 inline void FGAIBase::setRadius( double radius ) {
331     turn_radius_ft = radius;
332 }
333
334 inline void FGAIBase::setHeading( double heading ) {
335     hdg = tgt_heading = heading;
336 }
337
338 inline void FGAIBase::setAltitude( double alt_ft ) {
339     altitude_ft = tgt_altitude_ft = alt_ft;
340     pos.setElevationFt(altitude_ft);
341 }
342
343 inline void FGAIBase::setAltitudeAGL( double alt_ft ) {
344     altitude_agl_ft = alt_ft;
345 }
346
347 inline void FGAIBase::setBank( double bank ) {
348     roll = tgt_roll = bank;
349     no_roll = false;
350 }
351
352 inline void FGAIBase::setPitch( double newpitch ) {
353     pitch = tgt_pitch = newpitch;
354 }
355
356 inline void FGAIBase::setLongitude( double longitude ) {
357     pos.setLongitudeDeg( longitude );
358 }
359
360 inline void FGAIBase::setLatitude ( double latitude ) {
361     pos.setLatitudeDeg( latitude );
362 }
363
364 inline void FGAIBase::setCallSign(const string& s) {
365     _callsign = s;
366 }
367 inline string& FGAIBase::getCallSign() {
368     return _callsign;
369 }
370
371 inline void FGAIBase::setXoffset(double x) {
372     _x_offset = x;
373 }
374
375 inline void FGAIBase::setYoffset(double y) {
376     _y_offset = y;
377 }
378
379 inline void FGAIBase::setZoffset(double z) {
380     _z_offset = z;
381 }
382
383 inline void FGAIBase::setPitchoffset(double p) {
384     _pitch_offset = p;
385 }
386
387 inline void FGAIBase::setRolloffset(double r) {
388     _roll_offset = r;
389
390
391 inline void FGAIBase::setYawoffset(double y) {
392     _yaw_offset = y;
393 }
394
395 inline void FGAIBase::setParentName(const string& p) {
396     _parent = p;
397 }
398
399 inline void FGAIBase::setName(const string& n) {
400     _name = n;
401 }
402
403 inline void FGAIBase::setDie( bool die ) { delete_me = die; }
404
405 inline bool FGAIBase::getDie() { return delete_me; }
406
407 inline FGAIBase::object_type FGAIBase::getType() { return _otype; }
408
409 inline void FGAIBase::calcRangeBearing(double lat, double lon, double lat2, double lon2,
410                                   double &range, double &bearing) const
411 {
412     // calculate the bearing and range of the second pos from the first
413     double az2, distance;
414     geo_inverse_wgs_84(lat, lon, lat2, lon2, &bearing, &az2, &distance);
415     range = distance * SG_METER_TO_NM;
416 }
417
418 inline double FGAIBase::calcRelBearingDeg(double bearing, double heading){
419     double angle = bearing - heading;
420     SG_NORMALIZE_RANGE(angle, -180.0, 180.0);
421     return angle;
422 }
423
424 inline double FGAIBase::calcTrueBearingDeg(double bearing, double heading){
425     double angle = bearing + heading;
426     SG_NORMALIZE_RANGE(angle, 0.0, 360.0);
427     return angle;
428 }
429
430 inline double FGAIBase::calcRecipBearingDeg(double bearing){
431     double angle = bearing - 180;
432     SG_NORMALIZE_RANGE(angle, 0.0, 360.0);
433     return angle;
434 }
435
436 inline void FGAIBase::setMaxSpeed(double m) {
437     _max_speed = m;
438 }
439
440 #endif  // _FG_AIBASE_HXX