Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/presentation/src/util/hud.h @ 10741

Last change on this file since 10741 was 10741, checked in by bknecht, 17 years ago

Kralle entfernt?

File size: 3.9 KB
Line 
1/*!
2 * @file hud.h
3 * @brief Definition of the ingame HUD.
4*/
5
6#ifndef _HUD_H
7#define _HUD_H
8
9#include "element_2d.h"
10#include "event_listener.h"
11#include "glgui_box.h"
12#include "elements/glgui_energywidgetvertical.h"
13
14
15// FORWARD DECLARATION
16class WeaponManager;
17namespace OrxGui {
18  class GLGuiWidget;
19  class GLGuiNotifier;
20  class GLGuiInputLine;
21  class GLGuiRadar;
22}
23
24//! A class that renders a HUD (Heads Up Display for User Information).
25class Hud : public Element2D, public EventListener
26{
27  ObjectListDeclaration(Hud);
28
29public:
30
31  typedef enum {
32    Vertical         =  1,       //!< Vertical (seen from left or right/move in x-z)
33    Horizontal       =  2,       //!< Horizontal (seet from the top/move in x-y)
34    FromBehind       =  4,       //!< Seen from behind (move in z-y)
35    Full3D           =  8,       //!< Full featured 3D-mode. (move in all directions x-y-z)
36    FirstPerson      = 16,
37
38    PlaymodeCount    =  5,
39  } Playmode;
40 
41  Hud();
42  virtual ~Hud();
43
44
45  virtual void loadParams(const TiXmlElement* root);
46
47  void notifyUser(const std::string& message);
48
49  void setMode(Hud::Playmode playmode);
50  inline Hud::Playmode getMode() {return this->playmode;};
51
52  void setBackGround();
53  void setEnergyWidget(OrxGui::GLGuiWidget* widget);
54  void setShieldWidget(OrxGui::GLGuiWidget* widget);
55  void setHealthWidget(OrxGui::GLGuiWidget* widget);
56  void setImplantWidget(OrxGui::GLGuiWidget* widget);
57
58  inline OrxGui::GLGuiWidget* getEnergyWidget() {return this->energyWidget;};
59  inline OrxGui::GLGuiWidget* getShieldWidget() {return this->shieldWidget;};
60  inline OrxGui::GLGuiWidget* getHealthWidget() {return this->healthWidget;};
61  inline OrxGui::GLGuiWidget* getImplantWidget() {return this->implantWidget;};
62
63  void setWeaponManager(WeaponManager* weaponMan, WeaponManager* weaponManSec = NULL);
64  inline void setRadarCenterNode(PNode* node) {this->radarCenterNode = node;};
65
66  void addWeaponWidget(OrxGui::GLGuiWidget* widget);
67  void removeWeaponWidget(OrxGui::GLGuiWidget* widget);
68
69  OrxGui::GLGuiRadar* radar() const { return _radar; };
70
71  void updateWeaponManager();
72  //void clearWeaponManager();
73
74  inline void setOverlayPercentage(int perc) 
75  {
76    if (perc > 100) perc = 100;
77    else if (perc < 0) perc = 0;
78
79    this->overlayPercentage = perc;
80    updateResolution();
81  };
82
83  inline void setOverlayActive(bool b)
84  {
85    overlayActive = b;
86    updateResolution();
87  };
88
89  void draw() const;
90  virtual void process(const Event &event);
91
92
93  private:
94    void updateResolution();
95    void init();
96    //void createShipValuesBox();
97
98private:
99  unsigned int             resX;
100  unsigned int             resY;
101 
102  Hud::Playmode                         playmode; 
103
104  float                    travelZoneWidth; //the percentage of the screen, the player has got for his movements. should always be a value between 0 and 1;
105
106  OrxGui::GLGuiWidget*     energyWidget;
107  OrxGui::GLGuiWidget*     shieldWidget;
108  OrxGui::GLGuiWidget*     healthWidget;
109  OrxGui::GLGuiWidget*     implantWidget;
110
111  OrxGui::GLGuiNotifier*   notifier;
112  OrxGui::GLGuiInputLine*  inputLine;
113  OrxGui::GLGuiRadar*      _radar;
114  PNode*                   radarCenterNode;
115
116  OrxGui::GLGuiWidget*     rightRect;
117  OrxGui::GLGuiWidget*     leftRect;
118  OrxGui::GLGuiWidget*          topRect;
119  OrxGui::GLGuiWidget*          bottomRect;
120  OrxGui::GLGuiWidget*          middleRect;
121  OrxGui::GLGuiImage*           barSocket;
122  //OrxGui::GLGuiImage*         topHit;
123  //OrxGui::GLGuiImage*         bottomHit;
124  OrxGui::GLGuiImage*           leftHit;
125  OrxGui::GLGuiImage*           rightHit;
126  bool                     overlayActive;
127  int                      overlayPercentage; //the percentage of the screen, the player has got for his movements. should always be a value between 0 and 1;
128
129  WeaponManager*           weaponManager;
130  WeaponManager*           weaponManagerSecondary;
131
132  std::list<OrxGui::GLGuiEnergyWidgetVertical*> weaponsWidgetsPrim; //!< WeaponWidgets will be displayed one after another
133  std::list<OrxGui::GLGuiEnergyWidgetVertical*> weaponsWidgetsSec;
134};
135
136#endif /* _HUD_H */
Note: See TracBrowser for help on using the repository browser.