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>
|
2000-02-16 23:01:03 +00:00
|
|
|
#include <simgear/xgl/xgl.h>
|
1999-03-11 23:09:26 +00:00
|
|
|
|
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
|
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/compiler.h>
|
1999-02-26 22:08:34 +00:00
|
|
|
|
|
|
|
#include STL_STRING
|
1997-08-23 01:46:20 +00:00
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/constants.h>
|
2000-02-16 23:01:03 +00:00
|
|
|
#include <simgear/debug/logstream.hxx>
|
|
|
|
#include <simgear/math/point3d.hxx>
|
|
|
|
#include <simgear/math/polar3d.hxx>
|
2000-09-27 20:16:22 +00:00
|
|
|
#include <simgear/math/sg_geodesy.hxx>
|
2000-02-16 23:01:03 +00:00
|
|
|
#include <simgear/misc/fgpath.hxx>
|
2000-07-06 22:13:24 +00:00
|
|
|
#include <simgear/timing/sg_time.hxx>
|
2000-02-15 03:30:01 +00:00
|
|
|
|
1998-10-17 01:33:52 +00:00
|
|
|
#include <Aircraft/aircraft.hxx>
|
2000-08-16 00:09:03 +00:00
|
|
|
#include <Airports/runways.hxx>
|
1998-08-25 16:59:08 +00:00
|
|
|
#include <Airports/simple.hxx>
|
2000-04-30 06:51:49 +00:00
|
|
|
#include <Autopilot/auto_gui.hxx>
|
|
|
|
#include <Autopilot/newauto.hxx>
|
1998-04-24 00:49:17 +00:00
|
|
|
#include <Cockpit/cockpit.hxx>
|
2000-04-25 03:09:26 +00:00
|
|
|
#include <Cockpit/radiostack.hxx>
|
User-visible
- knobs now continue to rotate when you hold down the mouse
- the middle mouse button makes knobs rotate much faster
- there are NAV1, NAV2, and ADF radios that can be tuned using the mouse
- there are standby frequencies for NAV1 and NAV2, and buttons to swap
- there is a crude, rather silly-looking DME, hard-wired to NAV1
- there is a crude, rather silly-looking autopilot that can lock
the heading (to the bug on the gyro), can lock to NAV1, and can lock
the current altitude
- the knobs for changing the radials on NAV1 and NAV2 look much better
and are in the right place
- tuning into an ILS frequency doesn't change the displayed radial for
NAV1
Code
- I've created a new module, sp_panel.[ch]xx, that constructs the
default single-prop panel; this works entirely outside of FGPanel,
so it is possible to construct similar modules for other sorts of
panels; all code specific to the default panel has been removed from
panel.cxx
- current_panel is now a pointer
- radiostack.[ch]xx keeps track both of the actual radial and of the
selected radial (they will differ with ILS); the NAV gauges should
not spin around automatically to show the actual radial (we need to
do something similar with the autopilot)
- the panel is initialized fairly early
- make sure that standby frequencies also get initialized
- I've started combining and clipping small textures to save texture
memory; there's a lot more to do, but at least I've made a start
2000-05-02 18:26:00 +00:00
|
|
|
#include <Cockpit/panel.hxx>
|
2000-09-22 17:20:56 +00:00
|
|
|
#include <Cockpit/panel_io.hxx>
|
1999-10-15 22:21:09 +00:00
|
|
|
#include <FDM/Balloon.h>
|
1999-11-19 02:10:24 +00:00
|
|
|
#include <FDM/External.hxx>
|
2000-07-24 17:27:12 +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/general.hxx>
|
1998-10-27 02:14:21 +00:00
|
|
|
#include <Joystick/joystick.hxx>
|
2000-06-23 00:30:04 +00:00
|
|
|
#include <Objects/matlib.hxx>
|
2000-04-24 23:51:26 +00:00
|
|
|
#include <Navaids/fixlist.hxx>
|
|
|
|
#include <Navaids/ilslist.hxx>
|
|
|
|
#include <Navaids/navlist.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>
|
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>
|
2000-07-05 02:39:30 +00:00
|
|
|
#include <Time/tmp.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"
|
1999-11-19 02:10:24 +00:00
|
|
|
#include "fg_io.hxx"
|
2000-07-08 06:29:19 +00:00
|
|
|
#include "globals.hxx"
|
1998-04-25 15:11:10 +00:00
|
|
|
#include "options.hxx"
|
1998-04-22 13:25:39 +00:00
|
|
|
#include "views.hxx"
|
2000-07-03 20:09:56 +00:00
|
|
|
#include "bfi.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;
|
|
|
|
}
|
|
|
|
|
1999-11-04 00:41:23 +00:00
|
|
|
return true;
|
1999-06-18 03:42:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-21 22:54:14 +00:00
|
|
|
// Set current_options lon/lat given an airport id
|
|
|
|
bool fgSetPosFromAirportID( const string& id ) {
|
|
|
|
FGAirport a;
|
|
|
|
double lon, lat;
|
1998-02-07 15:29:31 +00:00
|
|
|
|
1998-08-27 17:01:55 +00:00
|
|
|
if ( id.length() ) {
|
1998-07-30 23:48:24 +00:00
|
|
|
// set initial position from airport id
|
|
|
|
|
2000-03-29 20:21:31 +00:00
|
|
|
FGPath path( current_options.get_fg_root() );
|
|
|
|
path.append( "Airports" );
|
2000-05-27 05:54:02 +00:00
|
|
|
path.append( "simple.mk4" );
|
2000-03-29 20:21:31 +00:00
|
|
|
FGAirports airports( path.c_str() );
|
1998-04-25 15:11:10 +00:00
|
|
|
|
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
|
|
|
|
2000-03-29 20:21:31 +00:00
|
|
|
// FGPath inpath( current_options.get_fg_root() );
|
|
|
|
// inpath.append( "Airports" );
|
|
|
|
// inpath.append( "apt_simple" );
|
|
|
|
// airports.load( inpath.c_str() );
|
|
|
|
|
|
|
|
// FGPath outpath( current_options.get_fg_root() );
|
|
|
|
// outpath.append( "Airports" );
|
|
|
|
// outpath.append( "simple.gdbm" );
|
|
|
|
// airports.dump_gdbm( outpath.c_str() );
|
|
|
|
|
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." );
|
2000-07-21 22:54:14 +00:00
|
|
|
return false;
|
1998-04-25 15:11:10 +00:00
|
|
|
} else {
|
2000-07-21 22:54:14 +00:00
|
|
|
current_options.set_lon( a.longitude );
|
|
|
|
current_options.set_lat( a.latitude );
|
2000-09-25 21:41:50 +00:00
|
|
|
current_properties.setDoubleValue("/position/longitude",
|
|
|
|
a.longitude);
|
|
|
|
current_properties.setDoubleValue("/position/latitude",
|
|
|
|
a.latitude);
|
1998-05-06 03:16:23 +00:00
|
|
|
}
|
1998-07-30 23:48:24 +00:00
|
|
|
} else {
|
2000-07-21 22:54:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
|
|
|
"Position for " << id << " is ("
|
|
|
|
<< a.longitude << ", "
|
|
|
|
<< a.latitude << ")" );
|
1998-07-30 23:48:24 +00:00
|
|
|
|
2000-07-21 22:54:14 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2000-08-16 00:09:03 +00:00
|
|
|
|
|
|
|
// Set current_options lon/lat given an airport id and heading (degrees)
|
|
|
|
bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg ) {
|
|
|
|
FGRunway r;
|
|
|
|
FGRunway found_r;
|
|
|
|
double found_dir;
|
|
|
|
|
|
|
|
if ( id.length() ) {
|
|
|
|
// set initial position from runway and heading
|
|
|
|
|
|
|
|
FGPath path( current_options.get_fg_root() );
|
|
|
|
path.append( "Airports" );
|
|
|
|
path.append( "runways.mk4" );
|
|
|
|
FGRunways runways( path.c_str() );
|
|
|
|
|
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
|
|
|
"Attempting to set starting position from runway code "
|
|
|
|
<< id << " heading " << tgt_hdg );
|
|
|
|
|
|
|
|
// FGPath inpath( current_options.get_fg_root() );
|
|
|
|
// inpath.append( "Airports" );
|
|
|
|
// inpath.append( "apt_simple" );
|
|
|
|
// airports.load( inpath.c_str() );
|
|
|
|
|
|
|
|
// FGPath outpath( current_options.get_fg_root() );
|
|
|
|
// outpath.append( "Airports" );
|
|
|
|
// outpath.append( "simple.gdbm" );
|
|
|
|
// airports.dump_gdbm( outpath.c_str() );
|
|
|
|
|
|
|
|
if ( ! runways.search( id, &r ) ) {
|
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT,
|
|
|
|
"Failed to find " << id << " in database." );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
double diff;
|
|
|
|
double min_diff = 360.0;
|
|
|
|
|
|
|
|
while ( r.id == id ) {
|
|
|
|
// forward direction
|
|
|
|
diff = tgt_hdg - r.heading;
|
|
|
|
while ( diff < -180.0 ) { diff += 360.0; }
|
2000-08-17 14:58:13 +00:00
|
|
|
while ( diff > 180.0 ) { diff -= 360.0; }
|
2000-08-16 00:09:03 +00:00
|
|
|
diff = fabs(diff);
|
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
|
|
|
"Runway " << r.rwy_no << " heading = " << r.heading <<
|
|
|
|
" diff = " << diff );
|
|
|
|
if ( diff < min_diff ) {
|
|
|
|
min_diff = diff;
|
|
|
|
found_r = r;
|
|
|
|
found_dir = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// reverse direction
|
|
|
|
diff = tgt_hdg - r.heading - 180.0;
|
|
|
|
while ( diff < -180.0 ) { diff += 360.0; }
|
2000-08-17 14:58:13 +00:00
|
|
|
while ( diff > 180.0 ) { diff -= 360.0; }
|
2000-08-16 00:09:03 +00:00
|
|
|
diff = fabs(diff);
|
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
|
|
|
"Runway -" << r.rwy_no << " heading = " <<
|
|
|
|
r.heading + 180.0 <<
|
|
|
|
" diff = " << diff );
|
|
|
|
if ( diff < min_diff ) {
|
|
|
|
min_diff = diff;
|
|
|
|
found_r = r;
|
|
|
|
found_dir = 180.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
runways.next( &r );
|
|
|
|
}
|
|
|
|
|
|
|
|
FG_LOG( FG_GENERAL, FG_INFO, "closest runway = " << found_r.rwy_no
|
|
|
|
<< " + " << found_dir );
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
double heading = found_r.heading + found_dir;
|
|
|
|
while ( heading >= 360.0 ) { heading -= 360.0; }
|
|
|
|
|
|
|
|
double lat2, lon2, az2;
|
|
|
|
double azimuth = found_r.heading + found_dir + 180.0;
|
|
|
|
while ( azimuth >= 360.0 ) { azimuth -= 360.0; }
|
|
|
|
|
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
|
|
|
"runway = " << found_r.lon << ", " << found_r.lat
|
|
|
|
<< " length = " << found_r.length * FEET_TO_METER * 0.5
|
|
|
|
<< " heading = " << azimuth );
|
|
|
|
geo_direct_wgs_84 ( 0, found_r.lat, found_r.lon,
|
|
|
|
azimuth, found_r.length * FEET_TO_METER * 0.5 - 5.0,
|
|
|
|
&lat2, &lon2, &az2 );
|
|
|
|
current_options.set_lon( lon2 );
|
|
|
|
current_options.set_lat( lat2 );
|
|
|
|
current_options.set_heading( heading );
|
2000-09-25 21:41:50 +00:00
|
|
|
current_properties.setDoubleValue("/position/longitude", lon2);
|
|
|
|
current_properties.setDoubleValue("/position/latitude", lat2);
|
|
|
|
current_properties.setDoubleValue("/orientation/heading", heading);
|
2000-08-16 00:09:03 +00:00
|
|
|
|
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
|
|
|
"Position for " << id << " is ("
|
|
|
|
<< lon2 << ", "
|
|
|
|
<< lat2 << ") new heading is "
|
|
|
|
<< heading );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-21 22:54:14 +00:00
|
|
|
// Set initial position and orientation
|
|
|
|
bool fgInitPosition( void ) {
|
|
|
|
FGInterface *f = current_aircraft.fdm_state;
|
|
|
|
string id = current_options.get_airport_id();
|
|
|
|
|
|
|
|
// set initial position from default or command line coordinates
|
|
|
|
f->set_Longitude( current_options.get_lon() * DEG_TO_RAD );
|
|
|
|
f->set_Latitude( current_options.get_lat() * DEG_TO_RAD );
|
|
|
|
|
2000-07-25 21:41:59 +00:00
|
|
|
if ( scenery.cur_elev > current_options.get_altitude() - 1) {
|
|
|
|
current_options.set_altitude( scenery.cur_elev + 1 );
|
2000-07-23 21:32:59 +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(),
|
2000-07-25 21:41:59 +00:00
|
|
|
f->get_Altitude() * 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-11-19 02:10:24 +00:00
|
|
|
|
|
|
|
#if defined(FX) && defined(XMESA)
|
1999-03-11 23:09:26 +00:00
|
|
|
char *mesa_win_state;
|
1999-11-19 02:10:24 +00:00
|
|
|
#endif
|
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 ) {
|
1998-12-09 18:50:12 +00:00
|
|
|
fgLIGHT *l = &cur_light_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
|
|
|
|
2000-06-23 00:30:04 +00:00
|
|
|
// Initialize the material property lib
|
|
|
|
FGPath mpath( current_options.get_fg_root() );
|
|
|
|
mpath.append( "materials" );
|
|
|
|
if ( material_lib.load( mpath.str() ) ) {
|
|
|
|
} else {
|
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT, "Error loading material lib!" );
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
1998-08-22 14:49:55 +00:00
|
|
|
// Initialize the Scenery Management subsystem
|
|
|
|
if ( fgSceneryInit() ) {
|
2000-06-23 00:30:04 +00:00
|
|
|
// Material lib initialized ok.
|
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 Scenery initialization!" );
|
|
|
|
exit(-1);
|
1998-08-22 14:49:55 +00:00
|
|
|
}
|
|
|
|
|
2000-07-23 21:32:59 +00:00
|
|
|
if ( global_tile_mgr.init() ) {
|
1998-08-22 14:49:55 +00:00
|
|
|
// Load the local scenery data
|
2000-07-23 21:32:59 +00:00
|
|
|
global_tile_mgr.update( current_options.get_lon(),
|
|
|
|
current_options.get_lat() );
|
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 );
|
|
|
|
|
2000-07-23 21:32:59 +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;
|
|
|
|
} else if ( current_options.get_flight_model() ==
|
|
|
|
FGInterface::FG_BALLOONSIM ) {
|
|
|
|
cur_fdm_state = new FGBalloonSim;
|
|
|
|
} else if ( current_options.get_flight_model() ==
|
|
|
|
FGInterface::FG_MAGICCARPET ) {
|
|
|
|
cur_fdm_state = new FGMagicCarpet;
|
|
|
|
} else if ( current_options.get_flight_model() ==
|
|
|
|
FGInterface::FG_EXTERNAL ) {
|
|
|
|
cur_fdm_state = new FGExternal;
|
|
|
|
} else {
|
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT,
|
|
|
|
"No flight model, can't init aircraft" );
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// allocates structures so must happen before any of the flight
|
|
|
|
// model or control parameters are set
|
|
|
|
fgAircraftInit(); // In the future this might not be the case.
|
|
|
|
|
|
|
|
// set the initial position
|
|
|
|
fgInitPosition();
|
|
|
|
|
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);
|
2000-09-27 20:16:22 +00:00
|
|
|
tmp_abs_view_pos = sgGeodToCart(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
|
2000-09-27 20:16:22 +00:00
|
|
|
sgGeodToGeoc( 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-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-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
|
|
|
|
|
|
|
// 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 );
|
1999-10-22 00:27:49 +00:00
|
|
|
// update the current timezone each 30 minutes
|
2000-07-05 02:39:30 +00:00
|
|
|
global_events.Register( "fgUpdateLocalTime()", fgUpdateLocalTime,
|
1999-10-22 00:27:49 +00:00
|
|
|
fgEVENT::FG_EVENT_READY, 1800000);
|
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");
|
1999-10-21 22:53:12 +00:00
|
|
|
sgVec3 position;
|
|
|
|
sgSetVec3( position, current_aircraft.fdm_state->get_Latitude(),
|
|
|
|
current_aircraft.fdm_state->get_Longitude(),
|
|
|
|
current_aircraft.fdm_state->get_Altitude() * FEET_TO_METER );
|
1999-08-10 03:44:47 +00:00
|
|
|
FGLocalWeatherDatabase::theFGLocalWeatherDatabase =
|
2000-07-06 22:13:24 +00:00
|
|
|
new FGLocalWeatherDatabase( position, current_options.get_fg_root() );
|
1999-10-21 22:53:12 +00:00
|
|
|
// cout << theFGLocalWeatherDatabase << endl;
|
|
|
|
// cout << "visibility = "
|
|
|
|
// << theFGLocalWeatherDatabase->getWeatherVisibility() << endl;
|
1999-08-10 03:44:47 +00:00
|
|
|
|
|
|
|
WeatherDatabase = FGLocalWeatherDatabase::theFGLocalWeatherDatabase;
|
1999-10-21 22:53:12 +00:00
|
|
|
|
1999-08-10 03:44:47 +00:00
|
|
|
// register the periodic update of the weather
|
|
|
|
global_events.Register( "weather update", fgUpdateWeatherDatabase,
|
1999-10-21 22:53:12 +00:00
|
|
|
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
|
|
|
|
2000-04-24 23:51:26 +00:00
|
|
|
// Initialize vor/ndb/ils/fix list management and query systems
|
2000-04-25 17:33:13 +00:00
|
|
|
FG_LOG(FG_GENERAL, FG_INFO, "Loading Navaids");
|
|
|
|
|
2000-05-04 01:18:45 +00:00
|
|
|
FG_LOG(FG_GENERAL, FG_INFO, " VOR/NDB");
|
2000-04-24 23:51:26 +00:00
|
|
|
current_navlist = new FGNavList;
|
|
|
|
FGPath p_nav( current_options.get_fg_root() );
|
|
|
|
p_nav.append( "Navaids/default.nav" );
|
|
|
|
current_navlist->init( p_nav );
|
|
|
|
|
2000-05-04 01:18:45 +00:00
|
|
|
FG_LOG(FG_GENERAL, FG_INFO, " ILS");
|
2000-04-24 23:51:26 +00:00
|
|
|
current_ilslist = new FGILSList;
|
|
|
|
FGPath p_ils( current_options.get_fg_root() );
|
|
|
|
p_ils.append( "Navaids/default.ils" );
|
|
|
|
current_ilslist->init( p_ils );
|
|
|
|
|
2000-05-04 01:18:45 +00:00
|
|
|
FG_LOG(FG_GENERAL, FG_INFO, " Fixes");
|
2000-04-24 23:51:26 +00:00
|
|
|
current_fixlist = new FGFixList;
|
|
|
|
FGPath p_fix( current_options.get_fg_root() );
|
|
|
|
p_fix.append( "Navaids/default.fix" );
|
|
|
|
current_fixlist->init( p_fix );
|
|
|
|
|
2000-04-25 03:09:26 +00:00
|
|
|
// Initialize the underlying radio stack model
|
|
|
|
current_radiostack = new FGRadioStack;
|
|
|
|
|
2000-09-25 21:41:50 +00:00
|
|
|
// current_radiostack->set_nav1_freq( 117.30 );
|
|
|
|
// current_radiostack->set_nav1_alt_freq( 110.30 );
|
|
|
|
// current_radiostack->set_nav1_sel_radial( 119.0 );
|
2000-04-25 03:09:26 +00:00
|
|
|
|
2000-09-25 21:41:50 +00:00
|
|
|
// current_radiostack->set_nav2_freq( 111.80 );
|
|
|
|
// current_radiostack->set_nav2_alt_freq( 115.70 );
|
|
|
|
// current_radiostack->set_nav2_sel_radial( 029.0 );
|
2000-04-25 03:09:26 +00:00
|
|
|
|
2000-09-25 21:41:50 +00:00
|
|
|
// current_radiostack->set_adf_freq( 266.0 );
|
2000-04-25 03:09:26 +00:00
|
|
|
|
2000-06-15 22:30:48 +00:00
|
|
|
#if 0
|
|
|
|
// This block of settings are Alex's defaults for San Diego
|
|
|
|
current_radiostack->set_nav1_freq( 111.70 );
|
|
|
|
current_radiostack->set_nav1_alt_freq( 115.30 );
|
|
|
|
current_radiostack->set_nav1_sel_radial( 280.0 );
|
|
|
|
current_radiostack->set_nav2_freq( 117.80 );
|
|
|
|
current_radiostack->set_nav2_alt_freq( 114.00 );
|
|
|
|
current_radiostack->set_nav2_sel_radial( 68.0 );
|
|
|
|
current_radiostack->set_adf_freq( 210.0 );
|
|
|
|
// End of Alex's custom settings
|
|
|
|
#endif
|
|
|
|
|
2000-05-04 01:18:45 +00:00
|
|
|
current_radiostack->search( cur_fdm_state->get_Longitude(),
|
|
|
|
cur_fdm_state->get_Latitude(),
|
|
|
|
cur_fdm_state->get_Altitude() * FEET_TO_METER );
|
|
|
|
|
2000-04-25 03:09:26 +00:00
|
|
|
current_radiostack->update( cur_fdm_state->get_Longitude(),
|
|
|
|
cur_fdm_state->get_Latitude(),
|
|
|
|
cur_fdm_state->get_Altitude() * FEET_TO_METER );
|
|
|
|
|
2000-05-04 01:18:45 +00:00
|
|
|
// Search radio database once per second
|
|
|
|
global_events.Register( "fgRadioSearch()", fgRadioSearch,
|
|
|
|
fgEVENT::FG_EVENT_READY, 1000);
|
|
|
|
|
|
|
|
|
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-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
|
|
|
|
2000-04-30 06:51:49 +00:00
|
|
|
// Autopilot init
|
|
|
|
current_autopilot = new FGAutopilot;
|
|
|
|
current_autopilot->init();
|
|
|
|
|
|
|
|
// initialize the gui parts of the autopilot
|
|
|
|
NewTgtAirportInit();
|
|
|
|
fgAPAdjustInit() ;
|
|
|
|
NewHeadingInit();
|
|
|
|
NewAltitudeInit();
|
1998-11-16 13:59:58 +00:00
|
|
|
|
1999-11-19 02:10:24 +00:00
|
|
|
// Initialize I/O channels
|
2000-09-10 00:04:50 +00:00
|
|
|
#if ! defined( macintosh )
|
1999-11-19 02:10:24 +00:00
|
|
|
fgIOInit();
|
1999-04-27 19:27:45 +00:00
|
|
|
#endif
|
1998-11-16 13:59:58 +00:00
|
|
|
|
User-visible
- knobs now continue to rotate when you hold down the mouse
- the middle mouse button makes knobs rotate much faster
- there are NAV1, NAV2, and ADF radios that can be tuned using the mouse
- there are standby frequencies for NAV1 and NAV2, and buttons to swap
- there is a crude, rather silly-looking DME, hard-wired to NAV1
- there is a crude, rather silly-looking autopilot that can lock
the heading (to the bug on the gyro), can lock to NAV1, and can lock
the current altitude
- the knobs for changing the radials on NAV1 and NAV2 look much better
and are in the right place
- tuning into an ILS frequency doesn't change the displayed radial for
NAV1
Code
- I've created a new module, sp_panel.[ch]xx, that constructs the
default single-prop panel; this works entirely outside of FGPanel,
so it is possible to construct similar modules for other sorts of
panels; all code specific to the default panel has been removed from
panel.cxx
- current_panel is now a pointer
- radiostack.[ch]xx keeps track both of the actual radial and of the
selected radial (they will differ with ILS); the NAV gauges should
not spin around automatically to show the actual radial (we need to
do something similar with the autopilot)
- the panel is initialized fairly early
- make sure that standby frequencies also get initialized
- I've started combining and clipping small textures to save texture
memory; there's a lot more to do, but at least I've made a start
2000-05-02 18:26:00 +00:00
|
|
|
// Initialize the 2D panel.
|
2000-09-22 17:20:56 +00:00
|
|
|
string panel_path =
|
2000-09-25 21:41:50 +00:00
|
|
|
current_properties.getStringValue("/sim/panel/path",
|
2000-09-22 17:20:56 +00:00
|
|
|
"Panels/Default/default.xml");
|
|
|
|
current_panel = fgReadPanel(panel_path);
|
|
|
|
if (current_panel == 0) {
|
|
|
|
FG_LOG(FG_INPUT, FG_ALERT,
|
|
|
|
"Error reading new panel from " << panel_path);
|
|
|
|
}
|
|
|
|
FG_LOG(FG_INPUT, FG_INFO, "Loaded new panel from " << panel_path);
|
User-visible
- knobs now continue to rotate when you hold down the mouse
- the middle mouse button makes knobs rotate much faster
- there are NAV1, NAV2, and ADF radios that can be tuned using the mouse
- there are standby frequencies for NAV1 and NAV2, and buttons to swap
- there is a crude, rather silly-looking DME, hard-wired to NAV1
- there is a crude, rather silly-looking autopilot that can lock
the heading (to the bug on the gyro), can lock to NAV1, and can lock
the current altitude
- the knobs for changing the radials on NAV1 and NAV2 look much better
and are in the right place
- tuning into an ILS frequency doesn't change the displayed radial for
NAV1
Code
- I've created a new module, sp_panel.[ch]xx, that constructs the
default single-prop panel; this works entirely outside of FGPanel,
so it is possible to construct similar modules for other sorts of
panels; all code specific to the default panel has been removed from
panel.cxx
- current_panel is now a pointer
- radiostack.[ch]xx keeps track both of the actual radial and of the
selected radial (they will differ with ILS); the NAV gauges should
not spin around automatically to show the actual radial (we need to
do something similar with the autopilot)
- the panel is initialized fairly early
- make sure that standby frequencies also get initialized
- I've started combining and clipping small textures to save texture
memory; there's a lot more to do, but at least I've made a start
2000-05-02 18:26:00 +00:00
|
|
|
|
2000-07-03 20:09:56 +00:00
|
|
|
// Initialize the BFI
|
|
|
|
FGBFI::init();
|
|
|
|
|
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 )
|
|
|
|
{
|
2000-07-08 06:29:19 +00:00
|
|
|
bool freeze = globals->get_freeze();
|
|
|
|
if( !freeze )
|
|
|
|
globals->set_freeze( true );
|
1999-05-12 02:07:21 +00:00
|
|
|
|
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
|
2000-07-23 21:32:59 +00:00
|
|
|
global_tile_mgr.update( current_options.get_lon(),
|
|
|
|
current_options.get_lat() );
|
1999-04-27 15:52:32 +00:00
|
|
|
} else {
|
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT, "Error in Tile Manager initialization!" );
|
|
|
|
exit(-1);
|
|
|
|
}
|
2000-07-23 21:32:59 +00:00
|
|
|
|
|
|
|
// cout << "current scenery elev = " << scenery.cur_elev << endl;
|
|
|
|
|
|
|
|
fgInitPosition();
|
1999-04-27 15:52:32 +00:00
|
|
|
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
|
2000-09-27 20:16:22 +00:00
|
|
|
sgGeodToGeoc( 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();
|
2000-04-30 06:51:49 +00:00
|
|
|
current_autopilot->reset();
|
1999-05-12 02:07:21 +00:00
|
|
|
|
2000-07-08 06:29:19 +00:00
|
|
|
if( !freeze )
|
|
|
|
globals->set_freeze( false );
|
1999-04-27 15:52:32 +00:00
|
|
|
}
|