]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/JSBSim/FGControls.cpp
builddir -> srcdir so builds can be done outside the master source directory.
[flightgear.git] / src / FDM / JSBSim / FGControls.cpp
index de2f140f55d2aaa4306e3465bdb92355c8ce729f..b4448af185536e6d18fae0263a31cf1518418743 100644 (file)
@@ -35,13 +35,13 @@ FGControls::FGControls() :
     elevator_trim( 1.969572E-03 ),
     rudder( 0.0 )
 {
-    for ( int engine = 0; engine < MAX_ENGINES; engine++ ) {
-       throttle[engine] = 0.0;
-    }
+  for ( int engine = 0; engine < MAX_ENGINES; engine++ ) {
+    throttle[engine] = 0.0;
+  }
 
-    for ( int wheel = 0; wheel < MAX_WHEELS; wheel++ ) {
-        brake[wheel] = 0.0;
-    }
+  for ( int wheel = 0; wheel < MAX_WHEELS; wheel++ ) {
+    brake[wheel] = 0.0;
+  }
 }
 
 
@@ -51,8 +51,31 @@ FGControls::~FGControls() {
 
 
 // $Log$
-// Revision 1.5  1999/08/17 19:18:11  curt
-// Updates from Jon.
+// Revision 1.14  2000/07/24 15:26:06  curt
+// Sync the JSBSim code with the Jon & Tony's devel version.
+// Renamed JSBsim -> the official JSBSim.
+//
+// Revision 1.3  2000/04/26 10:55:57  jsb
+// Made changes as required by Curt to install JSBSim into FGFS
+//
+// Revision 1.8  2000/04/24 21:49:06  curt
+// Updated JSBsim code.
+//
+// Revision 1.2  2000/04/15 13:16:54  jsb
+// In good shape, now, changes to Coefficient and aircraft, mostly, with new commands added and inputs and outputs separated.
+//
+// Revision 1.7  1999/12/30 17:01:59  curt
+// Here is a wrap-up of the latest changes to JSBSim. It still is flaky, but
+// much less so due to returning the aero reference point stuff to the config
+// files. Don't know what happened there ...
+//
+// Additionally, I have added a new field to the config file: CFG_VERSION. A
+// version number, currently 1.1, is assigned to the config file and a matching
+// definition is found in FGDefs.h. The two need to match. Tony has also added
+// code into FGAircraft.cpp to handle if aero reference point is not specified.
+//
+// Revision 1.6  1999/09/07 21:15:45  curt
+// Updates to get engine working.
 //
 // Revision 1.1  1999/02/13 01:12:03  curt
 // Initial Revision.