This repository has been archived on 2024-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
DX11Starter/ToonShader.hlsl
Lightling 21b7cecab1
silence weird errors from shaders
- somehow texturecube was getting sent to toon shader at some point down the line, simply defined register for it for now, don't know where it's getting sent
- pbr was expected Sampler not BasicSampler
2022-04-21 17:27:42 -04:00

159 lines
4.4 KiB
HLSL

#include "Defines.hlsli"
#include "Helpers.hlsli"
#include "Lights.hlsli"
#define MAX_LIGHTS 128
cbuffer ExternalData : register(b0)
{
float3 cameraPosition;
int hasNormalMap;
float2 offset;
float2 scale;
float3 ambient;
float lightCount;
float3 tint;
int hasAlbedoMap;
float3 emitAmount;
int hasEmissiveMap;
float alpha;
float cutoff;
float roughness;
float normalIntensity;
float3 outlineTint;
float outlineThickness;
float3 rimTint;
float rimCutoff;
int hasSpecularMap;
int hasRampDiffuse;
int hasRampSpecular;
Light lights[MAX_LIGHTS];
}
Texture2D Albedo : register(t0);
Texture2D Normal : register(t1);
Texture2D Specular : register(t2);
Texture2D Emissive : register(t3);
TextureCube Reflection : register(t4);
Texture2D RampDiffuse : register(t5);
Texture2D RampSpecular : register(t6);
SamplerState BasicSampler : register(s0);
SamplerState ClampSampler : register(s1);
float GetRampDiffuse(float original)
{
if (original < 0.25f) return 0.0f;
if (original < 0.33f) return 0.33f;
if (original < 0.8f) return 0.8f;
return 1;
}
float GetRampSpecular(float original)
{
if (original < 0.6f) return 0.0f;
return 1.0f;
}
float4 main(VertexToPixel input) : SV_TARGET
{
// normalize inputs and set uv scaling
input.normal = normalize(input.normal);
input.tangent = normalize(input.tangent);
input.uv = input.uv * scale + offset;
// get surface from tint, multiply it by albedo if there is one
// get alpha from exposed alpha value, multiply it by albedo alpha if there is one
float3 surface = tint;
float alphaValue = alpha;
if (hasAlbedoMap)
{
float4 sampledAlbedo = Albedo.Sample(BasicSampler, input.uv);
// discard if the alpha of the texture is less than the cutoff point
if (sampledAlbedo.a < cutoff) discard;
// gamma-correct the RGB of the albedo
float3 albedo = pow(sampledAlbedo.rgb, 2.2f);
// multiply surface and alpha by the sampled texture
surface *= albedo.rgb;
alphaValue *= sampledAlbedo.a;
}
// gets normal map if there is one
float3 normal = input.normal;
if (hasNormalMap > 0)
normal = getNormal(BasicSampler, Normal, input.uv, input.normal, input.tangent, normalIntensity);
// gets specular value; if there is a specular map, use that instead
float specularValue = 1;
if (hasSpecularMap > 0)
specularValue = Specular.Sample(BasicSampler, input.uv).r;
// pre-calculate view
float3 view = getView(cameraPosition, input.worldPosition);
// calculate lighting
float3 light = ambient * surface;
for (int i = 0; i < lightCount; i++)
{
float3 toLight = float3(0, 0, 0);
float attenuate = 1;
switch (lights[i].Type)
{
case LIGHT_TYPE_DIRECTIONAL:
toLight = normalize(lights[i].Direction);
break;
case LIGHT_TYPE_POINT:
toLight = normalize(lights[i].Position - input.worldPosition);
attenuate = getAttenuation(lights[i].Position, input.worldPosition, lights[i].Range);
break;
}
// applies the step-like effect of toon shading to the diffuse/specular of the lighting
float diffuse = 0;
float specular = 0;
if (hasRampDiffuse > 0)
diffuse = RampDiffuse.Sample(ClampSampler, float2(getDiffuse(normal, toLight), 0)).r;
else
diffuse = GetRampDiffuse(getDiffuse(normal, toLight));
if (hasRampSpecular > 0)
specular = RampSpecular.Sample(ClampSampler, float2(calculateSpecular(normal, toLight, view, specularValue, diffuse) * roughness, 0));
else
specular = GetRampSpecular(calculateSpecular(normal, toLight, view, specularValue, diffuse) * roughness);
light += (diffuse * surface.rgb + specular) * attenuate * lights[i].Intensity * lights[i].Color;
}
// get emission; use emissive map if there is one
float3 emit = float3(1, 1, 1);
if (hasEmissiveMap > 0)
emit = Emissive.Sample(BasicSampler, input.uv).rgb;
// calculate rim/outline value (i.e. whether there is any at this pixel)
float vDotN = (1 - dot(view, input.normal));
float rimValue = GetRampSpecular(vDotN * pow(light, rimCutoff));
float outlineValue = GetRampSpecular(vDotN * outlineThickness);
// return rim lighting if there is any; takes priority over outline
if (rimValue > 0)
return float4(light + (emit * emitAmount) + rimTint, alphaValue);
// return outline if there is any
if (outlineValue > 0)
return float4(outlineTint, alphaValue);
// calculate the final color value with lighting and emission
float3 final = float3(light + (emit * emitAmount));
// gamma-correct the final value
return float4(pow(final, 1.0f / 2.2f), alphaValue);
}