2003-11-28 15:48:05 +00:00
|
|
|
// FGAIBase - abstract base class for AI objects
|
|
|
|
// Written by David Culp, started Nov 2003, based on
|
|
|
|
// David Luff's FGAIEntity class.
|
|
|
|
// - davidculp2@comcast.net
|
|
|
|
//
|
|
|
|
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
#ifndef _FG_AIBASE_HXX
|
|
|
|
#define _FG_AIBASE_HXX
|
|
|
|
|
2003-12-21 20:12:55 +00:00
|
|
|
#include <simgear/constants.h>
|
2003-11-28 15:48:05 +00:00
|
|
|
#include <simgear/math/point3d.hxx>
|
|
|
|
#include <simgear/scene/model/placement.hxx>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
SG_USING_STD(string);
|
|
|
|
|
|
|
|
class FGAIBase {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2003-12-21 22:16:57 +00:00
|
|
|
FGAIBase();
|
2003-11-28 15:48:05 +00:00
|
|
|
virtual ~FGAIBase();
|
|
|
|
virtual void update(double dt);
|
|
|
|
inline Point3D GetPos() { return(pos); }
|
2003-12-21 20:12:55 +00:00
|
|
|
|
2003-11-28 15:48:05 +00:00
|
|
|
virtual bool init();
|
2003-12-21 20:12:55 +00:00
|
|
|
virtual void bind();
|
|
|
|
virtual void unbind();
|
2003-11-28 15:48:05 +00:00
|
|
|
|
|
|
|
void setPath( const char* model );
|
|
|
|
void setSpeed( double speed_KTAS );
|
|
|
|
void setAltitude( double altitude_ft );
|
|
|
|
void setHeading( double heading );
|
2003-12-21 22:16:57 +00:00
|
|
|
void setLatitude( double latitude );
|
|
|
|
void setLongitude( double longitude );
|
2003-12-21 20:12:55 +00:00
|
|
|
|
2003-11-28 15:48:05 +00:00
|
|
|
void setDie( bool die );
|
2003-12-21 20:12:55 +00:00
|
|
|
bool getDie();
|
2003-11-28 15:48:05 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2003-12-21 20:12:55 +00:00
|
|
|
SGPropertyNode *props;
|
|
|
|
|
2003-11-28 15:48:05 +00:00
|
|
|
Point3D pos; // WGS84 lat & lon in degrees, elev above sea-level in meters
|
|
|
|
double hdg; // True heading in degrees
|
|
|
|
double roll; // degrees, left is negative
|
|
|
|
double pitch; // degrees, nose-down is negative
|
|
|
|
double speed; // knots true airspeed
|
|
|
|
double altitude; // meters above sea level
|
|
|
|
double vs; // vertical speed, feet per minute
|
|
|
|
|
|
|
|
double tgt_heading; // target heading, degrees true
|
|
|
|
double tgt_altitude; // target altitude, *feet* above sea level
|
|
|
|
double tgt_speed; // target speed, KTAS
|
|
|
|
double tgt_roll;
|
|
|
|
double tgt_pitch;
|
|
|
|
double tgt_yaw;
|
|
|
|
double tgt_vs;
|
|
|
|
|
|
|
|
|
|
|
|
string model_path; //Path to the 3D model
|
|
|
|
SGModelPlacement aip;
|
|
|
|
bool delete_me;
|
|
|
|
|
|
|
|
void Transform();
|
2003-12-21 20:12:55 +00:00
|
|
|
|
2003-12-22 10:24:15 +00:00
|
|
|
static FGAIBase *_self;
|
2003-12-22 12:30:35 +00:00
|
|
|
const char *_type_str;
|
2003-12-22 10:24:15 +00:00
|
|
|
|
2003-12-21 22:16:57 +00:00
|
|
|
private:
|
2003-12-22 10:24:15 +00:00
|
|
|
|
2003-12-21 22:16:57 +00:00
|
|
|
static void _setLongitude( double longitude );
|
|
|
|
static void _setLatitude ( double latitude );
|
|
|
|
static double _getLongitude();
|
|
|
|
static double _getLatitude ();
|
2003-12-22 12:30:35 +00:00
|
|
|
|
2003-11-28 15:48:05 +00:00
|
|
|
};
|
|
|
|
|
2003-12-21 20:12:55 +00:00
|
|
|
|
|
|
|
inline void FGAIBase::setPath( const char* model ) {
|
|
|
|
model_path.append(model);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void FGAIBase::setSpeed( double speed_KTAS ) {
|
|
|
|
speed = tgt_speed = speed_KTAS;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void FGAIBase::setAltitude( double altitude_ft ) {
|
|
|
|
altitude = tgt_altitude = altitude_ft;
|
|
|
|
pos.setelev(altitude * SG_FEET_TO_METER);
|
|
|
|
}
|
|
|
|
|
2003-12-21 22:16:57 +00:00
|
|
|
inline void FGAIBase::setHeading( double heading ) {
|
|
|
|
hdg = tgt_heading = heading;
|
2003-12-21 20:12:55 +00:00
|
|
|
}
|
|
|
|
|
2003-12-21 22:16:57 +00:00
|
|
|
inline void FGAIBase::setLongitude( double longitude ) {
|
|
|
|
pos.setlon( longitude );
|
2003-12-21 20:12:55 +00:00
|
|
|
}
|
|
|
|
|
2003-12-21 22:16:57 +00:00
|
|
|
inline void FGAIBase::setLatitude ( double latitude ) {
|
|
|
|
pos.setlat( latitude );
|
2003-12-21 20:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void FGAIBase::setDie( bool die ) { delete_me = die; }
|
|
|
|
inline bool FGAIBase::getDie() { return delete_me; }
|
|
|
|
|
2003-11-28 15:48:05 +00:00
|
|
|
#endif // _FG_AIBASE_HXX
|
|
|
|
|