1.1.1 update (to be made stable after GZDoom updates):

- Sound overhaul, migrated everything to A_StartSound, new sound channels, CHANF_OVERLAP where needed.
 - Fancy titlemap (two variants, one based on the ps2 menu, one based on the v222 menu).
This commit is contained in:
Marisa the Magician 2020-01-04 22:30:14 +01:00
commit 94cba843e4
42 changed files with 272 additions and 179 deletions

21
shaders/glsl/utbg.fp Normal file
View file

@ -0,0 +1,21 @@
vec4 ProcessTexel()
{
vec2 uv = vTexCoord.st;
vec2 ccoord = uv-vec2(.5,1.1);
ccoord.y = abs(ccoord.y);
vec3 pt = vec3(ccoord.x,ccoord.y-1.,ccoord.y);
vec2 proj = pt.xy/pt.z;
vec2 coord = uv*4.;
vec3 bcol = texture(starstex,fract(coord)).rgb;
coord = uv*1.5;
coord = (coord-vec2(.8,.3))*2.;
vec4 mcol = texture(moontex,coord);
bcol = mix(bcol*.3,mcol.rgb*.7,mcol.a);
coord = proj*.5+vec2(-.5,-1.)*timer*.1;
coord = fract(coord);
vec3 col = getTexel(coord).rgb;
col *= mix(vec3(1.9,.4,.2),vec3(1.),pow(pt.z,.5));
col *= mix(vec3(1.3,.5,.3),vec3(1.),pow(pt.x+.8,.5));
col *= mix(vec3(1.1,1.4,1.3),vec3(.3),clamp(1.3*pow(distance(pt.xy,vec2(.2,-.25)),.9),0.,1.));
return vec4(bcol+col,1.);
}

22
shaders/glsl/utprotobg.fp Normal file
View file

@ -0,0 +1,22 @@
// based on https://www.shadertoy.com/view/Ms2SWW
vec4 ProcessTexel()
{
vec2 uv = vTexCoord.st;
vec2 p = 2.*(uv-.5);
p.x += sin(timer*.2)*.3;
p.y += cos(timer*.2)*.3;
float a = atan(p.y,p.x);
a += timer*.1;
float r = length(p);
vec2 ccoord = fract(vec2(.25/r+.1*timer,a/3.14169265)*4.);
vec3 col = getTexel(ccoord).rgb;
a += .125*3.14159265;
ccoord = fract(vec2(.25/r+.05*timer,a/3.14169265)*4.);
col += getTexel(ccoord).rgb;
col *= vec3(.3,.6,1.);
col += pow(max(0.,1.2-r),1.5);
col *= vec3(1.,1.2,1.5);
col = clamp(col,vec3(0.),vec3(1.));
return vec4(col,1.);
}