Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 1330 was 1330, checked in by FelixSchulthess, 17 years ago

removed old files

File size: 3.0 KB
RevLine 
[1281]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:
[1328]24*      Felix Schulthess
[1281]25*
26*/
27
28
29#include "OrxonoxStableHeaders.h"
30#include <OgreOverlay.h>
31#include <OgreOverlayContainer.h>
[1302]32#include <OgreOverlayManager.h>
[1281]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{
[1330]44    using namespace Ogre;
[1281]45
[1330]46    HUD::HUD(int zoom){
47        om = &Ogre::OverlayManager::getSingleton();
[1281]48
[1330]49        BarOverlayElementFactory *barOverlayElementFactory = new BarOverlayElementFactory();
50        om->addOverlayElementFactory(barOverlayElementFactory);
[1302]51
[1330]52        RadarOverlayElementFactory *radarOverlayElementFactory = new RadarOverlayElementFactory();
53        om->addOverlayElementFactory(radarOverlayElementFactory);
[1281]54
[1330]55        orxonoxHUD = om->create("Orxonox/HUD");
[1302]56
[1330]57        container = static_cast<Ogre::OverlayContainer*>(om->createOverlayElement("Panel", "Orxonox/HUD/container"));
[1302]58
[1330]59        energyCounter = static_cast<BarOverlayElement*>(om->createOverlayElement("Bar", "energyCounter"));
60        energyCounter->show();
[1302]61
[1330]62        speedo = static_cast<BarOverlayElement*>(om->createOverlayElement("Bar", "speedo"));
63        speedo->show();
[1302]64
[1330]65        radar = static_cast<RadarOverlayElement*>(om->createOverlayElement("Radar", "radar"));
66        radar->show();
[1281]67
[1330]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);
[1302]76
[1330]77        energyCounter->init(0.01, 0.95, 0.4, 0.04, container);
78        energyCounter->setValue(1);
[1302]79
[1330]80        speedo->init(0.01, 0.90, 0.4, 0.04, container);
[1281]81
[1330]82        radar->init(0.5, 0.9, 0.2, container);
83    }
[1281]84
[1330]85    void HUD::tick(float dt)
86    {
87        energyCounter->resize();
[1329]88
[1330]89        float v = SpaceShip::instance_s->getVelocity().length();
90        float vmax = SpaceShip::instance_s->getMaxSpeed();
91        speedo->setValue(v/vmax);
92        speedo->resize();
[1329]93
[1330]94        radar->resize();
95        radar->update();
96    }
[1302]97
[1330]98    HUD::~HUD(void){
99    }
[1281]100}
101
102
103
104
105
106
Note: See TracBrowser for help on using the repository browser.