From: frohlich Date: Thu, 14 Dec 2006 05:48:33 +0000 (+0000) Subject: Modified Files: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1c76f6db740e67d8c5bf1eeb6afcc982175035d9;p=flightgear.git Modified Files: src/Cockpit/cockpit.cxx src/Cockpit/cockpit.hxx: Remove unused code --- diff --git a/src/Cockpit/cockpit.cxx b/src/Cockpit/cockpit.cxx index e746f854f..26b6b94dd 100644 --- a/src/Cockpit/cockpit.cxx +++ b/src/Cockpit/cockpit.cxx @@ -59,10 +59,6 @@ #include "hud.hxx" -// This is a structure that contains all data related to -// cockpit/panel/hud system - -static pCockpit ac_cockpit; // The following routines obtain information concerntin the aircraft's // current state and return it to calling instrument display routines. // They should eventually be member functions of the aircraft. @@ -541,21 +537,12 @@ bool fgCockpitInit( fgAIRCRAFT *cur_aircraft ) // current aircraft. fgHUDInit( cur_aircraft ); - ac_cockpit = new fg_Cockpit(); - - SG_LOG( SG_COCKPIT, SG_INFO, - " Code " << ac_cockpit->code() << " Status " - << ac_cockpit->status() ); return true; } void fgCockpitUpdate( osg::State* state ) { - SG_LOG( SG_COCKPIT, SG_DEBUG, - "Cockpit: code " << ac_cockpit->code() << " status " - << ac_cockpit->status() ); - static const SGPropertyNode * xsize_node = fgGetNode("/sim/startup/xsize"); static const SGPropertyNode * ysize_node = fgGetNode("/sim/startup/ysize"); static const SGPropertyNode * hud_visibility_node diff --git a/src/Cockpit/cockpit.hxx b/src/Cockpit/cockpit.hxx index 5b8b7e632..e9caab6de 100644 --- a/src/Cockpit/cockpit.hxx +++ b/src/Cockpit/cockpit.hxx @@ -36,25 +36,7 @@ #include "Aircraft/aircraft.hxx" #include "panel.hxx" -// Class fg_Cockpit This class is a holder for the heads up display -// and is initialized with a -class fg_Cockpit { - private: - int Code; - int cockpitStatus; - SGPropertyNode_ptr hud_status; - - public: - fg_Cockpit () : Code(1), cockpitStatus(0) {}; - int code ( void ) { return Code; } - int status( void ) { return cockpitStatus; } -}; - - -typedef fg_Cockpit * pCockpit; - bool fgCockpitInit( fgAIRCRAFT *cur_aircraft ); void fgCockpitUpdate( osg::State* ); - #endif /* _COCKPIT_HXX */