1
0
Fork 0
flightgear/src/Systems
2003-10-16 14:14:03 +00:00
..
.cvsignore Forgot to update header. 2002-09-24 13:11:27 +00:00
electrical.cxx Fix a problem where older IRIX compilers needed a typecast for certain opperations 2003-10-16 14:14:03 +00:00
electrical.hxx Move FGEventMgr and FGSubsystemMgr over to SimGear, add SGEventMgr to FlightGear's globals structre and some small code cleanups 2003-09-24 17:20:55 +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 Move FGEventMgr and FGSubsystemMgr over to SimGear, add SGEventMgr to FlightGear's globals structre and some small code cleanups 2003-09-24 17:20:55 +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 Move FGEventMgr and FGSubsystemMgr over to SimGear, add SGEventMgr to FlightGear's globals structre and some small code cleanups 2003-09-24 17:20:55 +00:00
system_mgr.cxx - Added a redundant (left/right) vacuum pump. 2003-05-27 19:25:27 +00:00
system_mgr.hxx Move FGEventMgr and FGSubsystemMgr over to SimGear, add SGEventMgr to FlightGear's globals structre and some small code cleanups 2003-09-24 17:20:55 +00:00
vacuum.cxx Eliminate divide-by-zero error. AI should spin down gradually again. 2003-07-22 02:05:50 +00:00
vacuum.hxx Move FGEventMgr and FGSubsystemMgr over to SimGear, add SGEventMgr to FlightGear's globals structre and some small code cleanups 2003-09-24 17:20:55 +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.