Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 22, 2008, 11:52:20 PM (16 years ago)
Author:
rgrieder
Message:

completed moving of debug texts to overlays/debug/

Location:
code/branches/hud/src/orxonox
Files:
1 edited
4 moved

Legend:

Unmodified
Added
Removed
  • code/branches/hud/src/orxonox/CMakeLists.txt

    r1617 r1619  
    1414  overlays/console/InGameConsole.cc
    1515
     16  overlays/debug/DebugFPSText.cc
     17  overlays/debug/DebugRTRText.cc
     18
    1619  overlays/hud/HUDBar.cc
    17   overlays/hud/HUDFPSText.cc
    1820  overlays/hud/HUDNavigation.cc
    1921  overlays/hud/HUDRadar.cc
    20   overlays/hud/HUDRTRText.cc
    2122  overlays/hud/HUDSpeedBar.cc
    2223
  • code/branches/hud/src/orxonox/overlays/debug/DebugFPSText.cc

    r1618 r1619  
    2828
    2929#include "OrxonoxStableHeaders.h"
    30 #include "HUDFPSText.h"
     30#include "DebugFPSText.h"
    3131#include <OgreTextAreaOverlayElement.h>
    3232#include "core/CoreIncludes.h"
     
    3636namespace orxonox
    3737{
    38     CreateFactory(HUDFPSText);
     38    CreateFactory(DebugFPSText);
    3939
    40     HUDFPSText::HUDFPSText()
     40    DebugFPSText::DebugFPSText()
    4141    {
    42         RegisterObject(HUDFPSText);
     42        RegisterObject(DebugFPSText);
    4343    }
    4444
    45     HUDFPSText::~HUDFPSText()
     45    DebugFPSText::~DebugFPSText()
    4646    {
    4747    }
    4848
    49     void HUDFPSText::tick(float dt)
     49    void DebugFPSText::tick(float dt)
    5050    {
    5151        float fps = GraphicsEngine::getSingleton().getAverageFPS();
  • code/branches/hud/src/orxonox/overlays/debug/DebugFPSText.h

    r1618 r1619  
    2727 */
    2828
    29 #ifndef _HUDFPSText_H__
    30 #define _HUDFPSText_H__
     29#ifndef _DebugFPSText_H__
     30#define _DebugFPSText_H__
    3131
    3232#include "OrxonoxPrereqs.h"
     
    3737namespace orxonox
    3838{
    39     class _OrxonoxExport HUDFPSText : public OverlayText, public Tickable
     39    class _OrxonoxExport DebugFPSText : public OverlayText, public Tickable
    4040    {
    4141    public:
    42         HUDFPSText();
    43         ~HUDFPSText();
     42        DebugFPSText();
     43        ~DebugFPSText();
    4444
    4545    private:
     
    4949    };
    5050}
    51 #endif /* _HUDFPSText_H__ */
     51#endif /* _DebugFPSText_H__ */
  • code/branches/hud/src/orxonox/overlays/debug/DebugRTRText.cc

    r1618 r1619  
    2828
    2929#include "OrxonoxStableHeaders.h"
    30 #include "HUDRTRText.h"
     30#include "DebugRTRText.h"
    3131#include <OgreTextAreaOverlayElement.h>
    3232#include "core/CoreIncludes.h"
     
    3636namespace orxonox
    3737{
    38     CreateFactory(HUDRTRText);
     38    CreateFactory(DebugRTRText);
    3939
    40     HUDRTRText::HUDRTRText()
     40    DebugRTRText::DebugRTRText()
    4141    {
    42         RegisterObject(HUDRTRText);
     42        RegisterObject(DebugRTRText);
    4343    }
    4444
    45     HUDRTRText::~HUDRTRText()
     45    DebugRTRText::~DebugRTRText()
    4646    {
    4747    }
    4848
    49     void HUDRTRText::tick(float dt)
     49    void DebugRTRText::tick(float dt)
    5050    {
    5151        float rtr = GraphicsEngine::getSingleton().getAverageRTR();
  • code/branches/hud/src/orxonox/overlays/debug/DebugRTRText.h

    r1618 r1619  
    2727 */
    2828
    29 #ifndef _HUDRTRText_H__
    30 #define _HUDRTRText_H__
     29#ifndef _DebugRTRText_H__
     30#define _DebugRTRText_H__
    3131
    3232#include "OrxonoxPrereqs.h"
     
    3737namespace orxonox
    3838{
    39     class _OrxonoxExport HUDRTRText : public OverlayText, public Tickable
     39    class _OrxonoxExport DebugRTRText : public OverlayText, public Tickable
    4040    {
    4141    public:
    42         HUDRTRText();
    43         ~HUDRTRText();
     42        DebugRTRText();
     43        ~DebugRTRText();
    4444
    4545    private:
     
    4747    };
    4848}
    49 #endif /* _HUDRTRText_H__ */
     49#endif /* _DebugRTRText_H__ */
Note: See TracChangeset for help on using the changeset viewer.