]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AIAircraft.hxx
Ground network distance tracking code. AIAircraft taxiing at airports
[flightgear.git] / src / AIModel / AIAircraft.hxx
1 // FGAIAircraft - AIBase derived class creates an AI aircraft
2 //
3 // Written by David Culp, started October 2003.
4 //
5 // Copyright (C) 2003  David P. Culp - davidculp2@comcast.net
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20
21 #ifndef _FG_AIAircraft_HXX
22 #define _FG_AIAircraft_HXX
23
24 #include "AIManager.hxx"
25 #include "AIBase.hxx"
26
27 #include <Traffic/SchedFlight.hxx>
28 #include <Traffic/Schedule.hxx>
29
30 #include <string>
31 SG_USING_STD(string);
32
33
34 class FGAIAircraft : public FGAIBase {
35
36 private:
37     typedef struct {
38         double accel;
39         double decel;
40         double climb_rate;
41         double descent_rate;
42         double takeoff_speed;
43         double climb_speed;
44         double cruise_speed;
45         double descent_speed;
46         double land_speed;
47     } PERF_STRUCT;
48
49 public:
50     enum aircraft_e {
51         LIGHT = 0,
52         WW2_FIGHTER,
53         JET_TRANSPORT,
54         JET_FIGHTER,
55         TANKER,
56         UFO
57     };
58     static const PERF_STRUCT settings[];
59
60     FGAIAircraft(FGAISchedule *ref=0);
61     ~FGAIAircraft();
62
63     virtual void readFromScenario(SGPropertyNode* scFileNode);
64
65     virtual bool init();
66     virtual void bind();
67     virtual void unbind();
68     virtual void update(double dt);
69
70     void setPerformance(const std::string& perfString);
71     void SetPerformance(const PERF_STRUCT *ps);
72     void setFlightPlan(const std::string& fp, bool repat = false);
73     void SetFlightPlan(FGAIFlightPlan *f);
74     void initializeFlightPlan();
75     FGAIFlightPlan* GetFlightPlan() const { return fp; };
76     void AccelTo(double speed);
77     void PitchTo(double angle);
78     void RollTo(double angle);
79     void YawTo(double angle);
80     void ClimbTo(double altitude);
81     void TurnTo(double heading);
82     void ProcessFlightPlan( double dt, time_t now );
83     void setCallSign(const string& );
84     void setTACANChannelID(const string& );
85
86     void getGroundElev(double dt);
87     void doGroundAltitude();
88     void loadNextLeg  ();
89
90     void setAcType(const string& ac) { acType = ac; };
91     void setCompany(const string& comp) { company = comp;};
92
93     void announcePositionToController();
94     void processATC(FGATCInstruction instruction);
95
96     inline void SetTanker(bool setting) { isTanker = setting; };
97     virtual const char* getTypeString(void) const { return "aircraft"; }
98
99 private:
100     FGAISchedule *trafficRef;
101     FGATCController *controller, *prevController; 
102
103     bool hdg_lock;
104     bool alt_lock;
105     double dt_count;
106     double dt_elev_count;
107     double headingChangeRate;
108     double groundTargetSpeed;
109     double groundOffset;
110     double dt;
111
112     const PERF_STRUCT *performance;
113     bool use_perf_vs;
114     SGPropertyNode_ptr refuel_node;
115     bool isTanker;
116
117     void Run(double dt);
118     double sign(double x);
119
120     string acType;
121     string company;
122
123     int spinCounter;
124     double prevSpeed;
125     double prev_dist_to_go;
126
127     bool _getGearDown() const;
128     bool reachedWaypoint;
129     string callsign;             // The callsign of this tanker.
130     string TACAN_channel_id;     // The TACAN channel of this tanker
131     bool contact;                // set if this tanker is within fuelling range
132 };
133
134
135 #endif  // _FG_AIAircraft_HXX