1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
|
#include "engine.h"
#include "rendertarget.h"
VARP(shadowmap, 0, 0, 1);
extern void cleanshadowmap();
VARFP(shadowmapsize, 7, 9, 11, cleanshadowmap());
VARP(shadowmapradius, 64, 96, 256);
VAR(shadowmapheight, 0, 32, 128);
VARP(shadowmapdist, 128, 256, 512);
VARFP(fpshadowmap, 0, 0, 1, cleanshadowmap());
VARFP(shadowmapprecision, 0, 0, 1, cleanshadowmap());
bvec shadowmapambientcolor(0, 0, 0);
HVARFR(shadowmapambient, 0, 0, 0xFFFFFF,
{
if(shadowmapambient <= 255) shadowmapambient |= (shadowmapambient<<8) | (shadowmapambient<<16);
shadowmapambientcolor = bvec((shadowmapambient>>16)&0xFF, (shadowmapambient>>8)&0xFF, shadowmapambient&0xFF);
});
VARP(shadowmapintensity, 0, 40, 100);
VARP(blurshadowmap, 0, 1, 3);
VARP(blursmsigma, 1, 100, 200);
#define SHADOWSKEW 0.7071068f
vec shadowoffset(0, 0, 0), shadowfocus(0, 0, 0), shadowdir(0, SHADOWSKEW, 1);
VAR(shadowmapcasters, 1, 0, 0);
float shadowmapmaxz = 0;
void setshadowdir(int angle)
{
shadowdir = vec(0, SHADOWSKEW, 1);
shadowdir.rotate_around_z(angle*RAD);
}
VARFR(shadowmapangle, 0, 0, 360, setshadowdir(shadowmapangle));
void guessshadowdir()
{
if(shadowmapangle) return;
vec dir;
if(!sunlightcolor.iszero()) dir = sunlightdir;
else
{
vec lightpos(0, 0, 0), casterpos(0, 0, 0);
int numlights = 0, numcasters = 0;
const vector<extentity *> &ents = entities::getents();
loopv(ents)
{
extentity &e = *ents[i];
switch(e.type)
{
case ET_LIGHT:
if(!e.attr1) { lightpos.add(e.o); numlights++; }
break;
case ET_MAPMODEL:
casterpos.add(e.o);
numcasters++;
break;
default:
if(e.type<ET_GAMESPECIFIC) break;
casterpos.add(e.o);
numcasters++;
break;
}
}
if(!numlights || !numcasters) return;
lightpos.div(numlights);
casterpos.div(numcasters);
dir = vec(lightpos).sub(casterpos);
}
dir.z = 0;
if(dir.iszero()) return;
dir.normalize();
dir.mul(SHADOWSKEW);
dir.z = 1;
shadowdir = dir;
}
bool shadowmapping = false;
matrix4 shadowmatrix;
VARP(shadowmapbias, 0, 5, 1024);
VARP(shadowmappeelbias, 0, 20, 1024);
VAR(smdepthpeel, 0, 1, 1);
VAR(smoothshadowmappeel, 1, 0, 0);
static struct shadowmaptexture : rendertarget
{
const GLenum *colorformats() const
{
static const GLenum rgbafmts[] = { GL_RGBA16F, GL_RGBA16, GL_RGBA, GL_RGBA8, GL_FALSE };
return &rgbafmts[fpshadowmap && hasTF ? 0 : (shadowmapprecision ? 1 : 2)];
}
bool swaptexs() const { return true; }
bool scissorblur(int &x, int &y, int &w, int &h)
{
x = max(int(floor((scissorx1+1)/2*vieww)) - 2*blursize, 2);
y = max(int(floor((scissory1+1)/2*viewh)) - 2*blursize, 2);
w = min(int(ceil((scissorx2+1)/2*vieww)) + 2*blursize, vieww-2) - x;
h = min(int(ceil((scissory2+1)/2*viewh)) + 2*blursize, viewh-2) - y;
return true;
}
bool scissorrender(int &x, int &y, int &w, int &h)
{
x = y = 2;
w = vieww - 2*2;
h = viewh - 2*2;
return true;
}
void doclear()
{
glClearColor(0, 0, 0, 0);
glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT);
}
bool dorender()
{
vec skewdir(shadowdir);
skewdir.rotate_around_z(-camera1->yaw*RAD);
vec dir;
vecfromyawpitch(camera1->yaw, camera1->pitch, 1, 0, dir);
dir.z = 0;
dir.mul(shadowmapradius);
vec dirx, diry;
vecfromyawpitch(camera1->yaw, 0, 0, 1, dirx);
vecfromyawpitch(camera1->yaw, 0, 1, 0, diry);
shadowoffset.x = -fmod(dirx.dot(camera1->o) - skewdir.x*camera1->o.z, 2.0f*shadowmapradius/vieww);
shadowoffset.y = -fmod(diry.dot(camera1->o) - skewdir.y*camera1->o.z, 2.0f*shadowmapradius/viewh);
shadowmatrix.ortho(-shadowmapradius, shadowmapradius, -shadowmapradius, shadowmapradius, -shadowmapdist, shadowmapdist);
shadowmatrix.mul(matrix3(vec(1, 0, 0), vec(0, 1, 0), vec(skewdir.x, skewdir.y, 1)));
shadowmatrix.translate(skewdir.x*shadowmapheight + shadowoffset.x, skewdir.y*shadowmapheight + shadowoffset.y + dir.magnitude(), -shadowmapheight);
shadowmatrix.rotate_around_z((camera1->yaw+180)*-RAD);
shadowmatrix.translate(vec(camera1->o).neg());
GLOBALPARAM(shadowmatrix, shadowmatrix);
shadowfocus = camera1->o;
shadowfocus.add(dir);
shadowfocus.add(vec(shadowdir).mul(shadowmapheight));
shadowfocus.add(dirx.mul(shadowoffset.x));
shadowfocus.add(diry.mul(shadowoffset.y));
gle::colorf(0, 0, 0);
GLOBALPARAMF(shadowmapbias, -shadowmapbias/float(shadowmapdist), 1 - (shadowmapbias + (smoothshadowmappeel ? 0 : shadowmappeelbias))/float(shadowmapdist));
shadowmapcasters = 0;
shadowmapmaxz = shadowfocus.z - shadowmapdist;
shadowmapping = true;
rendergame();
shadowmapping = false;
shadowmapmaxz = min(shadowmapmaxz, shadowfocus.z);
if(shadowmapcasters && smdepthpeel)
{
int sx, sy, sw, sh;
bool scissoring = rtscissor && scissorblur(sx, sy, sw, sh) && sw > 0 && sh > 0;
if(scissoring) glScissor(sx, sy, sw, sh);
if(!rtscissor || scissoring) rendershadowmapreceivers();
}
return shadowmapcasters>0;
}
bool flipdebug() const { return false; }
void dodebug(int w, int h)
{
if(shadowmapcasters)
{
glColorMask(GL_TRUE, GL_FALSE, GL_FALSE, GL_FALSE);
debugscissor(w, h);
glColorMask(GL_FALSE, GL_FALSE, GL_TRUE, GL_FALSE);
debugblurtiles(w, h);
glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
}
}
} shadowmaptex;
void cleanshadowmap()
{
shadowmaptex.cleanup(true);
}
void calcshadowmapbb(const vec &o, float xyrad, float zrad, float &x1, float &y1, float &x2, float &y2)
{
vec skewdir(shadowdir);
skewdir.rotate_around_z(-camera1->yaw*RAD);
vec ro(o);
ro.sub(camera1->o);
ro.rotate_around_z(-(camera1->yaw+180)*RAD);
ro.x += ro.z * skewdir.x + shadowoffset.x;
ro.y += ro.z * skewdir.y + shadowmapradius * cosf(camera1->pitch*RAD) + shadowoffset.y;
vec high(ro), low(ro);
high.x += zrad * skewdir.x;
high.y += zrad * skewdir.y;
low.x -= zrad * skewdir.x;
low.y -= zrad * skewdir.y;
x1 = (min(high.x, low.x) - xyrad) / shadowmapradius;
y1 = (min(high.y, low.y) - xyrad) / shadowmapradius;
x2 = (max(high.x, low.x) + xyrad) / shadowmapradius;
y2 = (max(high.y, low.y) + xyrad) / shadowmapradius;
}
bool addshadowmapcaster(const vec &o, float xyrad, float zrad)
{
if(o.z + zrad <= shadowfocus.z - shadowmapdist || o.z - zrad >= shadowfocus.z) return false;
shadowmapmaxz = max(shadowmapmaxz, o.z + zrad);
float x1, y1, x2, y2;
calcshadowmapbb(o, xyrad, zrad, x1, y1, x2, y2);
if(!shadowmaptex.addblurtiles(x1, y1, x2, y2, 2)) return false;
shadowmapcasters++;
return true;
}
bool isshadowmapreceiver(vtxarray *va)
{
if(!shadowmap || !shadowmapcasters) return false;
if(va->shadowmapmax.z <= shadowfocus.z - shadowmapdist || va->shadowmapmin.z >= shadowmapmaxz) return false;
float xyrad = SQRT2*0.5f*max(va->shadowmapmax.x-va->shadowmapmin.x, va->shadowmapmax.y-va->shadowmapmin.y),
zrad = 0.5f*(va->shadowmapmax.z-va->shadowmapmin.z),
x1, y1, x2, y2;
if(xyrad<0 || zrad<0) return false;
vec center = vec(va->shadowmapmin).add(vec(va->shadowmapmax)).mul(0.5f);
calcshadowmapbb(center, xyrad, zrad, x1, y1, x2, y2);
return shadowmaptex.checkblurtiles(x1, y1, x2, y2, 2);
#if 0
// cheaper inexact test
float dz = va->o.z + va->size/2 - shadowfocus.z;
float cx = shadowfocus.x + dz*shadowdir.x, cy = shadowfocus.y + dz*shadowdir.y;
float skew = va->size/2*SHADOWSKEW;
if(!shadowmap || !shadowmaptex ||
va->o.z + va->size <= shadowfocus.z - shadowmapdist || va->o.z >= shadowmapmaxz ||
va->o.x + va->size <= cx - shadowmapradius-skew || va->o.x >= cx + shadowmapradius+skew ||
va->o.y + va->size <= cy - shadowmapradius-skew || va->o.y >= cy + shadowmapradius+skew)
return false;
return true;
#endif
}
bool isshadowmapcaster(const vec &o, float rad)
{
// cheaper inexact test
float dz = o.z - shadowfocus.z;
float cx = shadowfocus.x + dz*shadowdir.x, cy = shadowfocus.y + dz*shadowdir.y;
float skew = rad*SHADOWSKEW;
if(!shadowmapping ||
o.z + rad <= shadowfocus.z - shadowmapdist || o.z - rad >= shadowfocus.z ||
o.x + rad <= cx - shadowmapradius-skew || o.x - rad >= cx + shadowmapradius+skew ||
o.y + rad <= cy - shadowmapradius-skew || o.y - rad >= cy + shadowmapradius+skew)
return false;
return true;
}
void pushshadowmap()
{
if(!shadowmap || !shadowmaptex.rendertex) return;
glActiveTexture_(GL_TEXTURE7);
glBindTexture(GL_TEXTURE_2D, shadowmaptex.rendertex);
matrix4 m = shadowmatrix;
m.projective(-1, 1-shadowmapbias/float(shadowmapdist));
GLOBALPARAM(shadowmapproject, m);
glActiveTexture_(GL_TEXTURE0);
float r, g, b;
if(!shadowmapambient)
{
if(skylightcolor[0] || skylightcolor[1] || skylightcolor[2])
{
r = max(25.0f, 0.4f*ambientcolor[0] + 0.6f*max(ambientcolor[0], skylightcolor[0]));
g = max(25.0f, 0.4f*ambientcolor[1] + 0.6f*max(ambientcolor[1], skylightcolor[1]));
b = max(25.0f, 0.4f*ambientcolor[2] + 0.6f*max(ambientcolor[2], skylightcolor[2]));
}
else
{
r = max(25.0f, 2.0f*ambientcolor[0]);
g = max(25.0f, 2.0f*ambientcolor[1]);
b = max(25.0f, 2.0f*ambientcolor[2]);
}
}
else { r = shadowmapambientcolor[0]; g = shadowmapambientcolor[1]; b = shadowmapambientcolor[2]; }
GLOBALPARAMF(shadowmapambient, r/255.0f, g/255.0f, b/255.0f);
}
void popshadowmap()
{
if(!shadowmap || !shadowmaptex.rendertex) return;
}
void rendershadowmap()
{
if(!shadowmap) return;
shadowmaptex.render(1<<shadowmapsize, 1<<shadowmapsize, blurshadowmap, blursmsigma/100.0f);
}
VAR(debugsm, 0, 0, 1);
void viewshadowmap()
{
if(!shadowmap) return;
shadowmaptex.debug();
}
|