]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/LaRCsim/ls_cockpit.h
Updates to the scenery loading infrastructure to make it more flexible,
[flightgear.git] / src / FDM / LaRCsim / ls_cockpit.h
index 0ef5d15c08ac3cfea15a8af52bc80254cc74e793..431f006fa926ceb6c14eb63c37cde6669e8a4288 100644 (file)
 
 $Header$
 $Log$
-Revision 1.1  1999/06/17 18:07:34  curt
-Initial revision
+Revision 1.3  2000/06/12 18:52:37  curt
+Added differential braking (Alex and David).
+
+Revision 1.2  1999/10/29 16:08:32  curt
+Added flaps support to c172 model.
+
+Revision 1.1.1.1  1999/06/17 18:07:34  curt
+Start of 0.7.x branch
 
 Revision 1.2  1999/04/22 18:47:25  curt
 Wrap with extern "C" { } if building with __cplusplus compiler.
@@ -82,13 +88,14 @@ extern "C" {
 
 typedef struct {
     float   long_stick, lat_stick, rudder_pedal;
+    float   flap_handle;
     float   long_trim;
     float   throttle[4];
     short   forward_trim, aft_trim, left_trim, right_trim;
     short   left_pb_on_stick, right_pb_on_stick, trig_pos_1, trig_pos_2;
     short   sb_extend, sb_retract, gear_sel_up;
     float   throttle_pct;
-    float   brake_pct;
+    float   brake_pct[2];
 } COCKPIT;
 
 extern COCKPIT cockpit_;
@@ -96,6 +103,7 @@ extern COCKPIT cockpit_;
 #define Left_button    cockpit_.left_pb_on_stick
 #define Right_button   cockpit_.right_pb_on_stick
 #define Rudder_pedal   cockpit_.rudder_pedal
+#define Flap_handle    cockpit_.flap_handle
 #define Throttle       cockpit_.throttle
 #define Throttle_pct   cockpit_.throttle_pct
 #define First_trigger  cockpit_.trig_pos_1