X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Fglobals.hxx;h=8b5e9e6f718462b958ab9436630b1bfb0a966517;hb=6beb00f4072a997a174050b76c3e57116a49f955;hp=d21fce514b8f07df96b3bab8fd4860da3e1551f9;hpb=436db300535140f7f1c7b6e11d996a1e6f55f758;p=flightgear.git diff --git a/src/Main/globals.hxx b/src/Main/globals.hxx index d21fce514..8b5e9e6f7 100644 --- a/src/Main/globals.hxx +++ b/src/Main/globals.hxx @@ -24,14 +24,38 @@ #ifndef _GLOBALS_HXX #define _GLOBALS_HXX +#include +#include +#include STL_STRING + + +#include +#include +#include #include +#include +#include + +#include +#include "viewmgr.hxx" + +SG_USING_STD( vector ); +SG_USING_STD( string ); + +typedef vector string_list; class FGGlobals { private: + // Root of FlightGear data tree + string fg_root; + + // Root of FlightGear scenery tree + string fg_scenery; + // Freeze sim bool freeze; @@ -46,13 +70,46 @@ private: // Time structure SGTime *time_params; + // Sky structures + SGEphemeris *ephem; + + // Magnetic Variation + SGMagVar *mag; + + // Global autopilot "route" + SGRoute *route; + + // sound manager + FGSoundMgr *soundmgr; + + // viewer manager + FGViewMgr *viewmgr; + FGViewer *current_view; + + // properties + SGPropertyNode *props; + SGPropertyNode *initial_state; + + SGCommandMgr *commands; + + // list of serial port-like configurations + string_list *channel_options_list; + public: FGGlobals(); ~FGGlobals(); - inline bool get_frozen() const { return freeze; } - inline void toggle_frozen() { freeze = !freeze; } + inline const string &get_fg_root () const { return fg_root; } + inline void set_fg_root (const string &root) { fg_root = root; } + + inline const string &get_fg_scenery () const { return fg_scenery; } + inline void set_fg_scenery (const string &scenery) { + fg_scenery = scenery; + } + + inline bool get_freeze() const { return freeze; } + inline void set_freeze( bool f ) { freeze = f; } inline long int get_warp() const { return warp; } inline void set_warp( long int w ) { warp = w; } @@ -64,6 +121,48 @@ public: inline SGTime *get_time_params() const { return time_params; } inline void set_time_params( SGTime *t ) { time_params = t; } + + inline SGEphemeris *get_ephem() const { return ephem; } + inline void set_ephem( SGEphemeris *e ) { ephem = e; } + + inline SGMagVar *get_mag() const { return mag; } + inline void set_mag( SGMagVar *m ) { mag = m; } + + inline SGRoute *get_route() const { return route; } + inline void set_route( SGRoute *r ) { route = r; } + + inline FGSoundMgr *get_soundmgr() const { return soundmgr; } + inline void set_soundmgr( FGSoundMgr *sm ) { soundmgr = sm; } + + inline FGViewMgr *get_viewmgr() const { return viewmgr; } + inline void set_viewmgr( FGViewMgr *vm ) { viewmgr = vm; } + inline FGViewer *get_current_view() const { return current_view; } + inline void set_current_view( FGViewer *v ) { current_view = v; } + + inline SGPropertyNode *get_props () { return props; } + inline void set_props( SGPropertyNode *n ) { props = n; } + + inline SGCommandMgr *get_commands () { return commands; } + + inline string_list *get_channel_options_list () { + return channel_options_list; + } + inline void set_channel_options_list( string_list *l ) { + channel_options_list = l; + } + + + /** + * Save the current state as the initial state. + */ + void saveInitialState (); + + + /** + * Restore the saved initial state, if any. + */ + void restoreInitialState (); + };