TDME2 1.9.121
ShadowMap.h
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
5#include <tdme/tdme.h>
10#include <tdme/math/Matrix4x4.h>
11#include <tdme/math/Vector3.h>
13
14using std::vector;
15
23
24/**
25 * Shadow map
26 * @author Andreas Drewke
27 * @version $Id$
28 */
30{
31 friend class ShadowMapping;
32
33private:
34 vector<Object3D*> visibleObjects;
36 Camera* lightCamera { nullptr };
40
41 /**
42 * Initialize shadow map
43 */
44 void initialize();
45
46 /**
47 * Reshape frame buffer
48 * @param width width
49 * @param height height
50 */
51 void reshape(int32_t width, int32_t height);
52
53 /**
54 * Disposes this shadow map
55 */
56 void dispose();
57
58 /**
59 * Binds frame buffer depth texture
60 * @param contextIdx context index
61 */
62 void bindDepthBufferTexture(int contextIdx);
63
64 /**
65 * @return light camera
66 */
68
69 /**
70 * Create shadow map
71 * @param light light
72 */
73 void createShadowMap(Light* light);
74
75 /**
76 * Computes shadow texture matrix and stores it
77 */
79
80 /**
81 * Set up shadow texture matrix computed and stored before
82 * @param contextIdx context index
83 */
84 void updateDepthBiasMVPMatrix(int contextIdx);
85
86public:
87 static constexpr int32_t TEXTUREUNIT { 9 };
88
89 /**
90 * Public constructor
91 * @param shadowMapping shadow mapping
92 * @param width width
93 * @param height height
94 */
95 ShadowMap(ShadowMapping* shadowMapping, int32_t width, int32_t height);
96
97 /**
98 * Destructor
99 */
100 ~ShadowMap();
101
102 /**
103 * @return width
104 */
105 inline int32_t getWidth() {
106 return frameBuffer->getWidth();
107 }
108
109 /**
110 * @return height
111 */
112 inline int32_t getHeight() {
113 return frameBuffer->getWidth();
114 }
115
116 /**
117 * @return frame buffer
118 */
120 return frameBuffer;
121 }
122
123};
Frame buffer class.
Definition: FrameBuffer.h:21
Light representation.
Definition: Light.h:32
Object 3D to be used with engine class.
Definition: Object3D.h:60
void reshape(int32_t width, int32_t height)
Reshape frame buffer.
Definition: ShadowMap.cpp:88
void updateDepthBiasMVPMatrix(int contextIdx)
Set up shadow texture matrix computed and stored before.
Definition: ShadowMap.cpp:320
ShadowMap(ShadowMapping *shadowMapping, int32_t width, int32_t height)
Public constructor.
Definition: ShadowMap.cpp:54
void dispose()
Disposes this shadow map.
Definition: ShadowMap.cpp:92
void computeDepthBiasMVPMatrix()
Computes shadow texture matrix and stores it.
Definition: ShadowMap.cpp:311
void createShadowMap(Light *light)
Create shadow map.
Definition: ShadowMap.cpp:107
void bindDepthBufferTexture(int contextIdx)
Binds frame buffer depth texture.
Definition: ShadowMap.cpp:97
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22