2022-11-25 14:58:29 +01:00
|
|
|
#include "light/light.h"
|
|
|
|
#include "scene/scene.h"
|
|
|
|
#include "shader/phongshader.h"
|
|
|
|
|
|
|
|
PhongShader::PhongShader(Color const &diffuseColor, float diffuseCoefficient, Color const &specularColor,
|
|
|
|
float specularCoefficient, float shininessExponent)
|
2022-11-28 20:24:29 +01:00
|
|
|
: diffuseColor(diffuseColor), diffuseCoefficient(diffuseCoefficient), specularColor(specularColor),
|
|
|
|
specularCoefficient(specularCoefficient), shininessExponent(shininessExponent) {}
|
2022-11-25 14:58:29 +01:00
|
|
|
|
|
|
|
Color PhongShader::shade(Scene const &scene, Ray const &ray) const {
|
2022-11-28 20:24:29 +01:00
|
|
|
Color fragmentColor;
|
2022-11-25 14:58:29 +01:00
|
|
|
|
|
|
|
|
2022-11-28 20:24:29 +01:00
|
|
|
for (auto &light: scene.lights()) {
|
|
|
|
auto illum = light->illuminate(scene, ray);
|
|
|
|
|
2022-11-30 20:30:58 +01:00
|
|
|
Vector3d reflection = illum.direction - 2 * dotProduct(illum.direction, ray.normal) * ray.normal;
|
|
|
|
Color diffuse = diffuseCoefficient * dotProduct(illum.direction, -ray.normal) * diffuseColor;
|
|
|
|
Color specular = specularCoefficient * specularColor
|
|
|
|
* std::pow(dotProduct(ray.direction, -reflection), shininessExponent);
|
|
|
|
fragmentColor += illum.color * diffuse + illum.color * specular;
|
2022-11-28 20:24:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return fragmentColor;
|
2022-11-25 14:58:29 +01:00
|
|
|
}
|