1
0
Fork 0
flightgear/src/Systems
ehofman a760dcdf13 Harald JOHNSEN:
- replay.cxx :
  corrected a bug, now reinitialize the recording data when replay is
  deactivated

- fgclouds.cxx :
  cloud layers and weather condition are saved when choosing a weather scenario,
  added a new scenario 'none' so we can switch back to standard flightgear
  weather

- navradio.cxx :
  force a search() on init to initialize some variables, preventing a nearly
  infinite loop  when delta-time == 0 on the first update()

- electrical.cxx :
  uninitialized variable in apply_load() for FG_EXTERNAL supplier

- panel.cxx, panelnode.cxx :
  added a property "depth-test" for 2.5D panels so that they update the depth
  buffer and are no more visible from the outside of the aircraft when the
  aircraft uses textures without an alpha channel

- panel.cxx :
  moved the computation of the instruments diffuse color outside the
  texturelayer code since this is constant during a frame, this is a big speedup
  for 2D panels
2005-08-22 17:49:50 +00:00
..
.cvsignore Forgot to update header. 2002-09-24 13:11:27 +00:00
electrical.cxx Harald JOHNSEN: 2005-08-22 17:49:50 +00:00
electrical.hxx Updated electrical system. 2005-06-14 17:57:48 +00:00
Makefile.am Move the submodels code from the Systems manager into it's own Subsystem manager. 2004-10-22 09:58:24 +00:00
pitot.cxx Roy Vegard Ovesen: 2004-11-13 15:00:00 +00:00
pitot.hxx Roy Vegard Ovesen: 2004-10-16 12:37:39 +00:00
README README for src/Systems/ 2003-01-29 16:03:00 +00:00
static.cxx Roy Vegard Ovesen: 2004-11-13 15:00:00 +00:00
static.hxx Roy Vegard Ovesen: 2004-10-16 12:37:39 +00:00
system_mgr.cxx Turn the electrical system into a non-hardcoded system like all the other 2005-06-14 17:54:19 +00:00
system_mgr.hxx Roy Vegard Ovesen: 2004-10-16 12:37:39 +00:00
vacuum.cxx Roy Vegard Ovesen: 2004-11-13 15:00:00 +00:00
vacuum.hxx Roy Vegard Ovesen: 2004-10-16 12:37:39 +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.