34 lines
944 B
HLSL
34 lines
944 B
HLSL
#include "common.hlsli"
|
|
|
|
struct v2p
|
|
{
|
|
float2 tc0 : TEXCOORD0; // base
|
|
float2 tc1 : TEXCOORD1; // lmap
|
|
float2 tc2 : TEXCOORD2; // detail
|
|
float4 c0 : COLOR0; // hemi, c0.a *
|
|
float4 c1 : COLOR1; // sun, c1.a +
|
|
float fog : FOG;
|
|
};
|
|
|
|
// Pixel
|
|
float4 main(v2p I) : COLOR
|
|
{
|
|
float4 t_base = tex2D(s_base, I.tc0);
|
|
float4 t_lmap = tex2D(s_lmap, I.tc1);
|
|
|
|
// lighting
|
|
float3 l_base = t_lmap.rgb; // base light-map
|
|
float3 l_hemi = I.c0 * t_base.a; // hemi is implicitly inside texture
|
|
float3 l_sun = I.c1 * t_lmap.a; // sun color
|
|
float3 light = L_ambient + l_base + l_sun + l_hemi;
|
|
|
|
// calc D-texture
|
|
float3 detail = tex2D(s_detail, I.tc2);
|
|
|
|
// final-color
|
|
float3 final = (light * t_base.rgb * 2.0f) * detail * 2.0f;
|
|
final = lerp(fog_color.xyz, final, I.fog);
|
|
// out
|
|
return float4(final.rgb, 1.0f);
|
|
// return float4 (light*detail*2,1);
|
|
}
|