]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/bfi.hxx
Tweaks and massaging relative to the new waypoint route management system.
[flightgear.git] / src / Main / bfi.hxx
index bc3c9d674aae18e0531440742bfd6f74274d3b6c..6c086f6763cccd8fda08a521dd017d23121a2c23 100644 (file)
@@ -93,6 +93,7 @@ public:
                                // Engine
   static double getRPM ();
   static void setRPM ( double rpm );
+  static double getEGT ();
 
                                // Velocities
   static double getAirspeed ();
@@ -109,6 +110,8 @@ public:
 
                                // Controls
   static double getThrottle ();
+  static double getMixture ();
+  static double getPropAdvance ();
   static double getFlaps ();
   static double getAileron ();
   static double getRudder ();
@@ -120,6 +123,8 @@ public:
   static double getCenterBrake ();
 
   static void setThrottle (double throttle);
+  static void setMixture (double mixture);
+  static void setPropAdvance (double pitch);
   static void setFlaps (double flaps);
   static void setAileron (double aileron);
   static void setRudder (double rudder);
@@ -185,16 +190,13 @@ public:
   static void setADFRotation (double rot);
 
                                // GPS
-  static const string getTargetAirport ();
+  static const string &getTargetAirport ();
   static bool getGPSLock ();
   static double getGPSTargetLatitude ();
   static double getGPSTargetLongitude ();
 
   static void setTargetAirport (const string &targetAirport);
   static void setGPSLock (bool lock);
-  static void setGPSTargetLatitude (double latitude);
-  static void setGPSTargetLongitude (double longitude);
-
 
                                // Weather
   static double getVisibility ();