source: GTP/trunk/App/Demos/Vis/FriendlyCulling/src/DeferredRenderer.h @ 3135

Revision 3135, 3.6 KB checked in by mattausch, 16 years ago (diff)

working ok (most of the aa is also there for not-ssao mode, so it is probabl a matter of correct aa)

Line 
1#ifndef _DEFERREDRENDERER_H__
2#define _DEFERREDRENDERER_H__
3
4#include "common.h"
5#include "Matrix4x4.h"
6#include "Vector3.h"
7
8namespace CHCDemoEngine
9{
10
11class FrameBufferObject;
12class Vector3;
13class PerspectiveCamera;
14class Matrix4x4;
15class ShadowMap;
16class DirectionalLight;
17
18
19
20
21/** This class implements a deferred shading algorithm that takes
22        a frame buffer object as input and outputs an image in the given size
23*/
24class DeferredRenderer
25{
26public:
27        /** Constructor for a deferred shader taking the requested output image size,
28                the current camera;
29        */
30        DeferredRenderer(int w, int h, PerspectiveCamera *cam);
31        /** The algorithm renders the scene given an fbo consists of 1 color buffer,
32                1 position buffer, and 1 normal buffer.
33                We also need the  projection view matrix of the last frame for reprojection, and
34                a smoothing factor for temporal coherence
35        */
36
37        ~DeferredRenderer();
38
39        void Render(FrameBufferObject *fbo,
40                                float tempCohFactor,
41                                DirectionalLight *light,
42                                bool useToneMapping,
43                                ShadowMap *shadowMap = NULL
44                                );
45
46       
47        void SetUseTemporalCoherence(bool temporal);
48
49        enum SAMPLING_METHOD {SAMPLING_POISSON, SAMPLING_QUADRATIC, SAMPLING_DEFAULT};
50        enum SHADING_METHOD {DEFAULT, SSAO, GI};
51        /** Set the samplig method for the indirect illumination
52        */
53        void SetSamplingMethod(SAMPLING_METHOD s);
54        /** Set the shading method (SSAO, SSAO + color bleeding
55        */
56        void SetShadingMethod(SHADING_METHOD s);
57
58        // hack: store the color buffer idx for the currently used flip flop-MRT here
59        // TODO matt: make this less hacky
60        static int colorBufferIdx;
61
62
63protected:
64
65        void ComputeSsao(FrameBufferObject *fbo, float tempCohFactor);
66
67        void ComputeGlobIllum(FrameBufferObject *fbo, float tempCohFactor);
68
69        void FirstPass(FrameBufferObject *fbo, DirectionalLight *light);
70
71        void FirstPassShadow(FrameBufferObject *fbo, DirectionalLight *light, ShadowMap *shadowMap);
72
73        void ComputeToneParameters(FrameBufferObject *fbo,
74                                                           DirectionalLight *light,
75                                                           float &imageKey,
76                                                           float &whiteLum,
77                                                           float &middleGrey);
78
79        void ToneMap(FrameBufferObject *fbo, float imageKey, float whiteLum, float middleGrey);
80
81
82        void CombineSsao(FrameBufferObject *fbo);
83        void CombineIllum(FrameBufferObject *fbo);
84        void SmoothSsao(FrameBufferObject *fbo);
85
86        void AntiAliasing(FrameBufferObject *fbo, DirectionalLight *light);
87        /** Downsample buffer of fbo to buffer of downSampleFbo. The downSampleFbo must have half the
88                resolution of fbo.
89        */
90        void DownSample(FrameBufferObject *fbo, int bufferIdx,
91                                        FrameBufferObject *downSampleFbo, int downSampleBufferIdx);
92
93        void DrawQuad(ShaderProgram *p);
94
95        void Output(FrameBufferObject *fbo);
96
97        /** Initialises the deferred shader and loads the required shaders:
98                This function has to be called only once.
99        */
100        void InitCg();
101        /** Is called once per render call and sets the most important parameters.
102        */
103        void InitFrame();
104
105        void FlipFbos(FrameBufferObject *fbo);
106
107
108        ////////////
109
110        int mWidth;
111        int mHeight;
112
113        PerspectiveCamera *mCamera;
114
115        bool mUseTemporalCoherence;
116
117        int mSamplingMethod;
118
119        int mShadingMethod;
120
121        bool mRegenerateSamples;
122
123        int mIllumFboIndex;
124        // the fbo for indirect illumination (ssao + color bleeding)
125        FrameBufferObject *mIllumFbo;
126
127        FrameBufferObject *mDownSampleFbo;
128
129        FBOContainer mFBOs;
130
131        static ShaderContainer sShaders;
132
133        Matrix4x4 mProjViewMatrix;
134        Matrix4x4 mOldProjViewMatrix;
135
136        Vector3 mCornersView[4];
137        Vector3 mOldCornersView[4];
138
139        Vector3 mEyePos;
140        Vector3 mOldEyePos;
141};
142
143
144} // namespace
145
146#endif // _SsaoShader_H__
Note: See TracBrowser for help on using the repository browser.