Changeset 1619 for code/branches/hud/src/orxonox
- Timestamp:
- Jun 22, 2008, 11:52:20 PM (16 years ago)
- Location:
- code/branches/hud/src/orxonox
- Files:
-
- 1 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/hud/src/orxonox/CMakeLists.txt
r1617 r1619 14 14 overlays/console/InGameConsole.cc 15 15 16 overlays/debug/DebugFPSText.cc 17 overlays/debug/DebugRTRText.cc 18 16 19 overlays/hud/HUDBar.cc 17 overlays/hud/HUDFPSText.cc18 20 overlays/hud/HUDNavigation.cc 19 21 overlays/hud/HUDRadar.cc 20 overlays/hud/HUDRTRText.cc21 22 overlays/hud/HUDSpeedBar.cc 22 23 -
code/branches/hud/src/orxonox/overlays/debug/DebugFPSText.cc
r1618 r1619 28 28 29 29 #include "OrxonoxStableHeaders.h" 30 #include " HUDFPSText.h"30 #include "DebugFPSText.h" 31 31 #include <OgreTextAreaOverlayElement.h> 32 32 #include "core/CoreIncludes.h" … … 36 36 namespace orxonox 37 37 { 38 CreateFactory( HUDFPSText);38 CreateFactory(DebugFPSText); 39 39 40 HUDFPSText::HUDFPSText()40 DebugFPSText::DebugFPSText() 41 41 { 42 RegisterObject( HUDFPSText);42 RegisterObject(DebugFPSText); 43 43 } 44 44 45 HUDFPSText::~HUDFPSText()45 DebugFPSText::~DebugFPSText() 46 46 { 47 47 } 48 48 49 void HUDFPSText::tick(float dt)49 void DebugFPSText::tick(float dt) 50 50 { 51 51 float fps = GraphicsEngine::getSingleton().getAverageFPS(); -
code/branches/hud/src/orxonox/overlays/debug/DebugFPSText.h
r1618 r1619 27 27 */ 28 28 29 #ifndef _ HUDFPSText_H__30 #define _ HUDFPSText_H__29 #ifndef _DebugFPSText_H__ 30 #define _DebugFPSText_H__ 31 31 32 32 #include "OrxonoxPrereqs.h" … … 37 37 namespace orxonox 38 38 { 39 class _OrxonoxExport HUDFPSText : public OverlayText, public Tickable39 class _OrxonoxExport DebugFPSText : public OverlayText, public Tickable 40 40 { 41 41 public: 42 HUDFPSText();43 ~ HUDFPSText();42 DebugFPSText(); 43 ~DebugFPSText(); 44 44 45 45 private: … … 49 49 }; 50 50 } 51 #endif /* _ HUDFPSText_H__ */51 #endif /* _DebugFPSText_H__ */ -
code/branches/hud/src/orxonox/overlays/debug/DebugRTRText.cc
r1618 r1619 28 28 29 29 #include "OrxonoxStableHeaders.h" 30 #include " HUDRTRText.h"30 #include "DebugRTRText.h" 31 31 #include <OgreTextAreaOverlayElement.h> 32 32 #include "core/CoreIncludes.h" … … 36 36 namespace orxonox 37 37 { 38 CreateFactory( HUDRTRText);38 CreateFactory(DebugRTRText); 39 39 40 HUDRTRText::HUDRTRText()40 DebugRTRText::DebugRTRText() 41 41 { 42 RegisterObject( HUDRTRText);42 RegisterObject(DebugRTRText); 43 43 } 44 44 45 HUDRTRText::~HUDRTRText()45 DebugRTRText::~DebugRTRText() 46 46 { 47 47 } 48 48 49 void HUDRTRText::tick(float dt)49 void DebugRTRText::tick(float dt) 50 50 { 51 51 float rtr = GraphicsEngine::getSingleton().getAverageRTR(); -
code/branches/hud/src/orxonox/overlays/debug/DebugRTRText.h
r1618 r1619 27 27 */ 28 28 29 #ifndef _ HUDRTRText_H__30 #define _ HUDRTRText_H__29 #ifndef _DebugRTRText_H__ 30 #define _DebugRTRText_H__ 31 31 32 32 #include "OrxonoxPrereqs.h" … … 37 37 namespace orxonox 38 38 { 39 class _OrxonoxExport HUDRTRText : public OverlayText, public Tickable39 class _OrxonoxExport DebugRTRText : public OverlayText, public Tickable 40 40 { 41 41 public: 42 HUDRTRText();43 ~ HUDRTRText();42 DebugRTRText(); 43 ~DebugRTRText(); 44 44 45 45 private: … … 47 47 }; 48 48 } 49 #endif /* _ HUDRTRText_H__ */49 #endif /* _DebugRTRText_H__ */
Note: See TracChangeset
for help on using the changeset viewer.