Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/std/src/lib/graphics/effects/lense_flare.h @ 7218

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

orxonox/std:: more strings

File size: 1.5 KB
RevLine 
[6776]1/**
2 * @file lense_flare.h
3 *  lense flare effect
4 */
5
6#ifndef _LENSE_FLARE
7#define _LENSE_FLARE
8
9#include "graphics_effect.h"
10
[6779]11#include <vector>
[6776]12
[6786]13#include "vector.h"
[6889]14#include "plane.h"
[6776]15
[6787]16
17#define LF_MAX_FLARES 7
18
19
[6776]20class TiXmlElement;
[6779]21class Light;
[6782]22class Billboard;
[6776]23
24//! A class that handles LenseFlares. The LenseFlareManager operates on this.
25class LenseFlare : public GraphicsEffect
26{
27  public:
28    LenseFlare(const TiXmlElement* root = NULL);
29    virtual ~LenseFlare();
30
31    virtual void loadParams(const TiXmlElement* root);
32
33    virtual bool init();
34
35    virtual bool activate();
36    virtual bool deactivate();
37
38    virtual void draw() const;
[6785]39    virtual void tick(float dt);
[6776]40
[7216]41    void addFlare(const std::string& textureName);
[6776]42
[6779]43
[6776]44  private:
[7218]45    GLint stringToFogMode(const std::string& mode);
[7015]46    void setSourceVisibility(bool visibility) ;
[6776]47
48
49  private:
[7015]50    float                    isVisible;          //!< Checks visibility
[6776]51    Light*                   lightSource;        //!< reference to the sun (or primary light source)
[6782]52    std::vector<Billboard*>  flares;             //!< the flares array
[6783]53
[6786]54    Vector                   flareVector;        //!< the axis to draw the flares on
[6787]55    float                    distance;           //!< distance from center to source
[6786]56    Vector                   screenCenter;       //!< the vector marking the center of the screen
[6787]57
58    float*                   flareMatrix;
[6889]59    Plane                    frustumPlane;       //!< plane that marks the view frustum
[6776]60};
61
62
63#endif /* _LENSE_FLARE */
Note: See TracBrowser for help on using the repository browser.