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>
|
2014-05-31 17:04:56 +00:00
|
|
|
#include <memory>
|
2001-01-13 22:06:39 +00:00
|
|
|
|
2008-07-31 12:04:32 +00:00
|
|
|
typedef std::vector<std::string> string_list;
|
2013-06-27 08:37:53 +00:00
|
|
|
typedef std::vector<SGPath> PathList;
|
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.
|
|
|
|
|
2002-12-06 22:29:46 +00:00
|
|
|
class SGCommandMgr;
|
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;
|
2004-06-03 17:59:14 +00:00
|
|
|
|
2002-12-06 22:29:46 +00:00
|
|
|
class FGControls;
|
2005-10-01 09:56:53 +00:00
|
|
|
class FGTACANList;
|
2012-04-21 18:17:42 +00:00
|
|
|
class FGLocale;
|
2004-01-31 19:47:45 +00:00
|
|
|
class FGRouteMgr;
|
2002-05-14 05:22:52 +00:00
|
|
|
class FGScenery;
|
2002-12-06 22:29:46 +00:00
|
|
|
class FGTileMgr;
|
|
|
|
class FGViewMgr;
|
2005-02-25 19:41:53 +00:00
|
|
|
class FGRenderer;
|
2002-03-16 00:18:38 +00:00
|
|
|
|
2014-05-31 17:04:56 +00:00
|
|
|
namespace simgear { namespace pkg {
|
|
|
|
class Root;
|
|
|
|
}}
|
|
|
|
|
2016-01-17 21:06:45 +00:00
|
|
|
namespace flightgear
|
|
|
|
{
|
|
|
|
class View;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
// localization
|
2012-04-21 18:17:42 +00:00
|
|
|
FGLocale* locale;
|
2008-03-22 09:31:06 +00:00
|
|
|
|
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
|
2016-06-21 11:29:04 +00:00
|
|
|
SGPath fg_root;
|
2001-01-12 15:37:40 +00:00
|
|
|
|
2013-06-27 08:37:53 +00:00
|
|
|
/**
|
|
|
|
* locations to search for (non-scenery) data.
|
|
|
|
*/
|
|
|
|
PathList additional_data_paths;
|
|
|
|
|
2012-08-23 20:52:30 +00:00
|
|
|
// Users home directory for data
|
2016-06-21 11:29:04 +00:00
|
|
|
SGPath fg_home;
|
Add FGGlobals::get/set_download_dir(), unify TerraSync and download dirs setup
Similar to the existing FGGlobals::get/set_terrasync_dir(), add
FGGlobals::get_download_dir() and FGGlobals::set_download_dir() methods,
and of course the corresponding FGGlobals::download_dir public member
variable. FGGlobals::set_download_dir() stores the realpath() of the
given directory, including into the /sim/paths/download-dir property,
which is marked as read-only just as /sim/terrasync/scenery-dir already
is.
Handle the setup of the TerraSync and download dirs all in the same
place (Options::processOptions()), since most of the work is already
done there. This allows one to get rid of fgOptTerrasyncDir() and
fgOptDownloadDir(), and to make it easier to see that
globals->set_terrasync_dir() (resp. globals->set_download_dir()) is
called on the correct SGPath, regardless of whether --terrasync-dir
(resp. --download-dir) was passed.
Always create the TerraSync and download dirs when they don't already
exist, regardless of whether --terrasync-dir or --download-dir has been
given on the command line.
Add comments explaining how to avoid security pitfalls with download and
TerraSync dirs (cf. discussion around
<https://sourceforge.net/p/flightgear/mailman/message/35461636/>).
Adjust indentation where it was too broken, hampering readbility.
2016-10-31 20:48:32 +00:00
|
|
|
// Download directory
|
|
|
|
SGPath download_dir;
|
|
|
|
// Terrasync directory
|
2016-10-18 21:10:09 +00:00
|
|
|
SGPath terrasync_dir;
|
2012-08-23 20:52:30 +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
|
2016-06-21 11:29:04 +00:00
|
|
|
PathList fg_scenery;
|
2016-10-09 14:21:09 +00:00
|
|
|
PathList unmangled_fg_scenery;
|
|
|
|
// Paths Nasal is allowed to read
|
|
|
|
PathList extra_read_allowed_paths;
|
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;
|
|
|
|
|
2003-05-14 18:33:56 +00:00
|
|
|
// Material properties library
|
2014-01-19 16:49:32 +00:00
|
|
|
SGSharedPtr<SGMaterialLib> matlib;
|
2003-05-14 18:33:56 +00:00
|
|
|
|
2001-06-01 17:52:50 +00:00
|
|
|
SGCommandMgr *commands;
|
|
|
|
|
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;
|
|
|
|
|
2004-05-26 18:15:19 +00:00
|
|
|
// Navigational Aids
|
2005-10-01 09:56:53 +00:00
|
|
|
FGTACANList *channellist;
|
2004-05-26 18:15:19 +00:00
|
|
|
|
2010-07-18 12:21:30 +00:00
|
|
|
/// roots of Aircraft trees
|
2016-06-21 11:29:04 +00:00
|
|
|
PathList fg_aircraft_dirs;
|
2014-06-11 17:19:41 +00:00
|
|
|
SGPath catalog_aircraft_dir;
|
2011-12-29 23:39:08 +00:00
|
|
|
|
|
|
|
bool haveUserSettings;
|
|
|
|
|
2012-09-19 17:17:44 +00:00
|
|
|
SGPropertyNode_ptr positionLon, positionLat, positionAlt;
|
2012-09-25 09:06:30 +00:00
|
|
|
SGPropertyNode_ptr viewLon, viewLat, viewAlt;
|
2012-09-19 17:17:44 +00:00
|
|
|
SGPropertyNode_ptr orientHeading, orientPitch, orientRoll;
|
2013-11-16 12:10:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* helper to initialise standard properties on a new property tree
|
|
|
|
*/
|
|
|
|
void initProperties();
|
2016-01-01 20:53:02 +00:00
|
|
|
|
2013-12-04 09:11:26 +00:00
|
|
|
void cleanupListeners();
|
|
|
|
|
|
|
|
typedef std::vector<SGPropertyChangeListener*> SGPropertyChangeListenerVec;
|
|
|
|
SGPropertyChangeListenerVec _listeners_to_cleanup;
|
2014-05-31 17:04:56 +00:00
|
|
|
|
|
|
|
SGSharedPtr<simgear::pkg::Root> _packageRoot;
|
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;
|
2013-11-16 12:10:32 +00:00
|
|
|
void set_renderer(FGRenderer* render);
|
|
|
|
|
2015-12-10 21:05:54 +00:00
|
|
|
SGSubsystemMgr *get_subsystem_mgr () const;
|
|
|
|
|
|
|
|
SGSubsystem *get_subsystem (const char * name) const;
|
2003-01-16 16:01:26 +00:00
|
|
|
|
2015-12-10 21:05:54 +00:00
|
|
|
template<class T>
|
|
|
|
T* get_subsystem() const
|
|
|
|
{
|
|
|
|
return dynamic_cast<T*>(get_subsystem(T::subsystemName()));
|
|
|
|
}
|
2003-01-16 16:01:26 +00:00
|
|
|
|
2015-12-10 21:05:54 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2015-12-10 21:05:54 +00:00
|
|
|
template<class T>
|
|
|
|
T* add_new_subsystem (SGSubsystemMgr::GroupType
|
|
|
|
type = SGSubsystemMgr::GENERAL,
|
|
|
|
double min_time_sec = 0)
|
|
|
|
{
|
|
|
|
T* sub = new T;
|
|
|
|
add_subsystem(T::subsystemName(), sub, type, min_time_sec);
|
|
|
|
return sub;
|
|
|
|
}
|
|
|
|
|
|
|
|
SGEventMgr *get_event_mgr () const;
|
2003-09-24 17:20:55 +00:00
|
|
|
|
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
|
|
|
|
2016-06-21 11:29:04 +00:00
|
|
|
const SGPath &get_fg_root () const { return fg_root; }
|
|
|
|
void set_fg_root (const SGPath&root);
|
2001-01-12 15:37:40 +00:00
|
|
|
|
2013-06-27 08:37:53 +00:00
|
|
|
/**
|
|
|
|
* Get list of data locations. fg_root is always the final item in the
|
|
|
|
* result.
|
|
|
|
*/
|
|
|
|
PathList get_data_paths() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get data locations which contain the file path suffix. Eg pass ing
|
|
|
|
* 'AI/Traffic' to get all data paths which define <path>/AI/Traffic subdir
|
|
|
|
*/
|
|
|
|
PathList get_data_paths(const std::string& suffix) const;
|
|
|
|
|
|
|
|
void append_data_path(const SGPath& path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a path suffix (eg 'Textures' or 'AI/Traffic'), find the
|
|
|
|
* first data directory which defines it.
|
|
|
|
*/
|
|
|
|
SGPath find_data_dir(const std::string& pathSuffix) const;
|
|
|
|
|
2016-06-21 11:29:04 +00:00
|
|
|
const SGPath &get_fg_home () const { return fg_home; }
|
|
|
|
void set_fg_home (const SGPath &home);
|
2012-08-23 20:52:30 +00:00
|
|
|
|
Add FGGlobals::get/set_download_dir(), unify TerraSync and download dirs setup
Similar to the existing FGGlobals::get/set_terrasync_dir(), add
FGGlobals::get_download_dir() and FGGlobals::set_download_dir() methods,
and of course the corresponding FGGlobals::download_dir public member
variable. FGGlobals::set_download_dir() stores the realpath() of the
given directory, including into the /sim/paths/download-dir property,
which is marked as read-only just as /sim/terrasync/scenery-dir already
is.
Handle the setup of the TerraSync and download dirs all in the same
place (Options::processOptions()), since most of the work is already
done there. This allows one to get rid of fgOptTerrasyncDir() and
fgOptDownloadDir(), and to make it easier to see that
globals->set_terrasync_dir() (resp. globals->set_download_dir()) is
called on the correct SGPath, regardless of whether --terrasync-dir
(resp. --download-dir) was passed.
Always create the TerraSync and download dirs when they don't already
exist, regardless of whether --terrasync-dir or --download-dir has been
given on the command line.
Add comments explaining how to avoid security pitfalls with download and
TerraSync dirs (cf. discussion around
<https://sourceforge.net/p/flightgear/mailman/message/35461636/>).
Adjust indentation where it was too broken, hampering readbility.
2016-10-31 20:48:32 +00:00
|
|
|
const SGPath &get_download_dir () const { return download_dir; }
|
|
|
|
// The 'path' argument to set_download_dir() must come from trustworthy
|
|
|
|
// code, because the method grants read permissions to Nasal code for many
|
|
|
|
// files beneath 'path'. In particular, don't call this method with a
|
|
|
|
// 'path' value taken from the property tree or any other Nasal-writable
|
|
|
|
// place.
|
|
|
|
void set_download_dir (const SGPath &path);
|
|
|
|
|
2016-10-18 21:10:09 +00:00
|
|
|
const SGPath &get_terrasync_dir () const { return terrasync_dir; }
|
Add FGGlobals::get/set_download_dir(), unify TerraSync and download dirs setup
Similar to the existing FGGlobals::get/set_terrasync_dir(), add
FGGlobals::get_download_dir() and FGGlobals::set_download_dir() methods,
and of course the corresponding FGGlobals::download_dir public member
variable. FGGlobals::set_download_dir() stores the realpath() of the
given directory, including into the /sim/paths/download-dir property,
which is marked as read-only just as /sim/terrasync/scenery-dir already
is.
Handle the setup of the TerraSync and download dirs all in the same
place (Options::processOptions()), since most of the work is already
done there. This allows one to get rid of fgOptTerrasyncDir() and
fgOptDownloadDir(), and to make it easier to see that
globals->set_terrasync_dir() (resp. globals->set_download_dir()) is
called on the correct SGPath, regardless of whether --terrasync-dir
(resp. --download-dir) was passed.
Always create the TerraSync and download dirs when they don't already
exist, regardless of whether --terrasync-dir or --download-dir has been
given on the command line.
Add comments explaining how to avoid security pitfalls with download and
TerraSync dirs (cf. discussion around
<https://sourceforge.net/p/flightgear/mailman/message/35461636/>).
Adjust indentation where it was too broken, hampering readbility.
2016-10-31 20:48:32 +00:00
|
|
|
// The 'path' argument to set_terrasync_dir() must come from trustworthy
|
|
|
|
// code, because the method grants read permissions to Nasal code for all
|
|
|
|
// files beneath 'path'. In particular, don't call this method with a
|
|
|
|
// 'path' value taken from the property tree or any other Nasal-writable
|
|
|
|
// place.
|
2016-10-18 21:10:09 +00:00
|
|
|
void set_terrasync_dir (const SGPath &path);
|
|
|
|
|
2016-06-21 11:29:04 +00:00
|
|
|
const PathList &get_fg_scenery () const { return fg_scenery; }
|
2016-10-09 14:21:09 +00:00
|
|
|
const PathList &get_unmangled_fg_scenery () const { return unmangled_fg_scenery; }
|
|
|
|
const PathList &get_extra_read_allowed_paths () const { return extra_read_allowed_paths; }
|
2015-11-22 11:27:39 +00:00
|
|
|
/**
|
|
|
|
* Add a scenery directory
|
|
|
|
*
|
2016-10-18 21:29:44 +00:00
|
|
|
* This also makes the path Nasal-readable:
|
|
|
|
* to avoid can-read-any-file security holes, do NOT call this on paths
|
|
|
|
* obtained from the property tree or other Nasal-writable places
|
2015-11-22 11:27:39 +00:00
|
|
|
*/
|
2016-10-18 21:29:44 +00:00
|
|
|
void append_fg_scenery (const SGPath &scenery);
|
2001-01-12 15:37:40 +00:00
|
|
|
|
2016-10-18 21:29:44 +00:00
|
|
|
void append_fg_scenery (const PathList &scenery);
|
2016-06-21 11:29:04 +00:00
|
|
|
|
2014-02-22 16:13:36 +00:00
|
|
|
void clear_fg_scenery();
|
2016-10-09 14:21:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Allow Nasal to read a path
|
|
|
|
*
|
|
|
|
* To avoid can-read-any-file security holes, do NOT call this on paths
|
|
|
|
* obtained from the property tree or other Nasal-writable places
|
|
|
|
*
|
|
|
|
* Only works during initial load (before fgInitAllowedPaths)
|
|
|
|
*/
|
|
|
|
void append_read_allowed_paths (const SGPath &path);
|
2014-06-11 17:19:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* specify a path we'll prepend to the aircraft paths list if non-empty.
|
|
|
|
* This is used with packaged aircraft, to ensure their catalog (and hence,
|
|
|
|
* dependency packages) are found correctly.
|
|
|
|
*/
|
|
|
|
void set_catalog_aircraft_path(const SGPath& path);
|
|
|
|
|
2016-06-21 11:29:04 +00:00
|
|
|
PathList get_aircraft_paths() const;
|
2016-10-18 21:35:10 +00:00
|
|
|
/**
|
|
|
|
* Add an aircraft directory
|
|
|
|
*
|
|
|
|
* This also makes the path Nasal-readable:
|
|
|
|
* to avoid can-read-any-file security holes, do NOT call this on paths
|
|
|
|
* obtained from the property tree or other Nasal-writable places
|
|
|
|
*/
|
2016-06-21 11:29:04 +00:00
|
|
|
void append_aircraft_path(const SGPath& path);
|
|
|
|
void append_aircraft_paths(const PathList& path);
|
2010-07-18 12:21:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
|
2012-04-21 13:31:20 +00:00
|
|
|
/**
|
|
|
|
* Search in the following directories:
|
|
|
|
*
|
|
|
|
* 1. Root directory of current aircraft (defined by /sim/aircraft-dir)
|
|
|
|
* 2. All aircraft directories if branch starts with Aircraft/
|
|
|
|
* 3. fg_data directory
|
|
|
|
*/
|
2012-09-25 09:07:11 +00:00
|
|
|
SGPath resolve_resource_path(const std::string& branch) const;
|
2012-04-21 13:31:20 +00:00
|
|
|
|
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
|
|
|
|
2003-05-14 18:33:56 +00:00
|
|
|
inline SGMaterialLib *get_matlib() const { return matlib; }
|
2013-11-21 17:38:22 +00:00
|
|
|
void set_matlib( SGMaterialLib *m );
|
2003-05-14 18:33:56 +00:00
|
|
|
|
2000-12-19 23:29:16 +00:00
|
|
|
inline SGPropertyNode *get_props () { return props; }
|
2001-01-12 15:37:40 +00:00
|
|
|
|
2013-11-16 12:10:32 +00:00
|
|
|
/**
|
|
|
|
* @brief reset the property tree to new, empty tree. Ensure all
|
|
|
|
* subsystems are shutdown and unbound before call this.
|
|
|
|
*/
|
|
|
|
void resetPropertyRoot();
|
|
|
|
|
2012-04-21 18:17:42 +00:00
|
|
|
inline FGLocale* get_locale () { return locale; }
|
2002-10-03 14:39:37 +00:00
|
|
|
|
2001-06-01 17:52:50 +00:00
|
|
|
inline SGCommandMgr *get_commands () { return commands; }
|
|
|
|
|
2012-09-17 23:58:27 +00:00
|
|
|
SGGeod get_aircraft_position() const;
|
2011-08-20 06:54:47 +00:00
|
|
|
|
2012-09-25 09:06:30 +00:00
|
|
|
SGVec3d get_aircraft_position_cart() const;
|
2002-04-12 12:45:49 +00:00
|
|
|
|
2012-09-19 17:17:44 +00:00
|
|
|
void get_aircraft_orientation(double& heading, double& pitch, double& roll);
|
|
|
|
|
2012-09-25 09:06:30 +00:00
|
|
|
SGGeod get_view_position() const;
|
|
|
|
|
|
|
|
SGVec3d get_view_position_cart() const;
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-12-10 22:48:02 +00:00
|
|
|
FGViewMgr *get_viewmgr() const;
|
2016-01-17 21:06:45 +00:00
|
|
|
flightgear::View *get_current_view() const;
|
2015-12-10 22:48:02 +00:00
|
|
|
|
2015-12-10 21:05:54 +00:00
|
|
|
FGControls *get_controls() const;
|
|
|
|
|
2013-11-16 12:10:32 +00:00
|
|
|
FGScenery * get_scenery () const;
|
2002-05-14 05:22:52 +00:00
|
|
|
|
2013-11-16 12:10:32 +00:00
|
|
|
FGTileMgr * get_tile_mgr () const;
|
2012-08-27 23:26:36 +00:00
|
|
|
|
2005-10-01 09:56:53 +00:00
|
|
|
inline FGTACANList *get_channellist() const { return channellist; }
|
|
|
|
inline void set_channellist( FGTACANList *c ) { channellist = c; }
|
2001-01-19 22:57:24 +00:00
|
|
|
|
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();
|
2013-11-25 23:53:58 +00:00
|
|
|
|
2013-12-04 09:11:26 +00:00
|
|
|
void addListenerToCleanup(SGPropertyChangeListener* l);
|
2014-05-31 17:04:56 +00:00
|
|
|
|
|
|
|
simgear::pkg::Root* packageRoot();
|
|
|
|
void setPackageRoot(const SGSharedPtr<simgear::pkg::Root>& p);
|
2000-07-07 17:27:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
extern FGGlobals *globals;
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _GLOBALS_HXX
|