Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/hud3/src/orxonox/hud/HUD.cc @ 1329

Last change on this file since 1329 was 1329, checked in by FelixSchulthess, 16 years ago

progress bars now resize automatically and have a new look

File size: 2.8 KB
Line 
1/*
2*   ORXONOX - the hottest 3D action shooter ever to exist
3*
4*
5*   License notice:
6*
7*   This program is free software; you can redistribute it and/or
8*   modify it under the terms of the GNU General Public License
9*   as published by the Free Software Foundation; either version 2
10*   of the License, or (at your option) any later version.
11*
12*   This program is distributed in the hope that it will be useful,
13*   but WITHOUT ANY WARRANTY; without even the implied warranty of
14*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15*   GNU General Public License for more details.
16*
17*   You should have received a copy of the GNU General Public License
18*   along with this program; if not, write to the Free Software
19*   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20*
21*   Author:
22*      Yuning Chai
23*   Co-authors:
24*      Felix Schulthess
25*
26*/
27
28
29#include "OrxonoxStableHeaders.h"
30#include <OgreOverlay.h>
31#include <OgreOverlayContainer.h>
32#include <OgreOverlayManager.h>
33#include <OgreSceneNode.h>
34#include <OgreEntity.h>
35#include "core/Debug.h"
36
37#include "HUD.h"
38#include "BarOverlayElement.h"
39#include "RadarOverlayElement.h"
40#include "OverlayElementFactories.h"
41
42namespace orxonox
43{
44  using namespace Ogre;
45
46  HUD::HUD(int zoom){
47    om = &Ogre::OverlayManager::getSingleton();
48
49    BarOverlayElementFactory *barOverlayElementFactory = new BarOverlayElementFactory();
50    om->addOverlayElementFactory(barOverlayElementFactory);
51
52    RadarOverlayElementFactory *radarOverlayElementFactory = new RadarOverlayElementFactory();
53    om->addOverlayElementFactory(radarOverlayElementFactory);
54
55    orxonoxHUD = om->create("Orxonox/HUD");
56
57    container = static_cast<Ogre::OverlayContainer*>(om->createOverlayElement("Panel", "Orxonox/HUD/container"));
58
59    energyCounter = static_cast<BarOverlayElement*>(om->createOverlayElement("Bar", "energyCounter"));
60    energyCounter->show();
61
62    speedo = static_cast<BarOverlayElement*>(om->createOverlayElement("Bar", "speedo"));
63    speedo->show();
64
65    radar = static_cast<RadarOverlayElement*>(om->createOverlayElement("Radar", "radar"));
66    radar->show();
67
68    container->show();
69    orxonoxHUD->add2D(container);
70    orxonoxHUD->show();
71    container->setLeft(0.0);
72    container->setTop(0.0);
73    container->setWidth(1.0);
74    container->setHeight(1.0);
75    container->setMetricsMode(Ogre::GMM_RELATIVE);
76
77    energyCounter->init(0.01, 0.95, 0.4, 0.04, container);
78    energyCounter->setValue(1);
79
80    speedo->init(0.01, 0.90, 0.4, 0.04, container);
81
82    radar->init(0.5, 0.9, 0.2, container);
83  }
84
85  void HUD::tick(float dt)
86  {
87      energyCounter->resize();
88
89      float v = SpaceShip::instance_s->getVelocity().length();
90      float vmax = SpaceShip::instance_s->getMaxSpeed();
91      speedo->setValue(v/vmax);
92      speedo->resize();
93
94      radar->resize();
95      radar->update();
96  }
97
98  HUD::~HUD(void){
99  }
100}
101
102
103
104
105
106
Note: See TracBrowser for help on using the repository browser.