54ShadowMap::ShadowMap(
ShadowMapping* shadowMapping, int32_t width, int32_t height)
62 0.5f, 0.0f, 0.0f, 0.0f,
63 0.0f, -0.5f, 0.0f, 0.0f,
64 0.0f, 0.0f, 0.5f, 0.0f,
65 0.5f, 0.5f, 0.5f, 1.0f
69 0.5f, 0.0f, 0.0f, 0.0f,
70 0.0f, 0.5f, 0.0f, 0.0f,
71 0.0f, 0.0f, 0.5f, 0.0f,
72 0.5f, 0.5f, 0.5f, 1.0f
122 auto left = camera->getModelViewProjectionInvertedMatrix().multiply(
124 (2.0f * 0.0f) - 1.0f,
125 1.0f - (2.0f * 0.5f),
126 2.0f * 0.997f - 1.0f,
130 left.
scale(1.0f / left.getW());
133 auto right = camera->getModelViewProjectionInvertedMatrix().multiply(
135 (2.0f * 1.0f) - 1.0f,
136 1.0f - (2.0f * 0.5f),
137 2.0f * 0.997f - 1.0f,
141 right.
scale(1.0f / right.getW());
144 auto center4 = camera->getModelViewProjectionInvertedMatrix().multiply(
146 (2.0f * 0.5f) - 1.0f,
147 1.0f - (2.0f * 1.0f),
152 center4.
scale(1.0f / center4.getW());
155 Vector3 center(
Vector3(center4.getX(), center4.getY(), center4.getZ()));
160 auto lightLookFrom = center.
clone().
sub(lightDirection.clone().scale(width * 0.5f));
172 lightPosition.
scale(1.0f / lightPosition.getW());
173 auto lightPosition3 =
Vector3(lightPosition.getX(), lightPosition.getY(), lightPosition.getZ());
197 switch (entity->getEntityType()) {
202 if (orgEntity !=
nullptr) {
203 if (orgEntity->isContributesShadows() ==
false)
continue;
204 switch(orgEntity->getEntityType()) {
207 auto object =
static_cast<Object3D*
>(orgEntity);
213 auto lodObject =
static_cast<LODObject3D*
>(orgEntity);
214 if (lodObject->isContributesShadows() ==
false)
continue;
216 if (
object !=
nullptr) {
229 auto object =
static_cast<Object3D*
>(entity);
230 if (object->isContributesShadows() ==
false)
continue;
236 auto lodObject =
static_cast<LODObject3D*
>(entity);
237 if (lodObject->isContributesShadows() ==
false)
continue;
245 if (object->isContributesShadows() ==
false)
continue;
252 if (lodObjectImposter->isContributesShadows() ==
false)
continue;
260 if (opse->isContributesShadows() ==
false)
continue;
261 for (
auto object: opse->getEnabledObjects())
visibleObjects.push_back(
object);
267 for (
auto ps: psg->getParticleSystems()) {
270 if (opse->isContributesShadows() ==
false)
continue;
271 for (
auto object: opse->getEnabledObjects())
visibleObjects.push_back(
object);
278 if (eh->isContributesShadows() ==
false)
continue;
279 for (
auto entity: eh->getEntities()) {
281 auto object =
static_cast<Object3D*
>(entity);
282 if (object->isEnabled() ==
false)
continue;
305 EntityRenderer::RENDERTYPE_TEXTUREARRAYS_DIFFUSEMASKEDTRANSPARENCY |
306 EntityRenderer::RENDERTYPE_TEXTURES_DIFFUSEMASKEDTRANSPARENCY
void setFrustumMode(FrustumMode frustumMode)
Set frustum mode.
const Vector3 & getForwardVector() const
const Vector3 & getSideVector() const
void setSideVector(const Vector3 &sideVector)
Set side vector.
void update(int contextIdx, int32_t width, int32_t height)
Sets up camera while resizing the view port.
void setUpVector(const Vector3 &upVector)
Set up vector.
void setCameraMode(CameraMode cameraMode)
Set camera mode.
void setLookFrom(const Vector3 &lookFrom)
Set look from.
void setOrthographicFrustumScale(float orthographicFrustumScale)
Set orthographic frustum scale.
const Vector3 & getUpVector() const
void setForwardVector(const Vector3 &forwardVector)
Set forward vector.
void setZNear(float zNear)
Set z near.
@ FRUSTUMMODE_PERSPECTIVE
@ FRUSTUMMODE_ORTHOGRAPHIC
void setZFar(float zFar)
Set z far.
Partition * getPartition()
float getShadowMapLightEyeDistanceScale()
Entity hierarchy to be used with engine class.
static constexpr int RENDERPASS_MAX
@ ENTITYTYPE_LODOBJECT3DIMPOSTER
@ ENTITYTYPE_OBJECT3DRENDERGROUP
@ ENTITYTYPE_IMPOSTEROBJECT3D
@ ENTITYTYPE_OBJECTPARTICLESYSTEM
@ ENTITYTYPE_PARTICLESYSTEMGROUP
@ ENTITYTYPE_ENTITYHIERARCHY
void initialize()
Initialize the frame buffer.
void enableFrameBuffer()
Enables this frame buffer to be rendered.
static constexpr int32_t FRAMEBUFFER_DEPTHBUFFER
void dispose()
Disposes this frame buffer.
void bindDepthBufferTexture(int contextIdx)
Bind depth texture.
void update()
Setups frustum, should be called if frustum did change.
Imposter object 3d to be used with engine class.
LOD object 3D + imposter to be used with engine class.
Object3D * getLODObject()
LOD object 3D to be used with engine class.
Object3D * getLODObject()
bool isDirectional() const
Returns if light is directional light like sun, moon lights.
const Vector3 & getSpotDirection() const
const Vector4 & getPosition() const
Object 3D render group for static objects that might be animated by shaders.
Object 3D to be used with engine class.
Object particle system entity to be used with engine class.
Particle system group, which combines several particle systems into a group, to be used with engine c...
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Line segment helper functions.
Matrix4x4 & getProjectionMatrix()
RendererType getRendererType()
Matrix4x4 & getModelViewMatrix()
virtual void clear(int32_t mask)=0
Clear render buffer with given mask.
int32_t CONTEXTINDEX_DEFAULT
int32_t CLEAR_DEPTH_BUFFER_BIT
void render(Entity::RenderPass renderPass, const vector< Object3D * > &objects, bool renderTransparentFaces, int32_t renderTypes)
Renders all given objects.
void reshape(int32_t width, int32_t height)
Reshape frame buffer.
void initialize()
Initialize shadow map.
void updateDepthBiasMVPMatrix(int contextIdx)
Set up shadow texture matrix computed and stored before.
vector< Object3D * > visibleObjects
Matrix4x4 depthBiasMVPMatrix
ShadowMapping * shadowMapping
void dispose()
Disposes this shadow map.
void computeDepthBiasMVPMatrix()
Computes shadow texture matrix and stores it.
void createShadowMap(Light *light)
Create shadow map.
FrameBuffer * frameBuffer
void bindDepthBufferTexture(int contextIdx)
Binds frame buffer depth texture.
void updateDepthBiasMVPMatrix(int contextIdx, Matrix4x4 &depthBiasMVPMatrix)
Update depth bias mvp matrix with given matrix.
EntityRenderer * entityRenderer
Matrix4x4 & identity()
Setup identity matrix.
Matrix4x4 & set(float r0c0, float r1c0, float r2c0, float r3c0, float r0c1, float r1c1, float r2c1, float r3c1, float r0c2, float r1c2, float r2c2, float r3c2, float r0c3, float r1c3, float r2c3, float r3c3)
Set up matrix by values.
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
float computeLength() const
Vector3 & normalize()
Normalize the vector.
Vector3 clone() const
Clones the vector.
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Vector3 & scale(float scale)
Scale this vector.
Vector4 & scale(float scale)
Scale this vector.
virtual const vector< Entity * > & getVisibleEntities(Frustum *frustum)=0
Get visible entities.