1
0
Fork 0
flightgear/src/Instrumentation
2003-04-25 03:36:51 +00:00
..
.cvsignore Ignore generated files. 2002-09-24 14:55:14 +00:00
airspeed_indicator.cxx Simplify the pitot system and ASI -- the indicated airspeed should be 2003-03-12 20:28:54 +00:00
airspeed_indicator.hxx Simplify the pitot system and ASI -- the indicated airspeed should be 2003-03-12 20:28:54 +00:00
altimeter.cxx Minor code cleanups. 2003-02-12 18:35:04 +00:00
altimeter.hxx Added magnetic compass instrument. 2003-01-26 15:56:11 +00:00
attitude_indicator.cxx Reduce pitch error. 2003-04-25 03:36:51 +00:00
attitude_indicator.hxx First pass at trying to add back in the AI effect where it starts drifting 2003-04-25 02:22:06 +00:00
dme.cxx Fix a small problem which crept in after a late night session 2003-04-01 08:36:09 +00:00
dme.hxx New version of basic DME support. This can coexist with the old one 2003-03-09 03:20:34 +00:00
gps.cxx Added simple GPS support (no waypoints yet). 2003-03-10 14:09:43 +00:00
gps.hxx Added simple GPS support (no waypoints yet). 2003-03-10 14:09:43 +00:00
gyro.cxx If the gyro becomes unserviceable, stop spinning immediately. 2003-01-26 20:20:33 +00:00
gyro.hxx Added a Gyro helper class to factor out some common code for managing 2003-01-25 19:49:27 +00:00
heading_indicator.cxx Make serviceable property writable. 2003-01-26 20:20:15 +00:00
heading_indicator.hxx Added a Gyro helper class to factor out some common code for managing 2003-01-25 19:49:27 +00:00
instrument_mgr.cxx Added simple GPS support (no waypoints yet). 2003-03-10 14:09:43 +00:00
instrument_mgr.hxx Removed unneeded inclusion of std::vector. 2003-01-29 16:02:27 +00:00
mag_compass.cxx Renamed /velocities/side-slip-rad to /orientation/side-slip-rad. 2003-01-26 15:53:35 +00:00
mag_compass.hxx Renamed /velocities/side-slip-rad to /orientation/side-slip-rad. 2003-01-26 15:53:35 +00:00
Makefile.am Added simple GPS support (no waypoints yet). 2003-03-10 14:09:43 +00:00
README Added a README for the src/Instrumentation/ directory. 2003-01-29 15:38:52 +00:00
slip_skid_ball.cxx Added magnetic compass instrument. 2003-01-26 15:56:11 +00:00
slip_skid_ball.hxx Add serviceable property. 2003-01-26 20:21:04 +00:00
turn_indicator.cxx Make the turn indicator a little less responsive, again. 2003-04-04 03:25:27 +00:00
turn_indicator.hxx Added a Gyro helper class to factor out some common code for managing 2003-01-25 19:49:27 +00:00
vertical_speed_indicator.cxx Initialize the internal pressure to ambient pressure. 2003-02-25 20:04:22 +00:00
vertical_speed_indicator.hxx Added magnetic compass instrument. 2003-01-26 15:56:11 +00:00

src/Instrumentation/ - gauge and avionics support code

This directory contains code to support gauges, avionics, and other
instruments in FlightGear.  The file instrument_mgr.[ch]xx contains a
subsystem group that holds all of the individual instruments.  Every
instrument should extend FGSubsystem, and then should be added to the
group in the FGInstrumentMgr constructor.

Code is gradually moving into here from other areas, especially the
src/Cockpit/ directory.  Eventually, there will be an XML
configuration file to select what instrumentation modules should be
available, so that different aircraft can have appropriate support.