]> git.mxchange.org Git - flightgear.git/blob - src/Traffic/Schedule.hxx
Experimental navinfo() Nasal extension function
[flightgear.git] / src / Traffic / Schedule.hxx
1 /* -*- Mode: C++ -*- *****************************************************
2  * Schedule.hxx
3  * Written by Durk Talsma. Started May 5, 2004
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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18  *
19  *
20  **************************************************************************/
21
22 /**************************************************************************
23  * This file contains the definition of the class Shedule.
24  *
25  * A schedule is basically a number of scheduled flights, wich can be
26  * assigned to an AI aircraft. 
27  **************************************************************************/
28
29 #ifndef _FGSCHEDULE_HXX_
30 #define _FGSCHEDULE_HXX_
31
32 #define TRAFFICTOAIDISTTOSTART 150.0
33 #define TRAFFICTOAIDISTTODIE   200.0
34
35
36 class FGAISchedule
37 {
38  private:
39   string modelPath;
40   string homePort;
41   string livery;
42   string registration;
43   string airline;
44   string acType;
45   string m_class;
46   string flightType;
47   string flightIdentifier;
48   string currentDestination;
49   bool heavy;
50   FGScheduledFlightVec flights;
51   SGGeod position;
52   double radius;
53   double groundOffset;
54   double distanceToUser;
55   int AIManagerRef;
56   double score;
57   unsigned int runCount;
58   unsigned int hits;
59   bool firstRun;
60   double courseToDest;
61   bool initialized;
62
63   void scheduleFlights();
64   
65   /**
66    * Transition this schedule from distant mode to AI mode;
67    * create the AIAircraft (and flight plan) and register with the AIManager
68    */
69   bool createAIAircraft(FGScheduledFlight* flight, double speedKnots, time_t deptime);
70   
71  public:
72   FGAISchedule();                                           // constructor
73   FGAISchedule(string model, 
74                string livery,
75                string homePort, 
76                string registration, 
77                string flightId,
78                bool   heavy, 
79                string acType, 
80                string airline, 
81                string m_class, 
82                string flight_type, 
83                double radius, 
84                double offset);                              // construct & init
85   FGAISchedule(const FGAISchedule &other);                  // copy constructor
86
87
88
89   ~FGAISchedule(); //destructor
90
91   bool update(time_t now, const SGVec3d& userCart);
92   bool init();
93
94   double getSpeed         ();
95   //void setClosestDistanceToUser();
96   bool next();   // forces the schedule to move on to the next flight.
97
98   // TODO: rework these four functions
99    time_t      getDepartureTime    () { return (*flights.begin())->getDepartureTime   (); };
100   FGAirport * getDepartureAirport () { return (*flights.begin())->getDepartureAirport(); };
101   FGAirport * getArrivalAirport   () { return (*flights.begin())->getArrivalAirport  (); };
102   int         getCruiseAlt        () { return (*flights.begin())->getCruiseAlt       (); };
103   double      getRadius           () { return radius; };
104   double      getGroundOffset     () { return groundOffset;};
105   const string& getFlightType     () { return flightType;};
106   const string& getAirline        () { return airline; };
107   const string& getAircraft       () { return acType; };
108   const string& getCallSign       () { return (*flights.begin())->getCallSign (); };
109   const string& getRegistration   () { return registration;};
110   const string& getFlightRules    () { return (*flights.begin())->getFlightRules (); };
111   bool getHeavy                   () { return heavy; };
112   double getCourse                () { return courseToDest; };
113   unsigned int getRunCount        () { return runCount; };
114   unsigned int getHits            () { return hits; };
115
116   void         setrunCount(unsigned int count) { runCount = count; };
117   void         setHits    (unsigned int count) { hits     = count; };
118   void         setScore   ();
119   double       getScore   () { return score; };
120   FGScheduledFlight*findAvailableFlight (const string &currentDestination, const string &req);
121   // used to sort in decending order of score: I've probably found a better way to
122   // decending order sorting, but still need to test that.
123   bool operator< (const FGAISchedule &other) const { return (score > other.score); };
124   //void * getAiRef                 () { return AIManagerRef; };
125   //FGAISchedule* getAddress        () { return this;};
126
127 };
128
129 typedef vector<FGAISchedule*>           ScheduleVector;
130 typedef vector<FGAISchedule*>::iterator ScheduleVectorIterator;
131
132 bool compareSchedules(FGAISchedule*a, FGAISchedule*b);
133
134 #endif
135