]> git.mxchange.org Git - flightgear.git/blobdiff - src/Cockpit/cockpit.cxx
Updates to vacuum system model from Alex Perry.
[flightgear.git] / src / Cockpit / cockpit.cxx
index 648c0a83e282e7f14fab19bc3d524ce69a3401c0..f0ad116dd6ed0b8b1487cc4efa3c33e42c6aa31d 100644 (file)
 #endif
 
 #include <GL/glut.h>
-#include <XGL/xgl.h>
+#include <simgear/xgl/xgl.h>
 
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
 
+#include <simgear/constants.h>
+#include <simgear/debug/logstream.hxx>
+#include <simgear/math/fg_random.h>
+#include <simgear/math/polar3d.hxx>
+
 #include <Aircraft/aircraft.hxx>
-#include <Debug/logstream.hxx>
-#include <Include/fg_constants.h>
 #include <Include/general.hxx>
 #include <Main/options.hxx>
 #include <Main/views.hxx>
-#include <Math/fg_random.h>
-#include <Math/mat3.h>
-#include <Math/polar3d.hxx>
 #include <Scenery/scenery.hxx>
 #include <Time/fg_timer.hxx>
 #include <Time/fg_time.hxx>
@@ -109,8 +109,8 @@ get_formated_gmt_time( void )
     static char buf[32];
     FGTime *t = FGTime::cur_time_params;
     const struct tm *p = t->getGmt();
-    sprintf( buf, "%d/%d/%2d %d:%02d:%02d", 
-         p->tm_mon+1, p->tm_mday, p->tm_year,
+    sprintf( buf, "%d/%d/%4d %d:%02d:%02d", 
+         p->tm_mon+1, p->tm_mday, 1900 + p->tm_year,
          p->tm_hour, p->tm_min, p->tm_sec);
     return buf;
 }
@@ -161,10 +161,17 @@ float get_rudderval( void )
 float get_speed( void )
 {
     // Make an explicit function call.
-    float speed = current_aircraft.fdm_state->get_V_equiv_kts();
+    float speed = current_aircraft.fdm_state->get_V_calibrated_kts()
+       * current_options.get_speed_up();
     return( speed );
 }
 
+float get_mach(void)
+{
+       float mach=current_aircraft.fdm_state->get_Mach_number();
+       return mach;
+}      
+
 float get_aoa( void )
 {
     float aoa = current_aircraft.fdm_state->get_Alpha() * RAD_TO_DEG;