]> git.mxchange.org Git - flightgear.git/blob - src/Traffic/Schedule.hxx
Alex Romosan:
[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., 675 Mass Ave, Cambridge, MA 02139, 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 TRAFFICTOAIDIST 150.0
33
34
35 class FGAISchedule
36 {
37  private:
38   string modelPath;
39   string livery;
40   string registration;
41   string airline;
42   string acType;
43   string m_class;
44   string flightType;
45   bool heavy;
46   FGScheduledFlightVec flights;
47   float lat;
48   float lon; 
49   double radius;
50   double groundOffset;
51   double distanceToUser;
52   int AIManagerRef;
53   bool firstRun;
54
55
56  public:
57   FGAISchedule();                                           // constructor
58   FGAISchedule(string, string, string, bool, string, string, string, string, double, double, FGScheduledFlightVec);  // construct & init
59   FGAISchedule(const FGAISchedule &other);             // copy constructor
60
61   ~FGAISchedule(); //destructor
62
63   bool update(time_t now);
64   bool init();
65
66   double getSpeed         ();
67   void setClosestDistanceToUser();
68   void next();   // forces the schedule to move on to the next flight.
69
70   time_t      getDepartureTime    () { return flights.begin()->getDepartureTime   (); };
71   FGAirport * getDepartureAirport () { return flights.begin()->getDepartureAirport(); };
72   FGAirport * getArrivalAirport   () { return flights.begin()->getArrivalAirport  (); };
73   int         getCruiseAlt        () { return flights.begin()->getCruiseAlt       (); };
74   double      getRadius           () { return radius; };
75   double      getGroundOffset     () { return groundOffset;};
76   const string& getFlightType     () { return flightType;};
77   const string& getAirline        () { return airline; };
78   const string& getAircraft       () { return acType; };
79   const string& getCallSign       () { return flights.begin()->getCallSign (); };
80   const string& getRegistration   () { return registration;};
81   bool getHeavy                   () { return heavy; };
82   bool operator< (const FGAISchedule &other) const { return (distanceToUser < other.distanceToUser); };
83   //void * getAiRef                 () { return AIManagerRef; };
84   //FGAISchedule* getAddress        () { return this;};
85   // More member functions follow later
86
87 };
88
89 typedef vector<FGAISchedule >           ScheduleVector;
90 typedef vector<FGAISchedule >::iterator ScheduleVectorIterator;
91
92 #endif
93