]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/bfi.cxx
Added support for managing fov via the property manager so the --fov= option
[flightgear.git] / src / Main / bfi.cxx
index e4fb0fb5e3d5ff08ec79f0d8aae6749c05855b9c..63687fea0d9cc513f6d956a59fd5e9543fbd1c6d 100644 (file)
@@ -4,6 +4,8 @@
 //
 // Copyright (C) 2000  David Megginson - david@megginson.com
 //
+// THIS CLASS IS DEPRECATED; USE THE PROPERTY MANAGER INSTEAD.
+//
 // This program is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License as
 // published by the Free Software Foundation; either version 2 of the
 //
 // $Id$
 
-
-#ifdef HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
-#if defined( FG_HAVE_NATIVE_SGI_COMPILERS )
-#  include <iostream.h>
-#else
-#  include <iostream>
-#endif
+#include "fgfs.hxx"
 
 #include <simgear/constants.h>
 #include <simgear/debug/logstream.hxx>
@@ -48,6 +41,7 @@
 #include <Time/sunpos.hxx>
 #include <Time/tmp.hxx>
 #include <Cockpit/radiostack.hxx>
+#include <Cockpit/panel.hxx>
 #ifndef FG_OLD_WEATHER
 #  include <WeatherCM/FGLocalWeatherDatabase.h>
 #else
@@ -55,9 +49,8 @@
 #endif
 
 #include "globals.hxx"
-#include "save.hxx"
 #include "fg_init.hxx"
-#include <simgear/misc/props.hxx>
+#include "fg_props.hxx"
 
 FG_USING_NAMESPACE(std);
 
@@ -70,224 +63,36 @@ FG_USING_NAMESPACE(std);
 // Static variables.
 ////////////////////////////////////////////////////////////////////////
 
-bool FGBFI::_needReinit = false;
-
-
-\f
-////////////////////////////////////////////////////////////////////////
-// Local functions
-////////////////////////////////////////////////////////////////////////
-
+                               // Yech -- not thread-safe, etc. etc.
+static bool _needReinit = false;
+static string _temp;
 
-/**
- * Initialize the BFI by binding its functions to properties.
- *
- * TODO: perhaps these should migrate into the individual modules
- * (i.e. they should register themselves).
- */
-void
-FGBFI::init ()
+static inline void needReinit ()
 {
-  FG_LOG(FG_GENERAL, FG_INFO, "Starting BFI init");
-                               // Simulation
-  current_properties.tieInt("/sim/flight-model",
-                           getFlightModel, setFlightModel);
-//   current_properties.tieString("/sim/aircraft",
-//                            getAircraft, setAircraft);
-  // TODO: timeGMT
-  current_properties.tieString("/sim/time/gmt-string",
-                              getGMTString, 0);
-  current_properties.tieBool("/sim/hud/visibility",
-                            getHUDVisible, setHUDVisible);
-  current_properties.tieBool("/sim/panel/visibility",
-                            getPanelVisible, setPanelVisible);
-
-                               // Position
-  current_properties.tieString("/position/airport-id",
-                               getTargetAirport, setTargetAirport);
-  current_properties.tieDouble("/position/latitude",
-                               getLatitude, setLatitude);
-  current_properties.tieDouble("/position/longitude",
-                              getLongitude, setLongitude);
-  current_properties.tieDouble("/position/altitude",
-                              // getAltitude, setAltitude);
-                              getAltitude, setAltitude, false);
-  current_properties.tieDouble("/position/altitude-agl",
-                              getAGL, 0);
-
-                               // Orientation
-  current_properties.tieDouble("/orientation/heading",
-                              getHeading, setHeading);
-  current_properties.tieDouble("/orientation/heading-magnetic",
-                              getHeadingMag, 0);
-  current_properties.tieDouble("/orientation/pitch",
-                              getPitch, setPitch);
-  current_properties.tieDouble("/orientation/roll",
-                              getRoll, setRoll);
-
-                               // Engine
-  current_properties.tieDouble("/engines/engine0/rpm",
-                              getRPM, 0);
-  current_properties.tieDouble("/engines/engine0/egt",
-                              getEGT, 0);
-
-                               // Velocities
-  current_properties.tieDouble("/velocities/airspeed",
-                              getAirspeed, 0);
-  current_properties.tieDouble("/velocities/side-slip",
-                              getSideSlip, 0);
-  current_properties.tieDouble("/velocities/vertical-speed",
-                              getVerticalSpeed, 0);
-  current_properties.tieDouble("/velocities/speed-north",
-                              getSpeedNorth, setSpeedNorth);
-  current_properties.tieDouble("/velocities/speed-east",
-                              getSpeedEast, setSpeedEast);
-  current_properties.tieDouble("/velocities/speed-down",
-                              getSpeedDown, setSpeedDown);
-
-                               // 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",
-                              getAileron, setAileron);
-  current_properties.tieDouble("/controls/rudder",
-                              getRudder, setRudder);
-  current_properties.tieDouble("/controls/elevator",
-                              getElevator, setElevator);
-  current_properties.tieDouble("/controls/elevator-trim",
-                              getElevatorTrim, setElevatorTrim);
-  current_properties.tieDouble("/controls/brakes/all",
-                              getBrakes, setBrakes);
-  current_properties.tieDouble("/controls/brakes/left",
-                              getLeftBrake, setLeftBrake);
-  current_properties.tieDouble("/controls/brakes/right",
-                              getRightBrake, setRightBrake);
-  current_properties.tieDouble("/controls/brakes/center",
-                              getRightBrake, setCenterBrake);
-
-                               // Autopilot
-  current_properties.tieBool("/autopilot/locks/altitude",
-                            getAPAltitudeLock, setAPAltitudeLock);
-  current_properties.tieDouble("/autopilot/settings/altitude",
-                              getAPAltitude, setAPAltitude);
-  current_properties.tieBool("/autopilot/locks/heading",
-                            getAPHeadingLock, setAPHeadingLock);
-  current_properties.tieDouble("/autopilot/settings/heading",
-                              getAPHeading, setAPHeading);
-  current_properties.tieDouble("/autopilot/settings/heading-magnetic",
-                              getAPHeadingMag, setAPHeadingMag);
-  current_properties.tieBool("/autopilot/locks/nav1",
-                            getAPNAV1Lock, setAPNAV1Lock);
-
-                               // Radio navigation
-  current_properties.tieDouble("/radios/nav1/frequencies/selected",
-                              getNAV1Freq, setNAV1Freq);
-  current_properties.tieDouble("/radios/nav1/frequencies/standby",
-                              getNAV1AltFreq, setNAV1AltFreq);
-  current_properties.tieDouble("/radios/nav1/radials/actual",
-                              getNAV1Radial, 0);
-  current_properties.tieDouble("/radios/nav1/radials/selected",
-                              getNAV1SelRadial, setNAV1SelRadial);
-  current_properties.tieDouble("/radios/nav1/dme/distance",
-                              getNAV1DistDME, 0);
-  current_properties.tieBool("/radios/nav1/to-flag",
-                            getNAV1TO, 0);
-  current_properties.tieBool("/radios/nav1/from-flag",
-                            getNAV1FROM, 0);
-  current_properties.tieBool("/radios/nav1/in-range",
-                            getNAV1InRange, 0);
-  current_properties.tieBool("/radios/nav1/dme/in-range",
-                            getNAV1DMEInRange, 0);
-                              
-  current_properties.tieDouble("/radios/nav2/frequencies/selected",
-                              getNAV2Freq, setNAV2Freq);
-  current_properties.tieDouble("/radios/nav2/frequencies/standby",
-                              getNAV2AltFreq, setNAV2AltFreq);
-  current_properties.tieDouble("/radios/nav2/radials/actual",
-                              getNAV2Radial, 0);
-  current_properties.tieDouble("/radios/nav2/radials/selected",
-                              getNAV2SelRadial, setNAV2SelRadial);
-  current_properties.tieDouble("/radios/nav2/dme/distance",
-                              getNAV2DistDME, 0);
-  current_properties.tieBool("/radios/nav2/to-flag",
-                            getNAV2TO, 0);
-  current_properties.tieBool("/radios/nav2/from-flag",
-                            getNAV2FROM, 0);
-  current_properties.tieBool("/radios/nav2/in-range",
-                            getNAV2InRange, 0);
-  current_properties.tieBool("/radios/nav2/dme/in-range",
-                            getNAV2DMEInRange, 0);
-
-  current_properties.tieDouble("/radios/adf/frequencies/selected",
-                              getADFFreq, setADFFreq);
-  current_properties.tieDouble("/radios/adf/frequencies/standby",
-                              getADFAltFreq, setADFAltFreq);
-  current_properties.tieDouble("/radios/adf/rotation",
-                              getADFRotation, setADFRotation);
-
-  current_properties.tieDouble("/environment/visibility",
-                              getVisibility, setVisibility);
-
-  _needReinit = false;
-
-  FG_LOG(FG_GENERAL, FG_INFO, "Ending BFI init");
-}
-
-
-/**
- * Reinitialize FGFS if required.
- *
- * Some changes (especially those in aircraft position) require that
- * FGFS be reinitialized afterwards.  Rather than reinitialize after
- * every change, the setter methods simply set a flag so that there
- * can be a single reinit at the end of the frame.
- */
-void
-FGBFI::update ()
-{
-  if (_needReinit) {
-    reinit();
-  }
+  _needReinit = true;
 }
 
 
 /**
  * Reinitialize FGFS to use the new BFI settings.
  */
-void
-FGBFI::reinit ()
+static inline void
+reinit ()
 {
                                // Save the state of everything
                                // that's going to get clobbered
                                // when we reinit the subsystems.
 
-  cout << "BFI: start reinit\n";
+  FG_LOG(FG_GENERAL, FG_INFO, "Starting BFI reinit");
 
                                // TODO: add more AP stuff
-  double elevator = getElevator();
-  double aileron = getAileron();
-  double rudder = getRudder();
-  double throttle = getThrottle();
-  double elevator_trim = getElevatorTrim();
-  double flaps = getFlaps();
-  double brake = getBrakes();
-  bool apHeadingLock = getAPHeadingLock();
-  double apHeadingMag = getAPHeadingMag();
-  bool apAltitudeLock = getAPAltitudeLock();
-  double apAltitude = getAPAltitude();
-  const string &targetAirport = getTargetAirport();
-  bool gpsLock = getGPSLock();
-  double gpsLatitude = getGPSTargetLatitude();
-  double gpsLongitude = getGPSTargetLongitude();
-
-  setTargetAirport("");
-  cout << "Target airport is " << globals->get_options()->get_airport_id() << endl;
+  bool apHeadingLock = FGBFI::getAPHeadingLock();
+  double apHeadingMag = FGBFI::getAPHeadingMag();
+  bool apAltitudeLock = FGBFI::getAPAltitudeLock();
+  double apAltitude = FGBFI::getAPAltitude();
+  bool gpsLock = FGBFI::getGPSLock();
+  // double gpsLatitude = FGBFI::getGPSTargetLatitude();
+  // double gpsLongitude = FGBFI::getGPSTargetLongitude();
 
   fgReInitSubsystems();
 
@@ -300,92 +105,151 @@ FGBFI::reinit ()
   cur_light_params.Update();
   fgUpdateLocalTime();
   fgUpdateWeatherDatabase();
-  fgRadioSearch();
+  current_radiostack->search();
 
                                // Restore all of the old states.
-  setElevator(elevator);
-  setAileron(aileron);
-  setRudder(rudder);
-  setThrottle(throttle);
-  setElevatorTrim(elevator_trim);
-  setFlaps(flaps);
-  setBrakes(brake);
-  setAPHeadingLock(apHeadingLock);
-  setAPHeadingMag(apHeadingMag);
-  setAPAltitudeLock(apAltitudeLock);
-  setAPAltitude(apAltitude);
-  setTargetAirport(targetAirport);
-  setGPSLock(gpsLock);
+  FGBFI::setAPHeadingLock(apHeadingLock);
+  FGBFI::setAPHeadingMag(apHeadingMag);
+  FGBFI::setAPAltitudeLock(apAltitudeLock);
+  FGBFI::setAPAltitude(apAltitude);
+  FGBFI::setGPSLock(gpsLock);
 
   _needReinit = false;
 
-  cout << "BFI: end reinit\n";
+  FG_LOG(FG_GENERAL, FG_INFO, "Ending BFI reinit");
+}
+
+// BEGIN: kludge
+// Allow the view to be set from two axes (i.e. a joystick hat)
+// This needs to be in FGViewer itself, somehow.
+static double axisLong = 0.0;
+static double axisLat = 0.0;
+
+static inline void
+_set_view_from_axes ()
+{
+                               // Take no action when hat is centered
+  if (axisLong == 0 && axisLat == 0)
+    return;
+
+  double viewDir = 0;
+
+  if (axisLong < 0) {          // Longitudinal axis forward
+    if (axisLat < 0)
+      viewDir = 45;
+    else if (axisLat > 0)
+      viewDir = 315;
+    else
+      viewDir = 0;
+  } else if (axisLong > 0) {   // Longitudinal axis backward
+    if (axisLat < 0)
+      viewDir = 135;
+    else if (axisLat > 0)
+      viewDir = 225;
+    else
+      viewDir = 180;
+  } else {                     // Longitudinal axis neutral
+    if (axisLat < 0)
+      viewDir = 90;
+    else
+      viewDir = 270;
+  }
+
+  globals->get_current_view()->set_goal_view_offset(viewDir*DEG_TO_RAD);
+//   globals->get_current_view()->set_view_offset(viewDir*DEG_TO_RAD);
 }
 
+// END: kludge
+
 
 \f
 ////////////////////////////////////////////////////////////////////////
-// Simulation.
+// Local functions
 ////////////////////////////////////////////////////////////////////////
 
-
 /**
- * Return the flight model as an integer.
+ * Initialize the BFI by binding its functions to properties.
  *
- * TODO: use a string instead.
+ * TODO: perhaps these should migrate into the individual modules
+ * (i.e. they should register themselves).
  */
-int
-FGBFI::getFlightModel ()
+void
+FGBFI::init ()
 {
-  return globals->get_options()->get_flight_model();
-}
+  FG_LOG(FG_GENERAL, FG_INFO, "Starting BFI init");
 
+                               // Simulation
+  fgTie("/sim/aircraft-dir", getAircraftDir, setAircraftDir);
+  fgTie("/sim/time/gmt", getDateString, setDateString);
+  fgTie("/sim/time/gmt-string", getGMTString);
 
-/**
- * Return the current aircraft as a string.
- */
-const string
-FGBFI::getAircraft ()
-{
-  return globals->get_options()->get_aircraft();
-}
+                               // Orientation
+  fgTie("/orientation/heading-magnetic", getHeadingMag);
 
+                               // Engine
+  fgTie("/engines/engine0/rpm", getRPM);
+  fgTie("/engines/engine0/egt", getEGT);
+  fgTie("/engines/engine0/cht", getCHT);
+  fgTie("/engines/engine0/mp", getMP);
 
-/**
- * Return the current aircraft directory (UIUC) as a string.
- */
-const string
-FGBFI::getAircraftDir ()
-{
-  return aircraft_dir;
+                               // Autopilot
+  fgTie("/autopilot/locks/altitude", getAPAltitudeLock, setAPAltitudeLock);
+  fgTie("/autopilot/settings/altitude", getAPAltitude, setAPAltitude);
+  fgTie("/autopilot/locks/heading", getAPHeadingLock, setAPHeadingLock);
+  fgTie("/autopilot/settings/heading", getAPHeading, setAPHeading);
+  fgTie("/autopilot/settings/heading-dg", getAPHeadingDG, setAPHeadingDG);
+  fgTie("/autopilot/settings/heading-magnetic",
+             getAPHeadingMag, setAPHeadingMag);
+  fgTie("/autopilot/locks/nav1", getAPNAV1Lock, setAPNAV1Lock);
+
+                               // Weather
+  fgTie("/environment/visibility", getVisibility, setVisibility);
+  fgTie("/environment/wind-north", getWindNorth, setWindNorth);
+  fgTie("/environment/wind-east", getWindEast, setWindEast);
+  fgTie("/environment/wind-down", getWindDown, setWindDown);
+
+                               // View
+  fgTie("/sim/field-of-view", getFOV, setFOV);
+  fgTie("/sim/view/axes/long", (double(*)())0, setViewAxisLong);
+  fgTie("/sim/view/axes/lat", (double(*)())0, setViewAxisLat);
+
+  _needReinit = false;
+
+  FG_LOG(FG_GENERAL, FG_INFO, "Ending BFI init");
 }
 
 
 /**
- * Set the flight model as an integer.
+ * Reinitialize FGFS if required.
  *
- * TODO: use a string instead.
+ * Some changes (especially those in aircraft position) require that
+ * FGFS be reinitialized afterwards.  Rather than reinitialize after
+ * every change, the setter methods simply set a flag so that there
+ * can be a single reinit at the end of the frame.
  */
 void
-FGBFI::setFlightModel (int model)
+FGBFI::update ()
 {
-  if (getFlightModel() != model) {
-    globals->get_options()->set_flight_model(model);
-    needReinit();
+  _set_view_from_axes();
+  if (_needReinit) {
+    reinit();
   }
 }
 
 
+\f
+////////////////////////////////////////////////////////////////////////
+// Simulation.
+////////////////////////////////////////////////////////////////////////
+
+
 /**
- * Set the current aircraft.
+ * Return the current aircraft directory (UIUC) as a string.
  */
-void
-FGBFI::setAircraft (const string &aircraft)
+string 
+FGBFI::getAircraftDir ()
 {
-  if (getAircraft() != aircraft) {
-    globals->get_options()->set_aircraft(aircraft);
-    needReinit();
-  }
+  return aircraft_dir;
 }
 
 
@@ -393,7 +257,7 @@ FGBFI::setAircraft (const string &aircraft)
  * Set the current aircraft directory (UIUC).
  */
 void
-FGBFI::setAircraftDir (const string &dir)
+FGBFI::setAircraftDir (string dir)
 {
   if (getAircraftDir() != dir) {
     aircraft_dir = dir;
@@ -405,10 +269,17 @@ FGBFI::setAircraftDir (const string &dir)
 /**
  * Return the current Zulu time.
  */
-time_t
-FGBFI::getTimeGMT ()
+string 
+FGBFI::getDateString ()
 {
-  return globals->get_time_params()->get_cur_time();
+  string out;
+  char buf[64];
+  struct tm * t = globals->get_time_params()->getGmt();
+  sprintf(buf, "%.4d-%.2d-%.2dT%.2d:%.2d:%.2d",
+         t->tm_year + 1900, t->tm_mon + 1, t->tm_mday,
+         t->tm_hour, t->tm_min, t->tm_sec);
+  out = buf;
+  return out;
 }
 
 
@@ -416,28 +287,56 @@ FGBFI::getTimeGMT ()
  * Set the current Zulu time.
  */
 void
-FGBFI::setTimeGMT (time_t time)
-{
-  if (getTimeGMT() != time) {
-                               // FIXME: need to update lighting
-                               // and solar system
-    globals->get_options()->set_time_offset(time);
-    globals->get_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();
+FGBFI::setDateString (string date_string)
+// FGBFI::setTimeGMT (time_t time)
+{
+  SGTime * st = globals->get_time_params();
+  struct tm * current_time = st->getGmt();
+  struct tm new_time;
+
+                               // Scan for basic ISO format
+                               // YYYY-MM-DDTHH:MM:SS
+  int ret = sscanf(date_string.c_str(), "%d-%d-%dT%d:%d:%d",
+                  &(new_time.tm_year), &(new_time.tm_mon),
+                  &(new_time.tm_mday), &(new_time.tm_hour),
+                  &(new_time.tm_min), &(new_time.tm_sec));
+
+                               // Be pretty picky about this, so
+                               // that strange things don't happen
+                               // if the save file has been edited
+                               // by hand.
+  if (ret != 6) {
+    FG_LOG(FG_INPUT, FG_ALERT, "Date/time string " << date_string
+          << " not in YYYY-MM-DDTHH:MM:SS format; skipped");
+    return;
   }
+
+                               // OK, it looks like we got six
+                               // values, one way or another.
+  new_time.tm_year -= 1900;
+  new_time.tm_mon -= 1;
+
+                               // Now, tell flight gear to use
+                               // the new time.  This was far
+                               // too difficult, by the way.
+  long int warp =
+    mktime(&new_time) - mktime(current_time) + globals->get_warp();
+  double lon = current_aircraft.fdm_state->get_Longitude();
+  double lat = current_aircraft.fdm_state->get_Latitude();
+  double alt = current_aircraft.fdm_state->get_Altitude() * FEET_TO_METER;
+  globals->set_warp(warp);
+  st->update(lon, lat, warp);
+  fgUpdateSkyAndLightingParams();
 }
 
 
 /**
  * Return the GMT as a string.
  */
-const string &
+string 
 FGBFI::getGMTString ()
 {
-  static string out;           // FIXME: not thread-safe
+  string out;
   char buf[16];
   struct tm * t = globals->get_time_params()->getGmt();
   sprintf(buf, " %.2d:%.2d:%.2d",
@@ -447,48 +346,6 @@ FGBFI::getGMTString ()
 }
 
 
-/**
- * Return true if the HUD is visible.
- */
-bool
-FGBFI::getHUDVisible ()
-{
-  return globals->get_options()->get_hud_status();
-}
-
-
-/**
- * Ensure that the HUD is visible or hidden.
- */
-void
-FGBFI::setHUDVisible (bool visible)
-{
-  globals->get_options()->set_hud_status(visible);
-}
-
-
-/**
- * Return true if the 2D panel is visible.
- */
-bool
-FGBFI::getPanelVisible ()
-{
-  return globals->get_options()->get_panel_status();
-}
-
-
-/**
- * Ensure that the 2D panel is visible or hidden.
- */
-void
-FGBFI::setPanelVisible (bool visible)
-{
-  if (globals->get_options()->get_panel_status() != visible) {
-    globals->get_options()->toggle_panel();
-  }
-}
-
-
 \f
 ////////////////////////////////////////////////////////////////////////
 // Position
@@ -511,11 +368,7 @@ FGBFI::getLatitude ()
 void
 FGBFI::setLatitude (double latitude)
 {
-  if (getLatitude() != latitude) {
-    globals->get_options()->set_lat(latitude);
-    current_aircraft.fdm_state->set_Latitude(latitude * DEG_TO_RAD);
-    needReinit();
-  }
+  current_aircraft.fdm_state->set_Latitude(latitude * DEG_TO_RAD);
 }
 
 
@@ -535,11 +388,7 @@ FGBFI::getLongitude ()
 void
 FGBFI::setLongitude (double longitude)
 {
-  if (getLongitude() != longitude) {
-    globals->get_options()->set_lon(longitude);
-    current_aircraft.fdm_state->set_Longitude(longitude * DEG_TO_RAD);
-    needReinit();
-  }
+  current_aircraft.fdm_state->set_Longitude(longitude * DEG_TO_RAD);
 }
 
 
@@ -571,11 +420,7 @@ FGBFI::getAGL ()
 void
 FGBFI::setAltitude (double altitude)
 {
-  if (getAltitude() != altitude) {
-    fgFDMForceAltitude(getFlightModel(), altitude);
-    globals->get_options()->set_altitude(altitude);
-    current_aircraft.fdm_state->set_Altitude(altitude);
-  }
+  current_aircraft.fdm_state->set_Altitude(altitude);
 }
 
 
@@ -611,13 +456,9 @@ FGBFI::getHeadingMag ()
 void
 FGBFI::setHeading (double heading)
 {
-  if (getHeading() != heading) {
-    globals->get_options()->set_heading(heading);
-    current_aircraft.fdm_state->set_Euler_Angles(getRoll() * DEG_TO_RAD,
-                                                getPitch() * DEG_TO_RAD,
-                                                heading * DEG_TO_RAD);
-    needReinit();
-  }
+  FGInterface * fdm = current_aircraft.fdm_state;
+  fdm->set_Euler_Angles(fdm->get_Phi(), fdm->get_Theta(),
+                       heading * DEG_TO_RAD);
 }
 
 
@@ -637,13 +478,8 @@ FGBFI::getPitch ()
 void
 FGBFI::setPitch (double pitch)
 {
-  if (getPitch() != pitch) {
-    globals->get_options()->set_pitch(pitch);
-    current_aircraft.fdm_state->set_Euler_Angles(getRoll() * DEG_TO_RAD,
-                                                pitch * DEG_TO_RAD,
-                                                getHeading() * DEG_TO_RAD);
-    needReinit();
-  }
+  FGInterface * fdm = current_aircraft.fdm_state;
+  fdm->set_Euler_Angles(fdm->get_Phi(), pitch * DEG_TO_RAD, fdm->get_Psi());
 }
 
 
@@ -663,13 +499,8 @@ FGBFI::getRoll ()
 void
 FGBFI::setRoll (double roll)
 {
-  if (getRoll() != roll) {
-    globals->get_options()->set_roll(roll);
-    current_aircraft.fdm_state->set_Euler_Angles(roll * DEG_TO_RAD,
-                                                getPitch() * DEG_TO_RAD,
-                                                getHeading() * DEG_TO_RAD);
-    needReinit();
-  }
+  FGInterface * fdm = current_aircraft.fdm_state;
+  fdm->set_Euler_Angles(roll * DEG_TO_RAD, fdm->get_Theta(), fdm->get_Psi());
 }
 
 
@@ -709,6 +540,36 @@ FGBFI::getEGT ()
 {
   if ( current_aircraft.fdm_state->get_engine(0) != NULL ) {
       return current_aircraft.fdm_state->get_engine(0)->get_EGT();
+  } else {
+      return 0.0;
+  }
+}
+
+
+/**
+ * Return the current engine0 CHT.
+ */
+double
+FGBFI::getCHT ()
+{
+  if ( current_aircraft.fdm_state->get_engine(0) != NULL ) {
+      return current_aircraft.fdm_state->get_engine(0)->get_CHT();
+  } else {
+      return 0.0;
+  }
+}
+
+
+/**
+ * Return the current engine0 CHT.
+ */
+double
+FGBFI::getMP ()
+{
+  if ( current_aircraft.fdm_state->get_engine(0) != NULL ) {
+      return current_aircraft.fdm_state->get_engine(0)->get_Manifold_Pressure();
+  } else {
+      return 0.0;
   }
 }
 
@@ -730,6 +591,16 @@ FGBFI::getAirspeed ()
 }
 
 
+/**
+ * Set the calibrated airspeed in knots.
+ */
+void
+FGBFI::setAirspeed (double speed)
+{
+  current_aircraft.fdm_state->set_V_calibrated_kts(speed);
+}
+
+
 /**
  * Return the current sideslip (FIXME: units unknown).
  */
@@ -761,19 +632,15 @@ FGBFI::getSpeedNorth ()
 }
 
 
-/**
- * Set the current north velocity (units??).
- */
-void
-FGBFI::setSpeedNorth (double speed)
-{
-  if (getSpeedNorth() != speed) {
-    current_aircraft.fdm_state->set_Velocities_Local(speed,
-                                                    getSpeedEast(),
-                                                    getSpeedDown());
-    needReinit();
-  }
-}
+// /**
+//  * Set the current north velocity (units??).
+//  */
+// void
+// FGBFI::setSpeedNorth (double speed)
+// {
+//   FGInterface * fdm = current_aircraft.fdm_state;
+// //   fdm->set_Velocities_Local(speed, fdm->get_V_east(), fdm->get_V_down());
+// }
 
 
 /**
@@ -786,19 +653,15 @@ FGBFI::getSpeedEast ()
 }
 
 
-/**
- * Set the current east velocity (units??).
- */
-void
-FGBFI::setSpeedEast (double speed)
-{
-  if (getSpeedEast() != speed) {
-    current_aircraft.fdm_state->set_Velocities_Local(getSpeedNorth(),
-                                                    speed,
-                                                    getSpeedDown());
-    needReinit();
-  }
-}
+// /**
+//  * Set the current east velocity (units??).
+//  */
+// void
+// FGBFI::setSpeedEast (double speed)
+// {
+//   FGInterface * fdm = current_aircraft.fdm_state;
+// //   fdm->set_Velocities_Local(fdm->get_V_north(), speed, fdm->get_V_down());
+// }
 
 
 /**
@@ -811,19 +674,15 @@ FGBFI::getSpeedDown ()
 }
 
 
-/**
- * Set the current down velocity (units??).
- */
-void
-FGBFI::setSpeedDown (double speed)
-{
-  if (getSpeedDown() != speed) {
-    current_aircraft.fdm_state->set_Velocities_Local(getSpeedNorth(),
-                                                    getSpeedEast(),
-                                                    speed);
-    needReinit();
-  }
-}
+// /**
+//  * Set the current down velocity (units??).
+//  */
+// void
+// FGBFI::setSpeedDown (double speed)
+// {
+//   FGInterface * fdm = current_aircraft.fdm_state;
+// //   fdm->set_Velocities_Local(fdm->get_V_north(), fdm->get_V_east(), speed);
+// }
 
 
 \f
@@ -831,6 +690,7 @@ FGBFI::setSpeedDown (double speed)
 // Controls
 ////////////////////////////////////////////////////////////////////////
 
+#if 0
 
 /**
  * Get the throttle setting, from 0.0 (none) to 1.0 (full).
@@ -1088,7 +948,7 @@ FGBFI::setRightBrake (double brake)
 }
 
 
-
+#endif
 
 \f
 ////////////////////////////////////////////////////////////////////////
@@ -1191,6 +1051,26 @@ FGBFI::setAPHeading (double heading)
 }
 
 
+/**
+ * Get the autopilot DG target heading in degrees.
+ */
+double
+FGBFI::getAPHeadingDG ()
+{
+  return current_autopilot->get_DGTargetHeading();
+}
+
+
+/**
+ * Set the autopilot DG target heading in degrees.
+ */
+void
+FGBFI::setAPHeadingDG (double heading)
+{
+  current_autopilot->set_DGTargetHeading( heading );
+}
+
+
 /**
  * Get the autopilot target heading in degrees.
  */
@@ -1239,251 +1119,6 @@ FGBFI::setAPNAV1Lock (bool lock)
 }
 
 
-\f
-////////////////////////////////////////////////////////////////////////
-// Radio navigation.
-////////////////////////////////////////////////////////////////////////
-
-double
-FGBFI::getNAV1Freq ()
-{
-  return current_radiostack->get_nav1_freq();
-}
-
-double
-FGBFI::getNAV1AltFreq ()
-{
-  return current_radiostack->get_nav1_alt_freq();
-}
-
-double
-FGBFI::getNAV1Radial ()
-{
-  return current_radiostack->get_nav1_radial();
-}
-
-double
-FGBFI::getNAV1SelRadial ()
-{
-  return current_radiostack->get_nav1_sel_radial();
-}
-
-double
-FGBFI::getNAV1DistDME ()
-{
-  return current_radiostack->get_nav1_dme_dist();
-}
-
-bool 
-FGBFI::getNAV1TO ()
-{
-  if (current_radiostack->get_nav1_inrange()) {
-    double heading = current_radiostack->get_nav1_heading();
-    double radial = current_radiostack->get_nav1_radial();
-    double var = FGBFI::getMagVar();
-    if (current_radiostack->get_nav1_loc()) {
-      double offset = fabs(heading - radial);
-      return (offset<= 8.0 || offset >= 352.0);
-    } else {
-      double offset =
-       fabs(heading - var - radial);
-      return (offset <= 20.0 || offset >= 340.0);
-    }
-  } else {
-    return false;
-  }
-}
-
-bool
-FGBFI::getNAV1FROM ()
-{
-  if (current_radiostack->get_nav1_inrange()) {
-    double heading = current_radiostack->get_nav1_heading();
-    double radial = current_radiostack->get_nav1_radial();
-    double var = FGBFI::getMagVar();
-    if (current_radiostack->get_nav1_loc()) {
-      double offset = fabs(heading - radial);
-      return (offset >= 172.0 && offset<= 188.0);
-    } else {
-      double offset =
-       fabs(heading - var - radial);
-      return (offset >= 160.0 && offset <= 200.0);
-    }
-  } else {
-    return false;
-  }
-}
-
-bool
-FGBFI::getNAV1InRange ()
-{
-  return current_radiostack->get_nav1_inrange();
-}
-
-bool
-FGBFI::getNAV1DMEInRange ()
-{
-  return (current_radiostack->get_nav1_inrange() &&
-         current_radiostack->get_nav1_has_dme());
-}
-
-double
-FGBFI::getNAV2Freq ()
-{
-  return current_radiostack->get_nav2_freq();
-}
-
-double
-FGBFI::getNAV2AltFreq ()
-{
-  return current_radiostack->get_nav2_alt_freq();
-}
-
-double
-FGBFI::getNAV2Radial ()
-{
-  return current_radiostack->get_nav2_radial();
-}
-
-double
-FGBFI::getNAV2SelRadial ()
-{
-  return current_radiostack->get_nav2_sel_radial();
-}
-
-double
-FGBFI::getNAV2DistDME ()
-{
-  return current_radiostack->get_nav2_dme_dist();
-}
-
-bool 
-FGBFI::getNAV2TO ()
-{
-  if (current_radiostack->get_nav2_inrange()) {
-    double heading = current_radiostack->get_nav2_heading();
-    double radial = current_radiostack->get_nav2_radial();
-    double var = FGBFI::getMagVar();
-    if (current_radiostack->get_nav2_loc()) {
-      double offset = fabs(heading - radial);
-      return (offset<= 8.0 || offset >= 352.0);
-    } else {
-      double offset =
-       fabs(heading - var - radial);
-      return (offset <= 20.0 || offset >= 340.0);
-    }
-  } else {
-    return false;
-  }
-}
-
-bool 
-FGBFI::getNAV2FROM ()
-{
-  if (current_radiostack->get_nav2_inrange()) {
-    double heading = current_radiostack->get_nav2_heading();
-    double radial = current_radiostack->get_nav2_radial();
-    double var = FGBFI::getMagVar();
-    if (current_radiostack->get_nav2_loc()) {
-      double offset = fabs(heading - radial);
-      return (offset >= 172.0 && offset<= 188.0);
-    } else {
-      double offset =
-       fabs(heading - var - radial);
-      return (offset >= 160.0 && offset <= 200.0);
-    }
-  } else {
-    return false;
-  }
-}
-
-
-bool
-FGBFI::getNAV2InRange ()
-{
-  return current_radiostack->get_nav2_inrange();
-}
-
-bool
-FGBFI::getNAV2DMEInRange ()
-{
-  return (current_radiostack->get_nav2_inrange() &&
-         current_radiostack->get_nav2_has_dme());
-}
-
-double
-FGBFI::getADFFreq ()
-{
-  return current_radiostack->get_adf_freq();
-}
-
-double
-FGBFI::getADFAltFreq ()
-{
-  return current_radiostack->get_adf_alt_freq();
-}
-
-double
-FGBFI::getADFRotation ()
-{
-  return current_radiostack->get_adf_rotation();
-}
-
-void
-FGBFI::setNAV1Freq (double freq)
-{
-  current_radiostack->set_nav1_freq(freq);
-}
-
-void
-FGBFI::setNAV1AltFreq (double freq)
-{
-  current_radiostack->set_nav1_alt_freq(freq);
-}
-
-void
-FGBFI::setNAV1SelRadial (double radial)
-{
-  current_radiostack->set_nav1_sel_radial(radial);
-}
-
-void
-FGBFI::setNAV2Freq (double freq)
-{
-  current_radiostack->set_nav2_freq(freq);
-}
-
-void
-FGBFI::setNAV2AltFreq (double freq)
-{
-  current_radiostack->set_nav2_alt_freq(freq);
-}
-
-void
-FGBFI::setNAV2SelRadial (double radial)
-{
-  current_radiostack->set_nav2_sel_radial(radial);
-}
-
-void
-FGBFI::setADFFreq (double freq)
-{
-  current_radiostack->set_adf_freq(freq);
-}
-
-void
-FGBFI::setADFAltFreq (double freq)
-{
-  current_radiostack->set_adf_alt_freq(freq);
-}
-
-void
-FGBFI::setADFRotation (double rot)
-{
-  current_radiostack->set_adf_rotation(rot);
-}
-
-
 \f
 ////////////////////////////////////////////////////////////////////////
 // GPS
@@ -1518,31 +1153,6 @@ FGBFI::setGPSLock (bool lock)
 }
 
 
-/**
- * Get the GPS target airport code.
- */
-const string &
-FGBFI::getTargetAirport ()
-{
-  // FIXME: not thread-safe
-  static string out;
-  out = globals->get_options()->get_airport_id();
-
-  return out;
-}
-
-
-/**
- * Set the GPS target airport code.
- */
-void
-FGBFI::setTargetAirport (const string &airportId)
-{
-  // cout << "setting target airport id = " << airportId << endl;
-  globals->get_options()->set_airport_id(airportId);
-}
-
-
 /**
  * Get the GPS target latitude in degrees (negative for south).
  */
@@ -1581,7 +1191,7 @@ FGBFI::setGPSTargetLongitude (double longitude)
 
 
 /**
- * Get the current visible (units??).
+ * Get the current visibility (meters).
  */
 double
 FGBFI::getVisibility ()
@@ -1595,65 +1205,114 @@ FGBFI::getVisibility ()
 
 
 /**
- * Check whether clouds are enabled.
+ * Set the current visibility (meters).
  */
-bool
-FGBFI::getClouds ()
+void
+FGBFI::setVisibility (double visibility)
 {
-  return globals->get_options()->get_clouds();
+#ifndef FG_OLD_WEATHER
+  WeatherDatabase->setWeatherVisibility(visibility);
+#else
+  current_weather.set_visibility(visibility);
+#endif
 }
 
 
 /**
- * Check the height of the clouds ASL (units?).
+ * Get the current wind north velocity (feet/second).
  */
 double
-FGBFI::getCloudsASL ()
+FGBFI::getWindNorth ()
 {
-  return globals->get_options()->get_clouds_asl();
+  return current_aircraft.fdm_state->get_V_north_airmass();
 }
 
 
 /**
- * Set the current visibility (units??).
+ * Set the current wind north velocity (feet/second).
  */
 void
-FGBFI::setVisibility (double visibility)
+FGBFI::setWindNorth (double speed)
 {
-#ifndef FG_OLD_WEATHER
-  WeatherDatabase->setWeatherVisibility(visibility);
-#else
-  current_weather.set_visibility(visibility);
-#endif
+  current_aircraft.fdm_state->set_Velocities_Local_Airmass(speed,
+                                                          getWindEast(),
+                                                          getWindDown());
 }
 
 
 /**
- * Switch clouds on or off.
+ * Get the current wind east velocity (feet/second).
+ */
+double
+FGBFI::getWindEast ()
+{
+  return current_aircraft.fdm_state->get_V_east_airmass();
+}
+
+
+/**
+ * Set the current wind east velocity (feet/second).
  */
 void
-FGBFI::setClouds (bool clouds)
+FGBFI::setWindEast (double speed)
 {
-  if (getClouds() != clouds) {
-    cout << "Set clouds to " << clouds << endl;
-    globals->get_options()->set_clouds(clouds);
-    needReinit();
-  }
+  cout << "Set wind-east to " << speed << endl;
+  current_aircraft.fdm_state->set_Velocities_Local_Airmass(getWindNorth(),
+                                                          speed,
+                                                          getWindDown());
+}
+
+
+/**
+ * Get the current wind down velocity (feet/second).
+ */
+double
+FGBFI::getWindDown ()
+{
+  return current_aircraft.fdm_state->get_V_down_airmass();
 }
 
 
 /**
- * Set the cloud height.
+ * Set the current wind down velocity (feet/second).
  */
 void
-FGBFI::setCloudsASL (double cloudsASL)
+FGBFI::setWindDown (double speed)
 {
-  if (getCloudsASL() != cloudsASL) {
-    globals->get_options()->set_clouds_asl(cloudsASL);
-    needReinit();
-  }
+  current_aircraft.fdm_state->set_Velocities_Local_Airmass(getWindNorth(),
+                                                          getWindEast(),
+                                                          speed);
+}
+
+
+\f
+////////////////////////////////////////////////////////////////////////
+// View.
+////////////////////////////////////////////////////////////////////////
+
+double
+FGBFI::getFOV ()
+{
+  globals->get_current_view()->get_fov();
 }
 
+void
+FGBFI::setFOV (double fov)
+{
+  globals->get_current_view()->set_fov( fov );
+}
+
+void
+FGBFI::setViewAxisLong (double axis)
+{
+  axisLong = axis;
+}
+
+void
+FGBFI::setViewAxisLat (double axis)
+{
+  axisLat = axis;
+}
 
 \f
 ////////////////////////////////////////////////////////////////////////