TDME2 1.9.121
Light.cpp
Go to the documentation of this file.
1#include <tdme/engine/Light.h>
2
3#include <tdme/tdme.h>
10#include <tdme/math/Vector3.h>
11#include <tdme/math/Vector4.h>
12
22
23Light::Light()
24{
25 this->renderer = nullptr;
26 this->id = -1;
27 enabled = false;
28 ambient.set(0.0f, 0.0f, 0.0f, 1.0f);
29 diffuse.set(1.0f, 1.0f, 1.0f, 1.0f);
30 specular.set(1.0f, 1.0f, 1.0f, 1.0f);
31 position.set(0.0f, 0.0f, 0.0f, 0.0f);
32 spotDirection.set(0.0f, 0.0f, -1.0f);
33 spotExponent = 0.0f;
34 spotCutOff = 180.0f;
36 linearAttenuation = 0.0f;
38 renderSource = false;
39 sourceSize = 0.25f;
41}
42
43Light::Light(Renderer* renderer, int32_t id)
44{
45 this->renderer = renderer;
46 this->id = id;
47 enabled = false;
48 ambient.set(0.0f, 0.0f, 0.0f, 1.0f);
49 diffuse.set(1.0f, 1.0f, 1.0f, 1.0f);
50 specular.set(1.0f, 1.0f, 1.0f, 1.0f);
51 position.set(0.0f, 0.0f, 0.0f, 0.0f);
52 spotDirection.set(0.0f, 0.0f, -1.0f);
53 spotExponent = 0.0f;
54 spotCutOff = 180.0f;
56 linearAttenuation = 0.0f;
58 renderSource = false;
59 sourceSize = 0.25f;
61}
62
64 if (lightSourceTexture == texture) return;
66 lightSourceTexture = texture;
68}
69
72}
73
74void Light::update(int contextIdx) {
75 if (enabled == true) {
76 Vector4 lightPositionTransformed;
77 Vector4 spotDirection4;
78 Vector4 spotDirection4Transformed;
79 auto& light = renderer->getLight(contextIdx, id);
80 light.enabled = 1;
81 light.ambient = ambient.getArray();
82 light.diffuse = diffuse.getArray();
83 light.position = position.getArray();
84 light.spotDirection = spotDirection.getArray();
85 light.spotExponent = spotExponent;
86 light.spotCosCutoff = static_cast<float>(Math::cos(Math::PI / 180.0f * spotCutOff));
87 light.constantAttenuation = constantAttenuation;
88 light.linearAttenuation = linearAttenuation;
89 light.quadraticAttenuation = quadraticAttenuation;
90 light.radius = getRadius();
91 renderer->onUpdateLight(contextIdx, id);
92 } else {
93 auto& light = renderer->getLight(contextIdx, id);
94 light.enabled = 0;
95 renderer->onUpdateLight(contextIdx, id);
96 }
97}
Engine main class.
Definition: Engine.h:122
static TextureManager * getTextureManager()
Definition: Engine.h:564
static Engine * getInstance()
Returns engine instance.
Definition: Engine.h:554
Light representation.
Definition: Light.h:32
bool renderSource
Definition: Light.h:46
int32_t id
Definition: Light.h:34
float getRadius()
Definition: Light.h:239
float sourceSize
Definition: Light.h:47
Color4 diffuse
Definition: Light.h:37
Vector4 position
Definition: Light.h:39
Light()
Public default constructor.
Definition: Light.cpp:23
float constantAttenuation
Definition: Light.h:43
void update(int contextIdx)
Update light.
Definition: Light.cpp:74
float quadraticAttenuation
Definition: Light.h:45
void dispose()
Dispose.
Definition: Light.cpp:70
void setSourceTexture(Texture *texture)
Returns light source texture.
Definition: Light.cpp:63
float spotCutOff
Definition: Light.h:42
Color4 ambient
Definition: Light.h:36
int32_t lightSourceTextureId
Definition: Light.h:49
Color4 specular
Definition: Light.h:38
Renderer * renderer
Definition: Light.h:50
float spotExponent
Definition: Light.h:41
float linearAttenuation
Definition: Light.h:44
Texture * lightSourceTexture
Definition: Light.h:48
Vector3 spotDirection
Definition: Light.h:40
array< float, 4 > & getArray() const
Definition: Color4Base.h:219
void set(const array< float, 4 > &color)
Set up color.
Definition: Color4Base.h:68
Color 4 definition.
Definition: Color4.h:20
TextureManager_TextureManaged * addTexture(const string &id, bool &created)
Adds a texture to manager.
virtual void onUpdateLight(int contextIdx, int32_t lightId)=0
Update light.
Renderer_Light & getLight(int contextIdx, int32_t lightIdx)
Get light.
Definition: Renderer.h:1099
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
array< float, 3 > & getArray() const
Definition: Vector3.h:171
3D vector 4 class
Definition: Vector4.h:19
array< float, 4 > & getArray() const
Definition: Vector4.h:407
Vector4 & set(float x, float y, float z, float w)
Set up vector.
Definition: Vector4.h:84
void releaseReference()
releases a reference, thus decrementing the counter and delete it if reference counter is zero
Definition: Reference.cpp:20