support point lights

This commit is contained in:
lightling 2022-03-19 18:00:11 -04:00
parent 8ec8b16a88
commit 141df67a72
Signed by: lightling
GPG key ID: 016F11E0AA296B67
3 changed files with 47 additions and 13 deletions

View file

@ -91,8 +91,8 @@ void Game::LoadShaders()
materials = { materials = {
std::make_shared<Material>(white, 0, vertexShader, pixelShader), std::make_shared<Material>(white, 0, vertexShader, pixelShader),
std::make_shared<Material>(white, 0, vertexShader, pixelShader), std::make_shared<Material>(deeppink, 0, vertexShader, pixelShader),
std::make_shared<Material>(white, 0, vertexShader, pixelShader), std::make_shared<Material>(deepcoral, 0, vertexShader, pixelShader),
}; };
} }
@ -114,10 +114,24 @@ void Game::LoadLighting()
directionalLight2.Direction = XMFLOAT3(-1, 1, -0.5f); directionalLight2.Direction = XMFLOAT3(-1, 1, -0.5f);
directionalLight2.Color = XMFLOAT3(0, 0, 1); directionalLight2.Color = XMFLOAT3(0, 0, 1);
directionalLight2.Intensity = 1; directionalLight2.Intensity = 1;
Light pointLight0 = {};
pointLight0.Type = LIGHT_TYPE_POINT;
pointLight0.Position = XMFLOAT3(-2, -2, 0);
pointLight0.Color = XMFLOAT3(1, 1, 0);
pointLight0.Intensity = 1;
pointLight0.Range = 10;
Light pointLight1 = {};
pointLight1.Type = LIGHT_TYPE_POINT;
pointLight1.Position = XMFLOAT3(2, 2, 0);
pointLight1.Color = XMFLOAT3(0, 1, 1);
pointLight1.Intensity = 1;
pointLight1.Range = 10;
lights = { lights = {
directionalLight0, directionalLight0,
directionalLight1, directionalLight1,
directionalLight2, directionalLight2,
pointLight0,
pointLight1,
}; };
} }
@ -137,27 +151,27 @@ void Game::CreateBasicGeometry()
std::make_shared<Mesh>( std::make_shared<Mesh>(
GetFullPathTo("Assets/Models/helix.obj").c_str(), GetFullPathTo("Assets/Models/helix.obj").c_str(),
device, context), device, context),
std::make_shared<Mesh>(
GetFullPathTo("Assets/Models/quad.obj").c_str(),
device, context),
std::make_shared<Mesh>(
GetFullPathTo("Assets/Models/quad_double_sided.obj").c_str(),
device, context),
std::make_shared<Mesh>( std::make_shared<Mesh>(
GetFullPathTo("Assets/Models/sphere.obj").c_str(), GetFullPathTo("Assets/Models/sphere.obj").c_str(),
device, context), device, context),
std::make_shared<Mesh>( std::make_shared<Mesh>(
GetFullPathTo("Assets/Models/torus.obj").c_str(), GetFullPathTo("Assets/Models/torus.obj").c_str(),
device, context), device, context),
std::make_shared<Mesh>(
GetFullPathTo("Assets/Models/quad.obj").c_str(),
device, context),
std::make_shared<Mesh>(
GetFullPathTo("Assets/Models/quad_double_sided.obj").c_str(),
device, context),
}; };
entities = { entities = {
std::make_shared<Entity>(materials[0], shapes[0]), std::make_shared<Entity>(materials[0], shapes[0]),
std::make_shared<Entity>(materials[1], shapes[1]), std::make_shared<Entity>(materials[0], shapes[1]),
std::make_shared<Entity>(materials[2], shapes[2]), std::make_shared<Entity>(materials[0], shapes[2]),
std::make_shared<Entity>(materials[0], shapes[3]), std::make_shared<Entity>(materials[0], shapes[3]),
std::make_shared<Entity>(materials[1], shapes[4]), std::make_shared<Entity>(materials[0], shapes[4]),
std::make_shared<Entity>(materials[2], shapes[5]), std::make_shared<Entity>(materials[0], shapes[5]),
std::make_shared<Entity>(materials[0], shapes[6]), std::make_shared<Entity>(materials[0], shapes[6]),
}; };

View file

@ -31,4 +31,11 @@ float getDiffuse(float3 normal, float3 direction)
return saturate(dot(normal, direction)); return saturate(dot(normal, direction));
} }
float getAttenuation(float3 pointPosition, float3 worldPosition, float3 range)
{
float dist = distance(pointPosition, worldPosition);
float attn = saturate(1.0f - (dist * dist / (range * range)));
return attn * attn;
}
#endif #endif

View file

@ -3,7 +3,7 @@
#include "Lights.hlsli" #include "Lights.hlsli"
// temporary // temporary
#define LIGHT_COUNT 3 #define LIGHT_COUNT 5
cbuffer ExternalData : register(b0) cbuffer ExternalData : register(b0)
{ {
@ -32,6 +32,16 @@ float3 calculateDirectionalLight(Light light, float3 normal, float3 worldPositio
return (diffuse * surfaceColor + specular) * light.Intensity * light.Color; return (diffuse * surfaceColor + specular) * light.Intensity * light.Color;
} }
float3 calculatePointLight(Light light, float3 normal, float3 worldPosition, float3 cameraPosition, float roughness, float3 surfaceColor)
{
float3 lightDirection = normalize(worldPosition - light.Position);
float attenuation = getAttenuation(light.Position, worldPosition, light.Range);
float diffuse = getDiffuse(normal, -lightDirection);
float specular = calculateSpecular(normal, lightDirection, worldPosition, cameraPosition, roughness);
return (diffuse * surfaceColor + specular) * attenuation * light.Intensity * light.Color;
}
float4 main(VertexToPixel input) : SV_TARGET float4 main(VertexToPixel input) : SV_TARGET
{ {
input.normal = normalize(input.normal); input.normal = normalize(input.normal);
@ -44,6 +54,9 @@ float4 main(VertexToPixel input) : SV_TARGET
case LIGHT_TYPE_DIRECTIONAL: case LIGHT_TYPE_DIRECTIONAL:
light += calculateDirectionalLight(lights[i], input.normal, input.worldPosition, cameraPosition, roughness, tint); light += calculateDirectionalLight(lights[i], input.normal, input.worldPosition, cameraPosition, roughness, tint);
break; break;
case LIGHT_TYPE_POINT:
light += calculatePointLight(lights[i], input.normal, input.worldPosition, cameraPosition, roughness, tint);
break;
} }
} }