2000-07-07 17:27:53 +00:00
|
|
|
// globals.hxx -- Global state that needs to be shared among the sim modules
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started July 2000.
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
// Copyright (C) 2000 Curtis L. Olson - http://www.flightgear.org/~curt
|
2000-07-07 17:27:53 +00:00
|
|
|
//
|
|
|
|
// 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
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2000-07-07 17:27:53 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _GLOBALS_HXX
|
|
|
|
#define _GLOBALS_HXX
|
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
#include <simgear/compiler.h>
|
2008-07-31 12:04:32 +00:00
|
|
|
#include <simgear/props/props.hxx>
|
2003-09-24 17:20:55 +00:00
|
|
|
#include <simgear/structure/subsystem_mgr.hxx>
|
2010-07-18 12:21:30 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2001-01-13 22:06:39 +00:00
|
|
|
|
|
|
|
#include <vector>
|
2008-07-25 18:38:29 +00:00
|
|
|
#include <string>
|
2001-01-13 22:06:39 +00:00
|
|
|
|
2008-07-31 12:04:32 +00:00
|
|
|
typedef std::vector<std::string> string_list;
|
2000-07-07 20:28:51 +00:00
|
|
|
|
2001-07-22 19:51:16 +00:00
|
|
|
// Forward declarations
|
2002-03-16 00:18:38 +00:00
|
|
|
|
|
|
|
// This file is included, directly or indirectly, almost everywhere in
|
|
|
|
// FlightGear, so if any of its dependencies changes, most of the sim
|
|
|
|
// has to be recompiled. Using these forward declarations helps us to
|
|
|
|
// avoid including a lot of header files (and thus, a lot of
|
|
|
|
// dependencies). Since Most of the methods simply set or return
|
|
|
|
// pointers, we don't need to know anything about the class details
|
|
|
|
// anyway.
|
|
|
|
|
|
|
|
class SGEphemeris;
|
2002-12-06 22:29:46 +00:00
|
|
|
class SGCommandMgr;
|
2002-03-16 00:18:38 +00:00
|
|
|
class SGMagVar;
|
2003-05-14 18:33:56 +00:00
|
|
|
class SGMaterialLib;
|
2002-12-06 22:29:46 +00:00
|
|
|
class SGPropertyNode;
|
2002-03-16 00:18:38 +00:00
|
|
|
class SGTime;
|
2008-07-31 12:04:32 +00:00
|
|
|
class SGEventMgr;
|
|
|
|
class SGSubsystemMgr;
|
|
|
|
class SGSubsystem;
|
2009-10-24 08:31:37 +00:00
|
|
|
class SGSoundMgr;
|
2004-06-03 17:59:14 +00:00
|
|
|
|
2002-03-01 17:39:52 +00:00
|
|
|
class FGATCMgr;
|
2002-04-09 18:58:24 +00:00
|
|
|
class FGAircraftModel;
|
2002-12-06 22:29:46 +00:00
|
|
|
class FGControls;
|
2004-06-03 17:59:14 +00:00
|
|
|
class FGFlightPlanDispatcher;
|
2004-05-26 18:15:19 +00:00
|
|
|
class FGNavList;
|
2005-10-01 09:56:53 +00:00
|
|
|
class FGTACANList;
|
2002-04-12 12:45:49 +00:00
|
|
|
class FGModelMgr;
|
2004-01-31 19:47:45 +00:00
|
|
|
class FGRouteMgr;
|
2002-05-14 05:22:52 +00:00
|
|
|
class FGScenery;
|
2003-03-30 12:46:08 +00:00
|
|
|
class FGPanel;
|
2002-12-06 22:29:46 +00:00
|
|
|
class FGTileMgr;
|
|
|
|
class FGViewMgr;
|
|
|
|
class FGViewer;
|
2005-02-25 19:41:53 +00:00
|
|
|
class FGRenderer;
|
2006-06-05 20:21:45 +00:00
|
|
|
class FGFontCache;
|
2002-12-06 22:29:46 +00:00
|
|
|
|
2002-03-16 00:18:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Bucket for subsystem pointers representing the sim's state.
|
|
|
|
*/
|
2003-09-24 17:20:55 +00:00
|
|
|
|
2002-03-16 00:18:38 +00:00
|
|
|
class FGGlobals
|
|
|
|
{
|
2000-07-07 17:27:53 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2008-03-22 09:31:06 +00:00
|
|
|
// properties, destroy last
|
|
|
|
SGPropertyNode_ptr props;
|
|
|
|
SGPropertyNode_ptr initial_state;
|
|
|
|
|
|
|
|
// localization
|
|
|
|
SGPropertyNode_ptr locale;
|
|
|
|
|
2004-09-20 13:21:51 +00:00
|
|
|
FGRenderer *renderer;
|
2004-06-14 18:47:21 +00:00
|
|
|
SGSubsystemMgr *subsystem_mgr;
|
|
|
|
SGEventMgr *event_mgr;
|
2002-10-03 21:20:56 +00:00
|
|
|
|
2002-03-12 16:30:27 +00:00
|
|
|
// Number of milliseconds elapsed since the start of the program.
|
2002-05-11 16:28:50 +00:00
|
|
|
double sim_time_sec;
|
2002-03-12 16:30:27 +00:00
|
|
|
|
2001-01-12 15:37:40 +00:00
|
|
|
// Root of FlightGear data tree
|
2008-07-31 12:04:32 +00:00
|
|
|
std::string fg_root;
|
2001-01-12 15:37:40 +00:00
|
|
|
|
Melchior FRANZ:
Wouldn't it be better to prepare the whole list of paths (or two
separate ones for Terrain/Objects if necessary) in FGGlobals::set_fg_scenery,
and to pass the vector<string>s to FGTileEntry::load? It doesn't seem to make
a lot of sense to split the path up, modify it, mount it together to one string
again, and then let FGTileEntry::load split it up again.
Here we go:
Main/globals.cxx
================
As fg_scenery is now a string_list, we don't need initialization. Furthermore,
this list is cleared with every set_fg_scenery() call.
ctor: create default dir from fg_root if necessary. Otherwise check all paths
of --fg-scenery/FG_SCENERY: If the path doesn't exist, ignore it. If it contains
a dir Terrain and/or Objects, then only add that to the list. If it contains
neither, then use the path as is.
Scenery/tileentry.cxx
=====================
Trivial: don't split a "base path", but use the given path_list as is.
(I considered a variable name "path_list" better suited than "search".)
Scenery/FGTileLoader.cxx
========================
No more fiddling with sub-paths. This has to be delivered by get_fg_scenery
already.
2004-06-08 15:32:09 +00:00
|
|
|
// Roots of FlightGear scenery tree
|
|
|
|
string_list fg_scenery;
|
2001-01-12 15:37:40 +00:00
|
|
|
|
2008-07-31 12:04:32 +00:00
|
|
|
std::string browser;
|
2008-07-09 19:35:53 +00:00
|
|
|
|
2000-07-07 20:28:51 +00:00
|
|
|
// Time structure
|
|
|
|
SGTime *time_params;
|
|
|
|
|
2000-07-08 05:09:24 +00:00
|
|
|
// Sky structures
|
|
|
|
SGEphemeris *ephem;
|
|
|
|
|
2000-08-08 00:39:52 +00:00
|
|
|
// Magnetic Variation
|
|
|
|
SGMagVar *mag;
|
|
|
|
|
2003-05-14 18:33:56 +00:00
|
|
|
// Material properties library
|
|
|
|
SGMaterialLib *matlib;
|
|
|
|
|
2000-10-12 01:08:09 +00:00
|
|
|
// Global autopilot "route"
|
2004-01-31 19:47:45 +00:00
|
|
|
FGRouteMgr *route_mgr;
|
2000-10-12 01:08:09 +00:00
|
|
|
|
2003-03-30 12:46:08 +00:00
|
|
|
// 2D panel
|
2012-04-11 22:03:16 +00:00
|
|
|
SGSharedPtr<FGPanel> current_panel;
|
2003-03-30 12:46:08 +00:00
|
|
|
|
2002-03-01 17:39:52 +00:00
|
|
|
// ATC manager
|
|
|
|
FGATCMgr *ATC_mgr;
|
|
|
|
|
2001-07-22 19:51:16 +00:00
|
|
|
// control input state
|
|
|
|
FGControls *controls;
|
|
|
|
|
2001-03-05 03:13:47 +00:00
|
|
|
// viewer manager
|
2000-10-26 21:51:09 +00:00
|
|
|
FGViewMgr *viewmgr;
|
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
|
|
|
|
2001-06-01 17:52:50 +00:00
|
|
|
SGCommandMgr *commands;
|
|
|
|
|
2004-06-03 17:59:14 +00:00
|
|
|
//FGFlightPlanDispatcher *fpDispatcher;
|
|
|
|
|
2002-04-09 18:58:24 +00:00
|
|
|
FGAircraftModel *acmodel;
|
|
|
|
|
2002-04-12 12:45:49 +00:00
|
|
|
FGModelMgr * model_mgr;
|
|
|
|
|
2001-01-12 15:37:40 +00:00
|
|
|
// list of serial port-like configurations
|
2001-01-26 00:21:36 +00:00
|
|
|
string_list *channel_options_list;
|
2001-01-12 15:37:40 +00:00
|
|
|
|
2004-04-18 18:01:10 +00:00
|
|
|
// A list of initial waypoints that are read from the command line
|
|
|
|
// and or flight-plan file during initialization
|
|
|
|
string_list *initial_waypoints;
|
|
|
|
|
2002-05-14 05:22:52 +00:00
|
|
|
// FlightGear scenery manager
|
|
|
|
FGScenery *scenery;
|
|
|
|
|
2002-12-06 22:29:46 +00:00
|
|
|
// Tile manager
|
|
|
|
FGTileMgr *tile_mgr;
|
|
|
|
|
2006-06-05 20:21:45 +00:00
|
|
|
FGFontCache *fontcache;
|
|
|
|
|
2004-05-26 18:15:19 +00:00
|
|
|
// Navigational Aids
|
|
|
|
FGNavList *navlist;
|
2004-05-28 05:24:54 +00:00
|
|
|
FGNavList *loclist;
|
|
|
|
FGNavList *gslist;
|
|
|
|
FGNavList *dmelist;
|
2005-10-01 09:56:53 +00:00
|
|
|
FGNavList *tacanlist;
|
|
|
|
FGNavList *carrierlist;
|
|
|
|
FGTACANList *channellist;
|
2004-05-26 18:15:19 +00:00
|
|
|
|
2010-07-18 12:21:30 +00:00
|
|
|
/// roots of Aircraft trees
|
|
|
|
string_list fg_aircraft_dirs;
|
2011-12-29 23:39:08 +00:00
|
|
|
|
|
|
|
bool haveUserSettings;
|
|
|
|
|
2000-07-07 17:27:53 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
FGGlobals();
|
2003-01-18 19:40:28 +00:00
|
|
|
virtual ~FGGlobals();
|
2000-07-07 17:27:53 +00:00
|
|
|
|
2004-09-20 13:21:51 +00:00
|
|
|
virtual FGRenderer *get_renderer () const;
|
|
|
|
|
2004-06-14 18:47:21 +00:00
|
|
|
virtual SGSubsystemMgr *get_subsystem_mgr () const;
|
2003-01-16 16:01:26 +00:00
|
|
|
|
2004-06-14 18:47:21 +00:00
|
|
|
virtual SGSubsystem *get_subsystem (const char * name);
|
2003-01-16 16:01:26 +00:00
|
|
|
|
|
|
|
virtual void add_subsystem (const char * name,
|
2003-09-24 17:20:55 +00:00
|
|
|
SGSubsystem * subsystem,
|
|
|
|
SGSubsystemMgr::GroupType
|
|
|
|
type = SGSubsystemMgr::GENERAL,
|
2003-01-16 16:01:26 +00:00
|
|
|
double min_time_sec = 0);
|
2002-10-03 21:20:56 +00:00
|
|
|
|
2004-06-14 18:47:21 +00:00
|
|
|
virtual SGEventMgr *get_event_mgr () const;
|
2003-09-24 17:20:55 +00:00
|
|
|
|
2009-10-24 08:31:37 +00:00
|
|
|
virtual SGSoundMgr *get_soundmgr () const;
|
|
|
|
|
2002-05-11 16:28:50 +00:00
|
|
|
inline double get_sim_time_sec () const { return sim_time_sec; }
|
|
|
|
inline void inc_sim_time_sec (double dt) { sim_time_sec += dt; }
|
|
|
|
inline void set_sim_time_sec (double t) { sim_time_sec = t; }
|
2002-03-12 16:30:27 +00:00
|
|
|
|
2008-07-31 12:04:32 +00:00
|
|
|
inline const std::string &get_fg_root () const { return fg_root; }
|
|
|
|
void set_fg_root (const std::string &root);
|
2001-01-12 15:37:40 +00:00
|
|
|
|
Melchior FRANZ:
Wouldn't it be better to prepare the whole list of paths (or two
separate ones for Terrain/Objects if necessary) in FGGlobals::set_fg_scenery,
and to pass the vector<string>s to FGTileEntry::load? It doesn't seem to make
a lot of sense to split the path up, modify it, mount it together to one string
again, and then let FGTileEntry::load split it up again.
Here we go:
Main/globals.cxx
================
As fg_scenery is now a string_list, we don't need initialization. Furthermore,
this list is cleared with every set_fg_scenery() call.
ctor: create default dir from fg_root if necessary. Otherwise check all paths
of --fg-scenery/FG_SCENERY: If the path doesn't exist, ignore it. If it contains
a dir Terrain and/or Objects, then only add that to the list. If it contains
neither, then use the path as is.
Scenery/tileentry.cxx
=====================
Trivial: don't split a "base path", but use the given path_list as is.
(I considered a variable name "path_list" better suited than "search".)
Scenery/FGTileLoader.cxx
========================
No more fiddling with sub-paths. This has to be delivered by get_fg_scenery
already.
2004-06-08 15:32:09 +00:00
|
|
|
inline const string_list &get_fg_scenery () const { return fg_scenery; }
|
2011-10-16 17:35:40 +00:00
|
|
|
void append_fg_scenery (const std::string &scenery);
|
2001-01-12 15:37:40 +00:00
|
|
|
|
2010-07-18 12:21:30 +00:00
|
|
|
const string_list& get_aircraft_paths() const { return fg_aircraft_dirs; }
|
|
|
|
void append_aircraft_path(const std::string& path);
|
|
|
|
void append_aircraft_paths(const std::string& path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a path to an aircraft-related resource file, resolve it
|
|
|
|
* against the appropriate root. This means looking at the location
|
|
|
|
* defined by /sim/aircraft-dir, and then aircraft_path in turn,
|
|
|
|
* finishing with fg_root/Aircraft.
|
|
|
|
*
|
|
|
|
* if the path could not be resolved, an empty path is returned.
|
|
|
|
*/
|
|
|
|
SGPath resolve_aircraft_path(const std::string& branch) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Same as above, but test for non 'Aircraft/' branch paths, and
|
|
|
|
* always resolve them against fg_root.
|
|
|
|
*/
|
|
|
|
SGPath resolve_maybe_aircraft_path(const std::string& branch) const;
|
|
|
|
|
2008-07-31 12:04:32 +00:00
|
|
|
inline const std::string &get_browser () const { return browser; }
|
|
|
|
void set_browser (const std::string &b) { browser = b; }
|
2008-07-09 19:35:53 +00:00
|
|
|
|
2010-11-21 23:43:41 +00:00
|
|
|
long int get_warp() const;
|
|
|
|
void set_warp( long int w );
|
2000-07-07 17:27:53 +00:00
|
|
|
|
2010-11-21 23:43:41 +00:00
|
|
|
long int get_warp_delta() const;
|
|
|
|
void set_warp_delta( long int d );
|
2000-07-07 20:28:51 +00:00
|
|
|
|
|
|
|
inline SGTime *get_time_params() const { return time_params; }
|
|
|
|
inline void set_time_params( SGTime *t ) { time_params = t; }
|
2000-07-08 05:09:24 +00:00
|
|
|
|
|
|
|
inline SGEphemeris *get_ephem() const { return ephem; }
|
|
|
|
inline void set_ephem( SGEphemeris *e ) { ephem = e; }
|
2000-08-08 00:39:52 +00:00
|
|
|
|
|
|
|
inline SGMagVar *get_mag() const { return mag; }
|
|
|
|
inline void set_mag( SGMagVar *m ) { mag = m; }
|
2000-10-12 01:08:09 +00:00
|
|
|
|
2003-05-14 18:33:56 +00:00
|
|
|
inline SGMaterialLib *get_matlib() const { return matlib; }
|
|
|
|
inline void set_matlib( SGMaterialLib *m ) { matlib = m; }
|
|
|
|
|
2002-03-01 17:39:52 +00:00
|
|
|
inline FGATCMgr *get_ATC_mgr() const { return ATC_mgr; }
|
|
|
|
inline void set_ATC_mgr( FGATCMgr *a ) {ATC_mgr = a; }
|
|
|
|
|
2003-03-30 12:46:08 +00:00
|
|
|
inline FGPanel *get_current_panel() const { return current_panel; }
|
2012-01-02 23:16:18 +00:00
|
|
|
void set_current_panel( FGPanel *cp );
|
2003-03-30 12:46:08 +00:00
|
|
|
|
2001-07-22 19:51:16 +00:00
|
|
|
inline FGControls *get_controls() const { return controls; }
|
|
|
|
inline void set_controls( FGControls *c ) { controls = c; }
|
|
|
|
|
2000-10-26 21:51:09 +00:00
|
|
|
inline FGViewMgr *get_viewmgr() const { return viewmgr; }
|
|
|
|
inline void set_viewmgr( FGViewMgr *vm ) { viewmgr = vm; }
|
2002-04-05 18:46:47 +00:00
|
|
|
FGViewer *get_current_view() const;
|
2000-12-19 23:29:16 +00:00
|
|
|
|
|
|
|
inline SGPropertyNode *get_props () { return props; }
|
|
|
|
inline void set_props( SGPropertyNode *n ) { props = n; }
|
2001-01-12 15:37:40 +00:00
|
|
|
|
2002-10-03 14:39:37 +00:00
|
|
|
inline SGPropertyNode *get_locale () { return locale; }
|
|
|
|
inline void set_locale( SGPropertyNode *n ) { locale = n; }
|
|
|
|
|
2001-06-01 17:52:50 +00:00
|
|
|
inline SGCommandMgr *get_commands () { return commands; }
|
|
|
|
|
2002-04-09 18:58:24 +00:00
|
|
|
inline FGAircraftModel *get_aircraft_model () { return acmodel; }
|
|
|
|
|
|
|
|
inline void set_aircraft_model (FGAircraftModel * model)
|
|
|
|
{
|
|
|
|
acmodel = model;
|
|
|
|
}
|
|
|
|
|
2011-08-20 06:54:47 +00:00
|
|
|
const SGGeod & get_aircraft_position() const;
|
|
|
|
|
2011-10-30 09:31:41 +00:00
|
|
|
SGVec3d get_aircraft_positon_cart() const;
|
2011-10-26 16:26:11 +00:00
|
|
|
|
2002-04-12 12:45:49 +00:00
|
|
|
inline FGModelMgr *get_model_mgr () { return model_mgr; }
|
|
|
|
|
|
|
|
inline void set_model_mgr (FGModelMgr * mgr)
|
|
|
|
{
|
|
|
|
model_mgr = mgr;
|
|
|
|
}
|
|
|
|
|
2001-01-26 00:21:36 +00:00
|
|
|
inline string_list *get_channel_options_list () {
|
|
|
|
return channel_options_list;
|
|
|
|
}
|
|
|
|
inline void set_channel_options_list( string_list *l ) {
|
|
|
|
channel_options_list = l;
|
2001-01-12 15:37:40 +00:00
|
|
|
}
|
2001-01-19 22:57:24 +00:00
|
|
|
|
2004-04-18 18:01:10 +00:00
|
|
|
inline string_list *get_initial_waypoints () {
|
|
|
|
return initial_waypoints;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void set_initial_waypoints (string_list *list) {
|
|
|
|
initial_waypoints = list;
|
|
|
|
}
|
|
|
|
|
2002-05-14 05:22:52 +00:00
|
|
|
inline FGScenery * get_scenery () const { return scenery; }
|
|
|
|
inline void set_scenery ( FGScenery *s ) { scenery = s; }
|
|
|
|
|
2002-12-06 22:29:46 +00:00
|
|
|
inline FGTileMgr * get_tile_mgr () const { return tile_mgr; }
|
|
|
|
inline void set_tile_mgr ( FGTileMgr *t ) { tile_mgr = t; }
|
|
|
|
|
2006-06-05 20:21:45 +00:00
|
|
|
inline FGFontCache *get_fontcache() const { return fontcache; }
|
2009-10-04 13:52:53 +00:00
|
|
|
|
2004-05-26 18:15:19 +00:00
|
|
|
inline FGNavList *get_navlist() const { return navlist; }
|
|
|
|
inline void set_navlist( FGNavList *n ) { navlist = n; }
|
2004-05-28 05:24:54 +00:00
|
|
|
inline FGNavList *get_loclist() const { return loclist; }
|
|
|
|
inline void set_loclist( FGNavList *n ) { loclist = n; }
|
|
|
|
inline FGNavList *get_gslist() const { return gslist; }
|
|
|
|
inline void set_gslist( FGNavList *n ) { gslist = n; }
|
|
|
|
inline FGNavList *get_dmelist() const { return dmelist; }
|
|
|
|
inline void set_dmelist( FGNavList *n ) { dmelist = n; }
|
2005-10-01 09:56:53 +00:00
|
|
|
inline FGNavList *get_tacanlist() const { return tacanlist; }
|
|
|
|
inline void set_tacanlist( FGNavList *n ) { tacanlist = n; }
|
|
|
|
inline FGNavList *get_carrierlist() const { return carrierlist; }
|
|
|
|
inline void set_carrierlist( FGNavList *n ) { carrierlist = n; }
|
|
|
|
inline FGTACANList *get_channellist() const { return channellist; }
|
|
|
|
inline void set_channellist( FGTACANList *c ) { channellist = c; }
|
2004-05-26 18:15:19 +00:00
|
|
|
|
|
|
|
/**
|
2001-01-19 22:57:24 +00:00
|
|
|
* Save the current state as the initial state.
|
|
|
|
*/
|
|
|
|
void saveInitialState ();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Restore the saved initial state, if any.
|
|
|
|
*/
|
|
|
|
void restoreInitialState ();
|
|
|
|
|
2011-12-29 23:39:08 +00:00
|
|
|
/**
|
|
|
|
* Load user settings from autosave.xml
|
|
|
|
*/
|
2011-12-30 00:01:15 +00:00
|
|
|
void loadUserSettings(const SGPath& datapath);
|
2011-12-29 23:39:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Save user settings in autosave.xml
|
|
|
|
*/
|
|
|
|
void saveUserSettings();
|
2000-07-07 17:27:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
extern FGGlobals *globals;
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _GLOBALS_HXX
|