1
0
Fork 0
flightgear/src/Systems
curt 198b88ca9b 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:54:17 +00:00
..
.cvsignore Forgot to update header. 2002-09-24 13:11:27 +00:00
electrical.cxx Commented out a stray cout. 2003-02-13 21:31:44 +00:00
electrical.hxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:54:17 +00:00
Makefile.am Added pitot system and new airspeed indicator. 2002-09-28 20:48:53 +00:00
pitot.cxx Simplify the pitot system and ASI -- the indicated airspeed should be 2003-03-12 20:28:54 +00:00
pitot.hxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:54:17 +00:00
README README for src/Systems/ 2003-01-29 16:03:00 +00:00
static.cxx Modified to use fgGetLowPass from utils.cxx. 2002-09-27 22:04:21 +00:00
static.hxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:54:17 +00:00
system_mgr.cxx Converted to a simple FGSubsystemGroup. 2003-01-29 16:02:46 +00:00
system_mgr.hxx Converted to a simple FGSubsystemGroup. 2003-01-29 16:02:46 +00:00
vacuum.cxx Flattened src/Systems/ subtree. 2002-09-24 14:51:37 +00:00
vacuum.hxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:54:17 +00:00

src/Systems/ - support code for aircraft systems

This directory contains support code for major aircraft systems,
including the static, pitot, electrical, and vacuum systems.  The file
system_mgr.[ch]xx contains a subsystem group that holds all of the
individual systems.  Every system should extend FGSubsystem, and then
should be added to the group in the FGSystemMgr constructor.

Eventually, there will be an XML configuration file to select what
system modules should be available, so that different aircraft (i.e. a
twin plane with two vacuum systems) can have appropriate support.