Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/hud/src/orxonox/overlays/HUDOverlay.h @ 1600

Last change on this file since 1600 was 1600, checked in by rgrieder, 16 years ago

again…

  • Property svn:eol-style set to native
File size: 3.7 KB
RevLine 
[1588]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Reto Grieder
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#ifndef _HUDOverlay_H__
30#define _HUDOverlay_H__
31
32#include "OrxonoxPrereqs.h"
33
34#include <OgrePrerequisites.h>
[1590]35#include "tools/WindowEventListener.h"
[1588]36#include "util/Math.h"
37#include "core/BaseObject.h"
38
39namespace orxonox
40{
[1590]41  class _OrxonoxExport HUDOverlay : public BaseObject, public WindowEventListener
[1588]42  {
43    public:
44      HUDOverlay();
45      virtual ~HUDOverlay();
46
47      virtual void XMLPort(Element& xmlElement, XMLPort::Mode mode);
48
[1595]49      void setAspectCorrection(bool val);
50      bool getAspectCorrection() { return this->bCorrectAspect_; }
[1588]51
[1598]52      /** Sets the position of this overlay. */
53      void setPosition(Vector2 pos) { this->position_ = pos; this->positionChanged(); }
[1588]54
[1598]55      /** Gets the current position. */
56      Vector2 getPosition() const { return this->position_; }
[1588]57
58      /** Scrolls the overlay by the offsets provided. */
[1598]59      void scroll(Vector2 scroll) { this->position_ += scroll; this->positionChanged(); }
[1588]60
[1598]61      /** Sets the origin point of this overlay. */
62      void setOrigin(Vector2 pos) { this->origin_ = pos; this->positionChanged(); }
63
64      /** Gets the origin point of this overlay */
65      Vector2 getOrigin() const { return this->origin_; }
66
[1588]67      /** Sets the rotation applied to this overlay.*/
[1598]68      void setRotation(const Ogre::Radian& angle) { this->angle_ = angle; this->angleChanged(); }
[1588]69
70      /** Gets the rotation applied to this overlay, in degrees.*/
[1598]71      const Radian& getRotation() const { return this->angle_; }
[1588]72
73      /** Adds the passed in angle to the rotation applied to this overlay. */
[1598]74      void rotate(const Radian& angle) { this->angle_ += angle; this->angleChanged(); }
[1588]75
76      /** Sets the scaling factor of this overlay. */
[1595]77      void setSize(const Vector2& size) { this->size_ = size; this->sizeChanged(); }
[1588]78
[1595]79      /** Gets the current size (not corrected) */
80      Vector2 getSize() const { return this->size_; }
[1588]81
[1595]82      /** Gets the current size (corrected) */
83      Vector2 getActualSize() const { return this->size_ * this->sizeCorrection_; }
84
85      /** Gets the current size correction */
86      Vector2 getSizeCorrection() const { return this->sizeCorrection_; }
87
[1588]88      /** Scales the overlay */
[1595]89      void scale(Vector2 scale) { this->size_ *= scale; this->sizeChanged(); }
[1588]90
91    protected:
[1595]92      virtual void changedVisibility();
93      virtual void sizeChanged();
[1598]94      virtual void angleChanged();
95      virtual void positionChanged();
[1595]96      float getWindowAspectRatio() { return windowAspectRatio_; } 
[1590]97
[1588]98      Ogre::Overlay* overlay_;
[1595]99
100    private:
101      void windowResized(int newWidth, int newHeight);
102
[1590]103      float windowAspectRatio_;
[1595]104      bool bCorrectAspect_;
105      Vector2 size_;
106      Vector2 sizeCorrection_;
[1598]107      Radian angle_;
108      Vector2 position_;
109      Vector2 origin_;
[1588]110
[1590]111      static unsigned int hudOverlayCounter_s;
[1588]112  };
113}
114
115#endif /* _HUDOverlay_H__ */
Note: See TracBrowser for help on using the repository browser.