TDME2 1.9.121
ShadowMapCreationShader.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 create a shadow map
24 * @author Andreas Drewke
25 * @version $Id$
26 */
28{
29private:
32 };
33 unordered_map<string, ShadowMapCreationShaderImplementation*> shader;
34 bool running { false };
35 Engine* engine { nullptr };
36 Renderer* renderer { nullptr };
37 vector<ShadowMapCreationShaderContext> contexts;
38
39public:
40 /**
41 * Constructor
42 * @param renderer renderer
43 */
45
46 /**
47 * Destructor
48 */
50
51 /**
52 * @return if initialized and ready to use
53 */
54 bool isInitialized();
55
56 /**
57 * Init shadow map creation shader program
58 */
59 void initialize();
60
61 /**
62 * Use shadow map creation shader program
63 * @param engine engine
64 */
66
67 /**
68 * Unuse shadow map creation shader program
69 */
70 void unUseProgram();
71
72 /**
73 * Set up matrices
74 * @param contextIdx context index
75 */
76 void updateMatrices(int contextIdx);
77
78 /**
79 * Set up texture matrix
80 * @param contextIdx context index
81 */
82 void updateTextureMatrix(int contextIdx);
83
84 /**
85 * Update material
86 * @param contextIdx context index
87 */
88 void updateMaterial(int contextIdx);
89
90 /**
91 * Update shader parameters
92 * @param context
93 */
94 void updateShaderParameters(int contextIdx);
95
96 /**
97 * Bind texture
98 * @param contextIdx context index
99 * @param textureId texture id
100 */
101 void bindTexture(int contextIdx, int32_t textureId);
102
103 /**
104 * Set shader
105 * @param context
106 * @param id shader id
107 */
108 void setShader(int contextIdx, const string& id);
109
110};
Engine main class.
Definition: Engine.h:122
void useProgram(Engine *engine)
Use shadow map creation shader program.
void setShader(int contextIdx, const string &id)
Set shader.
void updateShaderParameters(int contextIdx)
Update shader parameters.
unordered_map< string, ShadowMapCreationShaderImplementation * > shader
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
void unUseProgram()
Unuse shadow map creation shader program.
4x4 3D Matrix class
Definition: Matrix4x4.h:24