TDME2 1.9.121
LightingShader.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
12using std::string;
13using std::unordered_map;
14using std::vector;
15
19
20/**
21 * Interface to lighting shader program
22 * @author Andreas Drewke
23 * @version $Id$
24 */
26{
27private:
30 };
31 unordered_map<string, LightingShaderImplementation*> shader;
32 Renderer* renderer { nullptr };
33 Engine* engine { nullptr };
34 bool running { false };
35 vector<LightingShaderContext> contexts;
36
37public:
38 /**
39 * Public constructor
40 * @param renderer renderer
41 */
43
44 /**
45 * Destructor
46 */
48
49 /**
50 * @return initialized and ready to be used
51 */
52 bool isInitialized();
53
54 /**
55 * Initialize renderer
56 */
57 void initialize();
58
59 /**
60 * Use lighting program
61 * @param engine engine
62 */
64
65 /**
66 * Unuse lighting program
67 */
68 void unUseProgram();
69
70 /**
71 * Update effect to program
72 * @param contextIdx context index
73 */
74 void updateEffect(int contextIdx);
75
76 /**
77 * Update material to program
78 * @param contextIdx context index
79 */
80 void updateMaterial(int contextIdx);
81
82 /**
83 * Update light to program
84 * @param contextIdx context index
85 * @param lightId light id
86 */
87 void updateLight(int contextIdx, int32_t lightId);
88
89 /**
90 * Update matrices to program
91 * @param contextIdx context index
92 */
93 void updateMatrices(int contextIdx);
94
95 /**
96 * Update texture matrix to program
97 * @param contextIdx context index
98 */
99 void updateTextureMatrix(int contextIdx);
100
101 /**
102 * Update shader parameters
103 * @param context
104 */
105 void updateShaderParameters(int contextIdx);
106
107 /**
108 * Set shader
109 * @param contextIdx context index
110 * @param id id
111 */
112 void setShader(int contextIdx, const string& id);
113
114 /**
115 * Bind texture
116 * @param contextIdx context index
117 * @param textureId texture id
118 */
119 void bindTexture(int contextIdx, int32_t textureId);
120
121 /**
122 * Returns if shader with given shader id does exist
123 * @param shaderId shader id
124 * @return if shader exists
125 */
126 bool hasShader(const string& shaderId) {
127 return shader.find(shaderId) != shader.end();
128 }
129
130};
Engine main class.
Definition: Engine.h:122
Interface to lighting shader program.
void updateLight(int contextIdx, int32_t lightId)
Update light to program.
void updateMatrices(int contextIdx)
Update matrices to program.
void updateEffect(int contextIdx)
Update effect to program.
bool hasShader(const string &shaderId)
Returns if shader with given shader id does exist.
void useProgram(Engine *engine)
Use lighting program.
void setShader(int contextIdx, const string &id)
Set shader.
void updateTextureMatrix(int contextIdx)
Update texture matrix to program.
void updateShaderParameters(int contextIdx)
Update shader parameters.
unordered_map< string, LightingShaderImplementation * > shader
LightingShader(Renderer *renderer)
Public constructor.
void updateMaterial(int contextIdx)
Update material to program.
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.