]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_init.hxx
Added a new 'delimiter' property to allow an alternative delimiter to
[flightgear.git] / src / Main / fg_init.hxx
index cee62e05f31345cfb35ee038ce575e28400104be..6ed654e7cb774a5716a7f97f39ff6d7bd172e30b 100644 (file)
 #endif                                   
 
 
+#ifdef HAVE_CONFIG
+#  include <config.h>
+#endif
+
+#include <simgear/compiler.h>
+#include <simgear/timing/sg_time.hxx>
+
+#include STL_STRING
+
+#include <Airports/simple.hxx>
+
+SG_USING_STD(string);
+
+
+// Read in configuration (file and command line) and just set fg_root
+bool fgInitFGRoot ( int argc, char **argv );
+
+
+// Return the current base package version
+string fgBasePackageVersion();
+
+
+// Read in configuration (file and command line)
+bool fgInitConfig ( int argc, char **argv );
+
+
 // General house keeping initializations
-int fgInitGeneral ( void );
+bool fgInitGeneral ( void );
 
 
 // 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.
-int fgInitSubsystems( void );
+bool fgInitSubsystems( void );
 
 
 // Reset
 void fgReInitSubsystems( void );
 
 
-#endif // _FG_INIT_H
+// find basic airport location info from airport database
+bool fgFindAirportID( const string& id, FGAirport *a );
+
+// Set pos given an airport id
+bool fgSetPosFromAirportID( const string& id );
+
+// Set position and heading given an airport id and heading (degrees)
+bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg );
+
+//find altitude given glideslope and offset distance or offset distance
+//given glideslope and altitude
+void fgSetPosFromGlideSlope(void);
+
+// Initialize various time dependent systems (lighting, sun position, etc.)
+// returns a new instance of the SGTime class
+SGTime *fgInitTime();
+
+#endif // _FG_INIT_HXX