]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIAircraft.hxx
Fix line endings
[flightgear.git] / src / AIModel / AIAircraft.hxx
index 33cf99e5e4e402c5964def17eec688fb7bd11cf2..483af7398684ae6a0a067993be115fccdba72740 100644 (file)
@@ -24,6 +24,9 @@
 #include "AIManager.hxx"
 #include "AIBase.hxx"
 
+#include <Traffic/SchedFlight.hxx>
+#include <Traffic/Schedule.hxx>
+
 #include <string>
 SG_USING_STD(string);
 
@@ -45,35 +48,52 @@ private:
        } PERF_STRUCT;
        
 public:
-
         enum aircraft_e {LIGHT=0, WW2_FIGHTER, JET_TRANSPORT, JET_FIGHTER, TANKER};
         static const PERF_STRUCT settings[];
        
-       FGAIAircraft(FGAIManager* mgr);
+       FGAIAircraft(FGAISchedule *ref=0);
        ~FGAIAircraft();
-       
-       bool init();
+
+        virtual void readFromScenario(SGPropertyNode* scFileNode);
+
+       virtual bool init();
         virtual void bind();
         virtual void unbind();
-       void update(double dt);
+       virtual void update(double dt);
 
+        void setPerformance(const std::string& perfString);
         void SetPerformance(const PERF_STRUCT *ps);
+        void setFlightPlan(const std::string& fp, bool repat = false);
         void SetFlightPlan(FGAIFlightPlan *f);
+        FGAIFlightPlan* GetFlightPlan() const { return fp; };
         void AccelTo(double speed);
         void PitchTo(double angle);
         void RollTo(double angle);
         void YawTo(double angle);
         void ClimbTo(double altitude);
         void TurnTo(double heading);
-        void ProcessFlightPlan( double dt );
+        void ProcessFlightPlan( double dt, time_t now );
+  void getGroundElev(double dt);
+  void doGroundAltitude();
+  void loadNextLeg  ();
+
+  void setAcType(const string& ac) { acType = ac; };
+  void setCompany(const string& comp) { company = comp;};
 
         inline void SetTanker(bool setting) { isTanker = setting; };
 
-private:
+        virtual const char* getTypeString(void) const { return "aircraft"; }
 
+private:
+   FGAISchedule *trafficRef;
+  
         bool hdg_lock;
         bool alt_lock;
         double dt_count;  
+  double dt_elev_count;
+  double headingChangeRate;
+  double groundTargetSpeed;
+  double groundOffset;
         double dt; 
 
         const PERF_STRUCT *performance;
@@ -83,8 +103,15 @@ private:
 
        void Run(double dt);
         double sign(double x); 
+  
+  string acType;
+  string company;
+  int spinCounter;
+  double prevSpeed;
+  double prev_dist_to_go;
 
         bool _getGearDown() const;
+  bool reachedWaypoint;
 };