2017-02-11 16:14:06 +00:00
!!ver 100 150
!!permu TESS
2012-05-09 15:30:53 +00:00
!!permu FULLBRIGHT
!!permu UPPERLOWER
!!permu FRAMEBLEND
!!permu SKELETAL
!!permu FOG
2013-03-12 23:14:57 +00:00
!!permu BUMP
2017-08-29 02:29:06 +00:00
!!permu REFLECTCUBEMASK
2013-03-12 22:35:33 +00:00
!!cvarf r_glsl_offsetmapping_scale
!!cvarf gl_specular
2016-07-12 00:40:13 +00:00
!!cvardf gl_affinemodels=0
2017-02-19 00:15:42 +00:00
!!cvardf r_tessellation_level=5
2018-11-27 16:48:19 +00:00
!!samps !EIGHTBIT diffuse normalmap specular fullbright upper lower reflectmask reflectcube
!!samps =EIGHTBIT paletted 1
2019-02-19 06:49:03 +00:00
//!!permu VC -- adds rgba vertex colour multipliers
//!!permu SPECULAR -- auto-added when gl_specular>0
//!!permu OFFSETMAPPING -- auto-added when r_glsl_offsetmapping is set
//!!permu NONORMALS -- states that there's no normals available, which affects lighting.
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
//standard shader used for models.
//must support skeletal and 2-way vertex blending or Bad Things Will Happen.
//the vertex shader is responsible for calculating lighting values.
2016-07-12 00:40:13 +00:00
#if gl_affinemodels==1 && __VERSION__ >= 130
2017-02-11 16:14:06 +00:00
#define affine noperspective
#else
#define affine
2013-03-12 22:35:33 +00:00
#endif
2019-02-19 06:49:03 +00:00
#ifdef NONORMALS //lots of things need normals to work properly. make sure nothing breaks simply because they added an extra texture.
#undef BUMP
#undef SPECULAR
#undef OFFSETMAPPING
#undef REFLECTCUBEMASK
#endif
2013-03-12 22:35:33 +00:00
2017-02-11 16:14:06 +00:00
2012-05-09 15:30:53 +00:00
#ifdef VERTEX_SHADER
#include "sys/skeletal.h"
2017-02-11 16:14:06 +00:00
affine varying vec2 tc;
2019-02-16 19:09:07 +00:00
varying vec4 light;
2017-08-29 02:29:06 +00:00
#if defined(SPECULAR) || defined(OFFSETMAPPING) || defined(REFLECTCUBEMASK)
2017-02-11 16:14:06 +00:00
varying vec3 eyevector;
#endif
2017-08-29 02:29:06 +00:00
#ifdef REFLECTCUBEMASK
varying mat3 invsurface;
#endif
2017-02-11 16:14:06 +00:00
#ifdef TESS
varying vec3 vertex;
varying vec3 normal;
#endif
2012-05-09 15:30:53 +00:00
void main ()
{
2019-02-19 06:49:03 +00:00
light.rgba = vec4(e_light_ambient, 1.0);
#ifdef NONORMALS
vec3 n, w;
gl_Position = skeletaltransform_w(w);
n = vec3(0.0);
#else
2013-03-12 22:35:33 +00:00
vec3 n, s, t, w;
gl_Position = skeletaltransform_wnst(w,n,s,t);
2019-02-16 19:09:07 +00:00
n = normalize(n);
2019-02-19 06:49:03 +00:00
float d = dot(n,e_light_dir);
if (d < 0.0) //vertex shader. this might get ugly, but I don't really want to make it per vertex.
d = 0.0; //this avoids the dark side going below the ambient level.
light.rgb += (d*e_light_mul);
#endif
2018-09-29 17:31:58 +00:00
#if defined(SPECULAR)||defined(OFFSETMAPPING) || defined(REFLECTCUBEMASK)
2013-03-12 22:35:33 +00:00
vec3 eyeminusvertex = e_eyepos - w.xyz;
2014-01-13 02:42:25 +00:00
eyevector.x = dot(eyeminusvertex, s.xyz);
2013-03-12 22:35:33 +00:00
eyevector.y = dot(eyeminusvertex, t.xyz);
eyevector.z = dot(eyeminusvertex, n.xyz);
#endif
2017-08-29 02:29:06 +00:00
#ifdef REFLECTCUBEMASK
invsurface[0] = s;
invsurface[1] = t;
invsurface[2] = n;
#endif
2013-03-12 22:35:33 +00:00
2017-02-11 16:14:06 +00:00
tc = v_texcoord;
2019-02-16 19:09:07 +00:00
#ifdef VC
light *= v_colour;
#endif
2018-01-02 19:59:16 +00:00
//FIXME: Software rendering imitation should possibly push out normals by half a pixel or something to approximate software's over-estimation of distant model sizes (small models are drawn using JUST their verticies using the nearest pixel, which results in larger meshes)
2017-02-11 16:14:06 +00:00
#ifdef TESS
normal = n;
vertex = w;
#endif
}
#endif
#if defined(TESS_CONTROL_SHADER)
layout(vertices = 3) out;
in vec3 vertex[];
out vec3 t_vertex[];
in vec3 normal[];
out vec3 t_normal[];
affine in vec2 tc[];
affine out vec2 t_tc[];
2019-02-16 19:09:07 +00:00
in vec4 light[];
out vec4 t_light[];
2017-08-29 02:29:06 +00:00
#if defined(SPECULAR) || defined(OFFSETMAPPING) || defined(REFLECTCUBEMASK)
2017-02-11 16:14:06 +00:00
in vec3 eyevector[];
out vec3 t_eyevector[];
#endif
2017-08-29 02:29:06 +00:00
#ifdef REFLECTCUBEMASK
in mat3 invsurface[];
out mat3 t_invsurface[];
#endif
2017-02-11 16:14:06 +00:00
void main()
{
//the control shader needs to pass stuff through
#define id gl_InvocationID
t_vertex[id] = vertex[id];
t_normal[id] = normal[id];
t_tc[id] = tc[id];
t_light[id] = light[id];
2017-08-29 02:29:06 +00:00
#if defined(SPECULAR) || defined(OFFSETMAPPING) || defined(REFLECTCUBEMASK)
2017-02-11 16:14:06 +00:00
t_eyevector[id] = eyevector[id];
#endif
2017-08-29 02:29:06 +00:00
#ifdef REFLECTCUBEMASK
t_invsurface[id][0] = invsurface[id][0];
t_invsurface[id][1] = invsurface[id][1];
t_invsurface[id][2] = invsurface[id][2];
#endif
2017-02-11 16:14:06 +00:00
2017-02-19 00:15:42 +00:00
gl_TessLevelOuter[0] = float(r_tessellation_level);
gl_TessLevelOuter[1] = float(r_tessellation_level);
gl_TessLevelOuter[2] = float(r_tessellation_level);
gl_TessLevelInner[0] = float(r_tessellation_level);
2017-02-11 16:14:06 +00:00
}
#endif
#if defined(TESS_EVALUATION_SHADER)
layout(triangles) in;
in vec3 t_vertex[];
in vec3 t_normal[];
affine in vec2 t_tc[];
affine out vec2 tc;
2019-02-16 19:09:07 +00:00
in vec4 t_light[];
out vec4 light;
2017-08-29 02:29:06 +00:00
#if defined(SPECULAR) || defined(OFFSETMAPPING) || defined(REFLECTCUBEMASK)
2017-02-11 16:14:06 +00:00
in vec3 t_eyevector[];
out vec3 eyevector;
#endif
2017-08-29 02:29:06 +00:00
#ifdef REFLECTCUBEMASK
in mat3 t_invsurface[];
out mat3 invsurface;
#endif
2017-02-11 16:14:06 +00:00
#define LERP(a) (gl_TessCoord.x*a[0] + gl_TessCoord.y*a[1] + gl_TessCoord.z*a[2])
void main()
{
#define factor 1.0
tc = LERP(t_tc);
vec3 w = LERP(t_vertex);
vec3 t0 = w - dot(w-t_vertex[0],t_normal[0])*t_normal[0];
vec3 t1 = w - dot(w-t_vertex[1],t_normal[1])*t_normal[1];
vec3 t2 = w - dot(w-t_vertex[2],t_normal[2])*t_normal[2];
w = w*(1.0-factor) + factor*(gl_TessCoord.x*t0+gl_TessCoord.y*t1+gl_TessCoord.z*t2);
//FIXME: we should be recalcing these here, instead of just lerping them
light = LERP(t_light);
2017-08-29 02:29:06 +00:00
#if defined(SPECULAR) || defined(OFFSETMAPPING) || defined(REFLECTCUBEMASK)
2017-02-11 16:14:06 +00:00
eyevector = LERP(t_eyevector);
#endif
2017-08-29 02:29:06 +00:00
#ifdef REFLECTCUBEMASK
invsurface[0] = LERP(t_invsurface[0]);
invsurface[1] = LERP(t_invsurface[1]);
invsurface[2] = LERP(t_invsurface[2]);
#endif
2017-02-11 16:14:06 +00:00
gl_Position = m_modelviewprojection * vec4(w,1.0);
2012-05-09 15:30:53 +00:00
}
#endif
2017-02-11 16:14:06 +00:00
2012-05-09 15:30:53 +00:00
#ifdef FRAGMENT_SHADER
2016-07-12 00:40:13 +00:00
2012-05-09 15:30:53 +00:00
#include "sys/fog.h"
2013-03-12 23:14:57 +00:00
#if defined(SPECULAR)
2013-03-12 22:35:33 +00:00
uniform float cvar_gl_specular;
#endif
#ifdef OFFSETMAPPING
#include "sys/offsetmapping.h"
#endif
2016-07-12 00:40:13 +00:00
#ifdef EIGHTBIT
#define s_colourmap s_t0
#endif
2017-02-11 16:14:06 +00:00
affine varying vec2 tc;
2019-02-16 19:09:07 +00:00
varying vec4 light;
2017-08-29 02:29:06 +00:00
#if defined(SPECULAR) || defined(OFFSETMAPPING) || defined(REFLECTCUBEMASK)
2017-02-11 16:14:06 +00:00
varying vec3 eyevector;
2016-07-12 00:40:13 +00:00
#endif
2017-08-29 02:29:06 +00:00
#ifdef REFLECTCUBEMASK
varying mat3 invsurface;
#endif
2016-07-12 00:40:13 +00:00
2012-05-09 15:30:53 +00:00
void main ()
{
vec4 col, sp;
2013-03-12 22:35:33 +00:00
#ifdef OFFSETMAPPING
2015-03-03 00:14:43 +00:00
vec2 tcoffsetmap = offsetmap(s_normalmap, tc, eyevector);
2013-03-12 22:35:33 +00:00
#define tc tcoffsetmap
#endif
2016-07-12 00:40:13 +00:00
#ifdef EIGHTBIT
2019-02-24 08:27:38 +00:00
vec3 lightlev = light.rgb;
2016-07-12 00:40:13 +00:00
//FIXME: with this extra flag, half the permutations are redundant.
lightlev *= 0.5; //counter the fact that the colourmap contains overbright values and logically ranges from 0 to 2 intead of to 1.
float pal = texture2D(s_paletted, tc).r; //the palette index. hopefully not interpolated.
2018-01-02 19:59:16 +00:00
// lightlev -= 1.0 / 128.0; //software rendering appears to round down, so make sure we favour the lower values instead of rounding to the nearest
2016-07-12 00:40:13 +00:00
col.r = texture2D(s_colourmap, vec2(pal, 1.0-lightlev.r)).r; //do 3 lookups. this is to cope with lit files, would be a waste to not support those.
col.g = texture2D(s_colourmap, vec2(pal, 1.0-lightlev.g)).g; //its not very softwarey, but re-palettizing is ugly.
col.b = texture2D(s_colourmap, vec2(pal, 1.0-lightlev.b)).b; //without lits, it should be identical.
2019-02-24 08:27:38 +00:00
col.a = (pal<1.0)?light.a:0.0;
2016-07-12 00:40:13 +00:00
#else
2015-03-03 00:14:43 +00:00
col = texture2D(s_diffuse, tc);
2016-07-12 00:40:13 +00:00
#ifdef UPPER
vec4 uc = texture2D(s_upper, tc);
col.rgb += uc.rgb*e_uppercolour*uc.a;
#endif
#ifdef LOWER
vec4 lc = texture2D(s_lower, tc);
col.rgb += lc.rgb*e_lowercolour*lc.a;
#endif
#if defined(BUMP) && defined(SPECULAR)
vec3 bumps = normalize(vec3(texture2D(s_normalmap, tc)) - 0.5);
vec4 specs = texture2D(s_specular, tc);
2018-09-29 17:31:58 +00:00
vec3 halfdir = normalize(normalize(eyevector) + e_light_dir);
2017-08-29 02:29:06 +00:00
float spec = pow(max(dot(halfdir, bumps), 0.0), FTE_SPECULAR_EXPONENT * specs.a);
col.rgb += FTE_SPECULAR_MULTIPLIER * spec * specs.rgb;
#elif defined(REFLECTCUBEMASK)
vec3 bumps = vec3(0, 0, 1);
#endif
#ifdef REFLECTCUBEMASK
vec3 rtc = reflect(-eyevector, bumps);
rtc = rtc.x*invsurface[0] + rtc.y*invsurface[1] + rtc.z*invsurface[2];
rtc = (m_model * vec4(rtc.xyz,0.0)).xyz;
col.rgb += texture2D(s_reflectmask, tc).rgb * textureCube(s_reflectcube, rtc).rgb;
2016-07-12 00:40:13 +00:00
#endif
2013-03-12 22:35:33 +00:00
2019-02-16 19:09:07 +00:00
col *= light * e_colourident;
2014-10-05 20:04:11 +00:00
2016-07-12 00:40:13 +00:00
#ifdef FULLBRIGHT
vec4 fb = texture2D(s_fullbright, tc);
// col.rgb = mix(col.rgb, fb.rgb, fb.a);
2017-08-29 02:29:06 +00:00
col.rgb += fb.rgb * fb.a * e_glowmod.rgb;
2016-07-12 00:40:13 +00:00
#endif
2012-05-09 15:30:53 +00:00
#endif
2013-03-12 22:35:33 +00:00
2018-10-11 10:31:23 +00:00
gl_FragColor = fog4(col);
2012-05-09 15:30:53 +00:00
}
#endif
2016-07-12 00:40:13 +00:00