X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Fglobals.hxx;h=e241b6297a0630b911ecd03c092aad1380976f6f;hb=38226af24ec01e8f0a20d7fd73ef838a69f6ef25;hp=fccee8c5159bf6ae209b7c685baa059dd98cc163;hpb=0bce31ae9a80c571b9126427c093b8dc3d3f6820;p=flightgear.git diff --git a/src/Main/globals.hxx b/src/Main/globals.hxx index fccee8c51..e241b6297 100644 --- a/src/Main/globals.hxx +++ b/src/Main/globals.hxx @@ -60,13 +60,10 @@ class FGAircraftModel; class FGControls; class FGFlightPlanDispatcher; class FGNavList; -class FGAirwayNetwork; class FGTACANList; -class FGLight; class FGModelMgr; class FGRouteMgr; class FGScenery; -class FGMultiplayMgr; class FGPanel; class FGTileMgr; class FGViewMgr; @@ -107,14 +104,6 @@ private: std::string browser; - // An offset in seconds from the true time. Allows us to adjust - // the effective time of day. - long int warp; - - // How much to change the value of warp each iteration. Allows us - // to make time progress faster than normal (or even run in reverse.) - long int warp_delta; - // Time structure SGTime *time_params; @@ -173,10 +162,6 @@ private: FGNavList *tacanlist; FGNavList *carrierlist; FGTACANList *channellist; - FGAirwayNetwork *airwaynet; - - //Mulitplayer managers - FGMultiplayMgr *multiplayer_mgr; /// roots of Aircraft trees string_list fg_aircraft_dirs; @@ -234,13 +219,11 @@ public: inline const std::string &get_browser () const { return browser; } void set_browser (const std::string &b) { browser = b; } - inline long int get_warp() const { return warp; } - inline void set_warp( long int w ) { warp = w; } - inline void inc_warp( long int w ) { warp += w; } + long int get_warp() const; + void set_warp( long int w ); - inline long int get_warp_delta() const { return warp_delta; } - inline void set_warp_delta( long int d ) { warp_delta = d; } - inline void inc_warp_delta( long int d ) { warp_delta += d; } + long int get_warp_delta() const; + void set_warp_delta( long int d ); inline SGTime *get_time_params() const { return time_params; } inline void set_time_params( SGTime *t ) { time_params = t; } @@ -289,13 +272,6 @@ public: model_mgr = mgr; } - inline FGMultiplayMgr *get_multiplayer_mgr () { return multiplayer_mgr; } - - inline void set_multiplayer_mgr (FGMultiplayMgr * mgr) - { - multiplayer_mgr = mgr; - } - inline string_list *get_channel_options_list () { return channel_options_list; } @@ -334,10 +310,6 @@ public: inline FGTACANList *get_channellist() const { return channellist; } inline void set_channellist( FGTACANList *c ) { channellist = c; } - inline FGAirwayNetwork *get_airwaynet() const { return airwaynet; } - inline void set_airwaynet( FGAirwayNetwork *a ) { airwaynet = a; } - - /** * Save the current state as the initial state. */