source: GTP/trunk/App/Demos/Vis/FriendlyCulling/src/ShadowMapping.cpp @ 3038

Revision 3038, 17.6 KB checked in by mattausch, 16 years ago (diff)

unified shader stuff, but phreetham sky not working anymore for forward rendering

Line 
1#include "ShadowMapping.h"
2#include "FrameBufferObject.h"
3#include "RenderState.h"
4#include "RenderTraverser.h"
5#include "Light.h"
6#include "Polygon3.h"
7#include "Polyhedron.h"
8#include "ResourceManager.h"
9
10#include <IL/il.h>
11#include <assert.h>
12
13
14using namespace std;
15
16
17namespace CHCDemoEngine
18{
19
20static Polyhedron *polyhedron = NULL;
21static Polyhedron *lightPoly = NULL;
22
23
24static void PrintGLerror(char *msg)
25{
26        GLenum errCode;
27        const GLubyte *errStr;
28       
29        if ((errCode = glGetError()) != GL_NO_ERROR)
30        {
31                errStr = gluErrorString(errCode);
32                fprintf(stderr,"OpenGL ERROR: %s: %s\n", errStr, msg);
33        }
34}
35
36
37static Polyhedron *CreatePolyhedron(const Matrix4x4 &lightMatrix,
38                                                                        const AxisAlignedBox3 &sceneBox)
39{
40        Frustum frustum(lightMatrix);
41
42        vector<Plane3> clipPlanes;
43
44        for (int i = 0; i < 6; ++ i)
45        {
46                ////////////
47                //-- normalize the coefficients
48
49                // the clipping planes look outward the frustum,
50                // so distances > 0 mean that a point is outside
51                const float invLength = -1.0f / Magnitude(frustum.mClipPlanes[i].mNormal);
52
53                frustum.mClipPlanes[i].mD *= invLength;
54                frustum.mClipPlanes[i].mNormal *= invLength;
55        }
56
57        // first create near plane because of precision issues
58        clipPlanes.push_back(frustum.mClipPlanes[4]);
59
60        clipPlanes.push_back(frustum.mClipPlanes[0]);
61        clipPlanes.push_back(frustum.mClipPlanes[1]);
62        clipPlanes.push_back(frustum.mClipPlanes[2]);
63        clipPlanes.push_back(frustum.mClipPlanes[3]);
64        clipPlanes.push_back(frustum.mClipPlanes[5]);
65
66        return Polyhedron::CreatePolyhedron(clipPlanes, sceneBox);
67}
68
69
70static void GrabDepthBuffer(float *data, GLuint depthTexture)
71{
72        glEnable(GL_TEXTURE_2D);
73        glBindTexture(GL_TEXTURE_2D, depthTexture);
74
75        glGetTexImage(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT, GL_FLOAT, data);
76
77        glBindTexture(GL_TEXTURE_2D, 0);
78        glDisable(GL_TEXTURE_2D);
79}
80
81
82static void ExportDepthBuffer(float *data, int size)
83{
84        ilInit();
85        assert(ilGetError() == IL_NO_ERROR);
86
87        ILstring filename = ILstring("shadow.tga");
88        ilRegisterType(IL_FLOAT);
89
90        const int depth = 1;
91        const int bpp = 1;
92
93        if (!ilTexImage(size, size, depth, bpp, IL_LUMINANCE, IL_FLOAT, data))
94        {
95                cerr << "IL error " << ilGetError() << endl;
96       
97                ilShutDown();
98                assert(ilGetError() == IL_NO_ERROR);
99
100                return;
101        }
102
103        if (!ilSaveImage(filename))
104        {
105                cerr << "TGA write error " << ilGetError() << endl;
106        }
107
108        ilShutDown();
109        assert(ilGetError() == IL_NO_ERROR);
110
111        cout << "exported depth buffer" << endl;
112}
113
114
115
116static AxisAlignedBox3 GetExtremalPoints(const Matrix4x4 &m,
117                                                                                 const VertexArray &pts)
118{
119        AxisAlignedBox3 extremalPoints;
120        extremalPoints.Initialize();
121
122        VertexArray::const_iterator it, it_end = pts.end();
123               
124        for (it = pts.begin(); it != it_end; ++ it)
125        {
126                Vector3 pt = *it;
127                pt = m * pt;
128
129                extremalPoints.Include(pt);
130        }
131
132        return extremalPoints;
133}
134
135
136ShadowMap::ShadowMap(DirectionalLight *light
137                                         , int size,
138                                         const AxisAlignedBox3 &sceneBox,
139                                         Camera *cam):
140mSceneBox(sceneBox), mSize(size), mCamera(cam), mLight(light)
141{
142        mFbo = new FrameBufferObject(size, size, FrameBufferObject::DEPTH_32, true);
143
144        // need a color buffer to keep opengl happy
145        mFbo->AddColorBuffer(ColorBufferObject::RGB_UBYTE,
146                                 ColorBufferObject::WRAP_CLAMP_TO_EDGE,
147                                                 ColorBufferObject::FILTER_NEAREST);
148
149
150        mShadowCam = new Camera(mSize, mSize);
151        mShadowCam->SetOrtho(true);
152}
153
154
155ShadowMap::~ShadowMap()
156{
157        DEL_PTR(mFbo);
158        DEL_PTR(mShadowCam);
159
160        DEL_PTR(lightPoly);
161        DEL_PTR(polyhedron);
162}
163
164
165static void DrawPolyhedron(Polyhedron *poly, const Vector3 &color)
166{
167        if (!poly) return;
168
169        for (size_t i = 0; i < poly->NumPolygons(); ++ i)
170        {
171                glColor3f(color.x, color.y, color.z);
172
173                glBegin(GL_LINE_LOOP);
174
175                Polygon3 *p = poly->GetPolygons()[i];
176
177                for (size_t j = 0; j < p->mVertices.size(); ++ j)
178                {
179                        Vector3 v = p->mVertices[j];
180                        glVertex3d(v.x, v.y, v.z);
181                }
182
183                glEnd();
184        }
185}
186
187
188void ShadowMap::VisualizeFrustra()
189{
190        DrawPolyhedron(lightPoly, Vector3(1, 0, 1));
191        DrawPolyhedron(polyhedron, Vector3(0, 1, 0));
192}
193
194
195// z0 is the point that lies on the parallel plane to the near plane through e (A)
196//and on the near plane of the C frustum (the plane z = bZmax) and on the line x = e.x
197Vector3 ShadowMap::GetLightSpaceZ0(const Matrix4x4 &lightSpace,
198                                                                   const Vector3 &e,
199                                                                   const float maxZ,
200                                                                   const Vector3 &eyeDir) const
201{
202        // to calculate the parallel plane to the near plane through e we
203        // calculate the plane A with the three points
204        Plane3 planeA(e, eyeDir);
205
206        planeA.Transform(lightSpace);
207       
208        // get the parameters of A from the plane equation n dot d = 0
209        const float d = planeA.mD;
210        const Vector3 n = planeA.mNormal;
211       
212        // transform to light space
213        const Vector3 e_ls = lightSpace * e;
214
215        Vector3 z0;
216
217        z0.x = e_ls.x;
218        z0.y = (d - n.z * maxZ - n.x * e_ls.x) / n.y;
219        z0.z = maxZ;
220
221        return z0;
222        //return V3(e_ls.x(),(d-n.z()*b_lsZmax-n.x()*e_ls.x())/n.y(),b_lsZmax);
223}
224
225
226float ShadowMap::ComputeNOpt(const Matrix4x4 &lightSpace,
227                                                         const AxisAlignedBox3 &extremalPoints,
228                                                         const VertexArray &body) const
229{
230        const Vector3 nearPt = GetNearCameraPointE(body);
231        const Vector3 eyeDir = mCamera->GetDirection();
232
233        Matrix4x4 eyeView;
234        mCamera->GetModelViewMatrix(eyeView);
235
236        const Matrix4x4 invLightSpace = Invert(lightSpace);
237
238        const Vector3 z0_ls = GetLightSpaceZ0(lightSpace, nearPt, extremalPoints.Max().z, eyeDir);
239        const Vector3 z1_ls = Vector3(z0_ls.x, z0_ls.y, extremalPoints.Min().z);
240       
241        // transform back to world space
242        const Vector3 z0_ws = invLightSpace * z0_ls;
243        const Vector3 z1_ws = invLightSpace * z1_ls;
244
245        // transform to eye space
246        const Vector3 z0_es = eyeView * z0_ws;
247        const Vector3 z1_es = eyeView * z1_ws;
248
249        const float z0 = z0_es.z;
250        const float z1 = z1_es.z;
251
252        cout << "z0 ls: " << z0_ls << " z1 ls: " << z1_ls << endl;
253        cout << "z0: " << z0_es << " z1: " << z1_es << endl;
254
255        const float d = fabs(extremalPoints.Max()[2] - extremalPoints.Min()[2]);
256
257        const float n = d / (sqrt(z1 / z0) - 1.0f);
258
259        return n;
260}
261
262
263float ShadowMap::ComputeN(const AxisAlignedBox3 &extremalPoints) const
264{
265        const float nearPlane = mCamera->GetNear();
266       
267        const float d = fabs(extremalPoints.Max()[2] - extremalPoints.Min()[2]);
268       
269        const float dotProd = DotProd(mCamera->GetDirection(), mShadowCam->GetDirection());
270        const float sinGamma = sin(fabs(acos(dotProd)));
271
272        // test for values close to zero
273        if (sinGamma < 1e-6f) return 1e6f;
274       
275        const float scale = 2.0f;
276        return scale * (nearPlane + sqrt(nearPlane * (nearPlane + d * sinGamma))) /  sinGamma;
277}
278
279
280Matrix4x4 ShadowMap::CalcLispSMTransform(const Matrix4x4 &lightSpace,
281                                                                                 const AxisAlignedBox3 &extremalPoints,
282                                                                                 const VertexArray &body
283                                                                                 )
284{
285        AxisAlignedBox3 bounds_ls = GetExtremalPoints(lightSpace, body);
286
287        ///////////////
288        //-- We apply the lispsm algorithm in order to calculate an optimal light projection matrix
289        //-- first find the free parameter values n, and P (the projection center), and the projection depth
290
291        const float n = ComputeN(bounds_ls);
292        //const float n = ComputeNOpt(lightSpace, extremalPoints, body); cout << "n: " << n << endl;
293
294        if (n >= 1e6f) // light direction nearly parallel to view => switch to uniform
295                return IdentityMatrix();
296
297        const Vector3 nearPt = GetNearCameraPointE(body);
298       
299        //get the coordinates of the near camera point in light space
300        const Vector3 lsNear = lightSpace * nearPt;
301
302        // the start point has the x and y coordinate of e, the z coord of the near plane of the light volume
303        const Vector3 startPt = Vector3(lsNear.x, lsNear.y, bounds_ls.Max().z);
304       
305        // the new projection center
306        const Vector3 projCenter = startPt + Vector3::UNIT_Z() * n;
307
308        //construct a translation that moves to the projection center
309        const Matrix4x4 projectionCenter = TranslationMatrix(-projCenter);
310
311        // light space y size
312        const float d = fabs(bounds_ls.Max()[2] - bounds_ls.Min()[2]);
313
314        const float dy = fabs(bounds_ls.Max()[1] - bounds_ls.Min()[1]);
315        const float dx = fabs(bounds_ls.Max()[0] - bounds_ls.Min()[0]);
316
317       
318
319        //////////
320        //-- now apply these values to construct the perspective lispsm matrix
321
322        Matrix4x4 matLispSM;
323       
324        matLispSM = GetFrustum(-1.0, 1.0, -1.0, 1.0, n, n + d);
325
326        // translate to the projection center
327        matLispSM = projectionCenter * matLispSM;
328
329        // transform into OpenGL right handed system
330        Matrix4x4 refl = ScaleMatrix(1.0f, 1.0f, -1.0f);
331        matLispSM *= refl;
332       
333        return matLispSM;
334}
335
336#if 0
337Vector3 ShadowMap::GetNearCameraPointE(const VertexArray &pts) const
338{
339        float maxDist = -1e25f;
340        Vector3 nearest = Vector3::ZERO();
341
342        Matrix4x4 eyeView;
343        mCamera->GetModelViewMatrix(eyeView);
344
345        VertexArray newPts;
346        polyhedron->CollectVertices(newPts);
347       
348        //the LVS volume is always in front of the camera
349        VertexArray::const_iterator it, it_end = pts.end();     
350
351        for (it = pts.begin(); it != it_end; ++ it)
352        {
353                Vector3 pt = *it;
354                Vector3 ptE = eyeView * pt;
355               
356                if (ptE.z > 0) cerr <<"should not happen " << ptE.z << endl;
357                else
358                if (ptE.z > maxDist)
359                {
360                        cout << " d " << ptE.z;
361       
362                        maxDist = ptE.z;
363                        nearest = pt;
364                }
365        }
366
367        //      return Invert(eyeView) * nearest;
368        return nearest;
369}
370
371#else
372
373Vector3 ShadowMap::GetNearCameraPointE(const VertexArray &pts) const
374{
375        VertexArray newPts;
376        polyhedron->CollectVertices(newPts);
377
378        Vector3 nearest = Vector3::ZERO();
379        float minDist = 1e25f;
380
381        const Vector3 camPos = mCamera->GetPosition();
382
383        VertexArray::const_iterator it, it_end = newPts.end();
384
385        for (it = newPts.begin(); it != it_end; ++ it)
386        {
387                Vector3 pt = *it;
388
389                const float dist = SqrDistance(pt, camPos);
390
391                if (dist < minDist)
392                {
393                        minDist = dist;
394                        nearest = pt;
395                }
396        }
397
398        return nearest;
399}
400
401#endif
402
403Vector3 ShadowMap::GetProjViewDir(const Matrix4x4 &lightSpace,
404                                                                  const VertexArray &pts) const
405{
406        //get the point in the LVS volume that is nearest to the camera
407        const Vector3 e = GetNearCameraPointE(pts);
408
409        //construct edge to transform into light-space
410        const Vector3 b = e + mCamera->GetDirection();
411        //transform to light-space
412        const Vector3 e_lp = lightSpace * e;
413        const Vector3 b_lp = lightSpace * b;
414
415        Vector3 projDir(b_lp - e_lp);
416
417        //project the view direction into the shadow map plane
418        projDir.y = .0f;
419
420        return Normalize(projDir);
421}
422
423
424bool ShadowMap::CalcLightProjection(Matrix4x4 &lightProj)
425{
426        ///////////////////
427        //-- First step: calc frustum clipped by scene box
428
429        DEL_PTR(polyhedron);
430        polyhedron = CalcClippedFrustum(mSceneBox);
431
432        if (!polyhedron) return false; // something is wrong
433
434        // include the part of the light volume that "sees" the frustum
435        // we only require frustum vertices
436
437        VertexArray frustumPoints;
438        IncludeLightVolume(*polyhedron, frustumPoints, mLight->GetDirection(), mSceneBox);
439
440
441        ///////////////
442        //-- transform points from world view to light view and calculate extremal points
443
444        Matrix4x4 lightView;
445        mShadowCam->GetModelViewMatrix(lightView);
446
447        const AxisAlignedBox3 extremalPoints = GetExtremalPoints(lightView, frustumPoints);
448
449        // we use directional lights, so the projection can be set to identity
450        lightProj = IdentityMatrix();
451
452        // switch coordinate system to that used in the lispsm algorithm for calculations
453        Matrix4x4 transform2LispSM = ZeroMatrix();
454
455        transform2LispSM.x[0][0] =  1.0f;
456        transform2LispSM.x[1][2] =  -1.0f; // y => -z
457        transform2LispSM.x[2][1] =  1.0f; // z => y
458        transform2LispSM.x[3][3] =  1.0f;
459
460
461        //switch to the lightspace used in the article
462        lightProj *= transform2LispSM;
463
464        const Vector3 projViewDir = GetProjViewDir(lightView * lightProj, frustumPoints);
465
466        //do DirectionalLight Space Perspective shadow mapping
467        //rotate the lightspace so that the projected light view always points upwards
468        //calculate a frame matrix that uses the projViewDir[lightspace] as up vector
469        //look(from position, into the direction of the projected direction, with unchanged up-vector)
470        //const Matrix4x4 frame = MyLookAt2(Vector3::ZERO(), projViewDir, Vector3::UNIT_Y());
471        const Matrix4x4 frame = LookAt(Vector3::ZERO(), projViewDir, Vector3::UNIT_Y());
472
473        lightProj *= frame;
474
475        const Matrix4x4 matLispSM =
476                CalcLispSMTransform(lightView * lightProj, extremalPoints, frustumPoints);
477
478        lightProj *= matLispSM;
479
480        // change back to GL coordinate system
481        Matrix4x4 transformToGL = ZeroMatrix();
482       
483        transformToGL.x[0][0] =   1.0f;
484        transformToGL.x[1][2] =   1.0f; // z => y
485        transformToGL.x[2][1] =  -1.0f; // y => -z
486        transformToGL.x[3][3] =   1.0f;
487
488        lightProj *= transformToGL;
489
490        AxisAlignedBox3 lightPts = GetExtremalPoints(lightView * lightProj, frustumPoints);
491
492        // focus projection matrix on the extremal points => scale to unit cube
493        Matrix4x4 scaleTranslate = GetFittingProjectionMatrix(lightPts);
494
495        lightProj = lightProj * scaleTranslate;
496
497        Matrix4x4 mymat = lightView * lightProj;
498
499        AxisAlignedBox3 lightPtsNew = GetExtremalPoints(mymat, frustumPoints);
500
501        // we have to flip the signs in order to tranform to opengl right handed system
502        Matrix4x4 refl = ScaleMatrix(1, 1, -1);
503        lightProj *= refl;
504       
505        return true;
506}
507
508
509Polyhedron *ShadowMap::CalcClippedFrustum(const AxisAlignedBox3 &box) const
510{
511        Polyhedron *p = mCamera->ComputeFrustum();
512       
513        Polyhedron *clippedPolyhedron = box.CalcIntersection(*p);
514        DEL_PTR(p);
515       
516        return clippedPolyhedron;
517}
518
519
520//calculates the up vector for the light coordinate frame
521static Vector3 CalcUpVec(const Vector3 viewDir, const Vector3 lightDir)
522{
523        //we do what gluLookAt does...
524        //left is the normalized vector perpendicular to lightDir and viewDir
525        //this means left is the normalvector of the yz-plane from the paper
526        Vector3 left = CrossProd(lightDir, viewDir);
527       
528        //we now can calculate the rotated(in the yz-plane) viewDir vector
529        //and use it as up vector in further transformations
530        Vector3 up = CrossProd(left, lightDir);
531
532        return Normalize(up);
533}
534
535
536void ShadowMap::GetTextureMatrix(Matrix4x4 &m) const
537{
538        m = mTextureMatrix;
539}
540
541 
542unsigned int ShadowMap::GetDepthTexture() const
543{
544        return mFbo->GetDepthTex();
545}
546
547unsigned int ShadowMap::GetShadowColorTexture() const
548{
549        return mFbo->GetColorBuffer(0)->GetTexture();
550       
551}
552
553
554void ShadowMap::IncludeLightVolume(const Polyhedron &polyhedron,
555                                                                   VertexArray &frustumPoints,
556                                                                   const Vector3 lightDir,
557                                                                   const AxisAlignedBox3 &sceneBox
558                                                                   )
559{
560        // we don't need closed form anymore => just store vertices
561        VertexArray vertices;
562        polyhedron.CollectVertices(vertices);
563
564        // we 'look' at each point and calculate intersections of rays with scene bounding box
565        VertexArray::const_iterator it, it_end = vertices.end();
566
567        for (it = vertices.begin(); it != it_end; ++ it)
568        {
569                Vector3 v  = *it;
570
571                frustumPoints.push_back(v);
572               
573                // hack: start at point which is guaranteed to be outside of box
574                v -= Magnitude(mSceneBox.Diagonal()) * lightDir;
575
576                SimpleRay ray(v, lightDir);
577
578                float tNear, tFar;
579
580                if (sceneBox.Intersects(ray, tNear, tFar))
581                {
582                        Vector3 newpt = ray.Extrap(tNear);
583                        frustumPoints.push_back(newpt);                 
584                }
585        }
586}
587
588
589void ShadowMap::ComputeShadowMap(RenderTraverser *renderer, const Matrix4x4 &projView)
590{
591        mFbo->Bind();
592       
593        glDrawBuffers(1, mrt);
594
595        glPushAttrib(GL_VIEWPORT_BIT);
596        glViewport(0, 0, mSize, mSize);
597
598        glDisable(GL_LIGHTING);
599        glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
600
601        glShadeModel(GL_FLAT);
602
603
604        /////////////
605        //-- render scene into shadow map
606
607        _Render(renderer);
608
609
610        //////////////
611        //-- compute texture matrix
612
613        static Matrix4x4 biasMatrix(0.5f, 0.0f, 0.0f, 0.5f,
614                                                                0.0f, 0.5f, 0.0f, 0.5f,
615                                                                0.0f, 0.0f, 0.5f, 0.5f,
616                                                                0.0f, 0.0f, 0.0f, 1.0f);
617
618        mTextureMatrix = mLightProjView * biasMatrix;
619
620        glPopAttrib();
621       
622        glShadeModel(GL_SMOOTH);
623        glEnable(GL_LIGHTING);
624        glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
625
626#if 0
627        float *data = new float[mSize * mSize];
628
629        GrabDepthBuffer(data, mFbo->GetDepthTex());
630        ExportDepthBuffer(data, mSize);
631
632        delete [] data;
633       
634        PrintGLerror("shadow map");
635#endif
636       
637        FrameBufferObject::Release();
638}
639
640
641void ShadowMap::RenderShadowView(RenderTraverser *renderer, const Matrix4x4 &projView)
642{
643        glEnable(GL_LIGHTING);
644       
645        _Render(renderer);
646       
647        /*glDisable(GL_LIGHTING);
648        glDisable(GL_DEPTH_TEST);
649
650        Polyhedron *hpoly = CreatePolyhedron(projView, mSceneBox);
651        DrawPoly(hpoly, Vector3(1, 1, 1));
652        DEL_PTR(hpoly);
653
654        glEnable(GL_LIGHTING);
655        glEnable(GL_DEPTH_TEST);*/
656
657        glDisable(GL_POLYGON_OFFSET_FILL);
658}
659
660
661void ShadowMap::_Render(RenderTraverser *renderer)
662{
663        const Vector3 dir = mLight->GetDirection();
664
665        mShadowCam->SetDirection(dir);
666
667        // set position so that we can see the whole scene
668        Vector3 pos = mSceneBox.Center();
669        pos -= dir * Magnitude(mSceneBox.Diagonal() * 0.5f);
670
671        mShadowCam->SetPosition(mCamera->GetPosition());
672
673        Vector3 upVec = CalcUpVec(mCamera->GetDirection(), dir);
674        Matrix4x4 lightView = LookAt(mShadowCam->GetPosition(), dir, upVec);
675
676        mShadowCam->mViewOrientation = lightView;
677
678        glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
679
680        glPolygonOffset(5.0f, 100.0f);
681        glEnable(GL_POLYGON_OFFSET_FILL);
682       
683        Matrix4x4 lightProj;
684        CalcLightProjection(lightProj);
685
686        glMatrixMode(GL_PROJECTION);
687        glPushMatrix();
688        glLoadMatrixf((float *)lightProj.x);
689
690        mLightProjView = lightView * lightProj;
691
692        DEL_PTR(lightPoly);
693        lightPoly = CreatePolyhedron(mLightProjView, mSceneBox);
694
695        glMatrixMode(GL_MODELVIEW);
696        glPushMatrix();
697       
698        mShadowCam->SetupCameraView();
699
700       
701        /////////////
702        //-- render scene into shadow map
703
704        renderer->RenderScene();
705
706
707        glMatrixMode(GL_PROJECTION);
708        glPopMatrix();
709
710        glMatrixMode(GL_MODELVIEW);
711        glPopMatrix();
712
713        glDisable(GL_POLYGON_OFFSET_FILL);
714}
715} // namespace
Note: See TracBrowser for help on using the repository browser.