1
0
Fork 0
flightgear/src/Main
2008-03-15 12:52:22 +00:00
..
.cvsignore Updated. 2004-02-07 21:37:54 +00:00
3dfx.sh Ssg tweaks. 1999-06-30 00:25:13 +00:00
bootstrap.cxx silence MSVC8 2007-05-13 08:43:40 +00:00
fg_commands.cxx remove last traces of PSL 2008-01-23 13:03:50 +00:00
fg_commands.hxx new FSF address 2006-02-21 01:16:04 +00:00
fg_init.cxx Csaba Halász : 2008-02-28 21:39:25 +00:00
fg_init.hxx - move fgInitTowerLocationListener() from fgInitPosition() to the init 2007-04-04 19:05:59 +00:00
fg_io.cxx Nick "Lethe" WARNE: prevent crash caused by improper use of --multiplay 2007-07-25 15:17:06 +00:00
fg_io.hxx new FSF address 2006-02-21 01:16:04 +00:00
fg_os.cxx Set up pager in GLUT embedded osgViewer 2007-12-14 22:52:15 +00:00
fg_os.hxx make the state of the Meta and Super modifier keys available. These keys 2007-12-01 13:09:11 +00:00
fg_os_common.cxx move callback registration functions to fg_os_common.cxx 2007-11-30 00:00:36 +00:00
fg_os_osgviewer.cxx Tatsuhiro NISHIOKA: "enables osgviewer version of FlightGear to show 2008-03-12 12:38:54 +00:00
fg_os_sdl.cxx Use the OSG DatabasePager instead of FGTileLoader 2007-12-14 22:51:56 +00:00
fg_props.cxx Tiago GUSMAO: keep sound muted after pause/unpause 2007-11-24 08:40:04 +00:00
fg_props.hxx cosmetics: make the reason for the cast obvious. (Now that almost all of 2007-05-07 14:06:05 +00:00
FGManipulator.cxx Changed GLUT support to use an embedded osgViewer too 2007-12-07 09:11:46 +00:00
FGManipulator.hxx Changed GLUT support to use an embedded osgViewer too 2007-12-07 09:11:46 +00:00
globals.cxx Tatsuhiro NISHIOKA: initialize classes (fixes segfault on exit on MacOS) 2007-12-10 19:17:57 +00:00
globals.hxx Modified Files: 2007-05-09 20:41:08 +00:00
logger.cxx Change the timing semantics slightly so that you get much closer to the 2003-11-24 01:50:48 +00:00
logger.hxx fix another crash on exit by finally converting the rest of unguarded 2006-06-11 10:21:10 +00:00
main.cxx cleanup of precipitation contribution 2008-03-04 09:03:54 +00:00
main.hxx Get the environment variables HOME and HOSTNAME only once. 2005-12-21 13:36:04 +00:00
Makefile.am OS X build fixes from Hans Fugal 2008-01-09 19:59:56 +00:00
metar_main.cxx new FSF address 2006-02-21 01:16:04 +00:00
options.cxx remove debug message :-) 2008-03-15 12:52:22 +00:00
options.hxx new FSF address 2006-02-21 01:16:04 +00:00
README Moved FGAircraftModel subsystem out into its own directory, and 2002-04-05 03:19:34 +00:00
renderer.cxx cleanup of precipitation contribution 2008-03-04 09:03:54 +00:00
renderer.hxx near and far are #defined in MSVC 2008-01-26 07:48:05 +00:00
runfgfs.bat.in source tree reorganization prior to flightgear 0.7 2009-09-14 14:26:20 +02:00
runfgfs.in Fix my mailing address by replacing it with my web page. 2004-11-19 22:10:41 +00:00
splash.cxx Modified Files: 2007-05-03 18:12:29 +00:00
splash.hxx Modified Files: 2007-05-03 18:12:29 +00:00
util.cxx unescape \a and \b as well 2007-10-27 17:25:39 +00:00
util.hxx add unescape function for conversion of \t, \n, \x1b etc. in <format> strings 2007-07-29 12:26:33 +00:00
viewer.cxx revert swapping of x & y offsets in "lookat" mode 2007-11-05 22:19:39 +00:00
viewer.hxx Modified Files: 2007-05-05 08:08:24 +00:00
viewmgr.cxx also copy name & type to /sim/current-view 2007-11-09 17:43:22 +00:00
viewmgr.hxx - make next_view()/pref_view() trigger listeners, otherwise the "view_cycle" 2007-06-11 19:02:01 +00:00
ViewPartitionNode.cxx Add ViewPartionNode to the scenegraph 2008-01-04 07:35:43 +00:00
ViewPartitionNode.hxx cleanup of dead code and change ViewPartitionNode::makeNewProjMat be public static 2008-01-06 23:03:19 +00:00

Last updated $Date$

This directory contains the main routine for FlightGear, together with
various utility classes and functions that do not fit in anywhere
else, and subsystems that have not yet graduated to having their own
directories (because the maintainers are lazy, not because the
subsystems are not important).

fg_commands.cxx
fg_commands.hxx
  This module defines a global function to register FlightGear's
  built-in commands.

fg_init.cxx
fg_init.hxx
  This module defines global functions to initialize for the various
  subsystems.  Code is gradually being moved out of here and into the
  subsystems' own init() methods, so this module will eventually
  disappear.

fg_io.cxx
fg_io.hxx
  This module defines high-level global I/O functions for FlightGear.
  I don't know how widely these are used, yet.

fg_props.cxx
fg_props.hxx
  This module provides a FlightGear layer over the SimGear property
  manager.  This module performs two roles: it provides global
  convenience functions for accessing the FlightGear property tree,
  and it ties some properties to its own static functions.  The second
  role has mostly disappeared, since subsystems now tie their own
  properties in their bind() methods, and eventually this module will
  contain only the convenience functions.

fgfs.cxx
fgfs.hxx
  This module defines FGSubsystem, the abstract base class (or
  interface) for subsystems in FlightGear.  Most of the important
  subsystems already extend this class, and eventually, all subsystems
  will.

globals.cxx
globals.hxx
  This module defines FGGlobals, a class that holds pointers to
  subsystems and other variables used by a FlightGear session.  Many
  global variables have migrated into here, and eventually, all will,
  so that the program can maintain state for more than one session at
  once.

logger.cxx
logger.hxx
  This module defines the FGLogger subsystem, which allows the user to
  log any property value to any number of CSV files, somewhat like an
  overenthusiastic flight data recorder.

main.cxx
  This file defines the main() function for FlightGear as well as the
  top-level loop.  Currently, there is a still lot of code in here
  that belongs in the individual subsystems' init() and update()
  methods; eventually, this will be a short, simple file defining the
  top-level flow logic of the program.

options.cxx
options.hxx
  This module defines global functions for parsing command-line
  options and transferring them to the property tree.

runfgfs.bat
runfgfs.bat.in
  This is a batch file for launching FlightGear under MSWindows.
  runfgfs.bat is autogenerated from runfgfs.bat.in, so any changes
  should be made to the latter file.

splash.cxx
splash.hxx
  This module defines global functions for displaying and updating the
  splash screen.

viewer.cxx
viewer.hxx
  This module defines the FGViewer subsystem, which calculates the
  viewpoint in world coordinates and provides transformation matrices
  for the scenery code.  FGViewer has methods that allow the program
  to rotate or move the current view direction.

viewmgr.cxx
viewmgr.hxx
  This module defines the FGViewMgr subsystem, which manages all of
  the different views available in FlightGear.