fea61cc0a68631d47539ae05e13432949c47c263
[carveJwlIkooP6JGAAIwe30JlM.git] / shaders / scoretext.h
1 #ifndef SHADER_scoretext_H
2 #define SHADER_scoretext_H
3 static void shader_scoretext_link(void);
4 static void shader_scoretext_register(void);
5 static struct vg_shader _shader_scoretext = {
6 .name = "scoretext",
7 .link = shader_scoretext_link,
8 .vs =
9 {
10 .static_src =
11 "layout (location=0) in vec3 a_co;\n"
12 "layout (location=1) in vec3 a_norm;\n"
13 "layout (location=2) in vec2 a_uv;\n"
14 "layout (location=3) in vec4 a_colour;\n"
15 "layout (location=4) in vec4 a_weights;\n"
16 "layout (location=5) in ivec4 a_groups;\n"
17 "\n"
18 "#line 2 0 \n"
19 "#line 1 2 \n"
20 "const float k_motion_lerp_amount = 0.01;\n"
21 "\n"
22 "#line 2 0 \n"
23 "\n"
24 "out vec3 aMotionVec0;\n"
25 "out vec3 aMotionVec1;\n"
26 "\n"
27 "void vs_motion_out( vec4 vproj0, vec4 vproj1 )\n"
28 "{\n"
29 " // This magically solves some artifacting errors!\n"
30 " //\n"
31 " vproj1 = vproj0*(1.0-k_motion_lerp_amount) + vproj1*k_motion_lerp_amount;\n"
32 "\n"
33 " aMotionVec0 = vec3( vproj0.xy, vproj0.w );\n"
34 " aMotionVec1 = vec3( vproj1.xy, vproj1.w );\n"
35 "}\n"
36 "\n"
37 "#line 3 0 \n"
38 "\n"
39 "uniform mat4x3 uMdl;\n"
40 "uniform mat4 uPv;\n"
41 "uniform mat4 uPvmPrev;\n"
42 "\n"
43 "uniform vec3 uInfo;\n"
44 "\n"
45 "out vec4 aColour;\n"
46 "out vec2 aUv;\n"
47 "out vec3 aNorm;\n"
48 "out vec3 aCo;\n"
49 "out vec3 aWorldCo;\n"
50 "\n"
51 "void main()\n"
52 "{\n"
53 " float w = (a_colour.g * 8.0)-5.5 + fract(uInfo.z+0.5);\n"
54 " float c = -cos(w*0.2);\n"
55 " float s = -sin(w*0.2);\n"
56 " float r = 0.2;\n"
57 "\n"
58 " float w1 = clamp( w*4.0 - a_co.y*10.0, -1.0, 1.0 ) * (3.14159265*0.5);\n"
59 " float c1 = cos(w1);\n"
60 " float s1 = sin(w1);\n"
61 "\n"
62 " float yoff = step(0.01,fract(uInfo.z))*-0.5;\n"
63 "\n"
64 " mat4x3 mlocal;\n"
65 " mlocal[0] = vec3(c1, s1,0.0);\n"
66 " mlocal[1] = vec3(-s1,c1,0.0);\n"
67 " mlocal[2] = vec3(0.0,0.0,1.0);\n"
68 " mlocal[3] = vec3(c*r,uInfo.y*0.875 + s*r,uInfo.x*0.5);\n"
69 "\n"
70 " vec3 local_pos = mlocal * vec4( a_co, 1.0 );\n"
71 " vec3 world_pos = uMdl * vec4( local_pos, 1.0 );\n"
72 "\n"
73 " vec4 vproj0 = uPv * vec4( world_pos, 1.0 );\n"
74 " vec4 vproj1 = uPvmPrev * vec4( local_pos, 1.0 );\n"
75 "\n"
76 " // Output\n"
77 " vs_motion_out( vproj0, vproj1 );\n"
78 "\n"
79 " gl_Position = vproj0;\n"
80 " aColour = a_colour;\n"
81 " aUv = a_uv + vec2( floor(uInfo.z+0.5)*(1.0/64.0), yoff );\n"
82 " aNorm = mat3(uMdl) * mat3(mlocal) * a_norm;\n"
83 " aCo = a_co;\n"
84 " aWorldCo = world_pos;\n"
85 "}\n"
86 ""},
87 .fs =
88 {
89 .static_src =
90 "uniform sampler2D uTexGarbage;\n"
91 "uniform sampler2D uTexGradients;\n"
92 "uniform vec3 uCamera;\n"
93 "\n"
94 "in vec4 aColour;\n"
95 "in vec2 aUv;\n"
96 "in vec3 aNorm;\n"
97 "in vec3 aCo;\n"
98 "in vec3 aWorldCo;\n"
99 "\n"
100 "#line 1 1 \n"
101 "layout (location = 0) out vec4 oColour;\n"
102 "\n"
103 "layout (std140) uniform ub_world_lighting\n"
104 "{\n"
105 " vec4 g_light_colours[3];\n"
106 " vec4 g_light_directions[3];\n"
107 " vec4 g_ambient_colour;\n"
108 "\n"
109 " vec4 g_water_plane;\n"
110 " vec4 g_depth_bounds;\n"
111 " float g_water_fog;\n"
112 " int g_light_count;\n"
113 " int g_light_preview;\n"
114 " int g_shadow_samples;\n"
115 "};\n"
116 "\n"
117 "uniform sampler2D g_world_depth;\n"
118 "\n"
119 "// Standard diffuse + spec models\n"
120 "// ==============================\n"
121 "\n"
122 "vec3 do_light_diffuse( vec3 vfrag, vec3 wnormal )\n"
123 "{\n"
124 " vec3 vtotal = g_ambient_colour.rgb;\n"
125 "\n"
126 " for( int i=0; i<g_light_count; i++ )\n"
127 " {\n"
128 " vec3 vcolour = g_light_colours[i].rgb;\n"
129 " vec3 vdir = g_light_directions[i].xyz;\n"
130 "\n"
131 " float flight = max(dot( vdir, wnormal )*0.75+0.25,0.0);\n"
132 " vtotal += vcolour*flight;\n"
133 " }\n"
134 "\n"
135 " return vfrag * vtotal;\n"
136 "}\n"
137 "\n"
138 "vec3 do_light_spec( vec3 vfrag, vec3 wnormal, vec3 halfview, float fintensity )\n"
139 "{\n"
140 " vec3 vcolour = g_light_colours[0].rgb;\n"
141 " vec3 vdir = g_light_directions[0].xyz;\n"
142 "\n"
143 " vec3 specdir = reflect( -vdir, wnormal );\n"
144 " float spec = pow(max(dot( halfview, specdir ), 0.0), 10.0);\n"
145 " return vfrag + vcolour*spec*fintensity;\n"
146 "}\n"
147 "\n"
148 "float world_depth_sample( vec3 pos )\n"
149 "{\n"
150 " vec2 depth_coord = (pos.xz - g_depth_bounds.xy) * g_depth_bounds.zw; \n"
151 " return texture( g_world_depth, depth_coord ).r;\n"
152 "}\n"
153 "\n"
154 "float shadow_sample( vec3 vdir )\n"
155 "{\n"
156 " vec3 sample_pos = aWorldCo + vdir;\n"
157 " float height_sample = world_depth_sample( sample_pos );\n"
158 "\n"
159 " float fdelta = height_sample - sample_pos.y;\n"
160 " return clamp( fdelta, 0.1, 0.2 )-0.1;\n"
161 "}\n"
162 "\n"
163 "vec3 do_light_shadowing_old( vec3 vfrag )\n"
164 "{\n"
165 " float faccum = 0.0;\n"
166 " faccum += shadow_sample( vec3( 0.0, 0.5, 0.0 ));\n"
167 " faccum += shadow_sample( vec3( 2.0, 0.3, 0.0 ));\n"
168 " faccum += shadow_sample( vec3( 3.0, 1.0, 0.0 ));\n"
169 " faccum += shadow_sample( vec3( 5.0, 1.0, 0.0 ));\n"
170 " faccum += shadow_sample( vec3( 0.0, 0.5, 0.0 )*1.5);\n"
171 " faccum += shadow_sample( vec3( 2.0, 0.3, 0.0 )*1.5);\n"
172 " faccum += shadow_sample( vec3( 3.0, 1.0, 0.0 )*1.5);\n"
173 " faccum += shadow_sample( vec3( 5.0, 1.0, 0.0 )*1.5);\n"
174 " return mix( vfrag, g_ambient_colour.rgb, faccum );\n"
175 "}\n"
176 "\n"
177 "vec3 do_light_shadowing( vec3 vfrag )\n"
178 "{\n"
179 " if( g_shadow_samples == 0 )\n"
180 " {\n"
181 " return vfrag;\n"
182 " }\n"
183 "\n"
184 " float fspread = g_light_colours[0].w;\n"
185 " vec3 vdir = g_light_directions[0].xyz;\n"
186 " float flength = g_light_directions[0].w;\n"
187 "\n"
188 " float famt = 0.0;\n"
189 " famt+=shadow_sample((vdir+vec3(-0.563, 0.550, 0.307)*fspread)*flength*0.1);\n"
190 " famt+=shadow_sample((vdir+vec3( 0.808, 0.686, 0.346)*fspread)*flength*0.2);\n"
191 " famt+=shadow_sample((vdir+vec3( 0.787, 0.074,-0.065)*fspread)*flength*0.3);\n"
192 " famt+=shadow_sample((vdir+vec3(-0.593, 0.071,-0.425)*fspread)*flength*0.4);\n"
193 " famt+=shadow_sample((vdir+vec3(-0.790,-0.933,-0.875)*fspread)*flength*0.5);\n"
194 " famt+=shadow_sample((vdir+vec3( 0.807,-0.690, 0.472)*fspread)*flength*0.6);\n"
195 " famt+=shadow_sample((vdir+vec3( 0.522,-0.379, 0.350)*fspread)*flength*0.7);\n"
196 " famt+=shadow_sample((vdir+vec3( 0.483, 0.201, 0.306)*fspread)*flength*0.8);\n"
197 " return mix( vfrag, g_ambient_colour.rgb, famt );\n"
198 "}\n"
199 "\n"
200 "vec3 apply_fog( vec3 vfrag, float fdist )\n"
201 "{\n"
202 " float dist = pow(fdist*0.0008,1.2);\n"
203 " return mix( vfrag, vec3(0.55,0.76,1.0), min( 1.0, dist ) );\n"
204 "}\n"
205 "\n"
206 "#line 12 0 \n"
207 "#line 1 2 \n"
208 "const float k_motion_lerp_amount = 0.01;\n"
209 "\n"
210 "#line 2 0 \n"
211 "\n"
212 "layout (location = 1) out vec2 oMotionVec;\n"
213 "\n"
214 "in vec3 aMotionVec0;\n"
215 "in vec3 aMotionVec1;\n"
216 "\n"
217 "void compute_motion_vectors()\n"
218 "{\n"
219 " // Write motion vectors\n"
220 " vec2 vmotion0 = aMotionVec0.xy / aMotionVec0.z;\n"
221 " vec2 vmotion1 = aMotionVec1.xy / aMotionVec1.z;\n"
222 "\n"
223 " oMotionVec = (vmotion1-vmotion0) * (1.0/k_motion_lerp_amount);\n"
224 "}\n"
225 "\n"
226 "#line 13 0 \n"
227 "\n"
228 "void main()\n"
229 "{\n"
230 " compute_motion_vectors();\n"
231 "\n"
232 " vec3 vfrag = vec3(0.5,0.5,0.5);\n"
233 "\n"
234 " // ws modulation\n"
235 " vec4 wgarbage = vec4(0.5,0.5,0.5,1.0);//texture( uTexGarbage, aCo.xz * 0.160 );\n"
236 " \n"
237 " // Creating normal patches\n"
238 " vec3 modnorm = (wgarbage.rgb-0.4) * 1.4;\n"
239 " vec3 qnorm = normalize(floor(aNorm*4.0+modnorm)*0.25) + vec3(0.001,0.0,0.0);\n"
240 "\n"
241 " vec3 tangent0 = normalize(cross(qnorm,vec3(0.0,1.0,0.0)));\n"
242 " vec3 tangent1 = cross(qnorm,tangent0);\n"
243 " vec2 uvdiffuse = vec2( dot(tangent0,aCo), dot(tangent1,aCo) ) * 0.160;\n"
244 " \n"
245 " // Patch local noise\n"
246 " vec4 rgarbage = texture( uTexGarbage, uvdiffuse );\n"
247 "\n"
248 " // Colour blending\n"
249 " float fblendclip = step(0.380,aColour.r + (rgarbage.r-0.5)*-1.740)*0.320;\n"
250 " vec2 uvgradients = aUv + vec2( fblendclip, 0.0 );\n"
251 "\n"
252 " vfrag = texture( uTexGradients, uvgradients ).rgb;\n"
253 " vfrag -= rgarbage.a*0.04;\n"
254 "\n"
255 " if( g_light_preview == 1 )\n"
256 " {\n"
257 " vfrag = vec3(0.5);\n"
258 " }\n"
259 "\n"
260 " // Lighting\n"
261 " vec3 halfview = uCamera - aWorldCo;\n"
262 " float fdist = length( halfview );\n"
263 " halfview /= fdist;\n"
264 "\n"
265 " vfrag = do_light_diffuse( vfrag, qnorm );\n"
266 " vfrag = do_light_spec( vfrag, qnorm, halfview, 0.1 );\n"
267 " vfrag = do_light_shadowing( vfrag );\n"
268 " vfrag = apply_fog( vfrag, fdist );\n"
269 "\n"
270 " oColour = vec4(vfrag, 1.0 );\n"
271 "}\n"
272 ""},
273 };
274
275 static GLuint _uniform_scoretext_uMdl;
276 static GLuint _uniform_scoretext_uPv;
277 static GLuint _uniform_scoretext_uPvmPrev;
278 static GLuint _uniform_scoretext_uInfo;
279 static GLuint _uniform_scoretext_uTexGarbage;
280 static GLuint _uniform_scoretext_uTexGradients;
281 static GLuint _uniform_scoretext_uCamera;
282 static GLuint _uniform_scoretext_g_world_depth;
283 static void shader_scoretext_uMdl(m4x3f m){
284 glUniformMatrix4x3fv(_uniform_scoretext_uMdl,1,GL_FALSE,(float*)m);
285 }
286 static void shader_scoretext_uPv(m4x4f m){
287 glUniformMatrix4fv(_uniform_scoretext_uPv,1,GL_FALSE,(float*)m);
288 }
289 static void shader_scoretext_uPvmPrev(m4x4f m){
290 glUniformMatrix4fv(_uniform_scoretext_uPvmPrev,1,GL_FALSE,(float*)m);
291 }
292 static void shader_scoretext_uInfo(v3f v){
293 glUniform3fv(_uniform_scoretext_uInfo,1,v);
294 }
295 static void shader_scoretext_uTexGarbage(int i){
296 glUniform1i(_uniform_scoretext_uTexGarbage,i);
297 }
298 static void shader_scoretext_uTexGradients(int i){
299 glUniform1i(_uniform_scoretext_uTexGradients,i);
300 }
301 static void shader_scoretext_uCamera(v3f v){
302 glUniform3fv(_uniform_scoretext_uCamera,1,v);
303 }
304 static void shader_scoretext_g_world_depth(int i){
305 glUniform1i(_uniform_scoretext_g_world_depth,i);
306 }
307 static void shader_scoretext_register(void){
308 vg_shader_register( &_shader_scoretext );
309 }
310 static void shader_scoretext_use(void){ glUseProgram(_shader_scoretext.id); }
311 static void shader_scoretext_link(void){
312 _uniform_scoretext_uMdl = glGetUniformLocation( _shader_scoretext.id, "uMdl" );
313 _uniform_scoretext_uPv = glGetUniformLocation( _shader_scoretext.id, "uPv" );
314 _uniform_scoretext_uPvmPrev = glGetUniformLocation( _shader_scoretext.id, "uPvmPrev" );
315 _uniform_scoretext_uInfo = glGetUniformLocation( _shader_scoretext.id, "uInfo" );
316 _uniform_scoretext_uTexGarbage = glGetUniformLocation( _shader_scoretext.id, "uTexGarbage" );
317 _uniform_scoretext_uTexGradients = glGetUniformLocation( _shader_scoretext.id, "uTexGradients" );
318 _uniform_scoretext_uCamera = glGetUniformLocation( _shader_scoretext.id, "uCamera" );
319 _uniform_scoretext_g_world_depth = glGetUniformLocation( _shader_scoretext.id, "g_world_depth" );
320 }
321 #endif /* SHADER_scoretext_H */