Changeset 1619 for code/branches/hud
- Timestamp:
- Jun 22, 2008, 11:52:20 PM (16 years ago)
- Location:
- code/branches/hud
- Files:
-
- 2 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__ */ -
code/branches/hud/visual_studio/vc8/orxonox.vcproj
r1615 r1619 493 493 </File> 494 494 <File 495 RelativePath="..\..\src\orxonox\overlays\hud\HUDFPSText.cc"496 >497 </File>498 <File499 495 RelativePath="..\..\src\orxonox\overlays\hud\HUDNavigation.cc" 500 496 > … … 505 501 </File> 506 502 <File 507 RelativePath="..\..\src\orxonox\overlays\hud\HUDRTRText.cc"508 >509 </File>510 <File511 503 RelativePath="..\..\src\orxonox\overlays\hud\HUDSpeedBar.cc" 504 > 505 </File> 506 </Filter> 507 <Filter 508 Name="debug" 509 > 510 <File 511 RelativePath="..\..\src\orxonox\overlays\debug\DebugFPSText.cc" 512 > 513 </File> 514 <File 515 RelativePath="..\..\src\orxonox\overlays\debug\DebugRTRText.cc" 512 516 > 513 517 </File> … … 707 711 </File> 708 712 <File 709 RelativePath="..\..\src\orxonox\overlays\hud\HUDFPSText.h"710 >711 </File>712 <File713 713 RelativePath="..\..\src\orxonox\overlays\hud\HUDNavigation.h" 714 714 > … … 716 716 <File 717 717 RelativePath="..\..\src\orxonox\overlays\hud\HUDRadar.h" 718 >719 </File>720 <File721 RelativePath="..\..\src\orxonox\overlays\hud\HUDRTRText.h"722 718 > 723 719 </File> … … 732 728 <File 733 729 RelativePath="..\..\src\orxonox\overlays\console\InGameConsole.h" 730 > 731 </File> 732 </Filter> 733 <Filter 734 Name="debug" 735 > 736 <File 737 RelativePath="..\..\src\orxonox\overlays\debug\DebugFPSText.h" 738 > 739 </File> 740 <File 741 RelativePath="..\..\src\orxonox\overlays\debug\DebugRTRText.h" 734 742 > 735 743 </File>
Note: See TracChangeset
for help on using the changeset viewer.