From a3dcaebd5770fcee44d0a1fa5de413dd3ae0aa9a Mon Sep 17 00:00:00 2001 From: Lightling Date: Wed, 20 Apr 2022 00:12:16 -0400 Subject: [PATCH] implement toon ramp sampler --- Game.cpp | 10 ++++++++++ Game.h | 1 + Material.cpp | 6 ++++++ Material.h | 4 ++++ ToonShader.hlsl | 27 +++++++++++++++++++++++---- 5 files changed, 44 insertions(+), 4 deletions(-) diff --git a/Game.cpp b/Game.cpp index afb43fe..46144e9 100644 --- a/Game.cpp +++ b/Game.cpp @@ -127,6 +127,11 @@ void Game::LoadTextures() rastDesc.FillMode = D3D11_FILL_SOLID; device->CreateRasterizerState(&rastDesc, backfaceRasterState.GetAddressOf()); + sampDesc.AddressU = D3D11_TEXTURE_ADDRESS_CLAMP; + sampDesc.AddressV = D3D11_TEXTURE_ADDRESS_CLAMP; + sampDesc.AddressW = D3D11_TEXTURE_ADDRESS_CLAMP; + device->CreateSamplerState(&sampDesc, clampSampler.GetAddressOf()); + demoCubemap = CreateCubemap( device, context, @@ -202,6 +207,7 @@ void Game::LoadTextures() materials[8]->SetAlpha(0.8f); materials[9]->PushSampler("BasicSampler", sampler); + materials[9]->PushSampler("ClampSampler", clampSampler); materials[9]->SetRoughness(1); materials[9]->LoadTexture(L"Assets/Textures/WithNormals/cushion.png", TEXTYPE_ALBEDO, device.Get(), context.Get()); materials[9]->LoadTexture(L"Assets/Textures/WithNormals/cushion_normals.png", TEXTYPE_NORMAL, device.Get(), context.Get()); @@ -209,7 +215,11 @@ void Game::LoadTextures() materials[9]->SetOutlineThickness(0); materials[10]->PushSampler("BasicSampler", sampler); + materials[10]->PushSampler("ClampSampler", clampSampler); materials[10]->LoadTexture(L"Assets/Textures/HQGame/structure-endgame-deepfloor_emissive.png", TEXTYPE_EMISSIVE, device.Get(), context.Get()); + materials[10]->LoadTexture(L"Assets/Textures/Ramps/toonRamp3.png", TEXTYPE_RAMPDIFFUSE, device.Get(), context.Get()); + materials[10]->LoadTexture(L"Assets/Textures/Ramps/toonRampSpecular.png", TEXTYPE_RAMPSPECULAR, device.Get(), context.Get()); + materials[10]->SetRimCutoff(0.15f); materials[10]->SetEmitAmount(XMFLOAT3(0.05f, 0.1f, 0.01f)); } diff --git a/Game.h b/Game.h index c51f2d8..d744f74 100644 --- a/Game.h +++ b/Game.h @@ -72,5 +72,6 @@ private: Microsoft::WRL::ComPtr constantBufferVS; Microsoft::WRL::ComPtr alphaBlendState; Microsoft::WRL::ComPtr backfaceRasterState; + Microsoft::WRL::ComPtr clampSampler; }; diff --git a/Material.cpp b/Material.cpp index 8420525..d5b2e84 100644 --- a/Material.cpp +++ b/Material.cpp @@ -23,6 +23,8 @@ Material::Material( hasSpecularMap = false; hasNormalMap = false; hasReflectionMap = false; + hasRampDiffuse = false; + hasRampSpecular = false; outlineThickness = 1; rimCutoff = 0.075f; rimTint = DirectX::XMFLOAT3(0.5f, 0.5f, 0.5f); @@ -200,6 +202,8 @@ void Material::LoadTexture(const wchar_t* _path, const char* _type, ID3D11Device else if (_type == TEXTYPE_SPECULAR) hasSpecularMap = true; else if (_type == TEXTYPE_NORMAL) hasNormalMap = true; else if (_type == TEXTYPE_REFLECTION) hasReflectionMap = true; + else if (_type == TEXTYPE_RAMPDIFFUSE) hasRampDiffuse = true; + else if (_type == TEXTYPE_RAMPSPECULAR) hasRampSpecular = true; } void Material::PushSampler(std::string _name, Microsoft::WRL::ComPtr _sampler) @@ -241,6 +245,8 @@ void Material::ActivateStandard(Transform* _transform, std::shared_ptr _ pixelShader->SetInt("hasSpecularMap", (int)hasSpecularMap); pixelShader->SetInt("hasNormalMap", (int)hasNormalMap); pixelShader->SetInt("hasReflectionMap", (int)hasReflectionMap); + pixelShader->SetInt("hasRampDiffuse", (int)hasRampDiffuse); + pixelShader->SetInt("hasRampSpecular", (int)hasRampSpecular); pixelShader->SetData("lights", &_lights[0], sizeof(Light) * (int)_lights.size()); pixelShader->CopyAllBufferData(); pixelShader->SetShader(); diff --git a/Material.h b/Material.h index 2be3f9a..bd87de3 100644 --- a/Material.h +++ b/Material.h @@ -17,6 +17,8 @@ constexpr auto TEXTYPE_SPECULAR = "Specular"; constexpr auto TEXTYPE_REFLECTION = "Reflection"; constexpr auto TEXTYPE_ROUGHNESS = "Roughness"; constexpr auto TEXTYPE_METALNESS = "Metalness"; +constexpr auto TEXTYPE_RAMPDIFFUSE = "RampDiffuse"; +constexpr auto TEXTYPE_RAMPSPECULAR = "RampSpecular"; class Material { @@ -74,6 +76,8 @@ public: bool hasSpecularMap; bool hasNormalMap; bool hasReflectionMap; + bool hasRampDiffuse; + bool hasRampSpecular; private: void ActivateStandard( Transform* _transform, diff --git a/ToonShader.hlsl b/ToonShader.hlsl index 0df85fa..9390cd9 100644 --- a/ToonShader.hlsl +++ b/ToonShader.hlsl @@ -33,6 +33,8 @@ cbuffer ExternalData : register(b0) float rimCutoff; int hasSpecularMap; + int hasRampDiffuse; + int hasRampSpecular; Light lights[MAX_LIGHTS]; } @@ -44,12 +46,13 @@ Texture2D Emissive : register(t3); Texture2D RampDiffuse : register(t4); Texture2D RampSpecular : register(t5); SamplerState BasicSampler : register(s0); +SamplerState ClampSampler : register(s1); float GetRampDiffuse(float original) { if (original < 0.25f) return 0.0f; - //if (original < 0.5f) return 0.5f; - if (original < 0.75f) return 0.75f; + if (original < 0.33f) return 0.33f; + if (original < 0.8f) return 0.8f; return 1; } @@ -110,8 +113,24 @@ float4 main(VertexToPixel input) : SV_TARGET break; } - float diffuse = GetRampDiffuse(getDiffuse(normal, toLight)); - float specular = GetRampSpecular(calculateSpecular(normal, toLight, view, specularValue, diffuse) * roughness); + 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; }