62a359cc4a
* Use "const string&" rather than "string" in function calls when appropriate. * Use "const Point3D&" instead of "Pint3D" in function calls when appropriate. * Improved course calculation in calc_gc_course_dist() * Safer thread handling code. Vassilii Khachaturov: Dont use "const Point3D&" for return types unless you're absolutely sure. Erik Hofman: * Use SGD_(2)PI(_[24]) as defined in simgear/constants.h rather than calculating it by hand every time. |
||
---|---|---|
.. | ||
.cvsignore | ||
electrical.cxx | ||
electrical.hxx | ||
Makefile.am | ||
pitot.cxx | ||
pitot.hxx | ||
README | ||
static.cxx | ||
static.hxx | ||
system_mgr.cxx | ||
system_mgr.hxx | ||
vacuum.cxx | ||
vacuum.hxx |
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.