Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/atmospheric_engine/src/lib/graphics/effects/volfog_effect.h @ 7505

Last change on this file since 7505 was 7505, checked in by amaechler, 18 years ago

branches/atmospheric_engine

File size: 1.1 KB
Line 
1/**
2 * @file volfog_effect.h
3 */
4
5#ifndef _VOLFOG_EFFECT
6#define _VOLFOG_EFFECT
7
8#include "vector.h"
9
10#include "weather_effect.h"
11
12class VolFogEffect : public WeatherEffect
13{
14  public:
15    VolFogEffect(const TiXmlElement* root = NULL);
16    virtual ~VolFogEffect();
17
18    virtual void loadParams(const TiXmlElement* root);
19
20    virtual bool init();
21
22    virtual bool activate();
23    virtual bool deactivate();
24
25    inline void setVolFogMode(const std::string& mode) { this->volfogMode = this->stringToVolFogMode(mode); }
26    inline void setVolFogDensity(float density) { this->volfogDensity = density; }
27    inline void setVolFogRange(float start, float end) { this->volfogStart = start; this->volfogEnd = end; }
28    inline void setVolFogColor(float r, float g, float b) { this->colorVector = Vector(r, g, b); }
29
30
31  private:
32    GLint stringToVolFogMode(const std::string& mode);
33
34
35  private:
36    GLint                   volfogMode;
37    GLfloat                 volfogDensity;
38    GLfloat                 volfogStart;
39    GLfloat                 volfogEnd;
40    Vector                  colorVector;
41};
42
43
44#endif  /* _VOLFOG_EFFECT */
Note: See TracBrowser for help on using the repository browser.