Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/util/hud.cc @ 8975

Last change on this file since 8975 was 8975, checked in by bensch, 18 years ago

trunk: widget displayed

File size: 4.5 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16//#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_
17
18#include "hud.h"
19
20#include "state.h"
21
22#include "world_entities/weapons/weapon_manager.h"
23#include "glgui_widget.h"
24
25#include "glgui_inputline.h"
26#include "specials/glgui_notifier.h"
27
28/**
29 * standard constructor
30 * @todo this constructor is not jet implemented - do it
31*/
32Hud::Hud ()
33{
34  this->setClassID(CL_HUD, "Hud");
35
36  //this->setSize2D(
37  this->weaponManager = NULL;
38  this->energyWidget = NULL;
39  this->shieldWidget = NULL;
40  this->armorWidget = NULL;
41  this->resX = 1;
42  this->resY = 1;
43
44  this->inputLine = new OrxGui::GLGuiInputLine();
45  this->inputLine->setParent2D(this);
46  this->notifier = new OrxGui::GLGuiNotifier();
47  this->notifier->setParent2D(this);
48  notifier->setAbsCoor2D(100,100);
49
50
51
52}
53
54
55/**
56 * standard deconstructor
57*/
58Hud::~Hud ()
59{
60  delete this->inputLine;
61  delete this->notifier;
62  // delete what has to be deleted here
63}
64
65
66void Hud::loadParams(const TiXmlElement* root)
67{
68  Element2D::loadParams(root);
69}
70
71void Hud::notifyUser(const std::string& message)
72{
73  this->notifier->pushNotifyMessage(message);
74}
75
76void Hud::setBackGround()
77{}
78
79void Hud::setEnergyWidget(OrxGui::GLGuiWidget* widget)
80{
81  // decopple old widget
82  if (this->energyWidget != NULL)
83  {
84    this->energyWidget->hide();
85  }
86
87  this->energyWidget = widget;
88  if (this->energyWidget != NULL)
89  {
90    this->energyWidget->show();
91    this->energyWidget->setBackgroundTexture( "hud_energy_background.png");
92    /*    this->energyWidget->frontMaterial().setDiffuseMap("hud_energy_bar.png");
93        this->energyWidget->frontMaterial().setBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);*/
94  }
95
96  this->updateResolution();
97}
98
99void Hud::setShiledWidget(OrxGui::GLGuiWidget* widget)
100{}
101
102void Hud::setArmorWidget(OrxGui::GLGuiWidget* widget)
103{}
104
105void Hud::setWeaponManager(WeaponManager* weaponMan)
106{
107  if (this->weaponManager != NULL)
108  {
109    for (unsigned int i = 0; i < this->weaponManager->getSlotCount(); i++)
110    {
111      Weapon* weapon = this->weaponManager->getWeapon(i);
112      if (weapon != NULL)
113      {
114        weapon->getEnergyWidget()->hide();
115        this->weaponsWidgets.remove(weapon->getEnergyWidget());
116      }
117    }
118  }
119
120  this->weaponManager = weaponMan;
121
122  this->updateWeaponManager();
123  this->updateResolution();
124}
125
126void Hud::updateWeaponManager()
127{
128  // hide all the Widgets
129  std::list<OrxGui::GLGuiWidget*>::iterator weaponWidget;
130  for (weaponWidget = this->weaponsWidgets.begin(); weaponWidget != this->weaponsWidgets.end(); weaponWidget++)
131  {
132    (*weaponWidget)->hide();
133  }
134  this->weaponsWidgets.clear();
135
136  // add all that we need again.
137  if (this->weaponManager != NULL)
138    for (unsigned int i = 0; i < this->weaponManager->getSlotCount(); i++)
139    {
140      Weapon* weapon = this->weaponManager->getWeapon(i);
141      if (weapon != NULL)
142      {
143        weapon->getEnergyWidget()->show();
144        weapon->getEnergyWidget()->setBackgroundColor(Color(.8,.2,.11, 0.1));
145        weapon->getEnergyWidget()->setFrontColor(Color( .2,.5,.7,.6));
146        //      weapon->getEnergyWidget()->frontMaterial().setTransparency(.6);
147        this->weaponsWidgets.push_back(weapon->getEnergyWidget());
148      }
149    }
150  this->updateResolution();
151}
152
153void Hud::addWeaponWidget(OrxGui::GLGuiWidget* widget)
154{}
155
156void Hud::removeWeaponWidget(OrxGui::GLGuiWidget* widget)
157{}
158
159void Hud::updateResolution()
160{
161  this->resX = State::getResX();
162  this->resY = State::getResY();
163  if (this->energyWidget != NULL)
164  {
165    this->energyWidget->setAbsCoor2D(0.0 * this->resX, 0.9 * this->resY);
166    this->energyWidget->setWidgetSize(.25 * this->resX, 0.1 * this->resY);
167  }
168
169  this->setSize2D(.2 * this->resX, this->resY);
170
171  std::list<OrxGui::GLGuiWidget*>::iterator weaponWidget;
172  float pos = .3;
173  for (weaponWidget = this->weaponsWidgets.begin(); weaponWidget != this->weaponsWidgets.end(); weaponWidget++, pos+=.03)
174  {
175    (*weaponWidget)->setWidgetSize(.02*this->resX, .2 *this->resY);
176    (*weaponWidget)->setAbsCoor2D(pos*this->resX, .75*this->resY);
177
178  }
179}
180
181
182void Hud::tick(float dt)
183{
184  if (this->resY != State::getResY() || this->resX != State::getResX())
185  {
186    this->updateResolution();
187  }
188
189}
190
191void Hud::draw() const
192{
193  //  GLGuiWidget::draw();
194}
195
196
Note: See TracBrowser for help on using the repository browser.