1
0
Fork 0
flightgear/src/Systems
James Turner 4c3aa8b484 Check for missing file in several places
Replaces a ‘missing tag at line 1’ error with a simpler ‘file not
found’ message.

Sentry-Id: FLIGHTGEAR-5X
2020-10-25 20:01:57 +00:00
..
CMakeLists.txt More CMake headers support 2011-07-19 07:58:03 +01:00
electrical.cxx Windows build fixes 2020-08-11 19:20:32 +01:00
electrical.hxx Default (XML) electrical system: fix leaks 2020-08-11 14:05:10 +01:00
pitot.cxx SGSubsystem classes: Registration of all subsystems. 2019-07-01 14:51:32 +02:00
pitot.hxx SGSubsystem classes: Addition of staticSubsystemClassId() to all subsystems. 2019-07-01 14:51:32 +02:00
README README for src/Systems/ 2003-01-29 16:03:00 +00:00
static.cxx SGSubsystem classes: Registration of all subsystems. 2019-07-01 14:51:32 +02:00
static.hxx SGSubsystem classes: Addition of staticSubsystemClassId() to all subsystems. 2019-07-01 14:51:32 +02:00
system_mgr.cxx Check for missing file in several places 2020-10-25 20:01:57 +00:00
system_mgr.hxx SGSubsystem classes: Addition of staticSubsystemClassId() to all subsystems. 2019-07-01 14:51:32 +02:00
vacuum.cxx SGSubsystem classes: Registration of all subsystems. 2019-07-01 14:51:32 +02:00
vacuum.hxx SGSubsystem classes: Addition of staticSubsystemClassId() to all subsystems. 2019-07-01 14:51:32 +02: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.