Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 24, 2008, 1:49:54 PM (17 years ago)
Author:
rgrieder
Message:
  • reverted the HUD changes to ease up back merge from network branch

@everyone: please commit to the network branch from now on if it concerns the presentation.
Oli has also created a folder for the presentation files.
@fabian: you are excluded

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/hud/HUD.h

    r1394 r1407  
    3030#define _HUD_H__
    3131
     32#include <string.h>
     33#include <OgreOverlayElement.h>
     34#include <OgreTextAreaOverlayElement.h>
    3235#include <OgrePrerequisites.h>
    33 #include <OgreTextAreaOverlayElement.h>
     36
    3437#include "OrxonoxPrereqs.h"
    3538#include "core/Tickable.h"
    3639#include "BarOverlayElement.h"
    3740#include "RadarOverlayElement.h"
    38 #include "Navigation.h"
    39 #include "RadarObject.h"
    4041
    4142
     
    4546    {
    4647        private:
    47             HUD();
    48             HUD(HUD& instance);
    49             ~HUD();
    5048            Ogre::OverlayManager* om;
    5149            Ogre::Overlay* orxonoxHUD;
    5250            Ogre::OverlayContainer* container;
    53             Ogre::TextAreaOverlayElement* fpsText;
     51            Ogre::TextAreaOverlayElement* test;
    5452            BarOverlayElement* energyBar;
    5553            BarOverlayElement* speedoBar;
    5654            RadarOverlayElement* radar;
    57             RadarObject* firstRadarObject;
    58             RadarObject* lastRadarObject;
    59             Navigation* nav;
    6055
    6156        public:
     57            HUD(int zoom);
     58            ~HUD();
    6259            virtual void tick(float);
    63             void addRadarObject(Vector3 pos);
    64             RadarObject* getFirstRadarObject();
    6560
    66             static HUD* instance_s;
    67             static HUD& getSingleton();
    68             static void setFPS(float fps);
    69             static void setEnergy(float value);
    70             static void cycleNavigationFocus();
    7161    };
    7262}
Note: See TracChangeset for help on using the changeset viewer.