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