]> git.mxchange.org Git - flightgear.git/blobdiff - src/ATC/AILocalTraffic.hxx
make attribute strings lowercase with hyphen instead of underscore;
[flightgear.git] / src / ATC / AILocalTraffic.hxx
index 690ebd2e7cf4c429f43427e9d5fc9ed4cfdc019e..a4e1505f64495ae15d9de65c99d44b2f44c245a9 100644 (file)
 //
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
 #ifndef _FG_AILocalTraffic_HXX
 #define _FG_AILocalTraffic_HXX
 
-#include <plib/sg.h>
-#include <plib/ssg.h>
 #include <simgear/math/point3d.hxx>
 #include <Main/fg_props.hxx>
 
-#include "tower.hxx"
 #include "AIPlane.hxx"
 #include "ATCProjection.hxx"
 #include "ground.hxx"
 
+class FGGround;
+class FGTower;
+struct Gate;
+
 #include <string>
 SG_USING_STD(string);
 
@@ -64,7 +65,7 @@ public:
        ~FGAILocalTraffic();
        
        // Initialise
-       bool Init(const string& callsign, string ICAO, OperatingState initialState = PARKED, PatternLeg initialLeg = DOWNWIND);
+       bool Init(const string& callsign, const string& ICAO, OperatingState initialState = PARKED, PatternLeg initialLeg = DOWNWIND);
        
        // Run the internal calculations
        void Update(double dt);
@@ -121,9 +122,9 @@ protected:
        FGATCAlignedProjection ortho;   // Orthogonal mapping of the local area with the threshold at the origin
        // and the runway aligned with the y axis.
        
-       void GetAirportDetails(string id);
+       void GetAirportDetails(const string& id);
        
-       void GetRwyDetails(string id);
+       void GetRwyDetails(const string& id);
        
        double responseCounter;         // timer in seconds to allow response to requests to be a little while after them
        // Will almost certainly get moved to FGAIPlane.        
@@ -159,8 +160,8 @@ private:
        bool inAir;                             // True when off the ground 
        
        // environment - some of this might get moved into FGAIPlane
-       SGPropertyNode* wind_from_hdg;  //degrees
-       SGPropertyNode* wind_speed_knots;               //knots
+       SGPropertyNode_ptr wind_from_hdg;       //degrees
+       SGPropertyNode_ptr wind_speed_knots;            //knots
        
        // Pattern details that (may) change
        int numInPattern;               // Number of planes in the pattern (this might get more complicated if high performance GA aircraft fly a higher pattern eventually)
@@ -200,6 +201,7 @@ private:
        bool contactGround;     // we have been told to contact ground
        bool changeFreq;        // true when we need to change frequency
        bool _taxiToGA;         // Temporary mega-hack indicating we are to taxi to the GA parking and disconnect from tower control.
+       bool _removeSelf;       // Indicates that we wish to remove this instance.  The use of a variable is a hack to allow time for messages to purge before removal, due to the fagility of the current dialog system.
        atc_type changeFreqType;        // the service we need to change to
        bool freeTaxi;  // False if the airport has a facilities file with a logical taxi network defined, true if we need to calculate our own taxiing points.
        
@@ -214,7 +216,7 @@ private:
 
        void CalculateSoD(double base_leg_pos, double downwind_leg_pos, bool pattern_direction);
 
-       void ExitRunway(Point3D orthopos);
+       void ExitRunway(const Point3D& orthopos);
 
        void StartTaxi();
 
@@ -223,6 +225,9 @@ private:
        void GetNextTaxiNode();
        
        void DoGroundElev();
+       
+       // Set when the plane should be invisible *regardless of distance from user*.
+       bool _invisible;
 };
 
 #endif  // _FG_AILocalTraffic_HXX