]> git.mxchange.org Git - flightgear.git/commitdiff
Use standard length types (stdint.h where available) to make the FGNetCTRLS,
authorcurt <curt>
Thu, 24 Mar 2005 19:56:57 +0000 (19:56 +0000)
committercurt <curt>
Thu, 24 Mar 2005 19:56:57 +0000 (19:56 +0000)
FGNetFDM, and FGNetGUI structures more cross platform/architecture portable.

src/Network/native_ctrls.cxx
src/Network/native_fdm.cxx
src/Network/native_gui.cxx
src/Network/net_ctrls.hxx
src/Network/net_fdm.hxx
src/Network/net_gui.hxx
src/Replay/replay.cxx

index 714a401e14ee8f9f472acb6f16389cb069b338f1..91db36fc9bae5228b9c613fbd40db40141e03ea6 100644 (file)
@@ -155,7 +155,7 @@ void FGProps2NetCtrls( FGNetCtrls *net, bool honor_freezes,
         if ( fuelpump != NULL ) {
             net->fuel_pump_power[i] = ( fuelpump->getDoubleValue() >= 1.0 );
         } else {
-            net->fuel_pump_power[i] = 0.0;
+            net->fuel_pump_power[i] = 0;
         }
 
        // Faults
@@ -214,7 +214,7 @@ void FGProps2NetCtrls( FGNetCtrls *net, bool honor_freezes,
     net->hground = cur_fdm_state->get_ground_elev_ft() * SG_FEET_TO_METER;
     net->magvar = fgGetDouble("/environment/magnetic-variation-deg");
 
-    net->icing = fgGetDouble("/hazards/icing/wing");
+    net->icing = fgGetBool("/hazards/icing/wing");
 
     net->speedup = fgGetInt("/sim/speed-up");
     net->freeze = 0;
@@ -232,7 +232,7 @@ void FGProps2NetCtrls( FGNetCtrls *net, bool honor_freezes,
 
     if ( net_byte_order ) {
         // convert to network byte order
-        net->version = htonl(net->version);
+        net->version = htons(net->version);
         htond(net->aileron);
         htond(net->elevator);
         htond(net->rudder);
@@ -240,37 +240,17 @@ void FGProps2NetCtrls( FGNetCtrls *net, bool honor_freezes,
         htond(net->elevator_trim);
         htond(net->rudder_trim);
         htond(net->flaps);
-        net->flaps_power = htonl(net->flaps_power);
-        net->flap_motor_ok = htonl(net->flap_motor_ok);
         for ( i = 0; i < FGNetCtrls::FG_MAX_ENGINES; ++i ) {
-            net->master_bat[i] = htonl(net->master_bat[i]);
-            net->master_alt[i] = htonl(net->master_alt[i]);
-            net->magnetos[i] = htonl(net->magnetos[i]);
-            net->starter_power[i] = htonl(net->starter_power[i]);
             htond(net->throttle[i]);
             htond(net->mixture[i]);
-            net->fuel_pump_power[i] = htonl(net->fuel_pump_power[i]);
             htond(net->prop_advance[i]);
             htond(net->condition[i]);
-           net->engine_ok[i] = htonl(net->engine_ok[i]);
-           net->mag_left_ok[i] = htonl(net->mag_left_ok[i]);
-           net->mag_right_ok[i] = htonl(net->mag_right_ok[i]);
-           net->spark_plugs_ok[i] = htonl(net->spark_plugs_ok[i]);
-           net->oil_press_status[i] = htonl(net->oil_press_status[i]);
-           net->fuel_pump_ok[i] = htonl(net->fuel_pump_ok[i]);
         }
-        net->num_engines = htonl(net->num_engines);
-        for ( i = 0; i < FGNetCtrls::FG_MAX_TANKS; ++i ) {
-            net->fuel_selector[i] = htonl(net->fuel_selector[i]);
-        }
-        net->num_tanks = htonl(net->num_tanks);
         htond(net->brake_left);
         htond(net->brake_right);
         htond(net->copilot_brake_left);
         htond(net->copilot_brake_right);
         htond(net->brake_parking);
-        net->gear_handle = htonl(net->gear_handle);
-        net->master_avionics = htonl(net->master_avionics);
         htond(net->wind_speed_kt);
         htond(net->wind_dir_deg);
         htond(net->turbulence_norm);
@@ -278,9 +258,6 @@ void FGProps2NetCtrls( FGNetCtrls *net, bool honor_freezes,
         htond(net->press_inhg);
        htond(net->hground);
         htond(net->magvar);
-        net->icing = htonl(net->icing);
-        net->speedup = htonl(net->speedup);
-        net->freeze = htonl(net->freeze);
     }
 }
 
@@ -295,7 +272,7 @@ void FGNetCtrls2Props( FGNetCtrls *net, bool honor_freezes,
 
     if ( net_byte_order ) {
         // convert from network byte order
-        net->version = htonl(net->version);
+        net->version = htons(net->version);
         htond(net->aileron);
         htond(net->elevator);
         htond(net->rudder);
@@ -303,37 +280,17 @@ void FGNetCtrls2Props( FGNetCtrls *net, bool honor_freezes,
         htond(net->elevator_trim);
         htond(net->rudder_trim);
         htond(net->flaps);
-        net->flaps_power = htonl(net->flaps_power);
-        net->flap_motor_ok = htonl(net->flap_motor_ok);
-        net->num_engines = htonl(net->num_engines);
         for ( i = 0; i < net->num_engines; ++i ) {
-            net->master_bat[i] = htonl(net->master_bat[i]);
-            net->master_alt[i] = htonl(net->master_alt[i]);
-            net->magnetos[i] = htonl(net->magnetos[i]);
-            net->starter_power[i] = htonl(net->starter_power[i]);
             htond(net->throttle[i]);
             htond(net->mixture[i]);
-            net->fuel_pump_power[i] = htonl(net->fuel_pump_power[i]);
             htond(net->prop_advance[i]);
             htond(net->condition[i]);
-           net->engine_ok[i] = htonl(net->engine_ok[i]);
-           net->mag_left_ok[i] = htonl(net->mag_left_ok[i]);
-           net->mag_right_ok[i] = htonl(net->mag_right_ok[i]);
-           net->spark_plugs_ok[i] = htonl(net->spark_plugs_ok[i]);
-           net->oil_press_status[i] = htonl(net->oil_press_status[i]);
-           net->fuel_pump_ok[i] = htonl(net->fuel_pump_ok[i]);
-        }
-        net->num_tanks = htonl(net->num_tanks);
-        for ( i = 0; i < net->num_tanks; ++i ) {
-            net->fuel_selector[i] = htonl(net->fuel_selector[i]);
         }
         htond(net->brake_left);
         htond(net->brake_right);
         htond(net->copilot_brake_left);
         htond(net->copilot_brake_right);
         htond(net->brake_parking);
-        net->gear_handle = htonl(net->gear_handle);
-        net->master_avionics = htonl(net->master_avionics);
         htond(net->wind_speed_kt);
         htond(net->wind_dir_deg);
         htond(net->turbulence_norm);
@@ -341,9 +298,6 @@ void FGNetCtrls2Props( FGNetCtrls *net, bool honor_freezes,
         htond(net->press_inhg);
         htond(net->hground);
         htond(net->magvar);
-        net->icing = htonl(net->icing);
-        net->speedup = htonl(net->speedup);
-        net->freeze = htonl(net->freeze);
     }
 
     if ( net->version != FG_NET_CTRLS_VERSION ) {
index 50c3c995894c328a7434f901ef4bf87772cad19c..033d72b0c93535d7e857637cb0a2465b89d6c4e6 100644 (file)
@@ -191,7 +191,7 @@ void FGProps2NetFDM( FGNetFDM *net, bool net_byte_order ) {
     net->num_wheels = FGNetFDM::FG_MAX_WHEELS;
     for (i = 0; i < net->num_wheels; ++i ) {
         SGPropertyNode *node = fgGetNode("/gear/gear", i, true);
-        net->wow[i] = node->getDoubleValue("wow");
+        net->wow[i] = node->getIntValue("wow");
         net->gear_pos[i] = node->getDoubleValue("position-norm");
         net->gear_steer[i] = node->getDoubleValue("steering-norm");
         net->gear_compression[i] = node->getDoubleValue("compression-norm");
@@ -219,7 +219,7 @@ void FGProps2NetFDM( FGNetFDM *net, bool net_byte_order ) {
 
     if ( net_byte_order ) {
         // Convert the net buffer to network format
-        net->version = htonl(net->version);
+        net->version = htons(net->version);
 
         htond(net->longitude);
         htond(net->latitude);
@@ -251,7 +251,6 @@ void FGProps2NetFDM( FGNetFDM *net, bool net_byte_order ) {
         htonf(net->slip_deg);
 
         for ( i = 0; i < net->num_engines; ++i ) {
-            net->eng_state[i] = htonl(net->eng_state[i]);
             htonf(net->rpm[i]);
             htonf(net->fuel_flow[i]);
             htonf(net->egt[i]);
@@ -261,20 +260,16 @@ void FGProps2NetFDM( FGNetFDM *net, bool net_byte_order ) {
             htonf(net->oil_temp[i]);
             htonf(net->oil_px[i]);
         }
-        net->num_engines = htonl(net->num_engines);
 
         for ( i = 0; i < net->num_tanks; ++i ) {
             htonf(net->fuel_quantity[i]);
         }
-        net->num_tanks = htonl(net->num_tanks);
 
         for ( i = 0; i < net->num_wheels; ++i ) {
-            net->wow[i] = htonl(net->wow[i]);
             htonf(net->gear_pos[i]);
             htonf(net->gear_steer[i]);
             htonf(net->gear_compression[i]);
         }
-        net->num_wheels = htonl(net->num_wheels);
 
         net->cur_time = htonl( net->cur_time );
         net->warp = htonl( net->warp );
@@ -299,7 +294,7 @@ void FGNetFDM2Props( FGNetFDM *net, bool net_byte_order ) {
 
     if ( net_byte_order ) {
         // Convert to the net buffer from network format
-        net->version = ntohl(net->version);
+        net->version = ntohs(net->version);
 
         htond(net->longitude);
         htond(net->latitude);
@@ -330,9 +325,7 @@ void FGNetFDM2Props( FGNetFDM *net, bool net_byte_order ) {
         htonf(net->stall_warning);
         htonf(net->slip_deg);
 
-        net->num_engines = htonl(net->num_engines);
         for ( i = 0; i < net->num_engines; ++i ) {
-            net->eng_state[i] = htonl(net->eng_state[i]);
             htonf(net->rpm[i]);
             htonf(net->fuel_flow[i]);
             htonf(net->egt[i]);
@@ -343,20 +336,17 @@ void FGNetFDM2Props( FGNetFDM *net, bool net_byte_order ) {
             htonf(net->oil_px[i]);
         }
 
-        net->num_tanks = htonl(net->num_tanks);
         for ( i = 0; i < net->num_tanks; ++i ) {
             htonf(net->fuel_quantity[i]);
         }
 
-        net->num_wheels = htonl(net->num_wheels);
         for ( i = 0; i < net->num_wheels; ++i ) {
-            net->wow[i] = htonl(net->wow[i]);
             htonf(net->gear_pos[i]);
             htonf(net->gear_steer[i]);
             htonf(net->gear_compression[i]);
         }
 
-        net->cur_time = ntohl(net->cur_time);
+        net->cur_time = htonl(net->cur_time);
         net->warp = ntohl(net->warp);
         htonf(net->visibility);
 
index b9e3678279f2da67e5abfa1765fc07261d2dd3e9..4fab64495880a610ae7d46d8dfb221fe4b7b080b 100644 (file)
@@ -215,7 +215,7 @@ void FGProps2NetGUI( FGNetGUI *net ) {
 
 #if defined( FG_USE_NETWORK_BYTE_ORDER )
     // Convert the net buffer to network format
-    net->version = htonl(net->version);
+    net->version = htons(net->version);
 
     htond(net->longitude);
     htond(net->latitude);
@@ -229,7 +229,6 @@ void FGProps2NetGUI( FGNetGUI *net ) {
     for ( i = 0; i < net->num_tanks; ++i ) {
         htonf(net->fuel_quantity[i]);
     }
-    net->num_tanks = htonl(net->num_tanks);
 
     net->cur_time = htonl( net->cur_time );
     net->warp = htonl( net->warp );
@@ -237,7 +236,6 @@ void FGProps2NetGUI( FGNetGUI *net ) {
 
     htonf(net->tuned_freq);
     htonf(net->nav_radial);
-    net->in_range = htonl(net->in_range);
     htonf(net->dist_nm);
     htonf(net->course_deviation_deg);
     htonf(net->gs_deviation_deg);
@@ -250,7 +248,7 @@ void FGNetGUI2Props( FGNetGUI *net ) {
 
 #if defined( FG_USE_NETWORK_BYTE_ORDER )
     // Convert to the net buffer from network format
-    net->version = ntohl(net->version);
+    net->version = ntohs(net->version);
 
     htond(net->longitude);
     htond(net->latitude);
@@ -261,7 +259,6 @@ void FGNetGUI2Props( FGNetGUI *net ) {
     htonf(net->vcas);
     htonf(net->climb_rate);
 
-    net->num_tanks = htonl(net->num_tanks);
     for ( i = 0; i < net->num_tanks; ++i ) {
        htonf(net->fuel_quantity[i]);
     }
@@ -271,7 +268,6 @@ void FGNetGUI2Props( FGNetGUI *net ) {
     net->ground_elev = htonl( net->ground_elev );
 
     htonf(net->tuned_freq);
-    net->in_range = htonl(net->in_range);
     htonf(net->dist_nm);
     htonf(net->course_deviation_deg);
     htonf(net->gs_deviation_deg);
index 6bb9461b066b9bc62f954a26e27f01710a14ca41..16d7c4748977cb0a80220dd60f1bcb899d94278e 100644 (file)
 #define _NET_CTRLS_HXX
 
 
-#ifndef __cplusplus                                                          
-# error This library requires C++
-#endif                                   
-
-const int FG_NET_CTRLS_VERSION = 24;
+// NOTE: this file defines an external interface structure.  Due to
+// variability between platforms and architectures, we only used fixed
+// length types here.  Specifically, integer types can vary in length.
+// I am not aware of any platforms that don't use 4 bytes for float
+// and 8 bytes for double.
+
+#ifdef HAVE_STDINT_H
+# include <stdint.h>
+#elif defined( _MSC_VER ) || defined(__MINGW32__)
+typedef signed char      int8_t;
+typedef signed short     int16_t;
+typedef signed int       int32_t;
+typedef signed __int64   int64_t;
+typedef unsigned char    uint8_t;
+typedef unsigned short   uint16_t;
+typedef unsigned int     uint32_t;
+typedef unsigned __int64 uint64_t;
+#else
+# error "Port me! Platforms that don't have <stdint.h> need to define int8_t, et. al."
+#endif
+
+const uint16_t FG_NET_CTRLS_VERSION = 25;
 
 
 // Define a structure containing the control parameters
@@ -26,14 +43,14 @@ class FGNetCtrls {
 
 public:
 
-    int version;                        // increment when data values change
-
     enum {
         FG_MAX_ENGINES = 4,
         FG_MAX_WHEELS = 16,
         FG_MAX_TANKS = 6
     };
 
+    uint16_t version;                   // increment when data values change
+
     // Aero controls
     double aileron;                     // -1 ... 1
     double elevator;                    // -1 ... 1
@@ -44,32 +61,33 @@ public:
     double flaps;                       //  0 ... 1
 
     // Aero control faults
-    bool flaps_power;                    //  true = power available
-    bool flap_motor_ok;
+    uint8_t flaps_power;                 // true = power available
+    uint8_t flap_motor_ok;
 
     // Engine controls
-    int num_engines;                    // number of valid engines
-    bool master_bat[FG_MAX_ENGINES];
-    bool master_alt[FG_MAX_ENGINES];
-    int magnetos[FG_MAX_ENGINES];
-    bool starter_power[FG_MAX_ENGINES];  // true = starter power
+    uint8_t num_engines;                // number of valid engines
+    uint8_t master_bat[FG_MAX_ENGINES];
+    uint8_t master_alt[FG_MAX_ENGINES];
+    uint8_t magnetos[FG_MAX_ENGINES];
+    uint8_t starter_power[FG_MAX_ENGINES];// true = starter power
     double throttle[FG_MAX_ENGINES];     //  0 ... 1
     double mixture[FG_MAX_ENGINES];      //  0 ... 1
     double condition[FG_MAX_ENGINES];    //  0 ... 1
-    bool fuel_pump_power[FG_MAX_ENGINES];// true = on
+    uint8_t fuel_pump_power[FG_MAX_ENGINES];// true = on
     double prop_advance[FG_MAX_ENGINES]; //  0 ... 1
 
     // Engine faults
-    bool engine_ok[FG_MAX_ENGINES];
-    bool mag_left_ok[FG_MAX_ENGINES];
-    bool mag_right_ok[FG_MAX_ENGINES];
-    bool spark_plugs_ok[FG_MAX_ENGINES];  // false = fouled plugs
-    int oil_press_status[FG_MAX_ENGINES]; // 0 = normal, 1 = low, 2 = full fail
-    bool fuel_pump_ok[FG_MAX_ENGINES];
+    uint8_t engine_ok[FG_MAX_ENGINES];
+    uint8_t mag_left_ok[FG_MAX_ENGINES];
+    uint8_t mag_right_ok[FG_MAX_ENGINES];
+    uint8_t spark_plugs_ok[FG_MAX_ENGINES];  // false = fouled plugs
+    uint8_t oil_press_status[FG_MAX_ENGINES];// 0 = normal, 1 = low, 2 = full fail
+    uint8_t fuel_pump_ok[FG_MAX_ENGINES];
 
     // Fuel management
-    int num_tanks;                       // number of valid tanks
-    bool fuel_selector[FG_MAX_TANKS];    // false = off, true = on
+    uint8_t num_tanks;                      // number of valid tanks
+    uint8_t fuel_selector[FG_MAX_TANKS];    // false = off, true = on
+    uint8_t cross_feed;                     // false = off, true = on
 
     // Brake controls
     double brake_left;
@@ -79,10 +97,10 @@ public:
     double brake_parking;
     
     // Landing Gear
-    bool gear_handle; // true=gear handle down; false= gear handle up
+    uint8_t gear_handle; // true=gear handle down; false= gear handle up
 
     // Switches
-    bool master_avionics;
+    uint8_t master_avionics;
 
     // wind and turbulance
     double wind_speed_kt;
@@ -98,13 +116,13 @@ public:
     double magvar;                      // local magnetic variation in degs.
 
     // hazards
-    bool icing;                          // icing status could me much
+    uint8_t icing;                       // icing status could me much
                                          // more complex but I'm
                                          // starting simple here.
 
     // simulation control
-    int speedup;                        // integer speedup multiplier
-    int freeze;                                 // 0=normal
+    uint8_t speedup;                    // integer speedup multiplier
+    uint8_t freeze;                     // 0=normal
                                         // 0x01=master
                                         // 0x02=position
                                         // 0x04=fuel
index f619b0d962ac2b3dab1eb52324736f66d7501c84..9e618da75c93adff658ad71de901408bec0d814c 100644 (file)
 #define _NET_FDM_HXX
 
 
-#ifndef __cplusplus                                                          
-# error This library requires C++
-#endif                                   
-
 #include <time.h> // time_t
 
-const int FG_NET_FDM_VERSION = 20;
+// NOTE: this file defines an external interface structure.  Due to
+// variability between platforms and architectures, we only used fixed
+// length types here.  Specifically, integer types can vary in length.
+// I am not aware of any platforms that don't use 4 bytes for float
+// and 8 bytes for double.
+
+#ifdef HAVE_STDINT_H
+# include <stdint.h>
+#elif defined( _MSC_VER ) || defined(__MINGW32__)
+typedef signed char      int8_t;
+typedef signed short     int16_t;
+typedef signed int       int32_t;
+typedef signed __int64   int64_t;
+typedef unsigned char    uint8_t;
+typedef unsigned short   uint16_t;
+typedef unsigned int     uint32_t;
+typedef unsigned __int64 uint64_t;
+#else
+# error "Port me! Platforms that don't have <stdint.h> need to define int8_t, et. al."
+#endif
+
+const uint16_t FG_NET_FDM_VERSION = 21;
 
 
 // Define a structure containing the top level flight dynamics model
@@ -29,18 +46,14 @@ class FGNetFDM {
 
 public:
 
-    int version;               // increment when data values change
-    int pad;                    // keep doubles 64-bit aligned for some
-                                // hardware platforms, such as the Sun
-                                // SPARC, which don't like misaligned
-                                // data
-
     enum {
         FG_MAX_ENGINES = 4,
         FG_MAX_WHEELS = 3,
         FG_MAX_TANKS = 4
     };
 
+    uint16_t version;          // increment when data values change
+
     // Positions
     double longitude;          // geodetic (radians)
     double latitude;           // geodetic (radians)
@@ -80,8 +93,8 @@ public:
     // Pressure
     
     // Engine status
-    int num_engines;                // Number of valid engines
-    int eng_state[FG_MAX_ENGINES];   // Engine state (off, cranking, running)
+    uint8_t num_engines;            // Number of valid engines
+    uint8_t eng_state[FG_MAX_ENGINES];// Engine state (off, cranking, running)
     float rpm[FG_MAX_ENGINES];      // Engine RPM rev/min
     float fuel_flow[FG_MAX_ENGINES]; // Fuel flow gallons/hr
     float egt[FG_MAX_ENGINES];      // Exhuast gas temp deg F
@@ -92,20 +105,21 @@ public:
     float oil_px[FG_MAX_ENGINES];    // Oil pressure psi
 
     // Consumables
-    int num_tanks;             // Max number of fuel tanks
+    uint8_t num_tanks;         // Max number of fuel tanks
     float fuel_quantity[FG_MAX_TANKS];
 
     // Gear status
-    int num_wheels;
-    bool wow[FG_MAX_WHEELS];
+    uint8_t num_wheels;
+    uint8_t wow[FG_MAX_WHEELS];
     float gear_pos[FG_MAX_WHEELS];
     float gear_steer[FG_MAX_WHEELS];
     float gear_compression[FG_MAX_WHEELS];
 
     // Environment
-    time_t cur_time;            // current unix time
-    long int warp;              // offset in seconds to unix time
-    float visibility;           // visibility in meters (for env. effects)
+    uint32_t cur_time;           // current unix time
+                                 // FIXME: make this uint64_t before 2038
+    uint32_t warp;               // offset in seconds to unix time
+    float visibility;            // visibility in meters (for env. effects)
 
     // Control surface positions (normalized values)
     float elevator;
index 80764091b965d38c8b8aa407d9515d58b906f4d4..7652ceb7d3f4d9964433c5f2726308b9f58e245c 100644 (file)
 #define _NET_GUI_HXX
 
 
-#ifndef __cplusplus                                                          
-# error This library requires C++
-#endif                                   
-
-
-const int FG_NET_GUI_VERSION = 5;
+// NOTE: this file defines an external interface structure.  Due to
+// variability between platforms and architectures, we only used fixed
+// length types here.  Specifically, integer types can vary in length.
+// I am not aware of any platforms that don't use 4 bytes for float
+// and 8 bytes for double.
+
+#ifdef HAVE_STDINT_H
+# include <stdint.h>
+#elif defined( _MSC_VER ) || defined(__MINGW32__)
+typedef signed char      int8_t;
+typedef signed short     int16_t;
+typedef signed int       int32_t;
+typedef signed __int64   int64_t;
+typedef unsigned char    uint8_t;
+typedef unsigned short   uint16_t;
+typedef unsigned int     uint32_t;
+typedef unsigned __int64 uint64_t;
+#else
+# error "Port me! Platforms that don't have <stdint.h> need to define int8_t, et. al."
+#endif
+
+const uint16_t FG_NET_GUI_VERSION = 6;
 
 
 // Define a structure containing the top level flight dynamics model
@@ -33,11 +49,7 @@ public:
         FG_MAX_TANKS = 4
     };
 
-    int version;               // increment when data values change
-    int pad;                    // keep doubles 64-bit aligned for some
-                                // hardware platforms, such as the Sun
-                                // SPARC, which don't like misaligned
-                                // data
+    uint16_t version;          // increment when data values change
 
     // Positions
     double longitude;          // geodetic (radians)
@@ -53,18 +65,19 @@ public:
     float climb_rate;          // feet per second
 
     // Consumables
-    int num_tanks;             // Max number of fuel tanks
+    uint8_t num_tanks;         // Max number of fuel tanks
     float fuel_quantity[FG_MAX_TANKS];
 
     // Environment
-    time_t cur_time;            // current unix time
-    long int warp;              // offset in seconds to unix time
+    uint32_t cur_time;          // current unix time
+                                // FIXME: make this uint64_t before 2038
+    uint32_t warp;              // offset in seconds to unix time
     float ground_elev;          // ground elev (meters)
 
     // Approach
     float tuned_freq;           // currently tuned frequency
     float nav_radial;           // target nav radial
-    int in_range;               // tuned navaid is in range?
+    uint8_t in_range;           // tuned navaid is in range?
     float dist_nm;              // distance to tuned navaid in nautical miles
     float course_deviation_deg; // degrees off target course
     float gs_deviation_deg;     // degrees off target glide slope
index 77c10a46a932d8adb18a975c4d3aee6ec5f44f1c..c91b41c487277078842191225e19349051490469 100644 (file)
@@ -284,7 +284,7 @@ static FGReplayData interpolate( double time, FGReplayData f1, FGReplayData f2 )
 
     // Gear status
     for ( i = 0; i < fdm1.num_wheels; ++i ) {
-        result.fdm.wow[i] = weight( fdm1.wow[i], fdm2.wow[i], ratio );
+        result.fdm.wow[i] = (int)(weight( fdm1.wow[i], fdm2.wow[i], ratio ));
         result.fdm.gear_pos[i]
             = weight( fdm1.gear_pos[i], fdm2.gear_pos[i], ratio );
         result.fdm.gear_steer[i]