1 | #pragma once
|
---|
2 |
|
---|
3 | //disable inheritance warning caused by multiple inheritance
|
---|
4 | #if _WIN32
|
---|
5 | #if _MSC_VER
|
---|
6 | #pragma warning(disable: 4250)
|
---|
7 | #endif
|
---|
8 | #endif
|
---|
9 |
|
---|
10 | #include "OgreRenderTechnique.h"
|
---|
11 | #include "CausticCasterRenderTechnique.h"
|
---|
12 |
|
---|
13 | /**
|
---|
14 | @brief CausticCasterRenderTechnique used in an OGRE environment.
|
---|
15 | */
|
---|
16 | class OgreCausticCasterRenderTechnique : public OgreRenderTechnique,
|
---|
17 | public CausticCasterRenderTechnique
|
---|
18 | {
|
---|
19 | public:
|
---|
20 | /**
|
---|
21 | @brief Constructor.
|
---|
22 |
|
---|
23 | @param startFrame adds an offset to the current frame number to help evenly distribute updates between frames
|
---|
24 | @param photonMapUpdateInterval photon map and caustic cubemap update frequency
|
---|
25 | @param photonMapResolution photon map resolution
|
---|
26 | @param causticCubeMapResolution caustic cubemap resolution
|
---|
27 | @param photonMapMaterialName the name of the material should be used when rendering the choton hit map
|
---|
28 | @param causticMapMaterialName the name of the material that should be used when rendering the caustic cubemap
|
---|
29 | @param photonMapTexID the texture unit state id of the caustic map generation material where the photonhit map should be bound to
|
---|
30 | @param updateAllFace defines if all cubemap faces should be updated in a frame or only one face per frame
|
---|
31 | @param useDistance tells if a distance cubemap impostor should be used in photon hit calculation (recommended)
|
---|
32 | @param pass the pass to operate on
|
---|
33 | @param parentRenderable the object to operate on
|
---|
34 | @param parentTechniqueGroup the TechniqueGroup this RenderedTechnique is attached to
|
---|
35 | */
|
---|
36 | OgreCausticCasterRenderTechnique( unsigned long startFrame,
|
---|
37 | unsigned long photonMapUpdateInterval,
|
---|
38 | unsigned int photonMapResolution,
|
---|
39 | unsigned int custicCubeMapResolution,
|
---|
40 | String photonMapMaterialName,
|
---|
41 | String causticMapMaterialName,
|
---|
42 | unsigned char photonMapTexID,
|
---|
43 | bool updateAllFace,
|
---|
44 | bool useDistance,
|
---|
45 | Pass* pass,
|
---|
46 | OgreRenderable* parentRenderable,
|
---|
47 | OgreTechniqueGroup* parentTechniqueGroup
|
---|
48 | );
|
---|
49 | /**
|
---|
50 | @brief Destructor.
|
---|
51 | */
|
---|
52 | ~OgreCausticCasterRenderTechnique();
|
---|
53 | /**
|
---|
54 | @brief Returns the name of the created caustic cubemap.
|
---|
55 |
|
---|
56 | @return name of the caustic cubemap texture
|
---|
57 | */
|
---|
58 | String& getCausticCubeMapName();
|
---|
59 |
|
---|
60 | protected:
|
---|
61 |
|
---|
62 | /**
|
---|
63 | @brief name of the created photon hit map texture
|
---|
64 | */
|
---|
65 | String photonMapMaterialName;
|
---|
66 | /**
|
---|
67 | @brief name of the created caustic cubemap texture
|
---|
68 | */
|
---|
69 | String causticMapMaterialName;
|
---|
70 | /**
|
---|
71 | @brief the texture unit state id of the caustic map generation material where the photonhit map should be bound to.
|
---|
72 | */
|
---|
73 | unsigned char photonMapTexID;
|
---|
74 |
|
---|
75 | //inherited
|
---|
76 | virtual void photonMapRunChanged(RenderingRun* run);
|
---|
77 | //inherited
|
---|
78 | virtual void causticCubeMapRunChanged(RenderingRun* run);
|
---|
79 | //inherited
|
---|
80 | virtual void distanceCubeMapRunChanged(RenderingRun* run);
|
---|
81 | //inherited
|
---|
82 | void distanceCubeMapRunUpdated(RenderingRun* run);
|
---|
83 | //inherited
|
---|
84 | virtual RenderingRun* createPhotonMapRun();
|
---|
85 | //inherited
|
---|
86 | virtual RenderingRun* createCausticCubeMapRun();
|
---|
87 | //inherited
|
---|
88 | virtual RenderingRun* createDistanceCubeMapRun();
|
---|
89 | };
|
---|
90 |
|
---|
91 |
|
---|
92 | class OgreCausticCasterRenderTechniqueFactory : public RenderTechniqueFactory
|
---|
93 | {
|
---|
94 | public:
|
---|
95 |
|
---|
96 | OgreCausticCasterRenderTechniqueFactory();
|
---|
97 |
|
---|
98 | OgreRenderTechnique* createInstance(IllumTechniqueParams* params,
|
---|
99 | Pass* pass,
|
---|
100 | OgreRenderable* parentRenderable,
|
---|
101 | OgreTechniqueGroup* parentTechniqueGroup);
|
---|
102 |
|
---|
103 |
|
---|
104 | unsigned long startFrame;
|
---|
105 | unsigned long photonMapUpdateInterval;
|
---|
106 | unsigned int photonMapResolution;
|
---|
107 | unsigned int causticCubeMapResolution;
|
---|
108 | String photonMapMaterialName;
|
---|
109 | String causticMapMaterialName;
|
---|
110 | unsigned char photonMapTexID;
|
---|
111 | bool updateAllFace;
|
---|
112 | bool useDistance;
|
---|
113 |
|
---|
114 |
|
---|
115 | };
|
---|