]> git.mxchange.org Git - flightgear.git/commitdiff
Modified Files:
authorfrohlich <frohlich>
Thu, 14 Dec 2006 05:48:33 +0000 (05:48 +0000)
committerfrohlich <frohlich>
Thu, 14 Dec 2006 05:48:33 +0000 (05:48 +0000)
src/Cockpit/cockpit.cxx src/Cockpit/cockpit.hxx: Remove unused code

src/Cockpit/cockpit.cxx
src/Cockpit/cockpit.hxx

index e746f854f506dc5e40e0b7d5db99ae45eaeeabb5..26b6b94dd4aa08394d278ca075eb43899296f73b 100644 (file)
 #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
index 5b8b7e6326c9acc21ce92a2322c4fbc1ca6d5cd6..e9caab6dec0beb46988802e5a2d2c00f1468c5c5 100644 (file)
 #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 */