Week9 [23/11] - [29/11]

Added Lighting Changes for Vertex Normal Calculation
Added Method to Get a Polygons Vertices as a Vector array
Added Methods to Add the Color to a Polygon and Vertex Object
Added Normalization to the Polygon normal vector
Added Vector Normal Calculation to the Model Class
Added Light Calculation method to the Rasterizer Class
Added Flag to Rasterizer to stop processing when the screen is minimised
Added Flat and Gouraud Drawing Methods to the Resterizer
Added Standard and INT triangle drawing Methods
Added Function to mimic sgn function from Java
Added Length to Vector3D class
Added / operator to Vector3D class
Added Get(x,y,z,w)Int methods to Vertex class
Changed Color Variables on the Vertex/Polygon classes to use r, g and b values rather than COLORREF
Changed Camera translation functions to use normal Translation Functions
Cleaned up Code
Removed Unused code from the Camera Class
This commit is contained in:
IDunnoDev
2021-12-11 19:26:56 +00:00
committed by iDunnoDev
parent f5fd5b6756
commit df3c9fac81
23 changed files with 956 additions and 188 deletions

View File

@ -75,25 +75,25 @@ Vertex PointLight::GetLightPosition() const
return _lightPosition;
}
COLORREF PointLight::CalculateLight(const Model& currentModel, const Polygon3D& currentPolygon, COLORREF colorIn)
COLORREF PointLight::CalculateLightShared(const Model& currentModel, const Vertex& currentVertex, const Vector3D& currentNormal, COLORREF colorIn)
{
float workingRed = (float)GetRedLightIntensity();
float workingGreen = (float)GetGreenLightIntensity();
float workingBlue = (float)GetBlueLightIntensity();
float fudge = 50;
float fudge = 100;
workingRed *= currentModel.GetRedReflectionCoefficient();
workingGreen *= currentModel.GetGreenReflectionCoefficient();
workingBlue *= currentModel.GetBlueReflectionCoefficient();
Vector3D lightSource = currentModel.GetVertex(currentPolygon.GetIndex(0)) - _lightPosition;
Vector3D lightSource = currentVertex - _lightPosition;
Vector3D lightSourceNormalized = lightSource;
lightSourceNormalized.Normalize();
float distance = Vector3D::DotProduct(lightSource, currentPolygon.GetNormal());
float distance = Vector3D::Length(currentNormal, lightSource);
float lightDotProd = Vector3D::DotProduct(lightSourceNormalized, currentPolygon.GetNormal());
float lightDotProd = Vector3D::DotProduct(lightSourceNormalized, currentNormal);
float attenuation = 1 / (GetAttenuationA() + GetAttenuationB() * distance + GetAttenuationC() * (distance * distance));
workingRed *= lightDotProd;
@ -120,6 +120,16 @@ COLORREF PointLight::CalculateLight(const Model& currentModel, const Polygon3D&
return outputColor;
}
COLORREF PointLight::CalculateLight(const Model& currentModel, const Polygon3D& currentPolygon, COLORREF colorIn)
{
return CalculateLightShared(currentModel, currentModel.GetVertex(currentPolygon.GetIndex(0)), currentPolygon.GetNormal(), colorIn);
}
COLORREF PointLight::CalculateLight(const Model& currentModel, const Vertex& currentVertex, COLORREF colorIn)
{
return CalculateLightShared(currentModel, currentVertex, currentVertex.GetNormal(), colorIn);
}
PointLight& PointLight::operator= (const PointLight& rhs)
{
if (this != &rhs)