]> git.mxchange.org Git - flightgear.git/commitdiff
Properties:
authorcurt <curt>
Wed, 4 Oct 2000 22:22:21 +0000 (22:22 +0000)
committercurt <curt>
Wed, 4 Oct 2000 22:22:21 +0000 (22:22 +0000)
- /engines/engine0/rpm changed to read-only
- /engines/engine0/egt added (read-only)
- /controls/mixture added
- /controls/propellor-pitch added (not used for C172)

BFI:

- getEGT() added
- getMixture() and setMixture() added
- getPropAdvance() and setPropAdvance() added (= pitch)
- cleaned up reinit function a bit
- force reinit only when values are actually changed; for example,
  setting the flight model to the current flight model will not cause
  a reinit

LaRCSim:

- hook up mixture and pitch to FGControls (they were hard-coded
  before)

src/FDM/LaRCsim.cxx
src/Main/bfi.cxx
src/Main/bfi.hxx

index 0188276ef795f07e7ae83af4c487a54564c030e4..aebbdd38eb718993c6da6bf379cad2352f978c43 100644 (file)
@@ -92,7 +92,11 @@ int FGLaRCsim::update( int multiloop ) {
     eng.set_IAS( V_calibrated_kts );
     eng.set_Throttle_Lever_Pos( controls.get_throttle( 0 ) * 100.0 );
     eng.set_Propeller_Lever_Pos( 100 );
-    eng.set_Mixture_Lever_Pos( 80 );
+    if ( controls.get_mixture( 0 ) > 0.51 ) {
+       eng.set_Mixture_Lever_Pos( controls.get_mixture( 0 ) * 100.0 );
+    } else {
+       eng.set_Mixture_Lever_Pos( 51.0 );
+    }
 
     // update engine model
     eng.update();
index e026f8662ee455f720e894cbf1a121c1a383a20e..ab980d250816543d44b40bff4830f39598b702db 100644 (file)
@@ -125,7 +125,9 @@ FGBFI::init ()
 
                                // Engine
   current_properties.tieDouble("/engines/engine0/rpm",
-                              getRPM, setRPM);
+                              getRPM, 0);
+  current_properties.tieDouble("/engines/engine0/egt",
+                              getEGT, 0);
 
                                // Velocities
   current_properties.tieDouble("/velocities/airspeed",
@@ -144,6 +146,10 @@ FGBFI::init ()
                                // Controls
   current_properties.tieDouble("/controls/throttle",
                               getThrottle, setThrottle);
+  current_properties.tieDouble("/controls/mixture",
+                              getMixture, setMixture);
+  current_properties.tieDouble("/controls/propellor-pitch",
+                              getPropAdvance, setPropAdvance);
   current_properties.tieDouble("/controls/flaps",
                               getFlaps, setFlaps);
   current_properties.tieDouble("/controls/aileron",
@@ -259,16 +265,6 @@ FGBFI::reinit ()
 
   cout << "BFI: start reinit\n";
 
-//   setHeading(getHeading());
-//   setPitch(getPitch());
-//   setRoll(getRoll());
-//   setSpeedNorth(getSpeedNorth());
-//   setSpeedEast(getSpeedEast());
-//   setSpeedDown(getSpeedDown());
-//   setLatitude(getLatitude());
-//   setLongitude(getLongitude());
-//   setAltitude(getAltitude());
-
                                // TODO: add more AP stuff
   double elevator = getElevator();
   double aileron = getAileron();
@@ -371,8 +367,10 @@ FGBFI::getAircraftDir ()
 void
 FGBFI::setFlightModel (int model)
 {
-  current_options.set_flight_model(model);
-  needReinit();
+  if (getFlightModel() != model) {
+    current_options.set_flight_model(model);
+    needReinit();
+  }
 }
 
 
@@ -382,8 +380,10 @@ FGBFI::setFlightModel (int model)
 void
 FGBFI::setAircraft (const string &aircraft)
 {
-  current_options.set_aircraft(aircraft);
-  needReinit();
+  if (getAircraft() != aircraft) {
+    current_options.set_aircraft(aircraft);
+    needReinit();
+  }
 }
 
 
@@ -393,8 +393,10 @@ FGBFI::setAircraft (const string &aircraft)
 void
 FGBFI::setAircraftDir (const string &dir)
 {
-  aircraft_dir = dir;
-  needReinit();
+  if (getAircraftDir() != dir) {
+    aircraft_dir = dir;
+    needReinit();
+  }
 }
 
 
@@ -414,14 +416,16 @@ FGBFI::getTimeGMT ()
 void
 FGBFI::setTimeGMT (time_t time)
 {
+  if (getTimeGMT() != time) {
                                // FIXME: need to update lighting
                                // and solar system
-  current_options.set_time_offset(time);
-  current_options.set_time_offset_type(fgOPTIONS::FG_TIME_GMT_ABSOLUTE);
-  globals->get_time_params()->update( cur_fdm_state->get_Longitude(),
-                                     cur_fdm_state->get_Latitude(),
-                                     globals->get_warp() );
-  needReinit();
+    current_options.set_time_offset(time);
+    current_options.set_time_offset_type(fgOPTIONS::FG_TIME_GMT_ABSOLUTE);
+    globals->get_time_params()->update( cur_fdm_state->get_Longitude(),
+                                       cur_fdm_state->get_Latitude(),
+                                       globals->get_warp() );
+    needReinit();
+  }
 }
 
 
@@ -505,9 +509,11 @@ FGBFI::getLatitude ()
 void
 FGBFI::setLatitude (double latitude)
 {
-  current_options.set_lat(latitude);
-  current_aircraft.fdm_state->set_Latitude(latitude * DEG_TO_RAD);
-  needReinit();
+  if (getLatitude() != latitude) {
+    current_options.set_lat(latitude);
+    current_aircraft.fdm_state->set_Latitude(latitude * DEG_TO_RAD);
+    needReinit();
+  }
 }
 
 
@@ -527,9 +533,11 @@ FGBFI::getLongitude ()
 void
 FGBFI::setLongitude (double longitude)
 {
-  current_options.set_lon(longitude);
-  current_aircraft.fdm_state->set_Longitude(longitude * DEG_TO_RAD);
-  needReinit();
+  if (getLongitude() != longitude) {
+    current_options.set_lon(longitude);
+    current_aircraft.fdm_state->set_Longitude(longitude * DEG_TO_RAD);
+    needReinit();
+  }
 }
 
 
@@ -561,10 +569,11 @@ FGBFI::getAGL ()
 void
 FGBFI::setAltitude (double altitude)
 {
-  fgFDMForceAltitude(getFlightModel(), altitude * FEET_TO_METER);
-  current_options.set_altitude(altitude * FEET_TO_METER);
-  current_aircraft.fdm_state->set_Altitude(altitude);
-//   needReinit();
+  if (getAltitude() != altitude) {
+    fgFDMForceAltitude(getFlightModel(), altitude * FEET_TO_METER);
+    current_options.set_altitude(altitude * FEET_TO_METER);
+    current_aircraft.fdm_state->set_Altitude(altitude);
+  }
 }
 
 
@@ -600,11 +609,13 @@ FGBFI::getHeadingMag ()
 void
 FGBFI::setHeading (double heading)
 {
-  current_options.set_heading(heading);
-  current_aircraft.fdm_state->set_Euler_Angles(getRoll() * DEG_TO_RAD,
-                                              getPitch() * DEG_TO_RAD,
-                                              heading * DEG_TO_RAD);
-  needReinit();
+  if (getHeading() != heading) {
+    current_options.set_heading(heading);
+    current_aircraft.fdm_state->set_Euler_Angles(getRoll() * DEG_TO_RAD,
+                                                getPitch() * DEG_TO_RAD,
+                                                heading * DEG_TO_RAD);
+    needReinit();
+  }
 }
 
 
@@ -624,12 +635,13 @@ FGBFI::getPitch ()
 void
 FGBFI::setPitch (double pitch)
 {
-
-  current_options.set_pitch(pitch);
-  current_aircraft.fdm_state->set_Euler_Angles(getRoll() * DEG_TO_RAD,
-                                              pitch * DEG_TO_RAD,
-                                              getHeading() * DEG_TO_RAD);
-  needReinit();
+  if (getPitch() != pitch) {
+    current_options.set_pitch(pitch);
+    current_aircraft.fdm_state->set_Euler_Angles(getRoll() * DEG_TO_RAD,
+                                                pitch * DEG_TO_RAD,
+                                                getHeading() * DEG_TO_RAD);
+    needReinit();
+  }
 }
 
 
@@ -649,11 +661,13 @@ FGBFI::getRoll ()
 void
 FGBFI::setRoll (double roll)
 {
-  current_options.set_roll(roll);
-  current_aircraft.fdm_state->set_Euler_Angles(roll * DEG_TO_RAD,
-                                              getPitch() * DEG_TO_RAD,
-                                              getHeading() * DEG_TO_RAD);
-  needReinit();
+  if (getRoll() != roll) {
+    current_options.set_roll(roll);
+    current_aircraft.fdm_state->set_Euler_Angles(roll * DEG_TO_RAD,
+                                                getPitch() * DEG_TO_RAD,
+                                                getHeading() * DEG_TO_RAD);
+    needReinit();
+  }
 }
 
 
@@ -677,9 +691,18 @@ FGBFI::getRPM ()
 void
 FGBFI::setRPM (double rpm)
 {
-  if ( current_aircraft.fdm_state->get_engine(0) != NULL ) {
-      current_aircraft.fdm_state->get_engine(0)->set_RPM( rpm );
-  }
+  if (getRPM() != rpm)
+    current_aircraft.fdm_state->get_engine(0)->set_RPM( rpm );
+}
+
+
+/**
+ * Return the current engine0 EGT.
+ */
+double
+FGBFI::getEGT ()
+{
+  return current_aircraft.fdm_state->get_engine(0)->get_EGT();
 }
 
 
@@ -737,11 +760,13 @@ FGBFI::getSpeedNorth ()
 void
 FGBFI::setSpeedNorth (double speed)
 {
-  current_options.set_uBody(speed);
-  current_aircraft.fdm_state->set_Velocities_Local(speed,
-                                                  getSpeedEast(),
-                                                  getSpeedDown());
-  needReinit();
+  if (getSpeedNorth() != speed) {
+    current_options.set_uBody(speed);
+    current_aircraft.fdm_state->set_Velocities_Local(speed,
+                                                    getSpeedEast(),
+                                                    getSpeedDown());
+    needReinit();
+  }
 }
 
 
@@ -761,11 +786,13 @@ FGBFI::getSpeedEast ()
 void
 FGBFI::setSpeedEast (double speed)
 {
-  current_options.set_vBody(speed);
-  current_aircraft.fdm_state->set_Velocities_Local(getSpeedNorth(),
-                                                  speed,
-                                                  getSpeedDown());
-  needReinit();
+  if (getSpeedEast() != speed) {
+    current_options.set_vBody(speed);
+    current_aircraft.fdm_state->set_Velocities_Local(getSpeedNorth(),
+                                                    speed,
+                                                    getSpeedDown());
+    needReinit();
+  }
 }
 
 
@@ -785,11 +812,13 @@ FGBFI::getSpeedDown ()
 void
 FGBFI::setSpeedDown (double speed)
 {
-  current_options.set_wBody(speed);
-  current_aircraft.fdm_state->set_Velocities_Local(getSpeedNorth(),
-                                                  getSpeedEast(),
-                                                  speed);
-  needReinit();
+  if (getSpeedDown() != speed) {
+    current_options.set_wBody(speed);
+    current_aircraft.fdm_state->set_Velocities_Local(getSpeedNorth(),
+                                                    getSpeedEast(),
+                                                    speed);
+    needReinit();
+  }
 }
 
 
@@ -805,7 +834,7 @@ FGBFI::setSpeedDown (double speed)
 double
 FGBFI::getThrottle ()
 {
-                               // FIXME: add throttle selector
+                               // FIXME: add engine selector
   return controls.get_throttle(0);
 }
 
@@ -816,12 +845,55 @@ FGBFI::getThrottle ()
 void
 FGBFI::setThrottle (double throttle)
 {
-                               // FIXME: allow throttle selection
-                               // FIXME: clamp?
+                               // FIXME: allow engine selection
   controls.set_throttle(0, throttle);
 }
 
 
+/**
+ * Get the fuel mixture setting, from 0.0 (none) to 1.0 (full).
+ */
+double
+FGBFI::getMixture ()
+{
+                               // FIXME: add engine selector
+  return controls.get_mixture(0);
+}
+
+
+/**
+ * Set the fuel mixture, from 0.0 (none) to 1.0 (full).
+ */
+void
+FGBFI::setMixture (double mixture)
+{
+                               // FIXME: allow engine selection
+  controls.set_mixture(0, mixture);
+}
+
+
+/**
+ * Get the propellor pitch setting, from 0.0 (none) to 1.0 (full).
+ */
+double
+FGBFI::getPropAdvance ()
+{
+                               // FIXME: add engine selector
+  return controls.get_prop_advance(0);
+}
+
+
+/**
+ * Set the propellor pitch, from 0.0 (none) to 1.0 (full).
+ */
+void
+FGBFI::setPropAdvance (double pitch)
+{
+                               // FIXME: allow engine selection
+  controls.set_prop_advance(0, pitch);
+}
+
+
 /**
  * Get the flaps setting, from 0.0 (none) to 1.0 (full).
  */
@@ -1562,9 +1634,11 @@ FGBFI::setVisibility (double visibility)
 void
 FGBFI::setClouds (bool clouds)
 {
-  cout << "Set clouds to " << clouds << endl;
-  current_options.set_clouds(clouds);
-  needReinit();
+  if (getClouds() != clouds) {
+    cout << "Set clouds to " << clouds << endl;
+    current_options.set_clouds(clouds);
+    needReinit();
+  }
 }
 
 
@@ -1574,8 +1648,10 @@ FGBFI::setClouds (bool clouds)
 void
 FGBFI::setCloudsASL (double cloudsASL)
 {
-  current_options.set_clouds_asl(cloudsASL);
-  needReinit();
+  if (getCloudsASL() != cloudsASL) {
+    current_options.set_clouds_asl(cloudsASL);
+    needReinit();
+  }
 }
 
 
index bc3c9d674aae18e0531440742bfd6f74274d3b6c..75f617485d815dd33d5c7490bcf36b8ab0c64749 100644 (file)
@@ -93,6 +93,7 @@ public:
                                // Engine
   static double getRPM ();
   static void setRPM ( double rpm );
+  static double getEGT ();
 
                                // Velocities
   static double getAirspeed ();
@@ -109,6 +110,8 @@ public:
 
                                // Controls
   static double getThrottle ();
+  static double getMixture ();
+  static double getPropAdvance ();
   static double getFlaps ();
   static double getAileron ();
   static double getRudder ();
@@ -120,6 +123,8 @@ public:
   static double getCenterBrake ();
 
   static void setThrottle (double throttle);
+  static void setMixture (double mixture);
+  static void setPropAdvance (double pitch);
   static void setFlaps (double flaps);
   static void setAileron (double aileron);
   static void setRudder (double rudder);