]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIAircraft.hxx
Set the format default to float instead of int.
[flightgear.git] / src / AIModel / AIAircraft.hxx
index 759cca93c36e780357229b0ebd86c996493c190e..33cf99e5e4e402c5964def17eec688fb7bd11cf2 100644 (file)
@@ -29,34 +29,63 @@ SG_USING_STD(string);
 
 
 class FGAIAircraft : public FGAIBase {
+
+private:
+
+       typedef struct {
+            double accel;
+            double decel;
+            double climb_rate;
+            double descent_rate;
+            double takeoff_speed;
+            double climb_speed;
+            double cruise_speed;
+            double descent_speed;
+            double land_speed;
+       } PERF_STRUCT;
        
 public:
+
+        enum aircraft_e {LIGHT=0, WW2_FIGHTER, JET_TRANSPORT, JET_FIGHTER, TANKER};
+        static const PERF_STRUCT settings[];
        
-       FGAIAircraft();
+       FGAIAircraft(FGAIManager* mgr);
        ~FGAIAircraft();
        
        bool init();
+        virtual void bind();
+        virtual void unbind();
        void update(double dt);
 
-        void SetPerformance(PERF_STRUCT ps);
+        void SetPerformance(const PERF_STRUCT *ps);
+        void SetFlightPlan(FGAIFlightPlan *f);
         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 );
+
+        inline void SetTanker(bool setting) { isTanker = setting; };
+
 private:
 
         bool hdg_lock;
         bool alt_lock;
-
+        double dt_count;  
         double dt; 
 
-        PERF_STRUCT performance;
+        const PERF_STRUCT *performance;
+        bool use_perf_vs;
+        SGPropertyNode* refuel_node;
+        bool isTanker;
 
        void Run(double dt);
         double sign(double x); 
+
+        bool _getGearDown() const;
 };
 
+
 #endif  // _FG_AIAircraft_HXX