1
0
Fork 0
flightgear/src/Main
timoore 3bce312213 Get fgviewer working as a part of fgfs
Move fgviewer code into fgfs binary. Its osgViewer-style main function is
called from bootstrap.cxx if the --fgviewer argument is passed to fgfs.

Use fgfs initialization functions in fgviewer codepath. Read
command-line arguments and autosave.xml.
2009-08-12 23:45:54 +02:00
..
.cvsignore Updated. 2004-02-07 21:37:54 +00:00
3dfx.sh
bootstrap.cxx Get fgviewer working as a part of fgfs 2009-08-12 23:45:54 +02:00
CameraGroup.cxx Enable EffectCullVisitor 2009-07-16 12:10:48 +02:00
CameraGroup.hxx Expose the CameraGroup near, far, and near/far boundry as properties 2009-01-03 23:53:04 +01:00
fg_commands.cxx From Till Busch - reload shaders command 2009-08-10 07:14:38 +02:00
fg_commands.hxx Remove unneeded inclusions of windows.h, GL.h and GLU.H 2008-07-27 15:18:34 +00:00
fg_init.cxx adapt to changes in sg_exception interface 2009-06-16 11:46:47 +02:00
fg_init.hxx - remove the SG_GLxxxx_H #defines, since OSG provides its own versions 2008-07-27 16:25:13 +00:00
fg_io.cxx changes matching those of generic.?xx 2009-06-23 10:54:09 +02:00
fg_io.hxx Allow generic file protocol to terminate fg after a number of repetitions. 2008-08-07 22:24:47 +00:00
fg_os.hxx add support for resizing mouse cursors 2009-01-12 13:04:33 +01:00
fg_os_common.cxx Cleanup of camera code in preperation for shadows 2008-11-18 22:45:57 +00:00
fg_os_osgviewer.cxx Realize viewer explicitly 2009-06-15 11:25:06 +02:00
fg_props.cxx add /sim/time/real/ (local machine time) analog to /sim/time/utc/ 2009-02-16 00:56:44 +01:00
fg_props.hxx Fix case typo 2009-07-27 23:52:33 +02:00
FGEventHandler.cxx Don't call idle and draw functions from FGEventHandler::handle. 2008-11-20 11:01:05 +00:00
FGEventHandler.hxx Cleanup of camera code in preperation for shadows 2008-11-18 22:45:57 +00:00
fgviewer.cxx Get fgviewer working as a part of fgfs 2009-08-12 23:45:54 +02:00
fgviewer.hxx Get fgviewer working as a part of fgfs 2009-08-12 23:45:54 +02:00
globals.cxx leak fixes 2009-05-18 12:24:16 +02:00
globals.hxx FGAirportList is gone. Everything should work as before, especially the 2008-12-27 13:20:08 +00:00
logger.cxx header cleanups 2008-07-31 12:04:32 +00:00
logger.hxx header cleanups 2008-07-31 12:04:32 +00:00
main.cxx Advanced input subsystem - Step1: cleanup dependencies 2009-08-08 08:37:14 +02:00
main.hxx Remove unused stuff. 2009-03-18 08:00:09 +01:00
Makefile.am Get fgviewer working as a part of fgfs 2009-08-12 23:45:54 +02:00
metar_main.cxx Stefan C. Müller : 2008-08-31 18:32:43 +00:00
options.cxx Get fgviewer working as a part of fgfs 2009-08-12 23:45:54 +02: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 Advanced input subsystem - Step1: cleanup dependencies 2009-08-08 08:37:14 +02:00
renderer.hxx Remove now unused functions. 2009-07-02 08:59:16 +02:00
runfgfs.bat.in
runfgfs.in Fix my mailing address by replacing it with my web page. 2004-11-19 22:10:41 +00:00
splash.cxx .rgb -> .png for generic splash textures 2008-10-14 06:11:44 +00:00
splash.hxx Modified Files: 2007-05-03 18:12:29 +00:00
util.cxx - remove the SG_GLxxxx_H #defines, since OSG provides its own versions 2008-07-27 16:25:13 +00:00
util.hxx use same path validation process for fgcommands "load", "save", 2008-07-11 16:36:54 +00:00
viewer.cxx Replace plain doubles with SGGeod in FGViewer for position and target pos. 2009-06-11 16:05:20 +02:00
viewer.hxx Update FGViewer position clients to work with SGGeod directly 2009-06-11 16:05:20 +02:00
viewmgr.cxx Port over remaining Point3D usage to the more type and unit safe SG* classes. 2009-03-18 08:00:08 +01:00
viewmgr.hxx viewer position: tie variables directly, rather than getter functions 2008-12-20 12:49:37 +00:00
WindowBuilder.cxx Realize viewer explicitly 2009-06-15 11:25:06 +02:00
WindowBuilder.hxx Cleanup of camera code in preperation for shadows 2008-11-18 22:45:57 +00:00
WindowSystemAdapter.cxx CameraGroup class for managing multiple cameras. 2008-08-01 15:57:29 +00:00
WindowSystemAdapter.hxx CameraGroup class for managing multiple cameras. 2008-08-01 15:57:29 +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.