TDME2 1.9.121
ShadowMapRenderShader.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <unordered_map>
5#include <vector>
6
7#include <tdme/tdme.h>
11#include <tdme/math/Matrix4x4.h>
12
13using std::string;
14using std::unordered_map;
15using std::vector;
16
21
22/**
23 * Shadow mapping shader to render shadow maps
24 * @author Andreas Drewke
25 * @version $Id$
26 */
28{
29private:
32 };
33 unordered_map<string, ShadowMapRenderShaderImplementation*> shader;
34 bool running { false };
36 Engine* engine { nullptr };
37 Renderer* renderer { nullptr };
38 vector<ShadowMapRenderShaderContext> contexts;
39 int32_t lightId { -1 };
40
41public:
42 /**
43 * Public constructor
44 * @param renderer renderer
45 */
47
48 /**
49 * Destructor
50 */
52
53 /**
54 * @return if initialized and ready to use
55 */
56 bool isInitialized();
57
58 /**
59 * Initialize shadow map render shader program
60 */
61 void initialize();
62
63 /**
64 * Use shadow map render shader program
65 * @param engine engine
66 */
68
69 /**
70 * Unuse shadow map render shader program
71 */
72 void unUseProgram();
73
74 /**
75 * Update matrices
76 * @param contextIdx context index
77 */
78 void updateMatrices(int contextIdx);
79
80 /**
81 * Update up texture matrix
82 * @param contextIdx context index
83 */
84 void updateTextureMatrix(int contextIdx);
85
86 /**
87 * Update material
88 * @param contextIdx context index
89 */
90 void updateMaterial(int contextIdx);
91
92 /**
93 * Update light
94 * @param contextIdx context index
95 * @param lightId light id
96 */
97 void updateLight(int contextIdx, int32_t lightId);
98
99 /**
100 * Update shader parameters
101 * @param context
102 */
103 void updateShaderParameters(int contextIdx);
104
105 /**
106 * Bind texture
107 * @param contextIdx context index
108 * @param textureId texture id
109 */
110 void bindTexture(int contextIdx, int32_t textureId);
111
112 /**
113 * Set up program depth bias mvp matrix
114 * @param contextIdx context index
115 * @param depthBiasMVPMatrix depth bias mvp matrix
116 */
117 void setDepthBiasMVPMatrix(int contextIdx, const Matrix4x4& depthBiasMVPMatrix);
118
119 /**
120 * Set light id
121 * @param lightId light id to render
122 */
123 void setRenderLightId(int32_t lightId);
124
125 /**
126 * Set shader
127 * @param id id
128 */
129 void setShader(int contextIdx, const string& id);
130
131};
Engine main class.
Definition: Engine.h:122
void initialize()
Initialize shadow map render shader program.
void updateLight(int contextIdx, int32_t lightId)
Update light.
void setDepthBiasMVPMatrix(int contextIdx, const Matrix4x4 &depthBiasMVPMatrix)
Set up program depth bias mvp matrix.
void useProgram(Engine *engine)
Use shadow map render shader program.
void setShader(int contextIdx, const string &id)
Set shader.
void updateTextureMatrix(int contextIdx)
Update up texture matrix.
void updateShaderParameters(int contextIdx)
Update shader parameters.
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
void unUseProgram()
Unuse shadow map render shader program.
unordered_map< string, ShadowMapRenderShaderImplementation * > shader
4x4 3D Matrix class
Definition: Matrix4x4.h:24