]> git.mxchange.org Git - flightgear.git/blob - src/Traffic/Schedule.hxx
Added a new startup option. By giving the command line option --parkpos=AVAILABLE...
[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   unsigned int lastRun;
60   bool firstRun;
61   double courseToDest;
62   bool initialized;
63   bool valid;
64
65   void scheduleFlights(time_t now);
66   
67   /**
68    * Transition this schedule from distant mode to AI mode;
69    * create the AIAircraft (and flight plan) and register with the AIManager
70    */
71   bool createAIAircraft(FGScheduledFlight* flight, double speedKnots, time_t deptime);
72   
73  public:
74   FGAISchedule();                                           // constructor
75   FGAISchedule(string model, 
76                string livery,
77                string homePort, 
78                string registration, 
79                string flightId,
80                bool   heavy, 
81                string acType, 
82                string airline, 
83                string m_class, 
84                string flight_type, 
85                double radius, 
86                double offset);                              // construct & init
87   FGAISchedule(const FGAISchedule &other);                  // copy constructor
88
89
90
91   ~FGAISchedule(); //destructor
92
93   bool update(time_t now, const SGVec3d& userCart);
94   bool init();
95
96   double getSpeed         ();
97   //void setClosestDistanceToUser();
98   bool next();   // forces the schedule to move on to the next flight.
99
100   // TODO: rework these four functions
101    time_t      getDepartureTime    () { return (*flights.begin())->getDepartureTime   (); };
102   FGAirport * getDepartureAirport () { return (*flights.begin())->getDepartureAirport(); };
103   FGAirport * getArrivalAirport   () { return (*flights.begin())->getArrivalAirport  (); };
104   int         getCruiseAlt        () { return (*flights.begin())->getCruiseAlt       (); };
105   double      getRadius           () { return radius; };
106   double      getGroundOffset     () { return groundOffset;};
107   const string& getFlightType     () { return flightType;};
108   const string& getAirline        () { return airline; };
109   const string& getAircraft       () { return acType; };
110   const string& getCallSign       () { return (*flights.begin())->getCallSign (); };
111   const string& getRegistration   () { return registration;};
112   const string& getFlightRules    () { return (*flights.begin())->getFlightRules (); };
113   bool getHeavy                   () { return heavy; };
114   double getCourse                () { return courseToDest; };
115   unsigned int getRunCount        () { return runCount; };
116   unsigned int getHits            () { return hits; };
117
118   void         setrunCount(unsigned int count) { runCount = count; };
119   void         setHits    (unsigned int count) { hits     = count; };
120   void         setScore   ();
121   double       getScore   () { return score; };
122   void         setHeading (); 
123   void         assign         (FGScheduledFlight *ref) { flights.push_back(ref); };
124   void         setFlightType  (string val            ) { flightType = val; };
125   FGScheduledFlight*findAvailableFlight (const string &currentDestination, const string &req, time_t min=0, time_t max=0);
126   // used to sort in decending order of score: I've probably found a better way to
127   // decending order sorting, but still need to test that.
128   bool operator< (const FGAISchedule &other) const;
129     void taint() { valid = false; };
130     int getLastUsed() { return (int) valid;};
131     void setLastUsed(unsigned int val) {lastRun = val; }; 
132   //void * getAiRef                 () { return AIManagerRef; };
133   //FGAISchedule* getAddress        () { return this;};
134
135 };
136
137 typedef vector<FGAISchedule*>           ScheduleVector;
138 typedef vector<FGAISchedule*>::iterator ScheduleVectorIterator;
139
140 bool compareSchedules(FGAISchedule*a, FGAISchedule*b);
141
142 #endif
143