Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/volumetric_fog/src/world_entities/weather_effects/volfog_effect.h @ 10569

Last change on this file since 10569 was 9936, checked in by hdavid, 18 years ago

branches/volumetric_fog

File size: 727 bytes
RevLine 
[7504]1/**
[7652]2* @file volfog_effect.h
3*/
[7504]4
5#ifndef _VOLFOG_EFFECT
6#define _VOLFOG_EFFECT
7
8#include "vector.h"
9
10#include "weather_effect.h"
[8362]11#include "glincl.h"
[7504]12
[9686]13class VolFogEffect : public WeatherEffect
14{
[9715]15  ObjectListDeclaration(VolFogEffect);
[8495]16public:
[9686]17  VolFogEffect(const TiXmlElement* root = NULL);
18  virtual ~VolFogEffect();
[7504]19
[9686]20  virtual void loadParams(const TiXmlElement* root);
[7504]21
[9686]22  virtual void init();
[7504]23
[9686]24  virtual void activate();
25  virtual void deactivate();
[9936]26 
27  inline  void activateFog()
28  {
29    this->activate();
30  }
31  inline  void deactivateFog()
32  {
33    this->deactivate();
34  }
[7504]35
[9686]36  virtual void draw() const;
37  virtual void tick(float dt);
[7504]38
[8495]39private:
[9686]40  GLfloat fogColor[4];
[9935]41  bool    fogActivate;
[7546]42
[7504]43};
44
45#endif  /* _VOLFOG_EFFECT */
Note: See TracBrowser for help on using the repository browser.