2012-10-07 18:38:22 +00:00
!!permu DELUXE
2012-05-09 15:30:53 +00:00
!!permu FULLBRIGHT
!!permu FOG
2012-07-05 13:08:07 +00:00
!!permu LIGHTSTYLED
2012-10-07 18:38:22 +00:00
!!permu BUMP
2012-11-27 03:23:19 +00:00
!!permu SPECULAR
2015-05-03 19:57:46 +00:00
!!permu REFLECTCUBEMASK
2012-05-09 15:30:53 +00:00
!!cvarf r_glsl_offsetmapping_scale
2012-11-27 03:23:19 +00:00
!!cvarf gl_specular
2012-05-09 15:30:53 +00:00
2015-03-03 00:14:43 +00:00
#include "sys/defs.h"
2012-05-09 15:30:53 +00:00
//this is what normally draws all of your walls, even with rtlights disabled
//note that the '286' preset uses drawflat_walls instead.
#include "sys/fog.h"
2015-05-03 19:57:46 +00:00
#if defined(OFFSETMAPPING) || defined(SPECULAR) || defined(REFLECTCUBEMASK)
2012-05-09 15:30:53 +00:00
varying vec3 eyevector;
#endif
2012-07-05 13:08:07 +00:00
2015-05-03 19:57:46 +00:00
#ifdef REFLECTCUBEMASK
varying mat3 invsurface;
#endif
2012-07-05 13:08:07 +00:00
varying vec2 tc;
#ifdef LIGHTSTYLED
//we could use an offset, but that would still need to be per-surface which would break batches
//fixme: merge attributes?
2015-02-07 22:34:22 +00:00
varying vec2 lm0, lm1, lm2, lm3;
2012-07-05 13:08:07 +00:00
#else
2015-02-07 22:34:22 +00:00
varying vec2 lm0;
2012-07-05 13:08:07 +00:00
#endif
2012-05-09 15:30:53 +00:00
#ifdef VERTEX_SHADER
void main ()
{
2015-05-03 19:57:46 +00:00
#if defined(OFFSETMAPPING) || defined(SPECULAR) || defined(REFLECTCUBEMASK)
2012-05-09 15:30:53 +00:00
vec3 eyeminusvertex = e_eyepos - v_position.xyz;
2014-01-13 02:42:25 +00:00
eyevector.x = dot(eyeminusvertex, v_svector.xyz);
2012-07-05 13:08:07 +00:00
eyevector.y = dot(eyeminusvertex, v_tvector.xyz);
2012-05-09 15:30:53 +00:00
eyevector.z = dot(eyeminusvertex, v_normal.xyz);
2015-05-03 19:57:46 +00:00
#endif
#ifdef REFLECTCUBEMASK
invsurface[0] = v_svector;
invsurface[1] = v_tvector;
invsurface[2] = v_normal;
2012-05-09 15:30:53 +00:00
#endif
tc = v_texcoord;
2015-02-07 22:34:22 +00:00
lm0 = v_lmcoord;
2012-07-05 13:08:07 +00:00
#ifdef LIGHTSTYLED
2015-02-07 22:34:22 +00:00
lm1 = v_lmcoord2;
lm2 = v_lmcoord3;
lm3 = v_lmcoord4;
2012-07-05 13:08:07 +00:00
#endif
2012-05-09 15:30:53 +00:00
gl_Position = ftetransform();
}
#endif
2012-07-05 13:08:07 +00:00
2012-05-09 15:30:53 +00:00
#ifdef FRAGMENT_SHADER
2015-02-07 22:34:22 +00:00
2012-07-05 13:08:07 +00:00
//samplers
2015-03-03 00:14:43 +00:00
#define s_colourmap s_t0
uniform sampler2D s_colourmap;
2012-07-05 13:08:07 +00:00
2012-11-27 03:23:19 +00:00
#ifdef SPECULAR
uniform float cvar_gl_specular;
#endif
2012-05-09 15:30:53 +00:00
#ifdef OFFSETMAPPING
#include "sys/offsetmapping.h"
#endif
void main ()
{
2012-10-07 18:38:22 +00:00
//adjust texture coords for offsetmapping
2012-05-09 15:30:53 +00:00
#ifdef OFFSETMAPPING
2015-02-07 22:34:22 +00:00
vec2 tcoffsetmap = offsetmap(s_normalmap, tc, eyevector);
2012-05-09 15:30:53 +00:00
#define tc tcoffsetmap
#endif
2012-10-07 18:38:22 +00:00
2015-02-07 22:34:22 +00:00
#if defined(EIGHTBIT) && !defined(LIGHTSTYLED)
//optional: round the lightmap coords to ensure all pixels within a texel have different lighting values either. it just looks wrong otherwise.
//don't bother if its lightstyled, such cases will have unpredictable correlations anyway.
//FIXME: this rounding is likely not correct with respect to software rendering. oh well.
vec2 lmcoord0 = floor(lm0 * 256.0*8.0)/(256.0*8.0);
#define lm0 lmcoord0
#endif
2012-10-07 18:38:22 +00:00
//yay, regular texture!
2015-02-07 22:34:22 +00:00
gl_FragColor = texture2D(s_diffuse, tc);
2012-10-07 18:38:22 +00:00
2015-05-03 19:57:46 +00:00
#if defined(BUMP) && (defined(DELUXE) || defined(SPECULAR) || defined(REFLECTCUBEMASK))
2015-02-07 22:34:22 +00:00
vec3 norm = normalize(texture2D(s_normalmap, tc).rgb - 0.5);
2015-05-03 19:57:46 +00:00
#elif defined(SPECULAR) || defined(DELUXE) || defined(REFLECTCUBEMASK)
2012-11-27 03:23:19 +00:00
vec3 norm = vec3(0, 0, 1); //specular lighting expects this to exist.
#endif
2012-10-07 18:38:22 +00:00
//modulate that by the lightmap(s) including deluxemap(s)
2012-07-05 13:08:07 +00:00
#ifdef LIGHTSTYLED
2012-11-27 03:23:19 +00:00
vec3 lightmaps;
2012-10-07 18:38:22 +00:00
#ifdef DELUXE
2015-03-03 00:14:43 +00:00
lightmaps = texture2D(s_lightmap0, lm0).rgb * e_lmscale[0].rgb * dot(norm, 2.0*texture2D(s_deluxmap0, lm0).rgb-0.5);
lightmaps += texture2D(s_lightmap1, lm1).rgb * e_lmscale[1].rgb * dot(norm, 2.0*texture2D(s_deluxmap1, lm1).rgb-0.5);
lightmaps += texture2D(s_lightmap2, lm2).rgb * e_lmscale[2].rgb * dot(norm, 2.0*texture2D(s_deluxmap2, lm2).rgb-0.5);
lightmaps += texture2D(s_lightmap3, lm3).rgb * e_lmscale[3].rgb * dot(norm, 2.0*texture2D(s_deluxmap3, lm3).rgb-0.5);
2012-10-07 18:38:22 +00:00
#else
2015-02-07 22:34:22 +00:00
lightmaps = texture2D(s_lightmap0, lm0).rgb * e_lmscale[0].rgb;
lightmaps += texture2D(s_lightmap1, lm1).rgb * e_lmscale[1].rgb;
lightmaps += texture2D(s_lightmap2, lm2).rgb * e_lmscale[2].rgb;
lightmaps += texture2D(s_lightmap3, lm3).rgb * e_lmscale[3].rgb;
2012-10-07 18:38:22 +00:00
#endif
2012-07-05 13:08:07 +00:00
#else
2015-03-03 00:14:43 +00:00
vec3 lightmaps = (texture2D(s_lightmap, lm0) * e_lmscale).rgb;
2012-11-27 03:23:19 +00:00
//modulate by the bumpmap dot light
2012-10-07 18:38:22 +00:00
#ifdef DELUXE
2015-03-03 00:14:43 +00:00
vec3 delux = 2.0*(texture2D(s_deluxmap, lm0).rgb-0.5);
lightmaps *= 1.0 / max(0.25, delux.z); //counter the darkening from deluxmaps
lightmaps *= dot(norm, delux);
2012-11-27 03:23:19 +00:00
#endif
#endif
2015-02-07 22:34:22 +00:00
//add in specular, if applicable.
2012-11-27 03:23:19 +00:00
#ifdef SPECULAR
2015-02-07 22:34:22 +00:00
vec4 specs = texture2D(s_specular, tc);
2012-11-27 03:23:19 +00:00
#ifdef DELUXE
//not lightstyled...
2015-03-03 00:14:43 +00:00
vec3 halfdir = normalize(normalize(eyevector) + 2.0*(texture2D(s_deluxmap0, lm0).rgb-0.5)); //this norm should be the deluxemap info instead
2012-10-07 18:38:22 +00:00
#else
2012-11-27 03:23:19 +00:00
vec3 halfdir = normalize(normalize(eyevector) + vec3(0.0, 0.0, 1.0)); //this norm should be the deluxemap info instead
2012-10-07 18:38:22 +00:00
#endif
2012-11-27 03:23:19 +00:00
float spec = pow(max(dot(halfdir, norm), 0.0), 32.0 * specs.a);
spec *= cvar_gl_specular;
//NOTE: rtlights tend to have a *4 scaler here to over-emphasise the effect because it looks cool.
//As not all maps will have deluxemapping, and the double-cos from the light util makes everything far too dark anyway,
//we default to something that is not garish when the light value is directly infront of every single pixel.
//we can justify this difference due to the rtlight editor etc showing the *4.
gl_FragColor.rgb += spec * specs.rgb;
2012-07-05 13:08:07 +00:00
#endif
2015-05-03 19:57:46 +00:00
#ifdef REFLECTCUBEMASK
vec3 rtc = reflect(-eyevector, norm);
rtc = rtc.x*invsurface[0] + rtc.y*invsurface[1] + rtc.z*invsurface[2];
rtc = (m_model * vec4(rtc.xyz,0.0)).xyz;
gl_FragColor.rgb += texture2D(s_reflectmask, tc).rgb * textureCube(s_reflectcube, rtc).rgb;
#endif
2015-02-07 22:34:22 +00:00
#ifdef EIGHTBIT //FIXME: with this extra flag, half the permutations are redundant.
lightmaps *= 0.5; //counter the fact that the colourmap contains overbright values and logically ranges from 0 to 2 intead of to 1.
2015-03-03 00:14:43 +00:00
float pal = texture2D(s_paletted, tc).r; //the palette index. hopefully not interpolated.
2015-02-07 22:34:22 +00:00
lightmaps -= 1.0 / 128.0; //software rendering appears to round down, so make sure we favour the lower values instead of rounding to the nearest
gl_FragColor.r = texture2D(s_colourmap, vec2(pal, 1.0-lightmaps.r)).r; //do 3 lookups. this is to cope with lit files, would be a waste to not support those.
gl_FragColor.g = texture2D(s_colourmap, vec2(pal, 1.0-lightmaps.g)).g; //its not very softwarey, but re-palettizing is ugly.
gl_FragColor.b = texture2D(s_colourmap, vec2(pal, 1.0-lightmaps.b)).b; //without lits, it should be identical.
#else
2012-11-27 03:23:19 +00:00
//now we have our diffuse+specular terms, modulate by lightmap values.
gl_FragColor.rgb *= lightmaps.rgb;
2012-10-07 18:38:22 +00:00
//add on the fullbright
2012-05-09 15:30:53 +00:00
#ifdef FULLBRIGHT
2015-02-07 22:34:22 +00:00
gl_FragColor.rgb += texture2D(s_fullbright, tc).rgb;
2012-05-09 15:30:53 +00:00
#endif
2015-02-07 22:34:22 +00:00
#endif
2012-10-07 18:38:22 +00:00
//entity modifiers
2012-05-09 15:30:53 +00:00
gl_FragColor = gl_FragColor * e_colourident;
2012-10-07 18:38:22 +00:00
//and finally hide it all if we're fogged.
2012-05-09 15:30:53 +00:00
#ifdef FOG
gl_FragColor = fog4(gl_FragColor);
#endif
}
#endif