1
0
Fork 0
flightgear/src/Instrumentation
curt 2119db35c3 This is step "1" of probably "many" in the process of separating out the
scene management code and organizing it within simgear.  My strategy is
to identify the code I want to move, and break it's direct flightgear
dependencies.  Then it will be free to move over into the simgear package.

- Moved some property specific code into simgear/props/
- Split out the condition code from fgfs/src/Main/fg_props and put it
  in it's own source file in simgear/props/
- Created a scene subdirectory for scenery, model, and material property
  related code.
- Moved location.[ch]xx into simgear/scene/model/
- The location and condition code had dependencies on flightgear's global
  state (all the globals-> stuff, the flightgear property tree, etc.)  SimGear
  code can't depend on it so that data has to be passed as parameters to the
  functions/methods/constructors.
- This need to pass data as function parameters had a dramatic cascading
  effect throughout the FlightGear code.
2003-05-06 23:46:24 +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 This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +00:00
altimeter.cxx Minor code cleanups. 2003-02-12 18:35:04 +00:00
altimeter.hxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +00:00
attitude_indicator.cxx Reduce pitch error. 2003-04-25 03:36:51 +00:00
attitude_indicator.hxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +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 This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +00:00
gps.cxx Added simple GPS support (no waypoints yet). 2003-03-10 14:09:43 +00:00
gps.hxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +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 This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +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 This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +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 This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +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 This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +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 This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +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.