TDME2 1.9.121
LightingShaderImplementation.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4
5#include <tdme/tdme.h>
10#include <tdme/math/fwd-tdme.h>
11#include <tdme/math/Matrix4x4.h>
12
13using std::array;
14
19
20/**
21 * Lighting shader implementation interface
22 * @author Andreas Drewke
23 * @version $Id$
24 */
26{
27 /**
28 * Destructor
29 */
31
32 /**
33 * @return shader id
34 */
35 virtual const string getId() = 0;
36
37 /**
38 * @return initialized and ready to be used
39 */
40 virtual bool isInitialized() = 0;
41
42 /**
43 * Initialize renderer
44 */
45 virtual void initialize() = 0;
46
47 /**
48 * Register shader
49 */
50 virtual void registerShader() = 0;
51
52 /**
53 * Use lighting program
54 * @param engine engine
55 * @param contextIdx context index
56 */
57 virtual void useProgram(Engine* engine, int contextIdx) = 0;
58
59 /**
60 * Unuse lighting program
61 * @param contextIdx context index
62 */
63 virtual void unUseProgram(int contextIdx) = 0;
64
65 /**
66 * Update effect to program
67 * @param renderer renderer
68 * @param contextIdx context index
69 */
70 virtual void updateEffect(Renderer* renderer, int contextIdx) = 0;
71
72 /**
73 * Update material to program
74 * @param renderer renderer
75 * @param contextIdx context index
76 */
77 virtual void updateMaterial(Renderer* renderer, int contextIdx) = 0;
78
79 /**
80 * Update light to program
81 * @param renderer renderer
82 * @param contextIdx context index
83 * @param lightId light id
84 */
85 virtual void updateLight(Renderer* renderer, int contextIdx, int32_t lightId) = 0;
86
87 /**
88 * Update matrices to program
89 * @param renderer renderer
90 * @param contextIdx context index
91 */
92 virtual void updateMatrices(Renderer* renderer, int contextIdx) = 0;
93
94 /**
95 * Update texture matrix to program
96 * @param renderer renderer
97 * @param contextIdx context index
98 */
99 virtual void updateTextureMatrix(Renderer* renderer, int contextIdx) = 0;
100
101 /**
102 * Update shader parameters
103 * @param renderer renderer
104 * @param context
105 */
106 virtual void updateShaderParameters(Renderer* renderer, int contextIdx) = 0;
107
108 /**
109 * Bind texture
110 * @param renderer renderer
111 * @param contextIdx context index
112 * @param textureId texture id
113 */
114 virtual void bindTexture(Renderer* renderer, int contextIdx, int32_t textureId) = 0;
115
116};
Engine main class.
Definition: Engine.h:122
4x4 3D Matrix class
Definition: Matrix4x4.h:24
virtual void updateEffect(Renderer *renderer, int contextIdx)=0
Update effect to program.
virtual void updateTextureMatrix(Renderer *renderer, int contextIdx)=0
Update texture matrix to program.
virtual void unUseProgram(int contextIdx)=0
Unuse lighting program.
virtual void updateShaderParameters(Renderer *renderer, int contextIdx)=0
Update shader parameters.
virtual void updateLight(Renderer *renderer, int contextIdx, int32_t lightId)=0
Update light to program.
virtual void bindTexture(Renderer *renderer, int contextIdx, int32_t textureId)=0
Bind texture.
virtual void useProgram(Engine *engine, int contextIdx)=0
Use lighting program.
virtual void updateMaterial(Renderer *renderer, int contextIdx)=0
Update material to program.
virtual void updateMatrices(Renderer *renderer, int contextIdx)=0
Update matrices to program.