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.
|
2001-03-23 22:42:49 +00:00
|
|
|
#ifdef SG_MATH_EXCEPTION_CLASH
|
1999-05-08 02:33:13 +00:00
|
|
|
# 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>
|
2001-03-25 14:20:12 +00:00
|
|
|
#include <simgear/misc/sg_path.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
|
|
|
|
|
2001-03-23 22:59:18 +00:00
|
|
|
SG_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 ) {
|
2001-03-25 14:20:12 +00:00
|
|
|
SGPath config( envp );
|
2001-03-22 04:02:11 +00:00
|
|
|
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 ) {
|
2001-03-25 14:20:12 +00:00
|
|
|
SGPath config( envp );
|
2001-01-13 22:06:39 +00:00
|
|
|
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 == "" ) {
|
2001-04-05 20:25:40 +00:00
|
|
|
#if defined( __CYGWIN__ )
|
|
|
|
root = "/FlightGear";
|
|
|
|
#elif defined( WIN32 )
|
2001-01-13 22:06:39 +00:00
|
|
|
root = "\\FlightGear";
|
|
|
|
#elif defined( macintosh )
|
|
|
|
root = "";
|
|
|
|
#else
|
|
|
|
root = PKGLIBDIR;
|
|
|
|
#endif
|
2000-10-04 22:52:34 +00:00
|
|
|
}
|
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG(SG_INPUT, SG_INFO, "fg_root = " << root );
|
2001-01-13 22:06:39 +00:00
|
|
|
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-03-25 14:20:12 +00:00
|
|
|
SGPath props_path(globals->get_fg_root());
|
2001-01-12 15:37:40 +00:00
|
|
|
props_path.append("preferences.xml");
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG(SG_INPUT, SG_INFO, "Reading global preferences");
|
2001-01-12 15:37:40 +00:00
|
|
|
if (!readProperties(props_path.str(), globals->get_props())) {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG(SG_INPUT, SG_ALERT, "Failed to read global preferences from "
|
2001-01-12 15:37:40 +00:00
|
|
|
<< props_path.str());
|
|
|
|
} else {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG(SG_INPUT, SG_INFO, "Finished Reading global preferences");
|
2001-01-12 15:37:40 +00:00
|
|
|
}
|
|
|
|
|
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-03-25 14:20:12 +00:00
|
|
|
SGPath 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-03-25 14:20:12 +00:00
|
|
|
SGPath 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
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_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 ) ) {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_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;
|
|
|
|
}
|
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO,
|
2000-07-21 22:54:14 +00:00
|
|
|
"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
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO,
|
2000-10-12 01:08:09 +00:00
|
|
|
"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 );
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO,
|
2000-10-12 01:08:09 +00:00
|
|
|
"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-03-25 14:20:12 +00:00
|
|
|
SGPath 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() );
|
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO,
|
2000-08-16 00:09:03 +00:00
|
|
|
"Attempting to set starting position from runway code "
|
|
|
|
<< id << " heading " << tgt_hdg );
|
|
|
|
|
2001-03-25 14:20:12 +00:00
|
|
|
// SGPath 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-03-25 14:20:12 +00:00
|
|
|
// SGPath 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 ) ) {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT,
|
2000-08-16 00:09:03 +00:00
|
|
|
"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);
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO,
|
2000-08-16 00:09:03 +00:00
|
|
|
"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);
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO,
|
2000-08-16 00:09:03 +00:00
|
|
|
"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 );
|
|
|
|
}
|
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO, "closest runway = " << found_r.rwy_no
|
2000-08-16 00:09:03 +00:00
|
|
|
<< " + " << 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; }
|
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO,
|
2000-08-16 00:09:03 +00:00
|
|
|
"runway = " << found_r.lon << ", " << found_r.lat
|
2001-03-24 04:56:46 +00:00
|
|
|
<< " length = " << found_r.length * SG_FEET_TO_METER * 0.5
|
2000-08-16 00:09:03 +00:00
|
|
|
<< " 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,
|
2001-03-24 04:56:46 +00:00
|
|
|
azimuth, found_r.length * SG_FEET_TO_METER * 0.5 - 5.0,
|
2000-08-16 00:09:03 +00:00
|
|
|
&lat2, &lon2, &az2 );
|
2001-03-02 23:27:22 +00:00
|
|
|
|
2001-03-24 00:18:01 +00:00
|
|
|
if ( fabs( fgGetDouble("/sim/startup/offset-distance") ) > SG_EPSILON ) {
|
2001-03-02 23:27:22 +00:00
|
|
|
double olat, olon;
|
|
|
|
double odist = fgGetDouble("/sim/startup/offset-distance");
|
2001-03-24 04:56:46 +00:00
|
|
|
odist *= SG_NM_TO_METER;
|
2001-03-02 23:27:22 +00:00
|
|
|
double oaz = azimuth;
|
2001-03-24 00:18:01 +00:00
|
|
|
if ( fabs(fgGetDouble("/sim/startup/offset-azimuth")) > SG_EPSILON ) {
|
2001-03-02 23:27:22 +00:00
|
|
|
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
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO,
|
2000-08-16 00:09:03 +00:00
|
|
|
"Position for " << id << " is ("
|
|
|
|
<< lon2 << ", "
|
|
|
|
<< lat2 << ") new heading is "
|
|
|
|
<< heading );
|
|
|
|
|
|
|
|
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
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO, "General Initialization" );
|
|
|
|
SG_LOG( SG_GENERAL, SG_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 ...
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_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
|
|
|
}
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_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
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO, "Initialize Subsystems");
|
|
|
|
SG_LOG( SG_GENERAL, SG_INFO, "========== ==========");
|
1998-04-25 15:11:10 +00:00
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize the material property subsystem.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
2001-03-25 14:20:12 +00:00
|
|
|
SGPath mpath( globals->get_fg_root() );
|
2000-06-23 00:30:04 +00:00
|
|
|
mpath.append( "materials" );
|
|
|
|
if ( material_lib.load( mpath.str() ) ) {
|
|
|
|
} else {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Error loading material lib!" );
|
2000-06-23 00:30:04 +00:00
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize the scenery management subsystem.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-22 14:49:55 +00:00
|
|
|
if ( fgSceneryInit() ) {
|
2000-06-23 00:30:04 +00:00
|
|
|
// Material lib initialized ok.
|
1998-08-22 14:49:55 +00:00
|
|
|
} else {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Error in Scenery initialization!" );
|
1998-11-06 21:17:31 +00:00
|
|
|
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 {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Error in Tile Manager initialization!" );
|
1998-11-06 21:17:31 +00:00
|
|
|
exit(-1);
|
1998-08-22 14:49:55 +00:00
|
|
|
}
|
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_DEBUG,
|
1999-04-05 02:13:58 +00:00
|
|
|
"Current terrain elevation after tile mgr init " <<
|
1999-01-27 04:49:17 +00:00
|
|
|
scenery.cur_elev );
|
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize the flight model subsystem.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
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-03-24 06:03:11 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT,
|
2001-01-13 22:06:39 +00:00
|
|
|
"Unrecognized flight model '" << model
|
|
|
|
<< ", can't init aircraft");
|
2000-07-23 21:32:59 +00:00
|
|
|
exit(-1);
|
|
|
|
}
|
2001-04-05 20:20:44 +00:00
|
|
|
cur_fdm_state->init();
|
|
|
|
cur_fdm_state->bind();
|
|
|
|
|
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.
|
|
|
|
|
1998-08-22 14:49:55 +00:00
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize the event manager subsystem.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
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
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize the view manager subsystem.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
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() *
|
2001-03-24 04:56:46 +00:00
|
|
|
SG_FEET_TO_METER );
|
2000-10-26 21:51:09 +00:00
|
|
|
pilot_view->set_sea_level_radius( cur_fdm_state->get_Sea_level_radius() *
|
2001-03-24 04:56:46 +00:00
|
|
|
SG_FEET_TO_METER );
|
2000-10-26 21:51:09 +00:00
|
|
|
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 );
|
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_DEBUG, " abs_view_pos = "
|
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
|
|
|
<< globals->get_current_view()->get_abs_view_pos());
|
1998-04-25 20:24:00 +00:00
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize the lighting subsystem.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
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 );
|
2001-04-05 20:20:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize the local time subsystem.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
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
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize the weather subsystem.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
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
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_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(),
|
2001-03-24 04:56:46 +00:00
|
|
|
current_aircraft.fdm_state->get_Altitude() * SG_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
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
////////////////////////////////////////////////////////////////////
|
2000-04-24 23:51:26 +00:00
|
|
|
// Initialize vor/ndb/ils/fix list management and query systems
|
2001-04-05 20:20:44 +00:00
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, "Loading Navaids");
|
2000-04-25 17:33:13 +00:00
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, " VOR/NDB");
|
2000-04-24 23:51:26 +00:00
|
|
|
current_navlist = new FGNavList;
|
2001-03-25 14:20:12 +00:00
|
|
|
SGPath 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-24 06:03:11 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, " ILS and Marker Beacons");
|
2001-03-16 23:59:02 +00:00
|
|
|
current_beacons = new FGMarkerBeacons;
|
|
|
|
current_beacons->init();
|
2000-04-24 23:51:26 +00:00
|
|
|
current_ilslist = new FGILSList;
|
2001-03-25 14:20:12 +00:00
|
|
|
SGPath 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 );
|
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, " Fixes");
|
2000-04-24 23:51:26 +00:00
|
|
|
current_fixlist = new FGFixList;
|
2001-03-25 14:20:12 +00:00
|
|
|
SGPath 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-04-05 20:20:44 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize the radio stack subsystem.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// A textbook example of how FGSubsystem
|
|
|
|
// should work...
|
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
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize the cockpit subsystem
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-02-12 21:58:27 +00:00
|
|
|
if( fgCockpitInit( ¤t_aircraft )) {
|
|
|
|
// Cockpit initialized ok.
|
|
|
|
} else {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Error in Cockpit initialization!" );
|
1998-11-06 21:17:31 +00:00
|
|
|
exit(-1);
|
1997-09-04 02:17:18 +00:00
|
|
|
}
|
1997-08-25 20:27:21 +00:00
|
|
|
|
1998-02-12 21:58:27 +00:00
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize the joystick subsystem.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
1998-07-12 03:14:42 +00:00
|
|
|
|
2000-10-25 19:27:13 +00:00
|
|
|
if ( ! fgJoystickInit() ) {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Error in Joystick initialization!" );
|
1998-02-12 21:58:27 +00:00
|
|
|
}
|
1997-12-30 20:47:34 +00:00
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize the autopilot subsystem.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
2000-04-30 06:51:49 +00:00
|
|
|
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
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize I/O subsystem.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
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) {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_INPUT, SG_ALERT,
|
2000-10-25 19:27:13 +00:00
|
|
|
"Error reading new panel from " << panel_path );
|
|
|
|
} else {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_INPUT, SG_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
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize the BFI.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
2000-07-03 20:09:56 +00:00
|
|
|
FGBFI::init();
|
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialize the controls subsystem.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
2001-01-05 17:38:58 +00:00
|
|
|
controls.init();
|
|
|
|
controls.bind();
|
|
|
|
|
2001-04-05 20:20:44 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// End of subsystem initialization.
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_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-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO,
|
2001-01-17 23:30:35 +00:00
|
|
|
"/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() ) {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Error in Scenery initialization!" );
|
2001-01-17 20:32:02 +00:00
|
|
|
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 {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Error in Tile Manager initialization!" );
|
1999-04-27 15:52:32 +00:00
|
|
|
exit(-1);
|
|
|
|
}
|
2000-07-23 21:32:59 +00:00
|
|
|
|
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() *
|
2001-03-24 04:56:46 +00:00
|
|
|
SG_FEET_TO_METER );
|
2000-10-26 21:51:09 +00:00
|
|
|
pilot_view->set_sea_level_radius( cur_fdm_state->get_Sea_level_radius() *
|
2001-03-24 04:56:46 +00:00
|
|
|
SG_FEET_TO_METER );
|
2000-10-26 21:51:09 +00:00
|
|
|
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 );
|
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_DEBUG, " abs_view_pos = "
|
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
|
|
|
<< 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();
|
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
|
|
|
}
|