335 lines
7.7 KiB
C++
335 lines
7.7 KiB
C++
// Copyright (C) 2013 Jérôme Leclercq
|
|
// This file is part of the "Nazara Engine - Graphics module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#include <Nazara/Graphics/Light.hpp>
|
|
#include <Nazara/Core/Error.hpp>
|
|
#include <Nazara/Graphics/AbstractRenderQueue.hpp>
|
|
#include <Nazara/Graphics/Camera.hpp>
|
|
#include <Nazara/Math/Basic.hpp>
|
|
#include <Nazara/Math/Sphere.hpp>
|
|
#include <Nazara/Renderer/Renderer.hpp>
|
|
#include <Nazara/Renderer/ShaderProgram.hpp>
|
|
#include <cstring>
|
|
#include <Nazara/Graphics/Debug.hpp>
|
|
|
|
///TODO: Utilisation des UBOs
|
|
|
|
NzLight::NzLight(nzLightType type) :
|
|
m_type(type),
|
|
m_ambientColor((type == nzLightType_Directional) ? NzColor(50, 50, 50) : NzColor::Black),
|
|
m_diffuseColor(NzColor::White),
|
|
m_specularColor(NzColor::White),
|
|
m_boundingVolumeUpdated(false),
|
|
m_attenuation(0.9f),
|
|
m_innerAngle(15.f),
|
|
m_outerAngle(45.f),
|
|
m_radius(5.f)
|
|
{
|
|
}
|
|
|
|
NzLight::NzLight(const NzLight& light) :
|
|
NzSceneNode(light)
|
|
{
|
|
std::memcpy(this, &light, sizeof(NzLight)); // Aussi simple que ça
|
|
}
|
|
|
|
void NzLight::AddToRenderQueue(NzAbstractRenderQueue* renderQueue) const
|
|
{
|
|
renderQueue->AddLight(this);
|
|
}
|
|
|
|
void NzLight::Enable(const NzShaderProgram* program, unsigned int lightUnit) const
|
|
{
|
|
/*
|
|
struct Light
|
|
{
|
|
int type;
|
|
vec4 ambient;
|
|
vec4 diffuse;
|
|
vec4 specular;
|
|
|
|
vec4 parameters1;
|
|
vec4 parameters2;
|
|
vec2 parameters3;
|
|
};
|
|
|
|
Directional
|
|
-P1: vec3 direction
|
|
|
|
Point
|
|
-P1: vec3 position + float attenuation
|
|
-P2: float invRadius
|
|
|
|
Spot
|
|
-P1: vec3 position + float attenuation
|
|
-P2: vec3 direction + float invRadius
|
|
-P3: float cosInnerAngle + float cosOuterAngle
|
|
*/
|
|
|
|
///TODO: Optimiser
|
|
int typeLocation = program->GetUniformLocation("Lights[0].type");
|
|
int ambientLocation = program->GetUniformLocation("Lights[0].ambient");
|
|
int diffuseLocation = program->GetUniformLocation("Lights[0].diffuse");
|
|
int specularLocation = program->GetUniformLocation("Lights[0].specular");
|
|
int parameters1Location = program->GetUniformLocation("Lights[0].parameters1");
|
|
int parameters2Location = program->GetUniformLocation("Lights[0].parameters2");
|
|
int parameters3Location = program->GetUniformLocation("Lights[0].parameters3");
|
|
|
|
if (lightUnit > 0)
|
|
{
|
|
int type2Location = program->GetUniformLocation("Lights[1].type");
|
|
int offset = lightUnit * (type2Location - typeLocation); // type2Location - typeLocation donne la taille de la structure
|
|
|
|
// On applique cet offset
|
|
typeLocation += offset;
|
|
ambientLocation += offset;
|
|
diffuseLocation += offset;
|
|
specularLocation += offset;
|
|
parameters1Location += offset;
|
|
parameters2Location += offset;
|
|
parameters3Location += offset;
|
|
}
|
|
|
|
program->SendInteger(typeLocation, m_type);
|
|
program->SendColor(ambientLocation, m_ambientColor);
|
|
program->SendColor(diffuseLocation, m_diffuseColor);
|
|
program->SendColor(specularLocation, m_specularColor);
|
|
|
|
if (!m_derivedUpdated)
|
|
UpdateDerived();
|
|
|
|
switch (m_type)
|
|
{
|
|
case nzLightType_Directional:
|
|
program->SendVector(parameters1Location, NzVector4f(m_derivedRotation * NzVector3f::Forward()));
|
|
break;
|
|
|
|
case nzLightType_Point:
|
|
program->SendVector(parameters1Location, NzVector4f(m_derivedPosition, m_attenuation));
|
|
program->SendVector(parameters2Location, NzVector4f(1.f/m_radius, 0.f, 0.f, 0.f));
|
|
break;
|
|
|
|
case nzLightType_Spot:
|
|
program->SendVector(parameters1Location, NzVector4f(m_derivedPosition, m_attenuation));
|
|
program->SendVector(parameters2Location, NzVector4f(m_derivedRotation * NzVector3f::Forward(), 1.f/m_radius));
|
|
program->SendVector(parameters3Location, NzVector2f(std::cos(NzDegreeToRadian(m_innerAngle)), std::cos(NzDegreeToRadian(m_outerAngle))));
|
|
break;
|
|
}
|
|
}
|
|
|
|
const NzBoundingVolumef& NzLight::GetBoundingVolume() const
|
|
{
|
|
if (!m_boundingVolumeUpdated)
|
|
UpdateBoundingVolume();
|
|
|
|
return m_boundingVolume;
|
|
}
|
|
|
|
NzColor NzLight::GetAmbientColor() const
|
|
{
|
|
return m_ambientColor;
|
|
}
|
|
|
|
float NzLight::GetAttenuation() const
|
|
{
|
|
return m_attenuation;
|
|
}
|
|
|
|
NzColor NzLight::GetDiffuseColor() const
|
|
{
|
|
return m_diffuseColor;
|
|
}
|
|
|
|
float NzLight::GetInnerAngle() const
|
|
{
|
|
return m_innerAngle;
|
|
}
|
|
|
|
nzLightType NzLight::GetLightType() const
|
|
{
|
|
return m_type;
|
|
}
|
|
|
|
float NzLight::GetOuterAngle() const
|
|
{
|
|
return m_outerAngle;
|
|
}
|
|
|
|
float NzLight::GetRadius() const
|
|
{
|
|
return m_radius;
|
|
}
|
|
|
|
nzSceneNodeType NzLight::GetSceneNodeType() const
|
|
{
|
|
return nzSceneNodeType_Light;
|
|
}
|
|
|
|
NzColor NzLight::GetSpecularColor() const
|
|
{
|
|
return m_specularColor;
|
|
}
|
|
|
|
void NzLight::SetAmbientColor(const NzColor& ambient)
|
|
{
|
|
m_ambientColor = ambient;
|
|
}
|
|
|
|
void NzLight::SetAttenuation(float attenuation)
|
|
{
|
|
m_attenuation = attenuation;
|
|
}
|
|
|
|
void NzLight::SetDiffuseColor(const NzColor& diffuse)
|
|
{
|
|
m_diffuseColor = diffuse;
|
|
}
|
|
|
|
void NzLight::SetInnerAngle(float innerAngle)
|
|
{
|
|
m_innerAngle = innerAngle;
|
|
}
|
|
|
|
void NzLight::SetOuterAngle(float outerAngle)
|
|
{
|
|
m_outerAngle = outerAngle;
|
|
|
|
m_boundingVolume.MakeNull();
|
|
m_boundingVolumeUpdated = false;
|
|
}
|
|
|
|
void NzLight::SetRadius(float radius)
|
|
{
|
|
m_radius = radius;
|
|
|
|
m_boundingVolume.MakeNull();
|
|
m_boundingVolumeUpdated = false;
|
|
}
|
|
|
|
void NzLight::SetSpecularColor(const NzColor& specular)
|
|
{
|
|
m_specularColor = specular;
|
|
}
|
|
|
|
NzLight& NzLight::operator=(const NzLight& light)
|
|
{
|
|
std::memcpy(this, &light, sizeof(NzLight));
|
|
|
|
return *this;
|
|
}
|
|
|
|
void NzLight::Disable(const NzShaderProgram* program, unsigned int lightUnit)
|
|
{
|
|
///TODO: Optimiser
|
|
program->SendInteger(program->GetUniformLocation("Lights[" + NzString::Number(lightUnit) + "].type"), -1);
|
|
}
|
|
|
|
bool NzLight::FrustumCull(const NzFrustumf& frustum)
|
|
{
|
|
switch (m_type)
|
|
{
|
|
case nzLightType_Directional:
|
|
return true; // Toujours visible
|
|
|
|
case nzLightType_Point:
|
|
if (!m_derivedUpdated)
|
|
UpdateDerived();
|
|
|
|
// Un test sphérique est bien plus rapide et précis que celui de la bounding box
|
|
return frustum.Contains(NzSpheref(m_derivedPosition, m_radius));
|
|
|
|
case nzLightType_Spot:
|
|
if (!m_boundingVolumeUpdated)
|
|
UpdateBoundingVolume();
|
|
|
|
return frustum.Contains(m_boundingVolume);
|
|
}
|
|
|
|
NazaraError("Invalid light type (0x" + NzString::Number(m_type, 16) + ')');
|
|
return false;
|
|
}
|
|
|
|
void NzLight::Invalidate()
|
|
{
|
|
NzSceneNode::Invalidate();
|
|
|
|
m_boundingVolumeUpdated = false;
|
|
}
|
|
|
|
void NzLight::Register()
|
|
{
|
|
}
|
|
|
|
void NzLight::Unregister()
|
|
{
|
|
}
|
|
|
|
void NzLight::UpdateBoundingVolume() const
|
|
{
|
|
if (m_boundingVolume.IsNull())
|
|
{
|
|
switch (m_type)
|
|
{
|
|
case nzLightType_Directional:
|
|
m_boundingVolume.MakeInfinite();
|
|
m_boundingVolumeUpdated = true;
|
|
return; // Rien d'autre à faire
|
|
|
|
case nzLightType_Point:
|
|
{
|
|
NzVector3f radius(m_radius);
|
|
m_boundingVolume.Set(-radius, radius);
|
|
break;
|
|
}
|
|
|
|
case nzLightType_Spot:
|
|
{
|
|
// On forme une boite sur l'origine
|
|
NzBoxf box(NzVector3f::Zero());
|
|
|
|
// On calcule le reste des points
|
|
float height = m_radius;
|
|
NzVector3f base(NzVector3f::Forward()*height);
|
|
|
|
// Il nous faut maintenant le rayon du cercle projeté à cette distance
|
|
// Tangente = Opposé/Adjaçent <=> Opposé = Adjaçent*Tangente
|
|
float radius = height*std::tan(NzDegreeToRadian(m_outerAngle));
|
|
NzVector3f lExtend = NzVector3f::Left()*radius;
|
|
NzVector3f uExtend = NzVector3f::Up()*radius;
|
|
|
|
// Et on ajoute ensuite les quatres extrémités de la pyramide
|
|
box.ExtendTo(base + lExtend + uExtend);
|
|
box.ExtendTo(base + lExtend - uExtend);
|
|
box.ExtendTo(base - lExtend + uExtend);
|
|
box.ExtendTo(base - lExtend - uExtend);
|
|
|
|
m_boundingVolume.Set(box);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
switch (m_type)
|
|
{
|
|
case nzLightType_Directional:
|
|
break;
|
|
|
|
case nzLightType_Point:
|
|
if (!m_derivedUpdated)
|
|
UpdateDerived();
|
|
|
|
m_boundingVolume.Update(NzMatrix4f::Translate(m_derivedPosition)); // Notre BoundingBox ne changera que selon la position
|
|
break;
|
|
|
|
case nzLightType_Spot:
|
|
if (!m_transformMatrixUpdated)
|
|
UpdateTransformMatrix();
|
|
|
|
m_boundingVolume.Update(m_transformMatrix);
|
|
break;
|
|
}
|
|
|
|
m_boundingVolumeUpdated = true;
|
|
}
|