1
0
Fork 0
flightgear/src/Systems
James Turner 3653508412 Build- and run-time concept of developer mode.
Make a single Cmake value to expose the build type to code, and use
this to default a run-time ‘developer-mode’ property, which can be
over-ridden from the command line.

Use this to drive the different warning levels. Policies subject to
review, especially whether nightly builds should default to 
developer mode or not.
2017-02-27 23:37:59 +00:00
..
CMakeLists.txt More CMake headers support 2011-07-19 07:58:03 +01:00
electrical.cxx Build- and run-time concept of developer mode. 2017-02-27 23:37:59 +00:00
electrical.hxx eliminate some SGPropertyNode_ptr variables in classes 2010-01-26 17:19:17 +01:00
pitot.cxx pitot system stalls at high angles, using /system/pitot[x]/stall-deg 2013-11-08 20:18:27 +01:00
pitot.hxx pitot system stalls at high angles, using /system/pitot[x]/stall-deg 2013-11-08 20:18:27 +01:00
README README for src/Systems/ 2003-01-29 16:03:00 +00:00
static.cxx Optionally disable the lowpass for the static system 2014-09-10 21:07:57 +02:00
static.hxx static port can be side-slip/alpha dependant, to add a part of total 2013-11-16 23:21:11 +01:00
system_mgr.cxx Use future-proof SGPath APIs. 2016-06-28 10:08:38 +01:00
system_mgr.hxx FGSystemMgr: Do not quit on unknown system. 2013-07-04 14:32:56 +02:00
vacuum.cxx Prepare and implement reinit methods for instruments 2012-09-17 13:45:30 +02:00
vacuum.hxx Prepare and implement reinit methods for instruments 2012-09-17 13:45:30 +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.