LTFACE.C 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589
  1. #include "light.h"
  2. /*
  3. ============
  4. CastRay
  5. Returns the distance between the points, or -1 if blocked
  6. =============
  7. */
  8. vec_t CastRay (vec3_t p1, vec3_t p2)
  9. {
  10. int i;
  11. vec_t t;
  12. qboolean trace;
  13. trace = TestLine (p1, p2);
  14. if (!trace)
  15. return -1; // ray was blocked
  16. t = 0;
  17. for (i=0 ; i< 3 ; i++)
  18. t += (p2[i]-p1[i]) * (p2[i]-p1[i]);
  19. if (t == 0)
  20. t = 1; // don't blow up...
  21. return sqrt(t);
  22. }
  23. /*
  24. ===============================================================================
  25. SAMPLE POINT DETERMINATION
  26. void SetupBlock (dface_t *f) Returns with surfpt[] set
  27. This is a little tricky because the lightmap covers more area than the face.
  28. If done in the straightforward fashion, some of the
  29. sample points will be inside walls or on the other side of walls, causing
  30. false shadows and light bleeds.
  31. To solve this, I only consider a sample point valid if a line can be drawn
  32. between it and the exact midpoint of the face. If invalid, it is adjusted
  33. towards the center until it is valid.
  34. (this doesn't completely work)
  35. ===============================================================================
  36. */
  37. #define SINGLEMAP (18*18*4)
  38. typedef struct
  39. {
  40. vec_t lightmaps[MAXLIGHTMAPS][SINGLEMAP];
  41. int numlightstyles;
  42. vec_t *light;
  43. vec_t facedist;
  44. vec3_t facenormal;
  45. int numsurfpt;
  46. vec3_t surfpt[SINGLEMAP];
  47. vec3_t texorg;
  48. vec3_t worldtotex[2]; // s = (world - texorg) . worldtotex[0]
  49. vec3_t textoworld[2]; // world = texorg + s * textoworld[0]
  50. vec_t exactmins[2], exactmaxs[2];
  51. int texmins[2], texsize[2];
  52. int lightstyles[256];
  53. int surfnum;
  54. dface_t *face;
  55. } lightinfo_t;
  56. /*
  57. ================
  58. CalcFaceVectors
  59. Fills in texorg, worldtotex. and textoworld
  60. ================
  61. */
  62. void CalcFaceVectors (lightinfo_t *l)
  63. {
  64. texinfo_t *tex;
  65. int i, j;
  66. vec3_t texnormal;
  67. float distscale;
  68. vec_t dist, len;
  69. tex = &texinfo[l->face->texinfo];
  70. // convert from float to vec_t
  71. for (i=0 ; i<2 ; i++)
  72. for (j=0 ; j<3 ; j++)
  73. l->worldtotex[i][j] = tex->vecs[i][j];
  74. // calculate a normal to the texture axis. points can be moved along this
  75. // without changing their S/T
  76. texnormal[0] = tex->vecs[1][1]*tex->vecs[0][2]
  77. - tex->vecs[1][2]*tex->vecs[0][1];
  78. texnormal[1] = tex->vecs[1][2]*tex->vecs[0][0]
  79. - tex->vecs[1][0]*tex->vecs[0][2];
  80. texnormal[2] = tex->vecs[1][0]*tex->vecs[0][1]
  81. - tex->vecs[1][1]*tex->vecs[0][0];
  82. VectorNormalize (texnormal);
  83. // flip it towards plane normal
  84. distscale = DotProduct (texnormal, l->facenormal);
  85. if (!distscale)
  86. Error ("Texture axis perpendicular to face");
  87. if (distscale < 0)
  88. {
  89. distscale = -distscale;
  90. VectorSubtract (vec3_origin, texnormal, texnormal);
  91. }
  92. // distscale is the ratio of the distance along the texture normal to
  93. // the distance along the plane normal
  94. distscale = 1/distscale;
  95. for (i=0 ; i<2 ; i++)
  96. {
  97. len = VectorLength (l->worldtotex[i]);
  98. dist = DotProduct (l->worldtotex[i], l->facenormal);
  99. dist *= distscale;
  100. VectorMA (l->worldtotex[i], -dist, texnormal, l->textoworld[i]);
  101. VectorScale (l->textoworld[i], (1/len)*(1/len), l->textoworld[i]);
  102. }
  103. // calculate texorg on the texture plane
  104. for (i=0 ; i<3 ; i++)
  105. l->texorg[i] = -tex->vecs[0][3]* l->textoworld[0][i] - tex->vecs[1][3] * l->textoworld[1][i];
  106. // project back to the face plane
  107. dist = DotProduct (l->texorg, l->facenormal) - l->facedist - 1;
  108. dist *= distscale;
  109. VectorMA (l->texorg, -dist, texnormal, l->texorg);
  110. }
  111. /*
  112. ================
  113. CalcFaceExtents
  114. Fills in s->texmins[] and s->texsize[]
  115. also sets exactmins[] and exactmaxs[]
  116. ================
  117. */
  118. void CalcFaceExtents (lightinfo_t *l)
  119. {
  120. dface_t *s;
  121. vec_t mins[2], maxs[2], val;
  122. int i,j, e;
  123. dvertex_t *v;
  124. texinfo_t *tex;
  125. s = l->face;
  126. mins[0] = mins[1] = 999999;
  127. maxs[0] = maxs[1] = -99999;
  128. tex = &texinfo[s->texinfo];
  129. for (i=0 ; i<s->numedges ; i++)
  130. {
  131. e = dsurfedges[s->firstedge+i];
  132. if (e >= 0)
  133. v = dvertexes + dedges[e].v[0];
  134. else
  135. v = dvertexes + dedges[-e].v[1];
  136. for (j=0 ; j<2 ; j++)
  137. {
  138. val = v->point[0] * tex->vecs[j][0] +
  139. v->point[1] * tex->vecs[j][1] +
  140. v->point[2] * tex->vecs[j][2] +
  141. tex->vecs[j][3];
  142. if (val < mins[j])
  143. mins[j] = val;
  144. if (val > maxs[j])
  145. maxs[j] = val;
  146. }
  147. }
  148. for (i=0 ; i<2 ; i++)
  149. {
  150. l->exactmins[i] = mins[i];
  151. l->exactmaxs[i] = maxs[i];
  152. mins[i] = floor(mins[i]/16);
  153. maxs[i] = ceil(maxs[i]/16);
  154. l->texmins[i] = mins[i];
  155. l->texsize[i] = maxs[i] - mins[i];
  156. if (l->texsize[i] > 17)
  157. Error ("Bad surface extents");
  158. }
  159. }
  160. /*
  161. =================
  162. CalcPoints
  163. For each texture aligned grid point, back project onto the plane
  164. to get the world xyz value of the sample point
  165. =================
  166. */
  167. int c_bad;
  168. void CalcPoints (lightinfo_t *l)
  169. {
  170. int i;
  171. int s, t, j;
  172. int w, h, step;
  173. vec_t starts, startt, us, ut;
  174. vec_t *surf;
  175. vec_t mids, midt;
  176. vec3_t facemid, move;
  177. //
  178. // fill in surforg
  179. // the points are biased towards the center of the surface
  180. // to help avoid edge cases just inside walls
  181. //
  182. surf = l->surfpt[0];
  183. mids = (l->exactmaxs[0] + l->exactmins[0])/2;
  184. midt = (l->exactmaxs[1] + l->exactmins[1])/2;
  185. for (j=0 ; j<3 ; j++)
  186. facemid[j] = l->texorg[j] + l->textoworld[0][j]*mids + l->textoworld[1][j]*midt;
  187. if (extrasamples)
  188. { // extra filtering
  189. h = (l->texsize[1]+1)*2;
  190. w = (l->texsize[0]+1)*2;
  191. starts = (l->texmins[0]-0.5)*16;
  192. startt = (l->texmins[1]-0.5)*16;
  193. step = 8;
  194. }
  195. else
  196. {
  197. h = l->texsize[1]+1;
  198. w = l->texsize[0]+1;
  199. starts = l->texmins[0]*16;
  200. startt = l->texmins[1]*16;
  201. step = 16;
  202. }
  203. l->numsurfpt = w * h;
  204. for (t=0 ; t<h ; t++)
  205. {
  206. for (s=0 ; s<w ; s++, surf+=3)
  207. {
  208. us = starts + s*step;
  209. ut = startt + t*step;
  210. // if a line can be traced from surf to facemid, the point is good
  211. for (i=0 ; i<6 ; i++)
  212. {
  213. // calculate texture point
  214. for (j=0 ; j<3 ; j++)
  215. surf[j] = l->texorg[j] + l->textoworld[0][j]*us
  216. + l->textoworld[1][j]*ut;
  217. if (CastRay (facemid, surf) != -1)
  218. break; // got it
  219. if (i & 1)
  220. {
  221. if (us > mids)
  222. {
  223. us -= 8;
  224. if (us < mids)
  225. us = mids;
  226. }
  227. else
  228. {
  229. us += 8;
  230. if (us > mids)
  231. us = mids;
  232. }
  233. }
  234. else
  235. {
  236. if (ut > midt)
  237. {
  238. ut -= 8;
  239. if (ut < midt)
  240. ut = midt;
  241. }
  242. else
  243. {
  244. ut += 8;
  245. if (ut > midt)
  246. ut = midt;
  247. }
  248. }
  249. // move surf 8 pixels towards the center
  250. VectorSubtract (facemid, surf, move);
  251. VectorNormalize (move);
  252. VectorMA (surf, 8, move, surf);
  253. }
  254. if (i == 2)
  255. c_bad++;
  256. }
  257. }
  258. }
  259. /*
  260. ===============================================================================
  261. FACE LIGHTING
  262. ===============================================================================
  263. */
  264. int c_culldistplane, c_proper;
  265. /*
  266. ================
  267. SingleLightFace
  268. ================
  269. */
  270. void SingleLightFace (entity_t *light, lightinfo_t *l)
  271. {
  272. vec_t dist;
  273. vec3_t incoming;
  274. vec_t angle;
  275. vec_t add;
  276. vec_t *surf;
  277. qboolean hit;
  278. int mapnum;
  279. int size;
  280. int c, i;
  281. vec3_t rel;
  282. vec3_t spotvec;
  283. vec_t falloff;
  284. vec_t *lightsamp;
  285. VectorSubtract (light->origin, bsp_origin, rel);
  286. dist = scaledist * (DotProduct (rel, l->facenormal) - l->facedist);
  287. // don't bother with lights behind the surface
  288. if (dist <= 0)
  289. return;
  290. // don't bother with light too far away
  291. if (dist > light->light)
  292. {
  293. c_culldistplane++;
  294. return;
  295. }
  296. if (light->targetent)
  297. {
  298. VectorSubtract (light->targetent->origin, light->origin, spotvec);
  299. VectorNormalize (spotvec);
  300. if (!light->angle)
  301. falloff = -cos(20*Q_PI/180);
  302. else
  303. falloff = -cos(light->angle/2*Q_PI/180);
  304. }
  305. else
  306. falloff = 0; // shut up compiler warnings
  307. mapnum = 0;
  308. for (mapnum=0 ; mapnum<l->numlightstyles ; mapnum++)
  309. if (l->lightstyles[mapnum] == light->style)
  310. break;
  311. lightsamp = l->lightmaps[mapnum];
  312. if (mapnum == l->numlightstyles)
  313. { // init a new light map
  314. if (mapnum == MAXLIGHTMAPS)
  315. {
  316. printf ("WARNING: Too many light styles on a face\n");
  317. return;
  318. }
  319. size = (l->texsize[1]+1)*(l->texsize[0]+1);
  320. for (i=0 ; i<size ; i++)
  321. lightsamp[i] = 0;
  322. }
  323. //
  324. // check it for real
  325. //
  326. hit = false;
  327. c_proper++;
  328. surf = l->surfpt[0];
  329. for (c=0 ; c<l->numsurfpt ; c++, surf+=3)
  330. {
  331. dist = CastRay(light->origin, surf)*scaledist;
  332. if (dist < 0)
  333. continue; // light doesn't reach
  334. VectorSubtract (light->origin, surf, incoming);
  335. VectorNormalize (incoming);
  336. angle = DotProduct (incoming, l->facenormal);
  337. if (light->targetent)
  338. { // spotlight cutoff
  339. if (DotProduct (spotvec, incoming) > falloff)
  340. continue;
  341. }
  342. angle = (1.0-scalecos) + scalecos*angle;
  343. add = light->light - dist;
  344. add *= angle;
  345. if (add < 0)
  346. continue;
  347. lightsamp[c] += add;
  348. if (lightsamp[c] > 1) // ignore real tiny lights
  349. hit = true;
  350. }
  351. if (mapnum == l->numlightstyles && hit)
  352. {
  353. l->lightstyles[mapnum] = light->style;
  354. l->numlightstyles++; // the style has some real data now
  355. }
  356. }
  357. /*
  358. ============
  359. FixMinlight
  360. ============
  361. */
  362. void FixMinlight (lightinfo_t *l)
  363. {
  364. int i, j;
  365. float minlight;
  366. minlight = minlights[l->surfnum];
  367. // if minlight is set, there must be a style 0 light map
  368. if (!minlight)
  369. return;
  370. for (i=0 ; i< l->numlightstyles ; i++)
  371. {
  372. if (l->lightstyles[i] == 0)
  373. break;
  374. }
  375. if (i == l->numlightstyles)
  376. {
  377. if (l->numlightstyles == MAXLIGHTMAPS)
  378. return; // oh well..
  379. for (j=0 ; j<l->numsurfpt ; j++)
  380. l->lightmaps[i][j] = minlight;
  381. l->lightstyles[i] = 0;
  382. l->numlightstyles++;
  383. }
  384. else
  385. {
  386. for (j=0 ; j<l->numsurfpt ; j++)
  387. if ( l->lightmaps[i][j] < minlight)
  388. l->lightmaps[i][j] = minlight;
  389. }
  390. }
  391. /*
  392. ============
  393. LightFace
  394. ============
  395. */
  396. void LightFace (int surfnum)
  397. {
  398. dface_t *f;
  399. lightinfo_t l;
  400. int s, t;
  401. int i,j,c;
  402. vec_t total;
  403. int size;
  404. int lightmapwidth, lightmapsize;
  405. byte *out;
  406. vec_t *light;
  407. int w, h;
  408. f = dfaces + surfnum;
  409. //
  410. // some surfaces don't need lightmaps
  411. //
  412. f->lightofs = -1;
  413. for (j=0 ; j<MAXLIGHTMAPS ; j++)
  414. f->styles[j] = 255;
  415. if ( texinfo[f->texinfo].flags & TEX_SPECIAL)
  416. { // non-lit texture
  417. return;
  418. }
  419. memset (&l, 0, sizeof(l));
  420. l.surfnum = surfnum;
  421. l.face = f;
  422. //
  423. // rotate plane
  424. //
  425. VectorCopy (dplanes[f->planenum].normal, l.facenormal);
  426. l.facedist = dplanes[f->planenum].dist;
  427. if (f->side)
  428. {
  429. VectorSubtract (vec3_origin, l.facenormal, l.facenormal);
  430. l.facedist = -l.facedist;
  431. }
  432. CalcFaceVectors (&l);
  433. CalcFaceExtents (&l);
  434. CalcPoints (&l);
  435. lightmapwidth = l.texsize[0]+1;
  436. size = lightmapwidth*(l.texsize[1]+1);
  437. if (size > SINGLEMAP)
  438. Error ("Bad lightmap size");
  439. for (i=0 ; i<MAXLIGHTMAPS ; i++)
  440. l.lightstyles[i] = 255;
  441. //
  442. // cast all lights
  443. //
  444. l.numlightstyles = 0;
  445. for (i=0 ; i<num_entities ; i++)
  446. {
  447. if (entities[i].light)
  448. SingleLightFace (&entities[i], &l);
  449. }
  450. FixMinlight (&l);
  451. if (!l.numlightstyles)
  452. { // no light hitting it
  453. return;
  454. }
  455. //
  456. // save out the values
  457. //
  458. for (i=0 ; i <MAXLIGHTMAPS ; i++)
  459. f->styles[i] = l.lightstyles[i];
  460. lightmapsize = size*l.numlightstyles;
  461. out = GetFileSpace (lightmapsize);
  462. f->lightofs = out - filebase;
  463. // extra filtering
  464. h = (l.texsize[1]+1)*2;
  465. w = (l.texsize[0]+1)*2;
  466. for (i=0 ; i< l.numlightstyles ; i++)
  467. {
  468. if (l.lightstyles[i] == 0xff)
  469. Error ("Wrote empty lightmap");
  470. light = l.lightmaps[i];
  471. c = 0;
  472. for (t=0 ; t<=l.texsize[1] ; t++)
  473. for (s=0 ; s<=l.texsize[0] ; s++, c++)
  474. {
  475. if (extrasamples)
  476. { // filtered sample
  477. total = light[t*2*w+s*2] + light[t*2*w+s*2+1]
  478. + light[(t*2+1)*w+s*2] + light[(t*2+1)*w+s*2+1];
  479. total *= 0.25;
  480. }
  481. else
  482. total = light[c];
  483. total *= rangescale; // scale before clamping
  484. if (total > 255)
  485. total = 255;
  486. if (total < 0)
  487. Error ("light < 0");
  488. *out++ = total;
  489. }
  490. }
  491. }