Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/hud3/src/orxonox/hud/BarOverlayElement.h~ @ 1283

Last change on this file since 1283 was 1283, checked in by chaiy, 16 years ago

new hud branch, since hud2 doesnt work on tardis

File size: 2.2 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*      ...
25*
26*/
27
28
29#ifndef _BAR_H__
30#define _BAR_H__
31
32#include <OgreOverlayManager.h>
33#include <OgreOverlayElement.h>
34#include <OgrePanelOverlayElement.h>
35
36#include <OgrePrerequisites.h>
37#include "../OrxonoxPrereqs.h"
38
39
40
41namespace orxonox
42{
43  class _OrxonoxExport BarOverlayElement : public Ogre::PanelOverlayElement
44  {
45  private:
46    int percentage_;
47    int dir_;   
48    int left_;
49    int top_;
50    int width_;
51    int height_;
52
53    static Ogre::String& typeName_s;
54
55  public:
56
57    static const int LEFT = 0;
58    static const int UP = 1;
59    static const int RIGHT = 2;
60    static const int DOWN = 3;
61
62    static const int RED = 0;
63    static const int YELLOW = 1;
64    static const int GREEN = 2;
65
66    BarOverlayElement(const Ogre::String& name);
67    virtual ~BarOverlayElement();
68    virtual void initialise();
69
70    void initBarOverlayElement(Real left, Real top, Real width, Real height,
71          int dir,  int colour);
72
73    void reset(int percentage);
74    void setColour(int colour);
75
76  };
77
78 
79  class _OrxonoxExport SmartBarOverlayElement : public BarOverlayElement
80  {
81    private:
82
83    public:
84     
85      SmartBarOverlayElement(const Ogre::String& name);
86      virtual ~SmartBarOverlayElement(void);
87      virtual void initialise();
88     
89      void initSmartBarOverlayElement(Ogre::Real left, Ogre::Real top, Ogre::Real width, Ogre::Real height, int dir);
90      void reset(int percentage);
91     
92  };
93}
94
95#endif
96
97
Note: See TracBrowser for help on using the repository browser.