]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AIFlightPlan.hxx
17a5d1c277dd6a3d6441b0e08b019abee09fc60d
[flightgear.git] / src / AIModel / AIFlightPlan.hxx
1 // FGAIFlightPlan - class for loading and storing  AI flight plans
2 // Written by David Culp, started May 2004
3 // - davidculp2@comcast.net
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 #ifndef _FG_AIFLIGHTPLAN_HXX
20 #define _FG_AIFLIGHTPLAN_HXX
21
22 #include <simgear/compiler.h>
23 #include <vector>
24 #include <string>
25
26 #include <Airports/simple.hxx>
27 #include <Airports/runways.hxx>
28
29 #include "AIBase.hxx"
30
31 SG_USING_STD(vector);
32 SG_USING_STD(string);
33
34
35 class FGAIFlightPlan {
36
37 public:
38
39   typedef struct {
40    string name;
41    double latitude;
42    double longitude;
43    double altitude;
44    double speed;
45    double crossat;
46    bool finished;
47    bool gear_down;
48    bool flaps_down;
49    bool on_ground;
50   } waypoint;
51
52    FGAIFlightPlan(const string& filename);
53   FGAIFlightPlan(FGAIModelEntity *entity,
54                  double course,
55                  time_t start,
56                  FGAirport *dep,
57                  FGAirport *arr,
58                  bool firstLeg,
59                  double radius,
60                  const string& fltType,
61                  const string& acType,
62                  const string& airline);
63    ~FGAIFlightPlan();
64
65    waypoint* const getPreviousWaypoint( void ) const;
66    waypoint* const getCurrentWaypoint( void ) const;
67    waypoint* const getNextWaypoint( void ) const;
68    void IncrementWaypoint( bool erase );
69
70    double getDistanceToGo(double lat, double lon, waypoint* wp) const;
71    int getLeg () const { return leg;};
72    void setLeadDistance(double speed, double bearing, waypoint* current, waypoint* next);
73    void setLeadDistance(double distance_ft);
74    double getLeadDistance( void ) const {return lead_distance;}
75    double getBearing(waypoint* previous, waypoint* next) const;
76    double getBearing(double lat, double lon, waypoint* next) const;
77   time_t getStartTime() const { return start_time; }; 
78
79   void    create(FGAirport *dep, FGAirport *arr, int leg, double alt, double speed, double lat, double lon,
80                  bool firstLeg, double radius, const string& fltType, const string& aircraftType, const string& airline);
81
82   void setLeg(int val) { leg = val;};
83   void setTime(time_t st) { start_time = st; };
84   int getGate() const { return gateId; };
85   double getLeadInAngle() const { return leadInAngle; };
86   const string& getRunway() const { return rwy._rwy_no; };
87   const string& getRunwayId() const { return rwy._id; };
88   void setRepeat(bool r) { repeat = r; };
89   bool getRepeat(void) const { return repeat; };
90   void restart(void);
91
92 private:
93   FGRunway rwy;
94   typedef vector <waypoint*> wpt_vector_type;
95   typedef wpt_vector_type::const_iterator wpt_vector_iterator;
96
97   wpt_vector_type       waypoints;
98   wpt_vector_iterator   wpt_iterator;
99
100   bool repeat;
101   double distance_to_go;
102   double lead_distance;
103   double leadInAngle;
104    time_t start_time;
105   int leg;
106   int gateId;
107   string activeRunway;
108
109   void createPushBack(bool, FGAirport*, double, double, double, const string&, const string&, const string&);
110   void createTaxi(bool, int, FGAirport *, double, double, double, const string&, const string&, const string&);
111   void createTakeOff(bool, FGAirport *, double);
112   void createClimb(bool, FGAirport *, double, double);
113   void createCruise(bool, FGAirport*, FGAirport*, double, double, double, double);
114   void createDecent(FGAirport *);
115   void createLanding(FGAirport *);
116   void createParking(FGAirport *);
117   void deleteWaypoints(); 
118   void resetWaypoints();
119 };    
120
121
122
123 #endif  // _FG_AIFLIGHTPLAN_HXX