]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/YASim/FGFDM.hpp
Add support for a turbo prop condition lever.
[flightgear.git] / src / FDM / YASim / FGFDM.hpp
index c15eae39186c008c191a3f7deecf43a4c26feed3..66a842ba1350d640589b4725e76fc2b95687b146 100644 (file)
@@ -41,8 +41,11 @@ private:
     int parseAxis(const char* name);
     int parseOutput(const char* name);
     void parseWeight(XMLAttributes* a);
+    void parseTurbineEngine(XMLAttributes* a);
+    void parsePistonEngine(XMLAttributes* a);
     void parsePropeller(XMLAttributes* a);
     bool eq(const char* a, const char* b);
+    bool caseeq(const char* a, const char* b);
     char* dup(const char* s);
     int attri(XMLAttributes* atts, char* attr);
     int attri(XMLAttributes* atts, char* attr, int def); 
@@ -53,6 +56,9 @@ private:
     // The core Airplane object we manage.
     Airplane _airplane;
 
+    // Aerodynamic turbulence model
+    Turbulence* _turb;
+
     // The list of "axes" that we expect to find as input.  These are
     // typically property names.
     Vector _axes;