X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Ffg_init.hxx;h=5329b03811ed279b1f80c4c3309773725b1455e3;hb=d127f7709f7ac64fbbc537131bfd02bb29bc1ebe;hp=58b48a8c2e4eb018b2051f58413eec5c4af9c524;hpb=18d42ec1af014fe4f2a563607bdcce0964fa678e;p=flightgear.git diff --git a/src/Main/fg_init.hxx b/src/Main/fg_init.hxx index 58b48a8c2..5329b0381 100644 --- a/src/Main/fg_init.hxx +++ b/src/Main/fg_init.hxx @@ -26,28 +26,26 @@ #define _FG_INIT_HXX #include +#include // forward decls class SGPropertyNode; -class SGTime; - -// Read in configuration (files and command line optoins) but only set -// fg_root -bool fgInitFGRoot ( int argc, char **argv ); - // Return the current base package version std::string fgBasePackageVersion(); +void fgInitHome(); // Read in configuration (file and command line) -bool fgInitConfig ( int argc, char **argv ); +int fgInitConfig ( int argc, char **argv ); + +// log various settings / configuration state +void fgOutputSettings(); // Initialize the localization SGPropertyNode *fgInitLocale(const char *language); - // Init navaids and waypoints bool fgInitNav (); @@ -56,36 +54,24 @@ bool fgInitNav (); bool fgInitGeneral (); -// This is the top level init routine which calls all the other -// initialization routines. If you are adding a subsystem to flight -// gear, its initialization call should located in this routine. -bool fgInitSubsystems(); - +// Create all the subsystems needed by the sim +void fgCreateSubsystems(); -// Reset +// called after the subsystems have been bound and initialised, +// to peform final init +void fgPostInitSubsystems(); + +// Reset: this is what the 'reset' command (and hence, GUI) is attached to void fgReInitSubsystems(); -/** - * this is what the 'reset' command (and hence, GUI) is attached too - * it overlaps with fgReInitSubsystems quite substantially +/* + * Search in the current directory, and in on directory deeper + * for -set.xml configuration files and show the aircaft name + * and the contents of the tag in a sorted manner. + * + * @parampath the directory to search for configuration files */ -void doSimulatorReset(void); - -// Set the initial position based on presets (or defaults) -bool fgInitPosition(); - - -// Listen to /sim/tower/airport-id and set tower view position accordingly -void fgInitTowerLocationListener(); - - -// Initialize various time dependent systems (lighting, sun position, etc.) -// returns a new instance of the SGTime class -SGTime *fgInitTime(); - -// set up a time offset (aka warp) if one is specified -void fgInitTimeOffset(); - +void fgShowAircraft(const SGPath &path); #endif // _FG_INIT_HXX