1
0
Fork 0
flightgear/src/Main
david d372548782 Major restructuring: the Animation class is now an abstract interface,
and specific animation types are derived from it.  This change makes
the code much easier to read, maintain, and extend.

Added a 'translate' animation type for a scaled, 3D linear translation
(such as a sliding throttle knob).

Renamed the 'offset' property to 'offset-m' or 'offset-deg' as
appropriate; ditto for 'min' and 'max' properties.
2002-03-30 21:24:19 +00:00
..
.cvsignore -Removed .cvsignore from itself, since .cvsignore is now in the CVS 2001-12-12 04:15:23 +00:00
3dfx.sh Ssg tweaks. 1999-06-30 00:25:13 +00:00
fg_commands.cxx More cleanups. Removed the pui-* commands, and added a pass-through 2002-03-26 17:14:48 +00:00
fg_commands.hxx Initial revision of interface to new SimGear command manager. 2001-06-01 17:52:17 +00:00
fg_init.cxx Oops, in the latest property manager rewrite, a typo crept in on 2002-03-26 02:38:11 +00:00
fg_init.hxx Added Tony's function to set position on a glide slope. 2002-02-20 16:56:44 +00:00
fg_io.cxx Somewhere along the line in the recent changes some std::cout were 2002-03-18 19:46:24 +00:00
fg_io.hxx Die if I/O Channel config fails for any reason. 2000-10-04 20:50:38 +00:00
fg_props.cxx Converted if ( string == "" ) constructs to if ( string.empty() ) 2002-03-20 19:16:13 +00:00
fg_props.hxx Major property-manager rewrite, using const char * throughout 2002-03-19 17:12:13 +00:00
fgfs.cxx Contibuted by David Megginson; Initial revision. 2001-01-05 17:37:59 +00:00
fgfs.hxx Modified FGSubsystem::update() to take an int parameter for delta time 2001-12-22 17:33:27 +00:00
globals.cxx Patches from Tony Peden to separate property XML I/O operations into a 2002-03-16 00:18:38 +00:00
globals.hxx Patches from Tony Peden to separate property XML I/O operations into a 2002-03-16 00:18:38 +00:00
logger.cxx Fix several signed vs. unsigned warning messages. 2002-03-13 17:06:17 +00:00
logger.hxx Fixes for Irix compatibility. 2002-03-12 20:01:54 +00:00
main.cxx Start tracking delta time in milliseconds and passing it to the update 2002-03-30 21:22:02 +00:00
Makefile.am Major viewer-code overhaul from Jim Wilson: 2002-03-20 17:43:28 +00:00
model.cxx Major restructuring: the Animation class is now an abstract interface, 2002-03-30 21:24:19 +00:00
model.hxx Major restructuring: the Animation class is now an abstract interface, 2002-03-30 21:24:19 +00:00
options.cxx Oops, in the latest property manager rewrite, a typo crept in on 2002-03-26 02:38:11 +00:00
options.hxx Added fullscreen to globals, and fixed compile bug for 3DFX cards. 2002-01-06 16:51:31 +00:00
README Initial revision of README describing the contents of the src/Main 2002-03-21 22:37:12 +00:00
runfgfs.bat.in source tree reorganization prior to flightgear 0.7 2009-09-14 14:26:20 +02:00
runfgfs.in Script was looking for wrong executable name. 1999-10-15 00:11:52 +00:00
splash.cxx Modifications to coordinate with recent changes in simgear. 2001-05-15 22:30:39 +00:00
splash.hxx source tree reorganization prior to flightgear 0.7 2009-09-14 14:26:20 +02:00
viewer.cxx Patch from Melchior Franz: 2002-03-27 15:53:15 +00:00
viewer.hxx Viewer patches from Jim Wilson: 2002-03-27 14:52:19 +00:00
viewmgr.cxx Viewer patches from Jim Wilson: 2002-03-27 14:52:19 +00:00
viewmgr.hxx Major viewer-code overhaul from Jim Wilson: 2002-03-20 17:43:28 +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.

model.cxx
model.hxx
  This module defines the FGAircraftModel subsystem, which controls
  the display and animation of 3D models in FlightGear.

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.