2003-11-28 15:48:05 +00:00
|
|
|
// FGAIAircraft - AIBase derived class creates an AI aircraft
|
|
|
|
//
|
|
|
|
// Written by David Culp, started October 2003.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2003 David P. Culp - 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_AIAircraft_HXX
|
|
|
|
#define _FG_AIAircraft_HXX
|
|
|
|
|
|
|
|
#include "AIManager.hxx"
|
|
|
|
#include "AIBase.hxx"
|
|
|
|
|
2004-11-29 09:41:43 +00:00
|
|
|
#include <Traffic/SchedFlight.hxx>
|
|
|
|
#include <Traffic/Schedule.hxx>
|
|
|
|
|
2003-11-28 15:48:05 +00:00
|
|
|
#include <string>
|
|
|
|
SG_USING_STD(string);
|
|
|
|
|
|
|
|
|
|
|
|
class FGAIAircraft : public FGAIBase {
|
2003-12-21 13:42:01 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
double accel;
|
|
|
|
double decel;
|
|
|
|
double climb_rate;
|
|
|
|
double descent_rate;
|
|
|
|
double takeoff_speed;
|
|
|
|
double climb_speed;
|
|
|
|
double cruise_speed;
|
|
|
|
double descent_speed;
|
|
|
|
double land_speed;
|
|
|
|
} PERF_STRUCT;
|
2003-11-28 15:48:05 +00:00
|
|
|
|
|
|
|
public:
|
2004-06-06 08:50:17 +00:00
|
|
|
enum aircraft_e {LIGHT=0, WW2_FIGHTER, JET_TRANSPORT, JET_FIGHTER, TANKER};
|
2003-12-21 13:42:01 +00:00
|
|
|
static const PERF_STRUCT settings[];
|
2003-11-28 15:48:05 +00:00
|
|
|
|
2004-11-29 09:41:43 +00:00
|
|
|
FGAIAircraft(FGAIManager* mgr, FGAISchedule *ref=0);
|
2003-11-28 15:48:05 +00:00
|
|
|
~FGAIAircraft();
|
|
|
|
|
|
|
|
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 update(double dt);
|
|
|
|
|
2003-12-21 13:42:01 +00:00
|
|
|
void SetPerformance(const PERF_STRUCT *ps);
|
2004-05-15 09:07:55 +00:00
|
|
|
void SetFlightPlan(FGAIFlightPlan *f);
|
2003-11-28 15:48:05 +00:00
|
|
|
void AccelTo(double speed);
|
|
|
|
void PitchTo(double angle);
|
|
|
|
void RollTo(double angle);
|
|
|
|
void YawTo(double angle);
|
|
|
|
void ClimbTo(double altitude);
|
|
|
|
void TurnTo(double heading);
|
2005-02-10 09:01:51 +00:00
|
|
|
void ProcessFlightPlan( double dt, time_t now );
|
|
|
|
void getGroundElev(double dt);
|
|
|
|
void loadNextLeg ();
|
|
|
|
|
|
|
|
void setAcType(string ac) { acType = ac; };
|
|
|
|
void setCompany(string comp) { company = comp;};
|
|
|
|
//void setSchedule(FGAISchedule *ref) { trafficRef = ref;};
|
2004-01-22 21:13:47 +00:00
|
|
|
|
2004-06-06 08:50:17 +00:00
|
|
|
inline void SetTanker(bool setting) { isTanker = setting; };
|
|
|
|
|
2003-11-28 15:48:05 +00:00
|
|
|
private:
|
2004-11-29 09:41:43 +00:00
|
|
|
FGAISchedule *trafficRef;
|
|
|
|
|
2003-11-28 15:48:05 +00:00
|
|
|
bool hdg_lock;
|
|
|
|
bool alt_lock;
|
2004-05-18 09:09:08 +00:00
|
|
|
double dt_count;
|
2005-02-10 09:01:51 +00:00
|
|
|
double dt_elev_count;
|
|
|
|
double headingChangeRate;
|
|
|
|
double groundTargetSpeed;
|
|
|
|
double groundOffset;
|
2003-11-28 15:48:05 +00:00
|
|
|
double dt;
|
|
|
|
|
2003-12-21 13:42:01 +00:00
|
|
|
const PERF_STRUCT *performance;
|
2004-05-15 09:07:55 +00:00
|
|
|
bool use_perf_vs;
|
2004-06-06 08:50:17 +00:00
|
|
|
SGPropertyNode* refuel_node;
|
|
|
|
bool isTanker;
|
2003-11-28 15:48:05 +00:00
|
|
|
|
|
|
|
void Run(double dt);
|
|
|
|
double sign(double x);
|
2005-02-10 09:01:51 +00:00
|
|
|
|
|
|
|
string acType;
|
|
|
|
string company;
|
|
|
|
int spinCounter;
|
|
|
|
double prevSpeed;
|
|
|
|
double prev_dist_to_go;
|
2004-09-08 13:21:40 +00:00
|
|
|
|
|
|
|
bool _getGearDown() const;
|
2005-02-10 09:01:51 +00:00
|
|
|
bool reachedWaypoint;
|
2003-11-28 15:48:05 +00:00
|
|
|
};
|
|
|
|
|
2004-01-22 21:13:47 +00:00
|
|
|
|
2003-11-28 15:48:05 +00:00
|
|
|
#endif // _FG_AIAircraft_HXX
|