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