TDME2 1.9.121
Light.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
11#include <tdme/math/Math.h>
12#include <tdme/math/Vector3.h>
13#include <tdme/math/Vector4.h>
15
16using std::to_string;
17
25
26/**
27 * Light representation
28 * @author Andreas Drewke
29 * @version $Id$
30 */
32{
33private:
34 int32_t id;
35 bool enabled;
50 Renderer* renderer { nullptr };
51public:
52 /**
53 * Public default constructor
54 */
55 Light();
56
57 /**
58 * Public default constructor
59 * @param renderer renderer
60 * @param id id
61 */
62 Light(Renderer* renderer, int32_t id);
63
64 /**
65 * @return light id
66 */
67 inline int32_t getId() const {
68 return id;
69 }
70
71 /**
72 * @return enabled
73 */
74 inline bool isEnabled() const {
75 return enabled;
76 }
77
78 /**
79 * Set enabled
80 * @param enabled enabled
81 */
82 inline void setEnabled(bool enabled) {
83 this->enabled = enabled;
84 }
85
86 /**
87 * @return ambient light component
88 */
89 inline const Color4& getAmbient() const {
90 return ambient;
91 }
92
93 /**
94 * Set ambient light component
95 * @param ambient ambient light component
96 */
97 inline void setAmbient(const Color4& ambient) {
98 this->ambient = ambient;
99 }
100
101 /**
102 * @return diffuse light component
103 */
104 inline const Color4& getDiffuse() const {
105 return diffuse;
106 }
107
108 /**
109 * Set diffuse light component
110 * @param diffuse diffuse light
111 */
112 inline void setDiffuse(const Color4& diffuse) {
113 this->diffuse = diffuse;
114 }
115
116 /**
117 * @return specular light component
118 */
119 inline const Color4& getSpecular() const {
120 return specular;
121 }
122
123 /**
124 * Set specular light component
125 * @param specular specular light
126 */
127 inline void setSpecular(const Color4& specular) {
128 this->specular = specular;
129 }
130
131 /**
132 * @return position of light
133 */
134 inline const Vector4& getPosition() const {
135 return position;
136 }
137
138 /**
139 * Set light position
140 * @param position position of light
141 */
142 inline void setPosition(const Vector4& position) {
143 this->position = position;
144 }
145
146 /**
147 * @return spot direction
148 */
149 inline const Vector3& getSpotDirection() const {
150 return spotDirection;
151 }
152
153 /**
154 * Set spot direction
155 * @param spotDirection spot direction
156 */
158 this->spotDirection = spotDirection;
159 }
160
161 /**
162 * @return spot exponent
163 */
164 inline float getSpotExponent() const {
165 return spotExponent;
166 }
167
168 /**
169 * Set up spot exponent
170 * @param spotExponent spot exponent
171 */
172 inline void setSpotExponent(float spotExponent) {
173 this->spotExponent = spotExponent;
174 }
175
176 /**
177 * @return spot cutoff
178 */
179 inline float getSpotCutOff() const {
180 return spotCutOff;
181 }
182
183 /**
184 * Set spot cut off
185 * @param spotCutOff spot cut off
186 */
187 inline void setSpotCutOff(float spotCutOff) {
188 this->spotCutOff = spotCutOff;
189 }
190
191 /**
192 * @return constant attenuation
193 */
194 inline float getConstantAttenuation() const {
195 return constantAttenuation;
196 }
197
198 /**
199 * Set up constant attenuation
200 * @param constantAttenuation constant attenuation
201 */
203 this->constantAttenuation = constantAttenuation;
204 }
205
206 /**
207 * @return linear attenuation
208 */
209 inline float getLinearAttenuation() const {
210 return linearAttenuation;
211 }
212
213 /**
214 * Set up linear attenuation
215 * @param linearAttenuation linear attenuation
216 */
218 this->linearAttenuation = linearAttenuation;
219 }
220
221 /**
222 * @return quadratic attenuation
223 */
224 inline float getQuadraticAttenuation() const {
226 }
227
228 /**
229 * Set up quadratic attenuation
230 * @param quadraticAttenuation quadraticAttenuation
231 */
233 this->quadraticAttenuation = quadraticAttenuation;
234 }
235
236 /**
237 * @return radius
238 */
239 inline float getRadius() {
240 // see: https://learnopengl.com/Advanced-Lighting/Deferred-Shading
241 float ambientLightMax = Math::max(Math::max(ambient.getRed(), ambient.getGreen()), ambient.getBlue());
242 if (ambientLightMax > Math::EPSILON) return 0.0f;
243 auto diffuseLightMax = Math::max(Math::max(diffuse.getRed(), diffuse.getGreen()), diffuse.getBlue());
244 if (diffuseLightMax < Math::EPSILON) return 0.0f;
245 if (linearAttenuation > Math::EPSILON || quadraticAttenuation > Math::EPSILON)
246 return (-linearAttenuation + Math::sqrt(linearAttenuation * linearAttenuation - 4.0f * quadraticAttenuation * (constantAttenuation - (256.0f / 5.0f) * diffuseLightMax))) / (quadraticAttenuation < Math::EPSILON?1.0f:2.0f * quadraticAttenuation);
247 return 0.0f;
248 }
249
250 /**
251 * Returns if rendering light source is enabled
252 * @return rendering light source is enabled
253 */
254 inline bool isRenderSource() const {
255 return renderSource;
256 }
257
258 /**
259 * Set rendering light source enabled/disabled
260 * @param renderLightSource render light source enabled
261 */
262 inline void setRenderSource(bool renderSource) {
263 this->renderSource = renderSource;
264 }
265
266 /**
267 * Returns light source size
268 * @return light source size (moon, sun)
269 */
270 inline float getSourceSize() const {
271 return sourceSize;
272 }
273
274 /**
275 * Set light source size (moon, sun)
276 * @param lightSourceSize light source size
277 */
278 inline void setLightSourceSize(float sourceSize) {
279 this->sourceSize = sourceSize;
280 }
281
282 /**
283 * Returns light source texture
284 * @return light source texture
285 */
286 inline Texture* getSourceTexture() const {
287 return lightSourceTexture;
288 }
289
290 /**
291 * Returns light source texture
292 * @return light source texture
293 */
294 void setSourceTexture(Texture* texture);
295
296 /**
297 * Returns light source texture id
298 * @return light source texture id
299 */
300 inline int32_t getSourceTextureId() const {
302 }
303
304 /**
305 * Returns if light is directional light like sun, moon lights
306 * @return directional light like sun, moon lights
307 */
308 inline bool isDirectional() const {
309 return position.getW() < Math::EPSILON;
310 }
311
312 /**
313 * Dispose
314 */
315 void dispose();
316
317 /**
318 * Update light
319 * @param contextIdx context index
320 */
321 void update(int contextIdx);
322
323
324};
Light representation.
Definition: Light.h:32
const Color4 & getAmbient() const
Definition: Light.h:89
float getQuadraticAttenuation() const
Definition: Light.h:224
bool renderSource
Definition: Light.h:46
int32_t id
Definition: Light.h:34
float getSpotExponent() const
Definition: Light.h:164
void setEnabled(bool enabled)
Set enabled.
Definition: Light.h:82
void setSpecular(const Color4 &specular)
Set specular light component.
Definition: Light.h:127
void setConstantAttenuation(float constantAttenuation)
Set up constant attenuation.
Definition: Light.h:202
void setLightSourceSize(float sourceSize)
Set light source size (moon, sun)
Definition: Light.h:278
const Color4 & getSpecular() const
Definition: Light.h:119
void setSpotDirection(const Vector3 &spotDirection)
Set spot direction.
Definition: Light.h:157
float getRadius()
Definition: Light.h:239
float getSpotCutOff() const
Definition: Light.h:179
float sourceSize
Definition: Light.h:47
Color4 diffuse
Definition: Light.h:37
Vector4 position
Definition: Light.h:39
void setAmbient(const Color4 &ambient)
Set ambient light component.
Definition: Light.h:97
Light()
Public default constructor.
Definition: Light.cpp:23
float getLinearAttenuation() const
Definition: Light.h:209
bool isDirectional() const
Returns if light is directional light like sun, moon lights.
Definition: Light.h:308
void setQuadraticAttenuation(float quadraticAttenuation)
Set up quadratic attenuation.
Definition: Light.h:232
void setSpotCutOff(float spotCutOff)
Set spot cut off.
Definition: Light.h:187
float constantAttenuation
Definition: Light.h:43
const Vector3 & getSpotDirection() const
Definition: Light.h:149
void update(int contextIdx)
Update light.
Definition: Light.cpp:74
bool isEnabled() const
Definition: Light.h:74
float quadraticAttenuation
Definition: Light.h:45
void setPosition(const Vector4 &position)
Set light position.
Definition: Light.h:142
const Color4 & getDiffuse() const
Definition: Light.h:104
void setRenderSource(bool renderSource)
Set rendering light source enabled/disabled.
Definition: Light.h:262
void dispose()
Dispose.
Definition: Light.cpp:70
void setSourceTexture(Texture *texture)
Returns light source texture.
Definition: Light.cpp:63
int32_t getSourceTextureId() const
Returns light source texture id.
Definition: Light.h:300
float spotCutOff
Definition: Light.h:42
void setDiffuse(const Color4 &diffuse)
Set diffuse light component.
Definition: Light.h:112
Color4 ambient
Definition: Light.h:36
float getSourceSize() const
Returns light source size.
Definition: Light.h:270
int32_t getId() const
Definition: Light.h:67
int32_t lightSourceTextureId
Definition: Light.h:49
void setLinearAttenuation(float linearAttenuation)
Set up linear attenuation.
Definition: Light.h:217
bool isRenderSource() const
Returns if rendering light source is enabled.
Definition: Light.h:254
Texture * getSourceTexture() const
Returns light source texture.
Definition: Light.h:286
void setSpotExponent(float spotExponent)
Set up spot exponent.
Definition: Light.h:172
Color4 specular
Definition: Light.h:38
float getConstantAttenuation() const
Definition: Light.h:194
Renderer * renderer
Definition: Light.h:50
float spotExponent
Definition: Light.h:41
const Vector4 & getPosition() const
Definition: Light.h:134
float linearAttenuation
Definition: Light.h:44
Texture * lightSourceTexture
Definition: Light.h:48
Vector3 spotDirection
Definition: Light.h:40
Color 4 definition.
Definition: Color4.h:20
Standard math functions.
Definition: Math.h:21
3D vector 3 class
Definition: Vector3.h:22
3D vector 4 class
Definition: Vector4.h:19
float getW() const
Definition: Vector4.h:183
Console class.
Definition: Console.h:26