]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_init.hxx
Added code to put aircraft at the end of the runway closest to the desired
[flightgear.git] / src / Main / fg_init.hxx
index cee62e05f31345cfb35ee038ce575e28400104be..1210e3daaff2ee92604137a8a6fdf7cdb3c1c0b4 100644 (file)
 #endif                                   
 
 
+// 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 );
 
 
+// Set current_options lon/lat given an airport id
+bool fgSetPosFromAirportID( const string& id );
+
+// Set current_options lon/lat given an airport id and heading (degrees)
+bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg );
+
+
 #endif // _FG_INIT_H