148 lines
5.4 KiB
C#
148 lines
5.4 KiB
C#
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
namespace Kav
|
|
{
|
|
public class Deferred_ToonEffect : Effect, ShadowCascadeEffect
|
|
{
|
|
EffectParameter gPositionParam;
|
|
EffectParameter gAlbedoParam;
|
|
EffectParameter gNormalParam;
|
|
EffectParameter gMetallicRoughnessParam;
|
|
|
|
EffectParameter shadowMapOneParam;
|
|
EffectParameter shadowMapTwoParam;
|
|
EffectParameter shadowMapThreeParam;
|
|
EffectParameter shadowMapFourParam;
|
|
|
|
EffectParameter eyePositionParam;
|
|
EffectParameter directionalLightDirectionParam;
|
|
EffectParameter directionalLightColorParam;
|
|
|
|
EffectParameter cascadeFarPlanesParam;
|
|
EffectParameter shadowMapSizeParam;
|
|
|
|
EffectParameter lightSpaceMatrixOneParam;
|
|
EffectParameter lightSpaceMatrixTwoParam;
|
|
EffectParameter lightSpaceMatrixThreeParam;
|
|
EffectParameter lightSpaceMatrixFourParam;
|
|
|
|
EffectParameter viewMatrixParam;
|
|
|
|
EffectParameter shaderIndexParam;
|
|
|
|
public Texture2D GPosition { get; set; }
|
|
public Texture2D GAlbedo { get; set; }
|
|
public Texture2D GNormal { get; set; }
|
|
public Texture2D GMetallicRoughness { get; set; }
|
|
|
|
public Texture2D ShadowMapOne { get; set; }
|
|
public Texture2D ShadowMapTwo { get; set; }
|
|
public Texture2D ShadowMapThree { get; set; }
|
|
public Texture2D ShadowMapFour { get; set; }
|
|
|
|
public Vector3 EyePosition { get; set; }
|
|
public Vector3 DirectionalLightDirection { get; set; }
|
|
public Vector3 DirectionalLightColor { get; set; }
|
|
|
|
public float[] CascadeFarPlanes { get; }
|
|
public float ShadowMapSize { get; set; }
|
|
|
|
public Matrix LightSpaceMatrixOne { get; set; }
|
|
public Matrix LightSpaceMatrixTwo { get; set; }
|
|
public Matrix LightSpaceMatrixThree { get; set; }
|
|
public Matrix LightSpaceMatrixFour { get; set; }
|
|
|
|
public Matrix ViewMatrix { get; set; }
|
|
|
|
private bool ditheredShadowValue = false;
|
|
public bool DitheredShadows
|
|
{
|
|
get { return ditheredShadowValue; }
|
|
set
|
|
{
|
|
ditheredShadowValue = value;
|
|
CalculateShaderIndex();
|
|
}
|
|
}
|
|
|
|
private int shaderIndex = 0;
|
|
|
|
public Deferred_ToonEffect(GraphicsDevice graphicsDevice) : base(graphicsDevice, Resources.Deferred_ToonEffect)
|
|
{
|
|
CascadeFarPlanes = new float[4];
|
|
CacheEffectParameters();
|
|
}
|
|
|
|
protected override void OnApply()
|
|
{
|
|
gPositionParam.SetValue(GPosition);
|
|
gAlbedoParam.SetValue(GAlbedo);
|
|
gNormalParam.SetValue(GNormal);
|
|
gMetallicRoughnessParam.SetValue(GMetallicRoughness);
|
|
|
|
shadowMapOneParam.SetValue(ShadowMapOne);
|
|
shadowMapTwoParam.SetValue(ShadowMapTwo);
|
|
shadowMapThreeParam.SetValue(ShadowMapThree);
|
|
shadowMapFourParam.SetValue(ShadowMapFour);
|
|
|
|
eyePositionParam.SetValue(EyePosition);
|
|
directionalLightDirectionParam.SetValue(DirectionalLightDirection);
|
|
directionalLightColorParam.SetValue(DirectionalLightColor);
|
|
|
|
cascadeFarPlanesParam.SetValue(CascadeFarPlanes);
|
|
shadowMapSizeParam.SetValue(ShadowMapSize);
|
|
|
|
lightSpaceMatrixOneParam.SetValue(LightSpaceMatrixOne);
|
|
lightSpaceMatrixTwoParam.SetValue(LightSpaceMatrixTwo);
|
|
lightSpaceMatrixThreeParam.SetValue(LightSpaceMatrixThree);
|
|
lightSpaceMatrixFourParam.SetValue(LightSpaceMatrixFour);
|
|
|
|
viewMatrixParam.SetValue(ViewMatrix);
|
|
|
|
shaderIndexParam.SetValue(shaderIndex);
|
|
}
|
|
|
|
void CacheEffectParameters()
|
|
{
|
|
gPositionParam = Parameters["gPosition"];
|
|
gAlbedoParam = Parameters["gAlbedo"];
|
|
gNormalParam = Parameters["gNormal"];
|
|
gMetallicRoughnessParam = Parameters["gMetallicRoughness"];
|
|
|
|
shadowMapOneParam = Parameters["shadowMapOne"];
|
|
shadowMapTwoParam = Parameters["shadowMapTwo"];
|
|
shadowMapThreeParam = Parameters["shadowMapThree"];
|
|
shadowMapFourParam = Parameters["shadowMapFour"];
|
|
|
|
eyePositionParam = Parameters["EyePosition"];
|
|
directionalLightDirectionParam = Parameters["DirectionalLightDirection"];
|
|
directionalLightColorParam = Parameters["DirectionalLightColor"];
|
|
|
|
cascadeFarPlanesParam = Parameters["CascadeFarPlanes"];
|
|
shadowMapSizeParam = Parameters["ShadowMapSize"];
|
|
|
|
lightSpaceMatrixOneParam = Parameters["LightSpaceMatrixOne"];
|
|
lightSpaceMatrixTwoParam = Parameters["LightSpaceMatrixTwo"];
|
|
lightSpaceMatrixThreeParam = Parameters["LightSpaceMatrixThree"];
|
|
lightSpaceMatrixFourParam = Parameters["LightSpaceMatrixFour"];
|
|
|
|
viewMatrixParam = Parameters["ViewMatrix"];
|
|
|
|
shaderIndexParam = Parameters["ShaderIndex"];
|
|
}
|
|
|
|
private void CalculateShaderIndex()
|
|
{
|
|
if (ditheredShadowValue)
|
|
{
|
|
shaderIndex = 1;
|
|
}
|
|
else
|
|
{
|
|
shaderIndex = 0;
|
|
}
|
|
}
|
|
}
|
|
}
|