1998-04-25 15:11:10 +00:00
|
|
|
//
|
|
|
|
// fg_init.cxx -- Flight Gear top level initialization routines
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started August 1997.
|
|
|
|
//
|
|
|
|
// Copyright (C) 1997 Curtis L. Olson - curt@infoplane.com
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// $Id$
|
1997-08-23 01:46:20 +00:00
|
|
|
|
|
|
|
|
1998-04-24 00:49:17 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
1998-04-22 13:25:39 +00:00
|
|
|
|
1999-05-08 02:33:13 +00:00
|
|
|
// For BC 5.01 this must be included before OpenGL includes.
|
|
|
|
#ifdef FG_MATH_EXCEPTION_CLASH
|
|
|
|
# include <math.h>
|
|
|
|
#endif
|
|
|
|
|
1999-03-11 23:09:26 +00:00
|
|
|
#include <GL/glut.h>
|
|
|
|
#include <XGL/xgl.h>
|
|
|
|
|
1997-08-23 01:46:20 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
1998-07-22 21:40:43 +00:00
|
|
|
|
|
|
|
// work around a stdc++ lib bug in some versions of linux, but doesn't
|
|
|
|
// seem to hurt to have this here for all versions of Linux.
|
|
|
|
#ifdef linux
|
|
|
|
# define _G_NO_EXTERN_TEMPLATES
|
|
|
|
#endif
|
|
|
|
|
1999-02-26 22:08:34 +00:00
|
|
|
#include <Include/compiler.h>
|
|
|
|
|
|
|
|
#include STL_STRING
|
1997-08-23 01:46:20 +00:00
|
|
|
|
1999-02-26 22:08:34 +00:00
|
|
|
#include <Debug/logstream.hxx>
|
1998-10-17 01:33:52 +00:00
|
|
|
#include <Aircraft/aircraft.hxx>
|
1998-08-25 16:59:08 +00:00
|
|
|
#include <Airports/simple.hxx>
|
1998-04-22 13:25:39 +00:00
|
|
|
#include <Astro/sky.hxx>
|
|
|
|
#include <Astro/stars.hxx>
|
1998-09-15 04:27:27 +00:00
|
|
|
#include <Astro/solarsystem.hxx>
|
1998-09-29 02:03:36 +00:00
|
|
|
#include <Autopilot/autopilot.hxx>
|
1998-04-24 00:49:17 +00:00
|
|
|
#include <Cockpit/cockpit.hxx>
|
1999-10-12 03:30:00 +00:00
|
|
|
// #include <FDM/Balloon.h>
|
1999-10-11 23:09:07 +00:00
|
|
|
#include <FDM/JSBsim.hxx>
|
1999-10-14 01:53:43 +00:00
|
|
|
#include <FDM/LaRCsim.hxx>
|
|
|
|
#include <FDM/MagicCarpet.hxx>
|
1999-03-11 23:09:26 +00:00
|
|
|
#include <Include/fg_constants.h>
|
|
|
|
#include <Include/general.hxx>
|
1998-10-27 02:14:21 +00:00
|
|
|
#include <Joystick/joystick.hxx>
|
1998-10-16 23:26:44 +00:00
|
|
|
#include <Math/fg_geodesy.hxx>
|
1998-10-16 00:51:46 +00:00
|
|
|
#include <Math/point3d.hxx>
|
1998-08-22 14:49:55 +00:00
|
|
|
#include <Math/polar3d.hxx>
|
1999-06-18 03:42:54 +00:00
|
|
|
#include <Misc/fgpath.hxx>
|
1998-04-30 12:34:17 +00:00
|
|
|
#include <Scenery/scenery.hxx>
|
1998-04-22 13:25:39 +00:00
|
|
|
#include <Scenery/tilemgr.hxx>
|
1998-04-24 00:49:17 +00:00
|
|
|
#include <Time/event.hxx>
|
|
|
|
#include <Time/fg_time.hxx>
|
1998-04-22 13:25:39 +00:00
|
|
|
#include <Time/light.hxx>
|
|
|
|
#include <Time/sunpos.hxx>
|
1999-03-22 02:08:05 +00:00
|
|
|
#include <Time/moonpos.hxx>
|
1999-08-12 17:13:44 +00:00
|
|
|
|
1999-10-14 20:30:54 +00:00
|
|
|
#ifndef FG_OLD_WEATHER
|
1999-08-12 17:13:44 +00:00
|
|
|
# include <WeatherCM/FGLocalWeatherDatabase.h>
|
|
|
|
#else
|
|
|
|
# include <Weather/weather.hxx>
|
|
|
|
#endif
|
1997-08-23 01:46:20 +00:00
|
|
|
|
1998-04-22 13:25:39 +00:00
|
|
|
#include "fg_init.hxx"
|
1998-04-25 15:11:10 +00:00
|
|
|
#include "options.hxx"
|
1998-04-22 13:25:39 +00:00
|
|
|
#include "views.hxx"
|
1999-02-02 20:13:29 +00:00
|
|
|
#include "fg_serial.hxx"
|
1998-04-22 13:25:39 +00:00
|
|
|
|
1999-03-11 23:09:26 +00:00
|
|
|
#if defined(FX) && defined(XMESA)
|
|
|
|
#include <GL/xmesa.h>
|
|
|
|
#endif
|
|
|
|
|
1999-02-26 22:08:34 +00:00
|
|
|
FG_USING_STD(string);
|
1998-06-27 16:54:32 +00:00
|
|
|
|
1998-02-12 21:58:27 +00:00
|
|
|
extern const char *default_root;
|
1997-08-25 20:27:21 +00:00
|
|
|
|
1997-08-23 01:46:20 +00:00
|
|
|
|
1999-06-18 03:42:54 +00:00
|
|
|
// Read in configuration (file and command line)
|
|
|
|
bool fgInitConfig ( int argc, char **argv ) {
|
|
|
|
// Attempt to locate and parse a config file
|
|
|
|
// First check fg_root
|
|
|
|
FGPath config( current_options.get_fg_root() );
|
|
|
|
config.append( "system.fgfsrc" );
|
|
|
|
current_options.parse_config_file( config.str() );
|
|
|
|
|
|
|
|
// Next check home directory
|
|
|
|
char* envp = ::getenv( "HOME" );
|
|
|
|
if ( envp != NULL ) {
|
|
|
|
config.set( envp );
|
|
|
|
config.append( ".fgfsrc" );
|
|
|
|
current_options.parse_config_file( config.str() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse remaining command line options
|
|
|
|
// These will override anything specified in a config file
|
|
|
|
if ( current_options.parse_command_line(argc, argv) !=
|
|
|
|
fgOPTIONS::FG_OPTIONS_OK )
|
|
|
|
{
|
|
|
|
// Something must have gone horribly wrong with the command
|
|
|
|
// line parsing or maybe the user just requested help ... :-)
|
|
|
|
current_options.usage();
|
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT, "\nExiting ...");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-07-30 23:48:24 +00:00
|
|
|
// Set initial position and orientation
|
1999-06-18 03:42:54 +00:00
|
|
|
bool fgInitPosition( void ) {
|
1998-08-27 17:01:55 +00:00
|
|
|
string id;
|
1999-02-05 21:28:09 +00:00
|
|
|
FGInterface *f;
|
1998-02-12 21:58:27 +00:00
|
|
|
|
1998-12-05 15:53:59 +00:00
|
|
|
f = current_aircraft.fdm_state;
|
1998-02-07 15:29:31 +00:00
|
|
|
|
1998-08-27 17:01:55 +00:00
|
|
|
id = current_options.get_airport_id();
|
|
|
|
if ( id.length() ) {
|
1998-07-30 23:48:24 +00:00
|
|
|
// set initial position from airport id
|
|
|
|
|
1998-04-25 15:11:10 +00:00
|
|
|
fgAIRPORTS airports;
|
|
|
|
fgAIRPORT a;
|
|
|
|
|
1999-04-05 02:13:58 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
1998-11-06 21:17:31 +00:00
|
|
|
"Attempting to set starting position from airport code "
|
|
|
|
<< id );
|
1998-04-25 15:11:10 +00:00
|
|
|
|
1998-08-25 20:53:24 +00:00
|
|
|
airports.load("apt_simple");
|
1998-09-15 02:09:24 +00:00
|
|
|
if ( ! airports.search( id, &a ) ) {
|
1999-04-05 02:13:58 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT,
|
1998-11-06 21:17:31 +00:00
|
|
|
"Failed to find " << id << " in database." );
|
|
|
|
exit(-1);
|
1998-04-25 15:11:10 +00:00
|
|
|
} else {
|
1998-12-03 01:14:58 +00:00
|
|
|
f->set_Longitude( a.longitude * DEG_TO_RAD );
|
|
|
|
f->set_Latitude( a.latitude * DEG_TO_RAD );
|
1998-05-06 03:16:23 +00:00
|
|
|
}
|
1998-07-30 23:48:24 +00:00
|
|
|
} else {
|
|
|
|
// set initial position from default or command line coordinates
|
|
|
|
|
1998-12-03 01:14:58 +00:00
|
|
|
f->set_Longitude( current_options.get_lon() * DEG_TO_RAD );
|
|
|
|
f->set_Latitude( current_options.get_lat() * DEG_TO_RAD );
|
1998-04-25 15:11:10 +00:00
|
|
|
}
|
1999-04-05 02:13:58 +00:00
|
|
|
|
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
1998-11-07 19:07:06 +00:00
|
|
|
"starting altitude is = " << current_options.get_altitude() );
|
1998-07-30 23:48:24 +00:00
|
|
|
|
1998-12-03 01:14:58 +00:00
|
|
|
f->set_Altitude( current_options.get_altitude() * METER_TO_FEET );
|
1999-01-20 13:42:22 +00:00
|
|
|
fgFDMSetGroundElevation( current_options.get_flight_model(),
|
|
|
|
(f->get_Altitude() - 3.758099) * FEET_TO_METER );
|
1998-07-30 23:48:24 +00:00
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
|
|
|
"Initial position is: ("
|
1999-04-05 02:13:58 +00:00
|
|
|
<< (f->get_Longitude() * RAD_TO_DEG) << ", "
|
|
|
|
<< (f->get_Latitude() * RAD_TO_DEG) << ", "
|
1998-12-03 01:14:58 +00:00
|
|
|
<< (f->get_Altitude() * FEET_TO_METER) << ")" );
|
1998-04-25 20:24:00 +00:00
|
|
|
|
1999-06-18 03:42:54 +00:00
|
|
|
return true;
|
1998-04-25 15:11:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// General house keeping initializations
|
1999-06-18 03:42:54 +00:00
|
|
|
bool fgInitGeneral( void ) {
|
1998-08-27 17:01:55 +00:00
|
|
|
string root;
|
1999-03-11 23:09:26 +00:00
|
|
|
char *mesa_win_state;
|
1998-04-25 15:11:10 +00:00
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO, "General Initialization" );
|
|
|
|
FG_LOG( FG_GENERAL, FG_INFO, "======= ==============" );
|
1998-04-25 20:24:00 +00:00
|
|
|
|
1998-08-27 17:01:55 +00:00
|
|
|
root = current_options.get_fg_root();
|
1998-09-08 21:40:08 +00:00
|
|
|
if ( ! root.length() ) {
|
1998-07-13 21:00:09 +00:00
|
|
|
// No root path set? Then bail ...
|
1999-04-05 02:13:58 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT,
|
1998-11-06 21:17:31 +00:00
|
|
|
"Cannot continue without environment variable FG_ROOT"
|
|
|
|
<< "being defined." );
|
|
|
|
exit(-1);
|
1998-04-25 15:11:10 +00:00
|
|
|
}
|
1999-08-14 22:07:15 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO, "FG_ROOT = " << '"' << root << '"' << endl );
|
1998-04-25 15:11:10 +00:00
|
|
|
|
1999-03-11 23:09:26 +00:00
|
|
|
#if defined(FX) && defined(XMESA)
|
|
|
|
// initialize full screen flag
|
|
|
|
global_fullscreen = false;
|
|
|
|
if ( strstr ( general.get_glRenderer(), "Glide" ) ) {
|
|
|
|
// Test for the MESA_GLX_FX env variable
|
|
|
|
if ( (mesa_win_state = getenv( "MESA_GLX_FX" )) != NULL) {
|
|
|
|
// test if we are fullscreen mesa/glide
|
1999-04-05 02:13:58 +00:00
|
|
|
if ( (mesa_win_state[0] == 'f') ||
|
1999-03-11 23:09:26 +00:00
|
|
|
(mesa_win_state[0] == 'F') ) {
|
|
|
|
global_fullscreen = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
1998-05-07 23:14:14 +00:00
|
|
|
|
1999-06-18 03:42:54 +00:00
|
|
|
return true;
|
1998-04-25 15:11:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
// Returns non-zero if a problem encountered.
|
1999-06-18 03:42:54 +00:00
|
|
|
bool fgInitSubsystems( void ) {
|
1999-04-08 19:53:46 +00:00
|
|
|
FGTime::cur_time_params = new FGTime();
|
|
|
|
|
1998-12-09 18:50:12 +00:00
|
|
|
fgLIGHT *l = &cur_light_params;
|
1999-04-08 19:53:46 +00:00
|
|
|
FGTime *t = FGTime::cur_time_params;
|
1998-04-25 15:11:10 +00:00
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO, "Initialize Subsystems");
|
|
|
|
FG_LOG( FG_GENERAL, FG_INFO, "========== ==========");
|
1998-04-25 15:11:10 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
if ( current_options.get_flight_model() == FGInterface::FG_LARCSIM ) {
|
|
|
|
cur_fdm_state = new FGLaRCsim;
|
|
|
|
} else if ( current_options.get_flight_model() == FGInterface::FG_JSBSIM ) {
|
|
|
|
cur_fdm_state = new FGJSBsim;
|
1999-10-12 03:30:00 +00:00
|
|
|
// } else if ( current_options.get_flight_model() ==
|
|
|
|
// FGInterface::FG_BALLOONSIM ) {
|
|
|
|
// cur_fdm_state = new FGBalloonSim;
|
1999-10-14 01:53:43 +00:00
|
|
|
} else if ( current_options.get_flight_model() ==
|
|
|
|
FGInterface::FG_MAGICCARPET ) {
|
|
|
|
cur_fdm_state = new FGMagicCarpet;
|
1999-10-11 23:09:07 +00:00
|
|
|
} else {
|
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT,
|
|
|
|
"No flight model, can't init aircraft" );
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
1998-08-22 14:49:55 +00:00
|
|
|
// allocates structures so must happen before any of the flight
|
|
|
|
// model or control parameters are set
|
1998-04-25 15:11:10 +00:00
|
|
|
fgAircraftInit(); // In the future this might not be the case.
|
|
|
|
|
|
|
|
// set the initial position
|
|
|
|
fgInitPosition();
|
1997-08-23 01:46:20 +00:00
|
|
|
|
1998-08-22 14:49:55 +00:00
|
|
|
// Initialize the Scenery Management subsystem
|
|
|
|
if ( fgSceneryInit() ) {
|
|
|
|
// Scenery initialized ok.
|
|
|
|
} else {
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT, "Error in Scenery initialization!" );
|
|
|
|
exit(-1);
|
1998-08-22 14:49:55 +00:00
|
|
|
}
|
|
|
|
|
1999-06-13 05:58:02 +00:00
|
|
|
if( global_tile_mgr.init() ) {
|
1998-08-22 14:49:55 +00:00
|
|
|
// Load the local scenery data
|
1999-06-13 05:58:02 +00:00
|
|
|
global_tile_mgr.update();
|
1998-08-22 14:49:55 +00:00
|
|
|
} else {
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT, "Error in Tile Manager initialization!" );
|
|
|
|
exit(-1);
|
1998-08-22 14:49:55 +00:00
|
|
|
}
|
|
|
|
|
1999-04-05 02:13:58 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG,
|
|
|
|
"Current terrain elevation after tile mgr init " <<
|
1999-01-27 04:49:17 +00:00
|
|
|
scenery.cur_elev );
|
|
|
|
|
1998-12-03 01:14:58 +00:00
|
|
|
// Calculate ground elevation at starting point (we didn't have
|
1998-12-06 14:52:54 +00:00
|
|
|
// tmp_abs_view_pos calculated when fgTileMgrUpdate() was called above
|
1999-01-27 04:49:17 +00:00
|
|
|
//
|
1998-08-22 14:49:55 +00:00
|
|
|
// calculalate a cartesian point somewhere along the line between
|
1998-10-16 23:26:44 +00:00
|
|
|
// the center of the earth and our view position. Doesn't have to
|
|
|
|
// be the exact elevation (this is good because we don't know it
|
|
|
|
// yet :-)
|
1999-01-27 04:49:17 +00:00
|
|
|
|
|
|
|
// now handled inside of the fgTileMgrUpdate()
|
|
|
|
|
|
|
|
/*
|
1999-10-11 23:09:07 +00:00
|
|
|
geod_pos = Point3D( cur_fdm_state->get_Longitude(), cur_fdm_state->get_Latitude(), 0.0);
|
1998-12-06 14:52:54 +00:00
|
|
|
tmp_abs_view_pos = fgGeodToCart(geod_pos);
|
1998-08-22 14:49:55 +00:00
|
|
|
|
1999-04-05 02:13:58 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG,
|
1998-12-06 14:52:54 +00:00
|
|
|
"Initial abs_view_pos = " << tmp_abs_view_pos );
|
1999-04-05 02:13:58 +00:00
|
|
|
scenery.cur_elev =
|
1999-10-11 23:09:07 +00:00
|
|
|
fgTileMgrCurElev( cur_fdm_state->get_Longitude(), cur_fdm_state->get_Latitude(),
|
1999-01-27 04:49:17 +00:00
|
|
|
tmp_abs_view_pos );
|
1999-04-05 02:13:58 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG,
|
1998-11-11 00:24:00 +00:00
|
|
|
"Altitude after update " << scenery.cur_elev );
|
1999-01-27 04:49:17 +00:00
|
|
|
*/
|
|
|
|
|
1999-04-05 02:13:58 +00:00
|
|
|
fgFDMSetGroundElevation( current_options.get_flight_model(),
|
1999-01-20 13:42:22 +00:00
|
|
|
scenery.cur_elev );
|
1998-08-22 14:49:55 +00:00
|
|
|
|
|
|
|
// Reset our altitude if we are below ground
|
1999-10-11 23:09:07 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG, "Current altitude = " << cur_fdm_state->get_Altitude() );
|
1999-04-05 02:13:58 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG, "Current runway altitude = " <<
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->get_Runway_altitude() );
|
1999-01-27 04:49:17 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
if ( cur_fdm_state->get_Altitude() < cur_fdm_state->get_Runway_altitude() + 3.758099) {
|
|
|
|
cur_fdm_state->set_Altitude( cur_fdm_state->get_Runway_altitude() + 3.758099 );
|
1998-08-22 14:49:55 +00:00
|
|
|
}
|
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
|
|
|
"Updated position (after elevation adj): ("
|
1999-10-11 23:09:07 +00:00
|
|
|
<< (cur_fdm_state->get_Latitude() * RAD_TO_DEG) << ", "
|
|
|
|
<< (cur_fdm_state->get_Longitude() * RAD_TO_DEG) << ", "
|
|
|
|
<< (cur_fdm_state->get_Altitude() * FEET_TO_METER) << ")" );
|
1998-12-06 14:52:54 +00:00
|
|
|
|
|
|
|
// We need to calculate a few more values here that would normally
|
1999-10-14 17:32:34 +00:00
|
|
|
// be calculated by the FDM so that the current_view.UpdateViewMath()
|
1998-12-06 14:52:54 +00:00
|
|
|
// routine doesn't get hosed.
|
|
|
|
|
|
|
|
double sea_level_radius_meters;
|
|
|
|
double lat_geoc;
|
|
|
|
// Set the FG variables first
|
1999-10-11 23:09:07 +00:00
|
|
|
fgGeodToGeoc( cur_fdm_state->get_Latitude(), cur_fdm_state->get_Altitude(),
|
1998-12-06 14:52:54 +00:00
|
|
|
&sea_level_radius_meters, &lat_geoc);
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_Geocentric_Position( lat_geoc, cur_fdm_state->get_Longitude(),
|
|
|
|
cur_fdm_state->get_Altitude() +
|
1998-12-06 14:52:54 +00:00
|
|
|
(sea_level_radius_meters * METER_TO_FEET) );
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_Sea_level_radius( sea_level_radius_meters * METER_TO_FEET );
|
1998-12-06 14:52:54 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_sin_cos_longitude(cur_fdm_state->get_Longitude());
|
|
|
|
cur_fdm_state->set_sin_cos_latitude(cur_fdm_state->get_Latitude());
|
1999-04-15 23:59:01 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_sin_lat_geocentric(sin(lat_geoc));
|
|
|
|
cur_fdm_state->set_cos_lat_geocentric(cos(lat_geoc));
|
1999-04-15 23:59:01 +00:00
|
|
|
|
1998-08-22 14:49:55 +00:00
|
|
|
// The following section sets up the flight model EOM parameters
|
|
|
|
// and should really be read in from one or more files.
|
|
|
|
|
1998-04-22 13:25:39 +00:00
|
|
|
// Initial Velocity
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_Velocities_Local( current_options.get_uBody(),
|
1999-07-31 04:58:26 +00:00
|
|
|
current_options.get_vBody(),
|
|
|
|
current_options.get_wBody());
|
1997-08-23 01:46:20 +00:00
|
|
|
|
1998-04-22 13:25:39 +00:00
|
|
|
// Initial Orientation
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_Euler_Angles( current_options.get_roll() * DEG_TO_RAD,
|
1998-12-03 04:25:02 +00:00
|
|
|
current_options.get_pitch() * DEG_TO_RAD,
|
|
|
|
current_options.get_heading() * DEG_TO_RAD );
|
1997-08-23 01:46:20 +00:00
|
|
|
|
1998-12-03 01:14:58 +00:00
|
|
|
// Initial Angular Body rates
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_Omega_Body( 7.206685E-05, 0.0, 9.492658E-05 );
|
1997-08-23 01:46:20 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_Earth_position_angle( 0.0 );
|
1997-08-23 01:46:20 +00:00
|
|
|
|
1998-04-22 13:25:39 +00:00
|
|
|
// Mass properties and geometry values
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_Inertias( 8.547270E+01,
|
1998-12-03 01:14:58 +00:00
|
|
|
1.048000E+03, 3.000000E+03, 3.530000E+03, 0.000000E+00 );
|
1997-08-23 01:46:20 +00:00
|
|
|
|
1998-04-22 13:25:39 +00:00
|
|
|
// CG position w.r.t. ref. point
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_CG_Position( 0.0, 0.0, 0.0 );
|
1997-08-23 01:46:20 +00:00
|
|
|
|
1998-04-22 13:25:39 +00:00
|
|
|
// Initialize the event manager
|
1998-05-22 21:28:52 +00:00
|
|
|
global_events.Init();
|
1997-12-30 20:47:34 +00:00
|
|
|
|
1998-04-25 20:24:00 +00:00
|
|
|
// Output event stats every 60 seconds
|
1998-08-29 13:09:25 +00:00
|
|
|
global_events.Register( "fgEVENT_MGR::PrintStats()",
|
|
|
|
fgMethodCallback<fgEVENT_MGR>( &global_events,
|
|
|
|
&fgEVENT_MGR::PrintStats),
|
|
|
|
fgEVENT::FG_EVENT_READY, 60000 );
|
1997-12-30 20:47:34 +00:00
|
|
|
|
1998-04-25 20:24:00 +00:00
|
|
|
// Initialize the time dependent variables
|
1999-10-11 23:09:07 +00:00
|
|
|
t->init(*cur_fdm_state);
|
|
|
|
t->update(*cur_fdm_state);
|
1997-09-16 15:50:29 +00:00
|
|
|
|
1998-04-22 13:25:39 +00:00
|
|
|
// Initialize view parameters
|
1999-10-14 17:32:34 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG, "Before current_view.init()");
|
|
|
|
current_view.Init();
|
|
|
|
pilot_view.Init();
|
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG, "After current_view.init()");
|
|
|
|
current_view.UpdateViewMath(*cur_fdm_state);
|
|
|
|
pilot_view.UpdateViewMath(*cur_fdm_state);
|
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG, " abs_view_pos = " << current_view.get_abs_view_pos());
|
|
|
|
// current_view.UpdateWorldToEye(f);
|
1997-12-30 23:09:04 +00:00
|
|
|
|
1998-09-15 04:27:27 +00:00
|
|
|
// Build the solar system
|
|
|
|
//fgSolarSystemInit(*t);
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG(FG_GENERAL, FG_INFO, "Building SolarSystem");
|
1998-09-15 04:27:27 +00:00
|
|
|
SolarSystem::theSolarSystem = new SolarSystem(t);
|
1998-04-25 20:24:00 +00:00
|
|
|
|
|
|
|
// Initialize the Stars subsystem
|
|
|
|
if( fgStarsInit() ) {
|
|
|
|
// Stars initialized ok.
|
|
|
|
} else {
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT, "Error in Stars initialization!" );
|
|
|
|
exit(-1);
|
1998-04-25 20:24:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize the planetary subsystem
|
1999-04-05 02:13:58 +00:00
|
|
|
// global_events.Register( "fgPlanetsInit()", fgPlanetsInit,
|
1998-09-15 04:27:27 +00:00
|
|
|
// fgEVENT::FG_EVENT_READY, 600000);
|
1998-04-25 20:24:00 +00:00
|
|
|
|
1999-04-05 02:13:58 +00:00
|
|
|
// Initialize the sun's position
|
|
|
|
// global_events.Register( "fgSunInit()", fgSunInit,
|
1998-09-15 04:27:27 +00:00
|
|
|
// fgEVENT::FG_EVENT_READY, 30000 );
|
1998-04-25 20:24:00 +00:00
|
|
|
|
|
|
|
// Intialize the moon's position
|
1999-04-05 02:13:58 +00:00
|
|
|
// global_events.Register( "fgMoonInit()", fgMoonInit,
|
1998-09-15 04:27:27 +00:00
|
|
|
// fgEVENT::FG_EVENT_READY, 600000 );
|
1998-04-25 20:24:00 +00:00
|
|
|
|
1998-09-15 04:27:27 +00:00
|
|
|
// register the periodic update of Sun, moon, and planets
|
|
|
|
global_events.Register( "ssolsysUpdate", solarSystemRebuild,
|
|
|
|
fgEVENT::FG_EVENT_READY, 600000);
|
1999-04-05 02:13:58 +00:00
|
|
|
|
1998-04-25 20:24:00 +00:00
|
|
|
// fgUpdateSunPos() needs a few position and view parameters set
|
|
|
|
// so it can calculate local relative sun angle and a few other
|
|
|
|
// things for correctly orienting the sky.
|
|
|
|
fgUpdateSunPos();
|
1999-03-22 02:08:05 +00:00
|
|
|
fgUpdateMoonPos();
|
1998-09-15 04:27:27 +00:00
|
|
|
global_events.Register( "fgUpdateSunPos()", fgUpdateSunPos,
|
|
|
|
fgEVENT::FG_EVENT_READY, 60000);
|
1999-03-22 02:08:05 +00:00
|
|
|
global_events.Register( "fgUpdateMoonPos()", fgUpdateMoonPos,
|
|
|
|
fgEVENT::FG_EVENT_READY, 60000);
|
1998-04-25 20:24:00 +00:00
|
|
|
|
1998-04-22 13:25:39 +00:00
|
|
|
// Initialize Lighting interpolation tables
|
1998-05-20 20:51:33 +00:00
|
|
|
l->Init();
|
1998-04-22 13:25:39 +00:00
|
|
|
|
|
|
|
// update the lighting parameters (based on sun angle)
|
1998-08-29 13:09:25 +00:00
|
|
|
global_events.Register( "fgLight::Update()",
|
|
|
|
fgMethodCallback<fgLIGHT>( &cur_light_params,
|
|
|
|
&fgLIGHT::Update),
|
|
|
|
fgEVENT::FG_EVENT_READY, 30000 );
|
1998-04-22 13:25:39 +00:00
|
|
|
|
|
|
|
// Initialize the weather modeling subsystem
|
1999-10-14 20:30:54 +00:00
|
|
|
#ifndef FG_OLD_WEATHER
|
1999-08-10 03:44:47 +00:00
|
|
|
// Initialize the WeatherDatabase
|
|
|
|
FG_LOG(FG_GENERAL, FG_INFO, "Creating LocalWeatherDatabase");
|
|
|
|
FGLocalWeatherDatabase::theFGLocalWeatherDatabase =
|
|
|
|
new FGLocalWeatherDatabase(
|
|
|
|
Point3D( current_aircraft.fdm_state->get_Latitude(),
|
|
|
|
current_aircraft.fdm_state->get_Longitude(),
|
|
|
|
current_aircraft.fdm_state->get_Altitude()
|
|
|
|
* FEET_TO_METER) );
|
|
|
|
|
|
|
|
WeatherDatabase = FGLocalWeatherDatabase::theFGLocalWeatherDatabase;
|
|
|
|
|
|
|
|
// register the periodic update of the weather
|
|
|
|
global_events.Register( "weather update", fgUpdateWeatherDatabase,
|
|
|
|
fgEVENT::FG_EVENT_READY, 30000);
|
1999-08-12 17:13:44 +00:00
|
|
|
#else
|
|
|
|
current_weather.Init();
|
|
|
|
#endif
|
1997-08-23 01:46:20 +00:00
|
|
|
|
1998-04-22 13:25:39 +00:00
|
|
|
// Initialize the Cockpit subsystem
|
1998-02-12 21:58:27 +00:00
|
|
|
if( fgCockpitInit( ¤t_aircraft )) {
|
|
|
|
// Cockpit initialized ok.
|
|
|
|
} else {
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT, "Error in Cockpit initialization!" );
|
|
|
|
exit(-1);
|
1997-09-04 02:17:18 +00:00
|
|
|
}
|
1997-08-25 20:27:21 +00:00
|
|
|
|
1998-02-12 21:58:27 +00:00
|
|
|
// Initialize the "sky"
|
1997-12-17 23:13:34 +00:00
|
|
|
fgSkyInit();
|
|
|
|
|
1998-04-22 13:25:39 +00:00
|
|
|
// Initialize the flight model subsystem data structures base on
|
|
|
|
// above values
|
1998-02-12 21:58:27 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
// fgFDMInit( current_options.get_flight_model(), cur_fdm_state,
|
|
|
|
// 1.0 / current_options.get_model_hz() );
|
|
|
|
cur_fdm_state->init( 1.0 / current_options.get_model_hz() );
|
1997-08-25 20:27:21 +00:00
|
|
|
|
1998-07-12 03:14:42 +00:00
|
|
|
// I'm just sticking this here for now, it should probably move
|
|
|
|
// eventually
|
1999-10-11 23:09:07 +00:00
|
|
|
scenery.cur_elev = cur_fdm_state->get_Runway_altitude() * FEET_TO_METER;
|
1998-07-12 03:14:42 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
if ( cur_fdm_state->get_Altitude() < cur_fdm_state->get_Runway_altitude() + 3.758099) {
|
|
|
|
cur_fdm_state->set_Altitude( cur_fdm_state->get_Runway_altitude() + 3.758099 );
|
1998-07-12 03:14:42 +00:00
|
|
|
}
|
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
|
|
|
"Updated position (after elevation adj): ("
|
1999-10-11 23:09:07 +00:00
|
|
|
<< (cur_fdm_state->get_Latitude() * RAD_TO_DEG) << ", "
|
|
|
|
<< (cur_fdm_state->get_Longitude() * RAD_TO_DEG) << ", "
|
|
|
|
<< (cur_fdm_state->get_Altitude() * FEET_TO_METER) << ")" );
|
1998-07-12 03:14:42 +00:00
|
|
|
// end of thing that I just stuck in that I should probably move
|
|
|
|
|
1998-02-12 21:58:27 +00:00
|
|
|
// Joystick support
|
1998-10-25 10:57:18 +00:00
|
|
|
if ( fgJoystickInit() ) {
|
1998-02-12 21:58:27 +00:00
|
|
|
// Joystick initialized ok.
|
|
|
|
} else {
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT, "Error in Joystick initialization!" );
|
1998-02-12 21:58:27 +00:00
|
|
|
}
|
1997-12-30 20:47:34 +00:00
|
|
|
|
1998-04-24 00:49:17 +00:00
|
|
|
// Autopilot init added here, by Jeff Goeke-Smith
|
|
|
|
fgAPInit(¤t_aircraft);
|
1998-11-16 13:59:58 +00:00
|
|
|
|
|
|
|
// Initialize serial ports
|
1999-04-27 19:27:45 +00:00
|
|
|
#if ! defined( MACOS )
|
1998-11-16 13:59:58 +00:00
|
|
|
fgSerialInit();
|
1999-04-27 19:27:45 +00:00
|
|
|
#endif
|
1998-11-16 13:59:58 +00:00
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO, endl);
|
1998-04-24 00:49:17 +00:00
|
|
|
|
1999-06-18 03:42:54 +00:00
|
|
|
return true;
|
1997-08-23 01:46:20 +00:00
|
|
|
}
|
1999-04-27 15:52:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
void fgReInitSubsystems( void )
|
|
|
|
{
|
1999-05-12 02:07:21 +00:00
|
|
|
FGTime *t = FGTime::cur_time_params;
|
|
|
|
|
|
|
|
int toggle_pause = t->getPause();
|
|
|
|
|
|
|
|
if( !toggle_pause )
|
|
|
|
t->togglePauseMode();
|
|
|
|
|
|
|
|
fgInitPosition();
|
1999-06-13 05:58:02 +00:00
|
|
|
if( global_tile_mgr.init() ) {
|
1999-05-12 02:07:21 +00:00
|
|
|
// Load the local scenery data
|
1999-06-13 05:58:02 +00:00
|
|
|
global_tile_mgr.update();
|
1999-04-27 15:52:32 +00:00
|
|
|
} else {
|
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT, "Error in Tile Manager initialization!" );
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
fgFDMSetGroundElevation( current_options.get_flight_model(),
|
|
|
|
scenery.cur_elev );
|
|
|
|
|
|
|
|
// Reset our altitude if we are below ground
|
1999-10-11 23:09:07 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG, "Current altitude = " << cur_fdm_state->get_Altitude() );
|
1999-04-27 15:52:32 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG, "Current runway altitude = " <<
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->get_Runway_altitude() );
|
1999-04-27 15:52:32 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
if ( cur_fdm_state->get_Altitude() < cur_fdm_state->get_Runway_altitude() + 3.758099) {
|
|
|
|
cur_fdm_state->set_Altitude( cur_fdm_state->get_Runway_altitude() + 3.758099 );
|
1999-04-27 15:52:32 +00:00
|
|
|
}
|
|
|
|
double sea_level_radius_meters;
|
|
|
|
double lat_geoc;
|
|
|
|
// Set the FG variables first
|
1999-10-11 23:09:07 +00:00
|
|
|
fgGeodToGeoc( cur_fdm_state->get_Latitude(), cur_fdm_state->get_Altitude(),
|
1999-04-27 15:52:32 +00:00
|
|
|
&sea_level_radius_meters, &lat_geoc);
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_Geocentric_Position( lat_geoc, cur_fdm_state->get_Longitude(),
|
|
|
|
cur_fdm_state->get_Altitude() +
|
1999-04-27 15:52:32 +00:00
|
|
|
(sea_level_radius_meters * METER_TO_FEET) );
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_Sea_level_radius( sea_level_radius_meters * METER_TO_FEET );
|
1999-04-27 15:52:32 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_sin_cos_longitude(cur_fdm_state->get_Longitude());
|
|
|
|
cur_fdm_state->set_sin_cos_latitude(cur_fdm_state->get_Latitude());
|
1999-04-27 15:52:32 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_sin_lat_geocentric(sin(lat_geoc));
|
|
|
|
cur_fdm_state->set_cos_lat_geocentric(cos(lat_geoc));
|
1999-04-27 15:52:32 +00:00
|
|
|
|
|
|
|
// The following section sets up the flight model EOM parameters
|
|
|
|
// and should really be read in from one or more files.
|
|
|
|
|
|
|
|
// Initial Velocity
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_Velocities_Local( current_options.get_uBody(),
|
1999-07-31 04:58:26 +00:00
|
|
|
current_options.get_vBody(),
|
|
|
|
current_options.get_wBody());
|
1999-04-27 15:52:32 +00:00
|
|
|
|
|
|
|
// Initial Orientation
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_Euler_Angles( current_options.get_roll() * DEG_TO_RAD,
|
1999-04-27 15:52:32 +00:00
|
|
|
current_options.get_pitch() * DEG_TO_RAD,
|
|
|
|
current_options.get_heading() * DEG_TO_RAD );
|
|
|
|
|
|
|
|
// Initial Angular Body rates
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_Omega_Body( 7.206685E-05, 0.0, 9.492658E-05 );
|
1999-04-27 15:52:32 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_Earth_position_angle( 0.0 );
|
1999-04-27 15:52:32 +00:00
|
|
|
|
|
|
|
// Mass properties and geometry values
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_Inertias( 8.547270E+01,
|
1999-04-27 15:52:32 +00:00
|
|
|
1.048000E+03, 3.000000E+03, 3.530000E+03, 0.000000E+00 );
|
|
|
|
|
|
|
|
// CG position w.r.t. ref. point
|
1999-10-11 23:09:07 +00:00
|
|
|
cur_fdm_state->set_CG_Position( 0.0, 0.0, 0.0 );
|
1999-04-27 15:52:32 +00:00
|
|
|
|
|
|
|
// Initialize view parameters
|
1999-10-14 17:32:34 +00:00
|
|
|
current_view.set_view_offset( 0.0 );
|
|
|
|
current_view.set_goal_view_offset( 0.0 );
|
|
|
|
pilot_view.set_view_offset( 0.0 );
|
|
|
|
pilot_view.set_goal_view_offset( 0.0 );
|
|
|
|
|
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG, "After current_view.init()");
|
|
|
|
current_view.UpdateViewMath(*cur_fdm_state);
|
|
|
|
pilot_view.UpdateViewMath(*cur_fdm_state);
|
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG, " abs_view_pos = " << current_view.get_abs_view_pos());
|
1999-04-27 15:52:32 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
// fgFDMInit( current_options.get_flight_model(), cur_fdm_state,
|
|
|
|
// 1.0 / current_options.get_model_hz() );
|
|
|
|
cur_fdm_state->init( 1.0 / current_options.get_model_hz() );
|
1999-04-27 15:52:32 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
scenery.cur_elev = cur_fdm_state->get_Runway_altitude() * FEET_TO_METER;
|
1999-04-27 15:52:32 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
if ( cur_fdm_state->get_Altitude() < cur_fdm_state->get_Runway_altitude() + 3.758099) {
|
|
|
|
cur_fdm_state->set_Altitude( cur_fdm_state->get_Runway_altitude() + 3.758099 );
|
1999-04-27 15:52:32 +00:00
|
|
|
}
|
|
|
|
|
1999-05-12 02:07:21 +00:00
|
|
|
controls.reset_all();
|
|
|
|
fgAPReset();
|
|
|
|
|
|
|
|
if( !toggle_pause )
|
|
|
|
t->togglePauseMode();
|
1999-04-27 15:52:32 +00:00
|
|
|
}
|