2000-02-26 18:01:13 +00:00
|
|
|
// bfi.hxx - Big Flat Interface
|
|
|
|
//
|
|
|
|
// Written by David Megginson, started February, 2000.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2000 David Megginson - david@megginson.com
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <string>
|
|
|
|
|
2000-04-27 21:57:08 +00:00
|
|
|
#include <simgear/compiler.h>
|
|
|
|
|
2000-02-26 18:01:13 +00:00
|
|
|
FG_USING_NAMESPACE(std);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Big Flat Interface
|
|
|
|
*
|
|
|
|
* This class implements the Facade design pattern (GOF p.185) to provide
|
|
|
|
* a single, (deceptively) simple flat interface for the FlightGear
|
|
|
|
* subsystems.
|
|
|
|
*
|
|
|
|
* To help cut down on interdependence, subsystems should
|
|
|
|
* use the BFI whenever possible for inter-system communication.
|
|
|
|
*
|
|
|
|
* TODO:
|
|
|
|
* - add selectors to switch the current plane, throttle, brake, etc.
|
|
|
|
* - add more autopilot settings
|
|
|
|
*/
|
|
|
|
class FGBFI
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2000-07-03 20:09:56 +00:00
|
|
|
// Initialize before first use.
|
|
|
|
static void init ();
|
|
|
|
|
2000-02-26 18:01:13 +00:00
|
|
|
// Reinit if necessary.
|
|
|
|
static void update ();
|
|
|
|
|
|
|
|
// Simulation
|
|
|
|
static int getFlightModel ();
|
|
|
|
static void setFlightModel (int flightModel);
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-12-19 23:29:16 +00:00
|
|
|
static string getAircraft ();
|
|
|
|
static void setAircraft (string aircraft);
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-12-19 23:29:16 +00:00
|
|
|
static string getAircraftDir ();
|
|
|
|
static void setAircraftDir (string aircraftDir);
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-12-08 17:26:49 +00:00
|
|
|
// static time_t getTimeGMT ();
|
|
|
|
// static void setTimeGMT (time_t time);
|
2001-01-08 17:59:54 +00:00
|
|
|
static string getDateString ();// ISO 8601 subset
|
|
|
|
static void setDateString (string time_string); // ISO 8601 subset
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-12-08 17:26:49 +00:00
|
|
|
// deprecated
|
2000-12-19 23:29:16 +00:00
|
|
|
static string getGMTString ();
|
2000-11-01 04:51:55 +00:00
|
|
|
|
|
|
|
static bool getHUDVisible ();
|
2000-02-26 18:01:13 +00:00
|
|
|
static void setHUDVisible (bool hudVisible);
|
2000-11-01 04:51:55 +00:00
|
|
|
|
|
|
|
static bool getPanelVisible ();
|
2000-02-26 18:01:13 +00:00
|
|
|
static void setPanelVisible (bool panelVisible);
|
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static int getPanelXOffset (); // pixels
|
|
|
|
static void setPanelXOffset (int i); // pixels
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static int getPanelYOffset (); // pixels
|
|
|
|
static void setPanelYOffset (int i); // pixels
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-02-26 18:01:13 +00:00
|
|
|
|
|
|
|
// Position
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getLatitude (); // degrees
|
|
|
|
static void setLatitude (double latitude); // degrees
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getLongitude (); // degrees
|
|
|
|
static void setLongitude (double longitude); // degrees
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getAltitude (); // feet
|
|
|
|
static void setAltitude (double altitude); // feet
|
2000-02-26 18:01:13 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getAGL (); // feet
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-02-26 18:01:13 +00:00
|
|
|
|
|
|
|
// Attitude
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getHeading (); // degrees
|
|
|
|
static void setHeading (double heading); // degrees
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getHeadingMag (); // degrees
|
2000-02-26 18:01:13 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getPitch (); // degrees
|
|
|
|
static void setPitch (double pitch); // degrees
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getRoll (); // degrees
|
|
|
|
static void setRoll (double roll); // degrees
|
2000-02-26 18:01:13 +00:00
|
|
|
|
2000-09-29 22:02:32 +00:00
|
|
|
// Engine
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getRPM (); // revolutions/minute
|
|
|
|
static void setRPM ( double rpm ); // revolutions/minute
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getEGT (); // [unit??]
|
|
|
|
static double getCHT (); // [unit??]
|
|
|
|
static double getMP (); // [unit??]
|
2000-02-26 18:01:13 +00:00
|
|
|
|
|
|
|
// Velocities
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getAirspeed (); // knots
|
|
|
|
static void setAirspeed (double speed); // knots
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getSideSlip (); // [unit??]
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getVerticalSpeed (); // feet/second
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getSpeedNorth (); // feet/second
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getSpeedEast (); // feet/second
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getSpeedDown (); // feet/second
|
2000-02-26 18:01:13 +00:00
|
|
|
|
2000-11-01 04:51:55 +00:00
|
|
|
// static void setSpeedNorth (double speed);
|
|
|
|
// static void setSpeedEast (double speed);
|
|
|
|
// static void setSpeedDown (double speed);
|
2000-02-26 18:01:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Controls
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getThrottle (); // 0.0:1.0
|
|
|
|
static void setThrottle (double throttle); // 0.0:1.0
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getMixture (); // 0.0:1.0
|
|
|
|
static void setMixture (double mixture); // 0.0:1.0
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getPropAdvance (); // 0.0:1.0
|
|
|
|
static void setPropAdvance (double pitch); // 0.0:1.0
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getFlaps (); // 0.0:1.0
|
|
|
|
static void setFlaps (double flaps); // 0.0:1.0
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getAileron (); // -1.0:1.0
|
|
|
|
static void setAileron (double aileron); // -1.0:1.0
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getRudder (); // -1.0:1.0
|
|
|
|
static void setRudder (double rudder); // -1.0:1.0
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getElevator (); // -1.0:1.0
|
|
|
|
static void setElevator (double elevator); // -1.0:1.0
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getElevatorTrim (); // -1.0:1.0
|
|
|
|
static void setElevatorTrim (double trim); // -1.0:1.0
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getBrakes (); // 0.0:1.0
|
|
|
|
static void setBrakes (double brake); // 0.0:1.0
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getLeftBrake (); // 0.0:1.0
|
|
|
|
static void setLeftBrake (double brake); // 0.0:1.0
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getRightBrake (); // 0.0:1.0
|
|
|
|
static void setRightBrake (double brake); // 0.0:1.0
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getCenterBrake (); // 0.0:1.0
|
|
|
|
static void setCenterBrake (double brake); // 0.0:1.0
|
2000-02-26 18:01:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Autopilot
|
|
|
|
static bool getAPAltitudeLock ();
|
|
|
|
static void setAPAltitudeLock (bool lock);
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getAPAltitude (); // feet
|
|
|
|
static void setAPAltitude (double altitude); // feet
|
2000-11-01 04:51:55 +00:00
|
|
|
|
|
|
|
static bool getAPHeadingLock ();
|
2000-02-26 18:01:13 +00:00
|
|
|
static void setAPHeadingLock (bool lock);
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getAPHeading (); // degrees
|
|
|
|
static void setAPHeading (double heading); // degrees
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getAPHeadingMag (); // degrees
|
|
|
|
static void setAPHeadingMag (double heading); // degrees
|
2000-02-26 18:01:13 +00:00
|
|
|
|
User-visible
- knobs now continue to rotate when you hold down the mouse
- the middle mouse button makes knobs rotate much faster
- there are NAV1, NAV2, and ADF radios that can be tuned using the mouse
- there are standby frequencies for NAV1 and NAV2, and buttons to swap
- there is a crude, rather silly-looking DME, hard-wired to NAV1
- there is a crude, rather silly-looking autopilot that can lock
the heading (to the bug on the gyro), can lock to NAV1, and can lock
the current altitude
- the knobs for changing the radials on NAV1 and NAV2 look much better
and are in the right place
- tuning into an ILS frequency doesn't change the displayed radial for
NAV1
Code
- I've created a new module, sp_panel.[ch]xx, that constructs the
default single-prop panel; this works entirely outside of FGPanel,
so it is possible to construct similar modules for other sorts of
panels; all code specific to the default panel has been removed from
panel.cxx
- current_panel is now a pointer
- radiostack.[ch]xx keeps track both of the actual radial and of the
selected radial (they will differ with ILS); the NAV gauges should
not spin around automatically to show the actual radial (we need to
do something similar with the autopilot)
- the panel is initialized fairly early
- make sure that standby frequencies also get initialized
- I've started combining and clipping small textures to save texture
memory; there's a lot more to do, but at least I've made a start
2000-05-02 18:26:00 +00:00
|
|
|
static bool getAPNAV1Lock ();
|
|
|
|
static void setAPNAV1Lock (bool lock);
|
|
|
|
|
2000-04-27 22:45:48 +00:00
|
|
|
// Radio Navigation
|
|
|
|
static double getNAV1Freq ();
|
2000-11-01 04:51:55 +00:00
|
|
|
static void setNAV1Freq (double freq);
|
|
|
|
|
2000-04-27 22:45:48 +00:00
|
|
|
static double getNAV1AltFreq ();
|
2000-11-01 04:51:55 +00:00
|
|
|
static void setNAV1AltFreq (double freq);
|
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getNAV1Radial (); // degrees
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getNAV1SelRadial (); // degrees
|
|
|
|
static void setNAV1SelRadial (double radial); // degrees
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getNAV1DistDME (); // nautical miles
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-09-22 17:20:56 +00:00
|
|
|
static bool getNAV1TO ();
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-09-22 17:20:56 +00:00
|
|
|
static bool getNAV1FROM ();
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-05-15 16:33:42 +00:00
|
|
|
static bool getNAV1InRange ();
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-05-15 16:33:42 +00:00
|
|
|
static bool getNAV1DMEInRange ();
|
2000-04-27 22:45:48 +00:00
|
|
|
|
|
|
|
static double getNAV2Freq ();
|
2000-11-01 04:51:55 +00:00
|
|
|
static void setNAV2Freq (double freq);
|
|
|
|
|
2000-04-27 22:45:48 +00:00
|
|
|
static double getNAV2AltFreq ();
|
2000-11-01 04:51:55 +00:00
|
|
|
static void setNAV2AltFreq (double freq);
|
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getNAV2Radial (); // degrees
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getNAV2SelRadial (); // degrees
|
|
|
|
static void setNAV2SelRadial (double radial); // degrees
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getNAV2DistDME (); // nautical miles
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-09-22 17:20:56 +00:00
|
|
|
static bool getNAV2TO ();
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-09-22 17:20:56 +00:00
|
|
|
static bool getNAV2FROM ();
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-05-15 16:33:42 +00:00
|
|
|
static bool getNAV2InRange ();
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-05-15 16:33:42 +00:00
|
|
|
static bool getNAV2DMEInRange ();
|
2000-04-27 22:45:48 +00:00
|
|
|
|
|
|
|
static double getADFFreq ();
|
|
|
|
static void setADFFreq (double freq);
|
2000-11-01 04:51:55 +00:00
|
|
|
|
|
|
|
static double getADFAltFreq ();
|
2000-04-27 22:45:48 +00:00
|
|
|
static void setADFAltFreq (double freq);
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getADFRotation (); // degrees
|
|
|
|
static void setADFRotation (double rot); // degrees
|
2000-02-26 18:01:13 +00:00
|
|
|
|
|
|
|
// GPS
|
2000-12-19 23:29:16 +00:00
|
|
|
static string getTargetAirport ();
|
|
|
|
static void setTargetAirport (string targetAirport);
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2000-02-26 18:01:13 +00:00
|
|
|
static bool getGPSLock ();
|
2000-11-01 04:51:55 +00:00
|
|
|
static void setGPSLock (bool lock);
|
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getGPSTargetLatitude (); // degrees
|
2000-11-01 04:51:55 +00:00
|
|
|
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getGPSTargetLongitude (); // degrees
|
2000-02-26 18:01:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Weather
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getVisibility ();// meters
|
|
|
|
static void setVisibility (double visiblity); // meters
|
|
|
|
static double getWindNorth (); // feet/second
|
|
|
|
static void setWindNorth (double speed); // feet/second
|
|
|
|
static double getWindEast (); // feet/second
|
|
|
|
static void setWindEast (double speed); // feet/second
|
|
|
|
static double getWindDown (); // feet/second
|
|
|
|
static void setWindDown (double speed); // feet/second
|
2001-01-05 17:38:58 +00:00
|
|
|
|
|
|
|
// View
|
2001-01-08 17:59:54 +00:00
|
|
|
static void setViewAxisLong (double axis);// -1.0:1.0
|
|
|
|
static void setViewAxisLat (double axis); // -1.0:1.0
|
2000-05-06 21:47:53 +00:00
|
|
|
|
2000-02-26 18:01:13 +00:00
|
|
|
|
2000-03-29 00:15:58 +00:00
|
|
|
// Time (this varies with time) huh, huh
|
2001-01-08 17:59:54 +00:00
|
|
|
static double getMagVar (); // degrees
|
|
|
|
static double getMagDip (); // degrees
|
2000-03-29 00:15:58 +00:00
|
|
|
|
2000-02-26 18:01:13 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Will cause a linking error if invoked.
|
|
|
|
FGBFI ();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
// end of bfi.hxx
|