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
|
|
|
|
2001-03-22 04:02:11 +00:00
|
|
|
|
|
|
|
#if defined( unix ) || defined( __CYGWIN__ )
|
|
|
|
# include <unistd.h> // for gethostname()
|
|
|
|
#endif
|
|
|
|
|
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>
|
2001-03-06 19:11:28 +00:00
|
|
|
#include <FDM/UIUCModel/uiuc_aircraftdir.h>
|
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>
|
The following changes were made to flightgear-0.7.5 code to implement the follow
ing features:
a) ADA Flight model - ADA.cxx, ADA.hxx, flight.hxx
b) Fighter a/c HUD - flight.hxx, hud.hxx, hud.cxx, cockpit.cxx, hud_ladr.c
xx, hud_card.cxx
c) 3-window display - options.hxx, options.cxx, viewer.cxx
d) Moving objects (ship) - main.cxx
e) Patches - main.cxx
ADA.cxx, ADA.hxx
--------------------------
Interface to the external ADA flight dynamics package.
flight.hxx
----------
Included prototypes for accepting additional data fron the External flight
model for fighter aircraft HUD
Hud.hxx
-------
Included prototypes for accepting additional data for fighter HUD from Exernal F
light model.
Defined FIGHTER_HUD pre-processor directive to enable compilation of fighter hud
code.
hud.cxx, cockpit.cxx, hud_ladr.cxx, hud_card.cxx
---------------------------------------
Included code to initialise additional reticles/text for fighter HUD which is co
nditionally
compiled if FIGHTER_HUD is defined.
options.hxx
-----------
Added window_offset, and function to retrieve its value for 3 windows
options.cxx
-----------
Changed few options to suit ADA/CEF projection system/screens and checks for win
dow offset.
views.cxx
---------
Added code to retrieve view offset for window.
Main.cxx
--------
Added code to load and move an aircraft carrier.
Patch to enable clouds from command line until Curtis fixes it. By default cloud
s are disabled.
2000-10-19 19:46:13 +00:00
|
|
|
#include <FDM/ADA.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>
|
2001-03-16 23:59:02 +00:00
|
|
|
#include <Navaids/mkrbeacons.hxx>
|
2000-04-24 23:51:26 +00:00
|
|
|
#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"
|
2001-01-13 22:06:39 +00:00
|
|
|
#include "options.hxx"
|
2000-07-08 06:29:19 +00:00
|
|
|
#include "globals.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
|
|
|
|
2000-10-04 22:52:34 +00:00
|
|
|
// Read in configuration (file and command line) and just set fg_root
|
|
|
|
bool fgInitFGRoot ( int argc, char **argv ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
string root;
|
|
|
|
char* envp;
|
|
|
|
|
|
|
|
// First parse command line options looking for fg-root, this will
|
|
|
|
// override anything specified in a config file
|
|
|
|
root = fgScanForRoot(argc, argv);
|
|
|
|
|
2001-03-22 04:02:11 +00:00
|
|
|
#if defined( unix ) || defined( __CYGWIN__ )
|
|
|
|
// Next check home directory for .fgfsrc.hostname file
|
|
|
|
if ( root == "" ) {
|
|
|
|
envp = ::getenv( "HOME" );
|
|
|
|
if ( envp != NULL ) {
|
|
|
|
FGPath config( envp );
|
|
|
|
config.append( ".fgfsrc" );
|
|
|
|
char name[256];
|
|
|
|
gethostname( name, 256 );
|
|
|
|
config.concat( "." );
|
|
|
|
config.concat( name );
|
|
|
|
root = fgScanForRoot(config.str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
// Next check home directory for .fgfsrc file
|
|
|
|
if ( root == "" ) {
|
|
|
|
envp = ::getenv( "HOME" );
|
|
|
|
if ( envp != NULL ) {
|
|
|
|
FGPath config( envp );
|
|
|
|
config.append( ".fgfsrc" );
|
|
|
|
root = fgScanForRoot(config.str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Next check if fg-root is set as an env variable
|
|
|
|
if ( root == "" ) {
|
|
|
|
envp = ::getenv( "FG_ROOT" );
|
|
|
|
if ( envp != NULL ) {
|
|
|
|
root = envp;
|
|
|
|
}
|
|
|
|
}
|
2000-10-04 22:52:34 +00:00
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
// Otherwise, default to a random compiled-in location if we can't
|
|
|
|
// find fg-root any other way.
|
|
|
|
if ( root == "" ) {
|
|
|
|
#if defined( WIN32 )
|
|
|
|
root = "\\FlightGear";
|
|
|
|
#elif defined( macintosh )
|
|
|
|
root = "";
|
|
|
|
#else
|
|
|
|
root = PKGLIBDIR;
|
|
|
|
#endif
|
2000-10-04 22:52:34 +00:00
|
|
|
}
|
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
FG_LOG(FG_INPUT, FG_INFO, "fg_root = " << root );
|
|
|
|
globals->set_fg_root(root);
|
2000-10-04 22:52:34 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-06-18 03:42:54 +00:00
|
|
|
// Read in configuration (file and command line)
|
|
|
|
bool fgInitConfig ( int argc, char **argv ) {
|
2001-01-12 15:37:40 +00:00
|
|
|
|
|
|
|
// First, set some sane default values
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetDefaults();
|
2001-01-12 15:37:40 +00:00
|
|
|
|
|
|
|
// Read global preferences from $FG_ROOT/preferences.xml
|
2001-01-13 22:06:39 +00:00
|
|
|
FGPath props_path(globals->get_fg_root());
|
2001-01-12 15:37:40 +00:00
|
|
|
props_path.append("preferences.xml");
|
|
|
|
FG_LOG(FG_INPUT, FG_INFO, "Reading global preferences");
|
|
|
|
if (!readProperties(props_path.str(), globals->get_props())) {
|
|
|
|
FG_LOG(FG_INPUT, FG_ALERT, "Failed to read global preferences from "
|
|
|
|
<< props_path.str());
|
|
|
|
} else {
|
|
|
|
FG_LOG(FG_INPUT, FG_INFO, "Finished Reading global preferences");
|
|
|
|
}
|
|
|
|
|
2001-03-22 04:02:11 +00:00
|
|
|
// Attempt to locate and parse the various config files in order
|
|
|
|
// from least precidence to greatest precidence
|
|
|
|
|
|
|
|
// Check for $fg_root/system.fgfsrc
|
2001-01-13 22:06:39 +00:00
|
|
|
FGPath config( globals->get_fg_root() );
|
1999-06-18 03:42:54 +00:00
|
|
|
config.append( "system.fgfsrc" );
|
2001-01-13 22:06:39 +00:00
|
|
|
fgParseOptions(config.str());
|
1999-06-18 03:42:54 +00:00
|
|
|
|
2001-03-22 04:02:11 +00:00
|
|
|
char name[256];
|
|
|
|
#if defined( unix ) || defined( __CYGWIN__ )
|
|
|
|
// Check for $fg_root/system.fgfsrc.hostname
|
|
|
|
gethostname( name, 256 );
|
|
|
|
config.concat( "." );
|
|
|
|
config.concat( name );
|
|
|
|
fgParseOptions(config.str());
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Check for ~/.fgfsrc
|
1999-06-18 03:42:54 +00:00
|
|
|
char* envp = ::getenv( "HOME" );
|
|
|
|
if ( envp != NULL ) {
|
|
|
|
config.set( envp );
|
|
|
|
config.append( ".fgfsrc" );
|
2001-01-13 22:06:39 +00:00
|
|
|
fgParseOptions(config.str());
|
1999-06-18 03:42:54 +00:00
|
|
|
}
|
|
|
|
|
2001-03-22 04:02:11 +00:00
|
|
|
#if defined( unix ) || defined( __CYGWIN__ )
|
|
|
|
// Check for ~/.fgfsrc.hostname
|
|
|
|
gethostname( name, 256 );
|
|
|
|
config.concat( "." );
|
|
|
|
config.concat( name );
|
|
|
|
fgParseOptions(config.str());
|
|
|
|
#endif
|
|
|
|
|
1999-06-18 03:42:54 +00:00
|
|
|
// Parse remaining command line options
|
|
|
|
// These will override anything specified in a config file
|
2001-01-13 22:06:39 +00:00
|
|
|
fgParseOptions(argc, argv);
|
1999-06-18 03:42:54 +00:00
|
|
|
|
2000-10-04 22:52:34 +00:00
|
|
|
return true;
|
1999-06-18 03:42:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-12 01:08:09 +00:00
|
|
|
// find basic airport location info from airport database
|
|
|
|
bool fgFindAirportID( const string& id, FGAirport *a ) {
|
1998-08-27 17:01:55 +00:00
|
|
|
if ( id.length() ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
FGPath path( globals->get_fg_root() );
|
2000-03-29 20:21:31 +00:00
|
|
|
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
|
|
|
|
2000-10-12 01:08:09 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO, "Searching for airport code = " << id );
|
2000-03-29 20:21:31 +00:00
|
|
|
|
2000-10-12 01:08:09 +00:00
|
|
|
if ( ! airports.search( id, a ) ) {
|
1999-04-05 02:13:58 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT,
|
2000-10-12 01:08:09 +00:00
|
|
|
"Failed to find " << id << " in " << path.str() );
|
2000-07-21 22:54:14 +00:00
|
|
|
return false;
|
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 ("
|
2000-10-12 01:08:09 +00:00
|
|
|
<< 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
|
|
|
|
2000-10-12 01:08:09 +00:00
|
|
|
// Set current_options lon/lat given an airport id
|
|
|
|
bool fgSetPosFromAirportID( const string& id ) {
|
|
|
|
FGAirport a;
|
2000-10-25 15:27:55 +00:00
|
|
|
// double lon, lat;
|
2000-10-12 01:08:09 +00:00
|
|
|
|
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
|
|
|
"Attempting to set starting position from airport code " << id );
|
|
|
|
|
|
|
|
if ( fgFindAirportID( id, &a ) ) {
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetDouble("/position/longitude", a.longitude );
|
|
|
|
fgSetDouble("/position/latitude", a.latitude );
|
2000-10-12 01:08:09 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
|
|
|
"Position for " << id << " is ("
|
|
|
|
<< a.longitude << ", "
|
|
|
|
<< a.latitude << ")" );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
2000-11-01 23:27:32 +00:00
|
|
|
double found_dir = 0.0;
|
2000-08-16 00:09:03 +00:00
|
|
|
|
|
|
|
if ( id.length() ) {
|
|
|
|
// set initial position from runway and heading
|
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
FGPath path( globals->get_fg_root() );
|
2000-08-16 00:09:03 +00:00
|
|
|
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 );
|
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
// FGPath inpath( globals->get_fg_root() );
|
2000-08-16 00:09:03 +00:00
|
|
|
// inpath.append( "Airports" );
|
|
|
|
// inpath.append( "apt_simple" );
|
|
|
|
// airports.load( inpath.c_str() );
|
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
// FGPath outpath( globals->get_fg_root() );
|
2000-08-16 00:09:03 +00:00
|
|
|
// 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 );
|
2001-03-02 23:27:22 +00:00
|
|
|
|
2000-08-16 00:09:03 +00:00
|
|
|
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 );
|
2001-03-02 23:27:22 +00:00
|
|
|
|
|
|
|
if ( fabs( fgGetDouble("/sim/startup/offset-distance") ) > FG_EPSILON ) {
|
|
|
|
double olat, olon;
|
|
|
|
double odist = fgGetDouble("/sim/startup/offset-distance");
|
|
|
|
odist *= NM_TO_METER;
|
|
|
|
double oaz = azimuth;
|
|
|
|
if ( fabs(fgGetDouble("/sim/startup/offset-azimuth")) > FG_EPSILON ) {
|
|
|
|
oaz = fgGetDouble("/sim/startup/offset-azimuth") + 180;
|
|
|
|
}
|
|
|
|
while ( oaz >= 360.0 ) { oaz -= 360.0; }
|
|
|
|
geo_direct_wgs_84 ( 0, lat2, lon2, oaz, odist, &olat, &olon, &az2 );
|
|
|
|
lat2=olat;
|
|
|
|
lon2=olon;
|
|
|
|
}
|
2001-01-13 22:06:39 +00:00
|
|
|
fgSetDouble("/position/longitude", lon2 );
|
|
|
|
fgSetDouble("/position/latitude", lat2 );
|
|
|
|
fgSetDouble("/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;
|
2001-01-13 22:06:39 +00:00
|
|
|
string id = fgGetString("/sim/startup/airport-id");
|
2000-07-21 22:54:14 +00:00
|
|
|
|
|
|
|
// set initial position from default or command line coordinates
|
2001-01-13 22:06:39 +00:00
|
|
|
f->set_Longitude( fgGetDouble("/position/longitude") * DEG_TO_RAD );
|
|
|
|
f->set_Latitude( fgGetDouble("/position/latitude") * DEG_TO_RAD );
|
2000-07-21 22:54:14 +00:00
|
|
|
|
2001-01-17 20:32:02 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
|
|
|
"scenery.cur_elev = " << scenery.cur_elev );
|
2001-01-17 23:30:35 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
|
|
|
"/position/altitude = " << fgGetDouble("/position/altitude") );
|
|
|
|
|
|
|
|
// if we requested on ground startups
|
|
|
|
if ( fgGetBool( "/sim/startup/onground" ) ) {
|
2001-03-17 21:06:43 +00:00
|
|
|
fgSetDouble( "/position/altitude", (scenery.cur_elev + 1)
|
|
|
|
* METERS_TO_FEET );
|
2001-01-17 23:30:35 +00:00
|
|
|
}
|
2001-01-17 20:32:02 +00:00
|
|
|
|
2001-01-17 23:30:35 +00:00
|
|
|
// if requested altitude is below ground level
|
2001-03-17 21:06:43 +00:00
|
|
|
if ( scenery.cur_elev >
|
|
|
|
fgGetDouble("/position/altitude") * METERS_TO_FEET - 1) {
|
|
|
|
fgSetDouble("/position/altitude",
|
|
|
|
(scenery.cur_elev + 1) * METERS_TO_FEET );
|
2001-01-17 23:30:35 +00:00
|
|
|
}
|
2000-07-23 21:32:59 +00:00
|
|
|
|
1999-04-05 02:13:58 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
2001-01-17 20:32:02 +00:00
|
|
|
"starting altitude is = " <<
|
|
|
|
fgGetDouble("/position/altitude") );
|
2000-10-18 21:19:30 +00:00
|
|
|
|
2001-01-17 20:32:02 +00:00
|
|
|
f->set_Altitude( fgGetDouble("/position/altitude") );
|
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
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
root = globals->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
|
|
|
}
|
|
|
|
|
|
|
|
|
I tested:
LaRCsim c172 on-ground and in-air starts, reset: all work
UIUC Cessna172 on-ground and in-air starts work as expected, reset
results in an aircraft that is upside down but does not crash FG. I
don't know what it was like before, so it may well be no change.
JSBSim c172 and X15 in-air starts work fine, resets now work (and are
trimmed), on-ground starts do not -- the c172 ends up on its back. I
suspect this is no worse than before.
I did not test:
Balloon (the weather code returns nan's for the atmosphere data --this
is in the weather module and apparently is a linux only bug)
ADA (don't know how)
MagicCarpet (needs work yet)
External (don't know how)
known to be broken:
LaRCsim c172 on-ground starts with a negative terrain altitude (this
happens at KPAO when the scenery is not present). The FDM inits to
about 50 feet AGL and the model falls to the ground. It does stay
upright, however, and seems to be fine once it settles out, FWIW.
To do:
--implement set_Model on the bus
--bring Christian's weather data into JSBSim
-- add default method to bus for updating things like the sin and cos of
latitude (for Balloon, MagicCarpet)
-- lots of cleanup
The files:
src/FDM/flight.cxx
src/FDM/flight.hxx
-- all data members now declared protected instead of private.
-- eliminated all but a small set of 'setters', no change to getters.
-- that small set is declared virtual, the default implementation
provided preserves the old behavior
-- all of the vector data members are now initialized.
-- added busdump() method -- FG_LOG's all the bus data when called,
useful for diagnostics.
src/FDM/ADA.cxx
-- bus data members now directly assigned to
src/FDM/Balloon.cxx
-- bus data members now directly assigned to
-- changed V_equiv_kts to V_calibrated_kts
src/FDM/JSBSim.cxx
src/FDM/JSBSim.hxx
-- bus data members now directly assigned to
-- implemented the FGInterface virtual setters with JSBSim specific
logic
-- changed the static FDMExec to a dynamic fdmex (needed so that the
JSBSim object can be deleted when a model change is called for)
-- implemented constructor and destructor, moved some of the logic
formerly in init() to constructor
-- added logic to bring up FGEngInterface objects and set the RPM and
throttle values.
src/FDM/LaRCsim.cxx
src/FDM/LaRCsim.hxx
-- bus data members now directly assigned to
-- implemented the FGInterface virtual setters with LaRCsim specific
logic, uses LaRCsimIC
-- implemented constructor and destructor, moved some of the logic
formerly in init() to constructor
-- moved default inertias to here from fg_init.cxx
-- eliminated the climb rate calculation. The equivalent, climb_rate =
-1*vdown, is now in copy_from_LaRCsim().
src/FDM/LaRCsimIC.cxx
src/FDM/LaRCsimIC.hxx
-- similar to FGInitialCondition, this class has all the logic needed to
turn data like Vc and Mach into the more fundamental quantities LaRCsim
needs to initialize.
-- put it in src/FDM since it is a class
src/FDM/MagicCarpet.cxx
-- bus data members now directly assigned to
src/FDM/Makefile.am
-- adds LaRCsimIC.hxx and cxx
src/FDM/JSBSim/FGAtmosphere.h
src/FDM/JSBSim/FGDefs.h
src/FDM/JSBSim/FGInitialCondition.cpp
src/FDM/JSBSim/FGInitialCondition.h
src/FDM/JSBSim/JSBSim.cpp
-- changes to accomodate the new bus
src/FDM/LaRCsim/atmos_62.h
src/FDM/LaRCsim/ls_geodesy.h
-- surrounded prototypes with #ifdef __cplusplus ... #endif , functions
here are needed in LaRCsimIC
src/FDM/LaRCsim/c172_main.c
src/FDM/LaRCsim/cherokee_aero.c
src/FDM/LaRCsim/ls_aux.c
src/FDM/LaRCsim/ls_constants.h
src/FDM/LaRCsim/ls_geodesy.c
src/FDM/LaRCsim/ls_geodesy.h
src/FDM/LaRCsim/ls_step.c
src/FDM/UIUCModel/uiuc_betaprobe.cpp
-- changed PI to LS_PI, eliminates preprocessor naming conflict with
weather module
src/FDM/LaRCsim/ls_interface.c
src/FDM/LaRCsim/ls_interface.h
-- added function ls_set_model_dt()
src/Main/bfi.cxx
-- eliminated calls that set the NED speeds to body components. They
are no longer needed and confuse the new bus.
src/Main/fg_init.cxx
-- eliminated calls that just brought the bus data up-to-date (e.g.
set_sin_cos_latitude). or set default values. The bus now handles the
defaults and updates itself when the setters are called (for LaRCsim and
JSBSim). A default method for doing this needs to be added to the bus.
-- added fgVelocityInit() to set the speed the user asked for. Both
JSBSim and LaRCsim can now be initialized using any of:
vc,mach, NED components, UVW components.
src/Main/main.cxx
--eliminated call to fgFDMSetGroundElevation, this data is now 'pulled'
onto the bus every update()
src/Main/options.cxx
src/Main/options.hxx
-- added enum to keep track of the speed requested by the user
-- eliminated calls to set NED velocity properties to body speeds, they
are no longer needed.
-- added options for the NED components.
src/Network/garmin.cxx
src/Network/nmea.cxx
--eliminated calls that just brought the bus data up-to-date (e.g.
set_sin_cos_latitude). The bus now updates itself when the setters are
called (for LaRCsim and JSBSim). A default method for doing this needs
to be added to the bus.
-- changed set_V_equiv_kts to set_V_calibrated_kts. set_V_equiv_kts no
longer exists ( get_V_equiv_kts still does, though)
src/WeatherCM/FGLocalWeatherDatabase.cpp
-- commented out the code to put the weather data on the bus, a
different scheme for this is needed.
2000-10-24 00:34:50 +00:00
|
|
|
// set initial aircraft speed
|
2001-01-13 22:06:39 +00:00
|
|
|
void
|
|
|
|
fgVelocityInit( void )
|
|
|
|
{
|
|
|
|
if (!fgHasValue("/sim/startup/speed-set")) {
|
|
|
|
current_aircraft.fdm_state->set_V_calibrated_kts(0.0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const string speedset = fgGetString("/sim/startup/speed-set");
|
|
|
|
if (speedset == "knots" || speedset == "KNOTS") {
|
|
|
|
current_aircraft.fdm_state
|
|
|
|
->set_V_calibrated_kts(fgGetDouble("/velocities/airspeed"));
|
|
|
|
} else if (speedset == "mach" || speedset == "MACH") {
|
|
|
|
current_aircraft.fdm_state
|
|
|
|
->set_Mach_number(fgGetDouble("/velocities/mach"));
|
|
|
|
} else if (speedset == "UVW" || speedset == "uvw") {
|
|
|
|
current_aircraft.fdm_state
|
|
|
|
->set_Velocities_Wind_Body(fgGetDouble("/velocities/uBody"),
|
|
|
|
fgGetDouble("/velocities/vBody"),
|
|
|
|
fgGetDouble("/velocities/wBody"));
|
|
|
|
} else if (speedset == "NED" || speedset == "ned") {
|
|
|
|
current_aircraft.fdm_state
|
|
|
|
->set_Velocities_Local(fgGetDouble("/velocities/speed-north"),
|
|
|
|
fgGetDouble("/velocities/speed-east"),
|
|
|
|
fgGetDouble("/velocities/speed-down"));
|
|
|
|
} else {
|
|
|
|
FG_LOG(FG_GENERAL, FG_ALERT,
|
|
|
|
"Unrecognized value for /sim/startup/speed-set: " << speedset);
|
|
|
|
current_aircraft.fdm_state->set_V_calibrated_kts(0.0);
|
|
|
|
}
|
I tested:
LaRCsim c172 on-ground and in-air starts, reset: all work
UIUC Cessna172 on-ground and in-air starts work as expected, reset
results in an aircraft that is upside down but does not crash FG. I
don't know what it was like before, so it may well be no change.
JSBSim c172 and X15 in-air starts work fine, resets now work (and are
trimmed), on-ground starts do not -- the c172 ends up on its back. I
suspect this is no worse than before.
I did not test:
Balloon (the weather code returns nan's for the atmosphere data --this
is in the weather module and apparently is a linux only bug)
ADA (don't know how)
MagicCarpet (needs work yet)
External (don't know how)
known to be broken:
LaRCsim c172 on-ground starts with a negative terrain altitude (this
happens at KPAO when the scenery is not present). The FDM inits to
about 50 feet AGL and the model falls to the ground. It does stay
upright, however, and seems to be fine once it settles out, FWIW.
To do:
--implement set_Model on the bus
--bring Christian's weather data into JSBSim
-- add default method to bus for updating things like the sin and cos of
latitude (for Balloon, MagicCarpet)
-- lots of cleanup
The files:
src/FDM/flight.cxx
src/FDM/flight.hxx
-- all data members now declared protected instead of private.
-- eliminated all but a small set of 'setters', no change to getters.
-- that small set is declared virtual, the default implementation
provided preserves the old behavior
-- all of the vector data members are now initialized.
-- added busdump() method -- FG_LOG's all the bus data when called,
useful for diagnostics.
src/FDM/ADA.cxx
-- bus data members now directly assigned to
src/FDM/Balloon.cxx
-- bus data members now directly assigned to
-- changed V_equiv_kts to V_calibrated_kts
src/FDM/JSBSim.cxx
src/FDM/JSBSim.hxx
-- bus data members now directly assigned to
-- implemented the FGInterface virtual setters with JSBSim specific
logic
-- changed the static FDMExec to a dynamic fdmex (needed so that the
JSBSim object can be deleted when a model change is called for)
-- implemented constructor and destructor, moved some of the logic
formerly in init() to constructor
-- added logic to bring up FGEngInterface objects and set the RPM and
throttle values.
src/FDM/LaRCsim.cxx
src/FDM/LaRCsim.hxx
-- bus data members now directly assigned to
-- implemented the FGInterface virtual setters with LaRCsim specific
logic, uses LaRCsimIC
-- implemented constructor and destructor, moved some of the logic
formerly in init() to constructor
-- moved default inertias to here from fg_init.cxx
-- eliminated the climb rate calculation. The equivalent, climb_rate =
-1*vdown, is now in copy_from_LaRCsim().
src/FDM/LaRCsimIC.cxx
src/FDM/LaRCsimIC.hxx
-- similar to FGInitialCondition, this class has all the logic needed to
turn data like Vc and Mach into the more fundamental quantities LaRCsim
needs to initialize.
-- put it in src/FDM since it is a class
src/FDM/MagicCarpet.cxx
-- bus data members now directly assigned to
src/FDM/Makefile.am
-- adds LaRCsimIC.hxx and cxx
src/FDM/JSBSim/FGAtmosphere.h
src/FDM/JSBSim/FGDefs.h
src/FDM/JSBSim/FGInitialCondition.cpp
src/FDM/JSBSim/FGInitialCondition.h
src/FDM/JSBSim/JSBSim.cpp
-- changes to accomodate the new bus
src/FDM/LaRCsim/atmos_62.h
src/FDM/LaRCsim/ls_geodesy.h
-- surrounded prototypes with #ifdef __cplusplus ... #endif , functions
here are needed in LaRCsimIC
src/FDM/LaRCsim/c172_main.c
src/FDM/LaRCsim/cherokee_aero.c
src/FDM/LaRCsim/ls_aux.c
src/FDM/LaRCsim/ls_constants.h
src/FDM/LaRCsim/ls_geodesy.c
src/FDM/LaRCsim/ls_geodesy.h
src/FDM/LaRCsim/ls_step.c
src/FDM/UIUCModel/uiuc_betaprobe.cpp
-- changed PI to LS_PI, eliminates preprocessor naming conflict with
weather module
src/FDM/LaRCsim/ls_interface.c
src/FDM/LaRCsim/ls_interface.h
-- added function ls_set_model_dt()
src/Main/bfi.cxx
-- eliminated calls that set the NED speeds to body components. They
are no longer needed and confuse the new bus.
src/Main/fg_init.cxx
-- eliminated calls that just brought the bus data up-to-date (e.g.
set_sin_cos_latitude). or set default values. The bus now handles the
defaults and updates itself when the setters are called (for LaRCsim and
JSBSim). A default method for doing this needs to be added to the bus.
-- added fgVelocityInit() to set the speed the user asked for. Both
JSBSim and LaRCsim can now be initialized using any of:
vc,mach, NED components, UVW components.
src/Main/main.cxx
--eliminated call to fgFDMSetGroundElevation, this data is now 'pulled'
onto the bus every update()
src/Main/options.cxx
src/Main/options.hxx
-- added enum to keep track of the speed requested by the user
-- eliminated calls to set NED velocity properties to body speeds, they
are no longer needed.
-- added options for the NED components.
src/Network/garmin.cxx
src/Network/nmea.cxx
--eliminated calls that just brought the bus data up-to-date (e.g.
set_sin_cos_latitude). The bus now updates itself when the setters are
called (for LaRCsim and JSBSim). A default method for doing this needs
to be added to the bus.
-- changed set_V_equiv_kts to set_V_calibrated_kts. set_V_equiv_kts no
longer exists ( get_V_equiv_kts still does, though)
src/WeatherCM/FGLocalWeatherDatabase.cpp
-- commented out the code to put the weather data on the bus, a
different scheme for this is needed.
2000-10-24 00:34:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
2001-01-13 22:06:39 +00:00
|
|
|
FGPath mpath( globals->get_fg_root() );
|
2000-06-23 00:30:04 +00:00
|
|
|
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
|
2001-01-13 22:06:39 +00:00
|
|
|
global_tile_mgr.update( fgGetDouble("/position/longitude"),
|
|
|
|
fgGetDouble("/position/latitude") );
|
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 );
|
|
|
|
|
2001-01-16 21:41:28 +00:00
|
|
|
double dt = 1.0 / fgGetInt("/sim/model-hz");
|
2001-01-17 02:37:12 +00:00
|
|
|
// cout << "dt = " << dt << endl;
|
2001-01-16 21:41:28 +00:00
|
|
|
|
2001-03-06 19:11:28 +00:00
|
|
|
aircraft_dir = fgGetString("/sim/aircraft-dir");
|
2001-01-13 22:06:39 +00:00
|
|
|
const string &model = fgGetString("/sim/flight-model");
|
|
|
|
if (model == "larcsim") {
|
2001-01-16 21:41:28 +00:00
|
|
|
cur_fdm_state = new FGLaRCsim( dt );
|
2001-01-13 22:06:39 +00:00
|
|
|
} else if (model == "jsb") {
|
2001-01-16 21:41:28 +00:00
|
|
|
cur_fdm_state = new FGJSBsim( dt );
|
2001-01-13 22:06:39 +00:00
|
|
|
} else if (model == "ada") {
|
2001-01-16 21:41:28 +00:00
|
|
|
cur_fdm_state = new FGADA( dt );
|
2001-01-13 22:06:39 +00:00
|
|
|
} else if (model == "balloon") {
|
2001-01-16 21:41:28 +00:00
|
|
|
cur_fdm_state = new FGBalloonSim( dt );
|
2001-01-13 22:06:39 +00:00
|
|
|
} else if (model == "magic") {
|
2001-01-16 21:41:28 +00:00
|
|
|
cur_fdm_state = new FGMagicCarpet( dt );
|
2001-01-13 22:06:39 +00:00
|
|
|
} else if (model == "external") {
|
2001-01-16 21:41:28 +00:00
|
|
|
cur_fdm_state = new FGExternal( dt );
|
2000-07-23 21:32:59 +00:00
|
|
|
} else {
|
2001-01-13 22:06:39 +00:00
|
|
|
FG_LOG(FG_GENERAL, FG_ALERT,
|
|
|
|
"Unrecognized flight model '" << model
|
|
|
|
<< ", can't init aircraft");
|
2000-07-23 21:32:59 +00:00
|
|
|
exit(-1);
|
|
|
|
}
|
2001-01-17 02:37:12 +00:00
|
|
|
cur_fdm_state->stamp();
|
|
|
|
cur_fdm_state->set_remainder( 0 );
|
2000-07-23 21:32:59 +00:00
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
fgFDMSetGroundElevation( fgGetString("/sim/flight-model"),
|
I tested:
LaRCsim c172 on-ground and in-air starts, reset: all work
UIUC Cessna172 on-ground and in-air starts work as expected, reset
results in an aircraft that is upside down but does not crash FG. I
don't know what it was like before, so it may well be no change.
JSBSim c172 and X15 in-air starts work fine, resets now work (and are
trimmed), on-ground starts do not -- the c172 ends up on its back. I
suspect this is no worse than before.
I did not test:
Balloon (the weather code returns nan's for the atmosphere data --this
is in the weather module and apparently is a linux only bug)
ADA (don't know how)
MagicCarpet (needs work yet)
External (don't know how)
known to be broken:
LaRCsim c172 on-ground starts with a negative terrain altitude (this
happens at KPAO when the scenery is not present). The FDM inits to
about 50 feet AGL and the model falls to the ground. It does stay
upright, however, and seems to be fine once it settles out, FWIW.
To do:
--implement set_Model on the bus
--bring Christian's weather data into JSBSim
-- add default method to bus for updating things like the sin and cos of
latitude (for Balloon, MagicCarpet)
-- lots of cleanup
The files:
src/FDM/flight.cxx
src/FDM/flight.hxx
-- all data members now declared protected instead of private.
-- eliminated all but a small set of 'setters', no change to getters.
-- that small set is declared virtual, the default implementation
provided preserves the old behavior
-- all of the vector data members are now initialized.
-- added busdump() method -- FG_LOG's all the bus data when called,
useful for diagnostics.
src/FDM/ADA.cxx
-- bus data members now directly assigned to
src/FDM/Balloon.cxx
-- bus data members now directly assigned to
-- changed V_equiv_kts to V_calibrated_kts
src/FDM/JSBSim.cxx
src/FDM/JSBSim.hxx
-- bus data members now directly assigned to
-- implemented the FGInterface virtual setters with JSBSim specific
logic
-- changed the static FDMExec to a dynamic fdmex (needed so that the
JSBSim object can be deleted when a model change is called for)
-- implemented constructor and destructor, moved some of the logic
formerly in init() to constructor
-- added logic to bring up FGEngInterface objects and set the RPM and
throttle values.
src/FDM/LaRCsim.cxx
src/FDM/LaRCsim.hxx
-- bus data members now directly assigned to
-- implemented the FGInterface virtual setters with LaRCsim specific
logic, uses LaRCsimIC
-- implemented constructor and destructor, moved some of the logic
formerly in init() to constructor
-- moved default inertias to here from fg_init.cxx
-- eliminated the climb rate calculation. The equivalent, climb_rate =
-1*vdown, is now in copy_from_LaRCsim().
src/FDM/LaRCsimIC.cxx
src/FDM/LaRCsimIC.hxx
-- similar to FGInitialCondition, this class has all the logic needed to
turn data like Vc and Mach into the more fundamental quantities LaRCsim
needs to initialize.
-- put it in src/FDM since it is a class
src/FDM/MagicCarpet.cxx
-- bus data members now directly assigned to
src/FDM/Makefile.am
-- adds LaRCsimIC.hxx and cxx
src/FDM/JSBSim/FGAtmosphere.h
src/FDM/JSBSim/FGDefs.h
src/FDM/JSBSim/FGInitialCondition.cpp
src/FDM/JSBSim/FGInitialCondition.h
src/FDM/JSBSim/JSBSim.cpp
-- changes to accomodate the new bus
src/FDM/LaRCsim/atmos_62.h
src/FDM/LaRCsim/ls_geodesy.h
-- surrounded prototypes with #ifdef __cplusplus ... #endif , functions
here are needed in LaRCsimIC
src/FDM/LaRCsim/c172_main.c
src/FDM/LaRCsim/cherokee_aero.c
src/FDM/LaRCsim/ls_aux.c
src/FDM/LaRCsim/ls_constants.h
src/FDM/LaRCsim/ls_geodesy.c
src/FDM/LaRCsim/ls_geodesy.h
src/FDM/LaRCsim/ls_step.c
src/FDM/UIUCModel/uiuc_betaprobe.cpp
-- changed PI to LS_PI, eliminates preprocessor naming conflict with
weather module
src/FDM/LaRCsim/ls_interface.c
src/FDM/LaRCsim/ls_interface.h
-- added function ls_set_model_dt()
src/Main/bfi.cxx
-- eliminated calls that set the NED speeds to body components. They
are no longer needed and confuse the new bus.
src/Main/fg_init.cxx
-- eliminated calls that just brought the bus data up-to-date (e.g.
set_sin_cos_latitude). or set default values. The bus now handles the
defaults and updates itself when the setters are called (for LaRCsim and
JSBSim). A default method for doing this needs to be added to the bus.
-- added fgVelocityInit() to set the speed the user asked for. Both
JSBSim and LaRCsim can now be initialized using any of:
vc,mach, NED components, UVW components.
src/Main/main.cxx
--eliminated call to fgFDMSetGroundElevation, this data is now 'pulled'
onto the bus every update()
src/Main/options.cxx
src/Main/options.hxx
-- added enum to keep track of the speed requested by the user
-- eliminated calls to set NED velocity properties to body speeds, they
are no longer needed.
-- added options for the NED components.
src/Network/garmin.cxx
src/Network/nmea.cxx
--eliminated calls that just brought the bus data up-to-date (e.g.
set_sin_cos_latitude). The bus now updates itself when the setters are
called (for LaRCsim and JSBSim). A default method for doing this needs
to be added to the bus.
-- changed set_V_equiv_kts to set_V_calibrated_kts. set_V_equiv_kts no
longer exists ( get_V_equiv_kts still does, though)
src/WeatherCM/FGLocalWeatherDatabase.cpp
-- commented out the code to put the weather data on the bus, a
different scheme for this is needed.
2000-10-24 00:34:50 +00:00
|
|
|
scenery.cur_elev );
|
|
|
|
|
2000-07-23 21:32:59 +00:00
|
|
|
// 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()
|
|
|
|
|
1998-08-22 14:49:55 +00:00
|
|
|
// Reset our altitude if we are below ground
|
2000-10-25 22:59:02 +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
|
|
|
|
2000-10-25 22:59:02 +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
|
|
|
|
2000-10-25 19:27:13 +00:00
|
|
|
// We need to calculate a few sea_level_radius here so we can pass
|
|
|
|
// the correct value to the view class
|
1998-12-06 14:52:54 +00:00
|
|
|
double sea_level_radius_meters;
|
|
|
|
double lat_geoc;
|
2000-10-25 19:27:13 +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);
|
2000-10-25 19:27:13 +00:00
|
|
|
cur_fdm_state->set_Sea_level_radius( sea_level_radius_meters *
|
|
|
|
METER_TO_FEET );
|
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
|
I tested:
LaRCsim c172 on-ground and in-air starts, reset: all work
UIUC Cessna172 on-ground and in-air starts work as expected, reset
results in an aircraft that is upside down but does not crash FG. I
don't know what it was like before, so it may well be no change.
JSBSim c172 and X15 in-air starts work fine, resets now work (and are
trimmed), on-ground starts do not -- the c172 ends up on its back. I
suspect this is no worse than before.
I did not test:
Balloon (the weather code returns nan's for the atmosphere data --this
is in the weather module and apparently is a linux only bug)
ADA (don't know how)
MagicCarpet (needs work yet)
External (don't know how)
known to be broken:
LaRCsim c172 on-ground starts with a negative terrain altitude (this
happens at KPAO when the scenery is not present). The FDM inits to
about 50 feet AGL and the model falls to the ground. It does stay
upright, however, and seems to be fine once it settles out, FWIW.
To do:
--implement set_Model on the bus
--bring Christian's weather data into JSBSim
-- add default method to bus for updating things like the sin and cos of
latitude (for Balloon, MagicCarpet)
-- lots of cleanup
The files:
src/FDM/flight.cxx
src/FDM/flight.hxx
-- all data members now declared protected instead of private.
-- eliminated all but a small set of 'setters', no change to getters.
-- that small set is declared virtual, the default implementation
provided preserves the old behavior
-- all of the vector data members are now initialized.
-- added busdump() method -- FG_LOG's all the bus data when called,
useful for diagnostics.
src/FDM/ADA.cxx
-- bus data members now directly assigned to
src/FDM/Balloon.cxx
-- bus data members now directly assigned to
-- changed V_equiv_kts to V_calibrated_kts
src/FDM/JSBSim.cxx
src/FDM/JSBSim.hxx
-- bus data members now directly assigned to
-- implemented the FGInterface virtual setters with JSBSim specific
logic
-- changed the static FDMExec to a dynamic fdmex (needed so that the
JSBSim object can be deleted when a model change is called for)
-- implemented constructor and destructor, moved some of the logic
formerly in init() to constructor
-- added logic to bring up FGEngInterface objects and set the RPM and
throttle values.
src/FDM/LaRCsim.cxx
src/FDM/LaRCsim.hxx
-- bus data members now directly assigned to
-- implemented the FGInterface virtual setters with LaRCsim specific
logic, uses LaRCsimIC
-- implemented constructor and destructor, moved some of the logic
formerly in init() to constructor
-- moved default inertias to here from fg_init.cxx
-- eliminated the climb rate calculation. The equivalent, climb_rate =
-1*vdown, is now in copy_from_LaRCsim().
src/FDM/LaRCsimIC.cxx
src/FDM/LaRCsimIC.hxx
-- similar to FGInitialCondition, this class has all the logic needed to
turn data like Vc and Mach into the more fundamental quantities LaRCsim
needs to initialize.
-- put it in src/FDM since it is a class
src/FDM/MagicCarpet.cxx
-- bus data members now directly assigned to
src/FDM/Makefile.am
-- adds LaRCsimIC.hxx and cxx
src/FDM/JSBSim/FGAtmosphere.h
src/FDM/JSBSim/FGDefs.h
src/FDM/JSBSim/FGInitialCondition.cpp
src/FDM/JSBSim/FGInitialCondition.h
src/FDM/JSBSim/JSBSim.cpp
-- changes to accomodate the new bus
src/FDM/LaRCsim/atmos_62.h
src/FDM/LaRCsim/ls_geodesy.h
-- surrounded prototypes with #ifdef __cplusplus ... #endif , functions
here are needed in LaRCsimIC
src/FDM/LaRCsim/c172_main.c
src/FDM/LaRCsim/cherokee_aero.c
src/FDM/LaRCsim/ls_aux.c
src/FDM/LaRCsim/ls_constants.h
src/FDM/LaRCsim/ls_geodesy.c
src/FDM/LaRCsim/ls_geodesy.h
src/FDM/LaRCsim/ls_step.c
src/FDM/UIUCModel/uiuc_betaprobe.cpp
-- changed PI to LS_PI, eliminates preprocessor naming conflict with
weather module
src/FDM/LaRCsim/ls_interface.c
src/FDM/LaRCsim/ls_interface.h
-- added function ls_set_model_dt()
src/Main/bfi.cxx
-- eliminated calls that set the NED speeds to body components. They
are no longer needed and confuse the new bus.
src/Main/fg_init.cxx
-- eliminated calls that just brought the bus data up-to-date (e.g.
set_sin_cos_latitude). or set default values. The bus now handles the
defaults and updates itself when the setters are called (for LaRCsim and
JSBSim). A default method for doing this needs to be added to the bus.
-- added fgVelocityInit() to set the speed the user asked for. Both
JSBSim and LaRCsim can now be initialized using any of:
vc,mach, NED components, UVW components.
src/Main/main.cxx
--eliminated call to fgFDMSetGroundElevation, this data is now 'pulled'
onto the bus every update()
src/Main/options.cxx
src/Main/options.hxx
-- added enum to keep track of the speed requested by the user
-- eliminated calls to set NED velocity properties to body speeds, they
are no longer needed.
-- added options for the NED components.
src/Network/garmin.cxx
src/Network/nmea.cxx
--eliminated calls that just brought the bus data up-to-date (e.g.
set_sin_cos_latitude). The bus now updates itself when the setters are
called (for LaRCsim and JSBSim). A default method for doing this needs
to be added to the bus.
-- changed set_V_equiv_kts to set_V_calibrated_kts. set_V_equiv_kts no
longer exists ( get_V_equiv_kts still does, though)
src/WeatherCM/FGLocalWeatherDatabase.cpp
-- commented out the code to put the weather data on the bus, a
different scheme for this is needed.
2000-10-24 00:34:50 +00:00
|
|
|
fgVelocityInit();
|
1997-08-23 01:46:20 +00:00
|
|
|
|
1998-04-22 13:25:39 +00:00
|
|
|
// Initial Orientation
|
2001-01-16 20:21:03 +00:00
|
|
|
// cur_fdm_state->
|
|
|
|
// set_Euler_Angles( fgGetDouble("/orientation/roll") * DEG_TO_RAD,
|
|
|
|
// fgGetDouble("/orientation/pitch") * DEG_TO_RAD,
|
|
|
|
// fgGetDouble("/orientation/heading") * DEG_TO_RAD );
|
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
|
|
|
|
2000-11-01 23:27:32 +00:00
|
|
|
// Initialize win_ratio parameters
|
|
|
|
for ( int i = 0; i < globals->get_viewmgr()->size(); ++i ) {
|
|
|
|
globals->get_viewmgr()->get_view(i)->
|
2001-01-13 22:06:39 +00:00
|
|
|
set_win_ratio( fgGetInt("/sim/startup/xsize") /
|
|
|
|
fgGetInt("/sim/startup/ysize") );
|
2000-11-01 23:27:32 +00:00
|
|
|
}
|
2000-10-26 21:51:09 +00:00
|
|
|
|
|
|
|
// Initialize pilot view
|
|
|
|
FGViewerRPH *pilot_view =
|
|
|
|
(FGViewerRPH *)globals->get_viewmgr()->get_view( 0 );
|
|
|
|
|
|
|
|
pilot_view->set_geod_view_pos( cur_fdm_state->get_Longitude(),
|
|
|
|
cur_fdm_state->get_Lat_geocentric(),
|
|
|
|
cur_fdm_state->get_Altitude() *
|
|
|
|
FEET_TO_METER );
|
|
|
|
pilot_view->set_sea_level_radius( cur_fdm_state->get_Sea_level_radius() *
|
|
|
|
FEET_TO_METER );
|
|
|
|
pilot_view->set_rph( cur_fdm_state->get_Phi(),
|
|
|
|
cur_fdm_state->get_Theta(),
|
|
|
|
cur_fdm_state->get_Psi() );
|
2000-10-25 15:27:55 +00:00
|
|
|
|
2000-10-27 22:00:43 +00:00
|
|
|
// set current view to 0 (first) which is our main pilot view
|
|
|
|
globals->set_current_view( pilot_view );
|
|
|
|
|
The following changes were made to flightgear-0.7.5 code to implement the follow
ing features:
a) ADA Flight model - ADA.cxx, ADA.hxx, flight.hxx
b) Fighter a/c HUD - flight.hxx, hud.hxx, hud.cxx, cockpit.cxx, hud_ladr.c
xx, hud_card.cxx
c) 3-window display - options.hxx, options.cxx, viewer.cxx
d) Moving objects (ship) - main.cxx
e) Patches - main.cxx
ADA.cxx, ADA.hxx
--------------------------
Interface to the external ADA flight dynamics package.
flight.hxx
----------
Included prototypes for accepting additional data fron the External flight
model for fighter aircraft HUD
Hud.hxx
-------
Included prototypes for accepting additional data for fighter HUD from Exernal F
light model.
Defined FIGHTER_HUD pre-processor directive to enable compilation of fighter hud
code.
hud.cxx, cockpit.cxx, hud_ladr.cxx, hud_card.cxx
---------------------------------------
Included code to initialise additional reticles/text for fighter HUD which is co
nditionally
compiled if FIGHTER_HUD is defined.
options.hxx
-----------
Added window_offset, and function to retrieve its value for 3 windows
options.cxx
-----------
Changed few options to suit ADA/CEF projection system/screens and checks for win
dow offset.
views.cxx
---------
Added code to retrieve view offset for window.
Main.cxx
--------
Added code to load and move an aircraft carrier.
Patch to enable clouds from command line until Curtis fixes it. By default cloud
s are disabled.
2000-10-19 19:46:13 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG, " abs_view_pos = "
|
|
|
|
<< globals->get_current_view()->get_abs_view_pos());
|
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-12-06 04:13:16 +00:00
|
|
|
new FGLocalWeatherDatabase( position,
|
2001-01-13 22:06:39 +00:00
|
|
|
globals->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;
|
2000-12-06 04:13:16 +00:00
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
double init_vis = fgGetDouble("/environment/visibility");
|
2000-12-06 04:13:16 +00:00
|
|
|
if ( init_vis > 0 ) {
|
|
|
|
WeatherDatabase->setWeatherVisibility( init_vis );
|
|
|
|
}
|
|
|
|
|
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;
|
2001-01-13 22:06:39 +00:00
|
|
|
FGPath p_nav( globals->get_fg_root() );
|
2000-04-24 23:51:26 +00:00
|
|
|
p_nav.append( "Navaids/default.nav" );
|
|
|
|
current_navlist->init( p_nav );
|
|
|
|
|
2001-03-16 23:59:02 +00:00
|
|
|
FG_LOG(FG_GENERAL, FG_INFO, " ILS and Marker Beacons");
|
|
|
|
current_beacons = new FGMarkerBeacons;
|
|
|
|
current_beacons->init();
|
2000-04-24 23:51:26 +00:00
|
|
|
current_ilslist = new FGILSList;
|
2001-01-13 22:06:39 +00:00
|
|
|
FGPath p_ils( globals->get_fg_root() );
|
2000-04-24 23:51:26 +00:00
|
|
|
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;
|
2001-01-13 22:06:39 +00:00
|
|
|
FGPath p_fix( globals->get_fg_root() );
|
2000-04-24 23:51:26 +00:00
|
|
|
p_fix.append( "Navaids/default.fix" );
|
|
|
|
current_fixlist->init( p_fix );
|
|
|
|
|
2001-01-11 22:44:18 +00:00
|
|
|
// Radio stack subsystem.
|
2000-04-25 03:09:26 +00:00
|
|
|
current_radiostack = new FGRadioStack;
|
2001-01-11 22:44:18 +00:00
|
|
|
current_radiostack->init();
|
|
|
|
current_radiostack->bind();
|
2000-05-04 01:18:45 +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-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
|
|
|
|
2001-01-16 20:21:03 +00:00
|
|
|
cur_fdm_state->init();
|
|
|
|
cur_fdm_state->bind();
|
|
|
|
// if ( cur_fdm_state->init( 1.0 / fgGetInt("/sim/model-hz") ) ) {
|
|
|
|
// // fdm init successful
|
|
|
|
// } else {
|
|
|
|
// FG_LOG( FG_GENERAL, FG_ALERT, "FDM init() failed! Cannot continue." );
|
|
|
|
// exit(-1);
|
|
|
|
// }
|
1997-08-25 20:27:21 +00:00
|
|
|
|
2000-10-25 19:27:13 +00:00
|
|
|
// *ABCD* 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
|
|
|
|
2000-10-25 19:27:13 +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) << ")" );
|
2000-10-25 19:27:13 +00:00
|
|
|
// *ABCD* end of thing that I just stuck in that I should probably
|
|
|
|
// move
|
1998-07-12 03:14:42 +00:00
|
|
|
|
1998-02-12 21:58:27 +00:00
|
|
|
// Joystick support
|
2000-10-25 19:27:13 +00:00
|
|
|
if ( ! fgJoystickInit() ) {
|
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.
|
2001-01-13 22:06:39 +00:00
|
|
|
string panel_path = fgGetString("/sim/panel/path",
|
|
|
|
"Panels/Default/default.xml");
|
2000-09-22 17:20:56 +00:00
|
|
|
current_panel = fgReadPanel(panel_path);
|
|
|
|
if (current_panel == 0) {
|
2000-10-25 19:27:13 +00:00
|
|
|
FG_LOG( FG_INPUT, FG_ALERT,
|
|
|
|
"Error reading new panel from " << panel_path );
|
|
|
|
} else {
|
|
|
|
FG_LOG( FG_INPUT, FG_INFO, "Loaded new panel from " << panel_path );
|
2001-01-11 22:44:18 +00:00
|
|
|
current_panel->init();
|
|
|
|
current_panel->bind();
|
2000-09-22 17:20:56 +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
|
|
|
|
2000-07-03 20:09:56 +00:00
|
|
|
// Initialize the BFI
|
|
|
|
FGBFI::init();
|
|
|
|
|
2001-01-05 17:38:58 +00:00
|
|
|
controls.init();
|
|
|
|
controls.bind();
|
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO, endl);
|
1998-04-24 00:49:17 +00:00
|
|
|
|
2001-01-19 22:57:24 +00:00
|
|
|
// Save the initial state for future
|
|
|
|
// reference.
|
|
|
|
globals->saveInitialState();
|
|
|
|
|
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 )
|
|
|
|
{
|
2001-01-17 23:30:35 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_INFO,
|
|
|
|
"/position/altitude = " << fgGetDouble("/position/altitude") );
|
|
|
|
|
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
|
|
|
|
2001-01-17 20:32:02 +00:00
|
|
|
// Initialize the Scenery Management subsystem
|
|
|
|
if ( ! fgSceneryInit() ) {
|
|
|
|
FG_LOG( FG_GENERAL, FG_ALERT, "Error in Scenery initialization!" );
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
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
|
2001-01-13 22:06:39 +00:00
|
|
|
global_tile_mgr.update( fgGetDouble("/position/longitude"),
|
|
|
|
fgGetDouble("/position/latitude") );
|
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;
|
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
fgFDMSetGroundElevation( fgGetString("/sim/flight-model"),
|
1999-04-27 15:52:32 +00:00
|
|
|
scenery.cur_elev );
|
2001-01-17 20:32:02 +00:00
|
|
|
fgInitPosition();
|
1999-04-27 15:52:32 +00:00
|
|
|
|
|
|
|
// Reset our altitude if we are below ground
|
2000-10-25 19:27:13 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG, "Current altitude = "
|
|
|
|
<< cur_fdm_state->get_Altitude() );
|
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG, "Current runway altitude = "
|
|
|
|
<< cur_fdm_state->get_Runway_altitude() );
|
1999-04-27 15:52:32 +00:00
|
|
|
|
2000-10-25 19:27:13 +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;
|
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);
|
2000-10-25 19:27:13 +00:00
|
|
|
cur_fdm_state->set_Sea_level_radius( sea_level_radius_meters *
|
|
|
|
METER_TO_FEET );
|
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
|
I tested:
LaRCsim c172 on-ground and in-air starts, reset: all work
UIUC Cessna172 on-ground and in-air starts work as expected, reset
results in an aircraft that is upside down but does not crash FG. I
don't know what it was like before, so it may well be no change.
JSBSim c172 and X15 in-air starts work fine, resets now work (and are
trimmed), on-ground starts do not -- the c172 ends up on its back. I
suspect this is no worse than before.
I did not test:
Balloon (the weather code returns nan's for the atmosphere data --this
is in the weather module and apparently is a linux only bug)
ADA (don't know how)
MagicCarpet (needs work yet)
External (don't know how)
known to be broken:
LaRCsim c172 on-ground starts with a negative terrain altitude (this
happens at KPAO when the scenery is not present). The FDM inits to
about 50 feet AGL and the model falls to the ground. It does stay
upright, however, and seems to be fine once it settles out, FWIW.
To do:
--implement set_Model on the bus
--bring Christian's weather data into JSBSim
-- add default method to bus for updating things like the sin and cos of
latitude (for Balloon, MagicCarpet)
-- lots of cleanup
The files:
src/FDM/flight.cxx
src/FDM/flight.hxx
-- all data members now declared protected instead of private.
-- eliminated all but a small set of 'setters', no change to getters.
-- that small set is declared virtual, the default implementation
provided preserves the old behavior
-- all of the vector data members are now initialized.
-- added busdump() method -- FG_LOG's all the bus data when called,
useful for diagnostics.
src/FDM/ADA.cxx
-- bus data members now directly assigned to
src/FDM/Balloon.cxx
-- bus data members now directly assigned to
-- changed V_equiv_kts to V_calibrated_kts
src/FDM/JSBSim.cxx
src/FDM/JSBSim.hxx
-- bus data members now directly assigned to
-- implemented the FGInterface virtual setters with JSBSim specific
logic
-- changed the static FDMExec to a dynamic fdmex (needed so that the
JSBSim object can be deleted when a model change is called for)
-- implemented constructor and destructor, moved some of the logic
formerly in init() to constructor
-- added logic to bring up FGEngInterface objects and set the RPM and
throttle values.
src/FDM/LaRCsim.cxx
src/FDM/LaRCsim.hxx
-- bus data members now directly assigned to
-- implemented the FGInterface virtual setters with LaRCsim specific
logic, uses LaRCsimIC
-- implemented constructor and destructor, moved some of the logic
formerly in init() to constructor
-- moved default inertias to here from fg_init.cxx
-- eliminated the climb rate calculation. The equivalent, climb_rate =
-1*vdown, is now in copy_from_LaRCsim().
src/FDM/LaRCsimIC.cxx
src/FDM/LaRCsimIC.hxx
-- similar to FGInitialCondition, this class has all the logic needed to
turn data like Vc and Mach into the more fundamental quantities LaRCsim
needs to initialize.
-- put it in src/FDM since it is a class
src/FDM/MagicCarpet.cxx
-- bus data members now directly assigned to
src/FDM/Makefile.am
-- adds LaRCsimIC.hxx and cxx
src/FDM/JSBSim/FGAtmosphere.h
src/FDM/JSBSim/FGDefs.h
src/FDM/JSBSim/FGInitialCondition.cpp
src/FDM/JSBSim/FGInitialCondition.h
src/FDM/JSBSim/JSBSim.cpp
-- changes to accomodate the new bus
src/FDM/LaRCsim/atmos_62.h
src/FDM/LaRCsim/ls_geodesy.h
-- surrounded prototypes with #ifdef __cplusplus ... #endif , functions
here are needed in LaRCsimIC
src/FDM/LaRCsim/c172_main.c
src/FDM/LaRCsim/cherokee_aero.c
src/FDM/LaRCsim/ls_aux.c
src/FDM/LaRCsim/ls_constants.h
src/FDM/LaRCsim/ls_geodesy.c
src/FDM/LaRCsim/ls_geodesy.h
src/FDM/LaRCsim/ls_step.c
src/FDM/UIUCModel/uiuc_betaprobe.cpp
-- changed PI to LS_PI, eliminates preprocessor naming conflict with
weather module
src/FDM/LaRCsim/ls_interface.c
src/FDM/LaRCsim/ls_interface.h
-- added function ls_set_model_dt()
src/Main/bfi.cxx
-- eliminated calls that set the NED speeds to body components. They
are no longer needed and confuse the new bus.
src/Main/fg_init.cxx
-- eliminated calls that just brought the bus data up-to-date (e.g.
set_sin_cos_latitude). or set default values. The bus now handles the
defaults and updates itself when the setters are called (for LaRCsim and
JSBSim). A default method for doing this needs to be added to the bus.
-- added fgVelocityInit() to set the speed the user asked for. Both
JSBSim and LaRCsim can now be initialized using any of:
vc,mach, NED components, UVW components.
src/Main/main.cxx
--eliminated call to fgFDMSetGroundElevation, this data is now 'pulled'
onto the bus every update()
src/Main/options.cxx
src/Main/options.hxx
-- added enum to keep track of the speed requested by the user
-- eliminated calls to set NED velocity properties to body speeds, they
are no longer needed.
-- added options for the NED components.
src/Network/garmin.cxx
src/Network/nmea.cxx
--eliminated calls that just brought the bus data up-to-date (e.g.
set_sin_cos_latitude). The bus now updates itself when the setters are
called (for LaRCsim and JSBSim). A default method for doing this needs
to be added to the bus.
-- changed set_V_equiv_kts to set_V_calibrated_kts. set_V_equiv_kts no
longer exists ( get_V_equiv_kts still does, though)
src/WeatherCM/FGLocalWeatherDatabase.cpp
-- commented out the code to put the weather data on the bus, a
different scheme for this is needed.
2000-10-24 00:34:50 +00:00
|
|
|
fgVelocityInit();
|
1999-04-27 15:52:32 +00:00
|
|
|
|
|
|
|
// Initial Orientation
|
2001-01-16 20:21:03 +00:00
|
|
|
// cur_fdm_state->
|
|
|
|
// set_Euler_Angles( fgGetDouble("/orientation/roll") * DEG_TO_RAD,
|
|
|
|
// fgGetDouble("/orientation/pitch") * DEG_TO_RAD,
|
|
|
|
// fgGetDouble("/orientation/heading") * DEG_TO_RAD );
|
1999-04-27 15:52:32 +00:00
|
|
|
|
|
|
|
// Initialize view parameters
|
2000-10-26 21:51:09 +00:00
|
|
|
FGViewerRPH *pilot_view =
|
|
|
|
(FGViewerRPH *)globals->get_viewmgr()->get_view( 0 );
|
|
|
|
|
|
|
|
pilot_view->set_view_offset( 0.0 );
|
|
|
|
pilot_view->set_goal_view_offset( 0.0 );
|
|
|
|
|
|
|
|
pilot_view->set_geod_view_pos( cur_fdm_state->get_Longitude(),
|
|
|
|
cur_fdm_state->get_Lat_geocentric(),
|
|
|
|
cur_fdm_state->get_Altitude() *
|
|
|
|
FEET_TO_METER );
|
|
|
|
pilot_view->set_sea_level_radius( cur_fdm_state->get_Sea_level_radius() *
|
|
|
|
FEET_TO_METER );
|
|
|
|
pilot_view->set_rph( cur_fdm_state->get_Phi(),
|
|
|
|
cur_fdm_state->get_Theta(),
|
|
|
|
cur_fdm_state->get_Psi() );
|
2000-10-25 15:27:55 +00:00
|
|
|
|
2000-10-27 22:00:43 +00:00
|
|
|
// set current view to 0 (first) which is our main pilot view
|
|
|
|
globals->set_current_view( pilot_view );
|
|
|
|
|
The following changes were made to flightgear-0.7.5 code to implement the follow
ing features:
a) ADA Flight model - ADA.cxx, ADA.hxx, flight.hxx
b) Fighter a/c HUD - flight.hxx, hud.hxx, hud.cxx, cockpit.cxx, hud_ladr.c
xx, hud_card.cxx
c) 3-window display - options.hxx, options.cxx, viewer.cxx
d) Moving objects (ship) - main.cxx
e) Patches - main.cxx
ADA.cxx, ADA.hxx
--------------------------
Interface to the external ADA flight dynamics package.
flight.hxx
----------
Included prototypes for accepting additional data fron the External flight
model for fighter aircraft HUD
Hud.hxx
-------
Included prototypes for accepting additional data for fighter HUD from Exernal F
light model.
Defined FIGHTER_HUD pre-processor directive to enable compilation of fighter hud
code.
hud.cxx, cockpit.cxx, hud_ladr.cxx, hud_card.cxx
---------------------------------------
Included code to initialise additional reticles/text for fighter HUD which is co
nditionally
compiled if FIGHTER_HUD is defined.
options.hxx
-----------
Added window_offset, and function to retrieve its value for 3 windows
options.cxx
-----------
Changed few options to suit ADA/CEF projection system/screens and checks for win
dow offset.
views.cxx
---------
Added code to retrieve view offset for window.
Main.cxx
--------
Added code to load and move an aircraft carrier.
Patch to enable clouds from command line until Curtis fixes it. By default cloud
s are disabled.
2000-10-19 19:46:13 +00:00
|
|
|
FG_LOG( FG_GENERAL, FG_DEBUG, " abs_view_pos = "
|
|
|
|
<< globals->get_current_view()->get_abs_view_pos());
|
1999-04-27 15:52:32 +00:00
|
|
|
|
2001-01-16 20:21:03 +00:00
|
|
|
cur_fdm_state->init();
|
2001-01-19 22:57:24 +00:00
|
|
|
// cur_fdm_state->bind();
|
2001-01-16 20:21:03 +00:00
|
|
|
// cur_fdm_state->init( 1.0 / fgGetInt("/sim/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
|
|
|
|
2000-10-25 19:27:13 +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
|
|
|
}
|