Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/hud2/src/orxonox/hud/BarOverlayElement.h @ 1254

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

chais new hud

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   
47    int percentage_;
48    int dir_;   
49    int left_;
50    int top_;
51    int width_;
52    int height_;
53
54    static Ogre::String& typeName_s;
55
56  public:
57
58    static const int LEFT = 0;
59    static const int UP = 1;
60    static const int RIGHT = 2;
61    static const int DOWN = 3;
62
63    static const int RED = 0;
64    static const int YELLOW = 1;
65    static const int GREEN = 2;
66
67    BarOverlayElement(const Ogre::String& name);
68    virtual ~BarOverlayElement();
69    virtual void initialise();
70
71    void initBarOverlayElement(Real left, Real top, Real width, Real height,
72          int dir,  int colour);
73
74    void reset(int percentage);
75    void setColour(int colour);
76
77  };
78
79 
80  class _OrxonoxExport SmartBarOverlayElement : public BarOverlayElement
81  {
82    private:
83
84    public:
85     
86      SmartBarOverlayElement(const Ogre::String& name);
87      virtual ~SmartBarOverlayElement(void);
88      virtual void initialise();
89     
90      void initSmartBarOverlayElement(Ogre::Real left, Ogre::Real top, Ogre::Real width, Ogre::Real height, int dir);
91      void reset(int percentage);
92     
93  };
94}
95
96#endif
97
98
Note: See TracBrowser for help on using the repository browser.