Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 10746 was 10744, checked in by bknecht, 18 years ago

does not segfault anymore

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