| 13 |
|
#include "source.h" |
| 14 |
|
#include "otypes.h" |
| 15 |
|
#include "otspecial.h" |
| 16 |
+ |
#include "random.h" |
| 17 |
|
|
| 18 |
|
#define MAXCSET ((MAXSET+1)*2-1) /* maximum check set size */ |
| 19 |
|
|
| 23 |
|
static RREAL Lambfa[5] = {PI, PI, PI, 0.0, 0.0}; |
| 24 |
|
OBJREC Lamb = { |
| 25 |
|
OVOID, MAT_PLASTIC, "Lambertian", |
| 26 |
< |
{0, 5, NULL, Lambfa}, NULL, |
| 26 |
> |
{NULL, Lambfa, 0, 5}, NULL |
| 27 |
|
}; /* a Lambertian surface */ |
| 28 |
|
|
| 29 |
|
OBJREC Aftplane; /* aft clipping plane object */ |
| 59 |
|
r->crtype = r->rtype = rt; |
| 60 |
|
r->rsrc = -1; |
| 61 |
|
r->clipset = NULL; |
| 62 |
+ |
r->revf = raytrace; |
| 63 |
|
copycolor(r->cext, cextinction); |
| 64 |
|
copycolor(r->albedo, salbedo); |
| 65 |
|
r->gecc = seccg; |
| 80 |
|
r->clipset = ro->newcset; |
| 81 |
|
r->rmax = ro->rmax <= FTINY ? 0.0 : ro->rmax - ro->rot; |
| 82 |
|
} |
| 83 |
+ |
r->revf = ro->revf; |
| 84 |
|
copycolor(r->cext, ro->cext); |
| 85 |
|
copycolor(r->albedo, ro->albedo); |
| 86 |
|
r->gecc = ro->gecc; |
| 93 |
|
colval(ro->cext,RED) : colval(ro->cext,GRN); |
| 94 |
|
if (colval(ro->cext,BLU) < re) re = colval(ro->cext,BLU); |
| 95 |
|
re *= ro->rot; |
| 96 |
< |
if (re > .1) |
| 97 |
< |
r->rweight *= exp(-re); |
| 96 |
> |
if (re > 0.1) { |
| 97 |
> |
if (re > 92.) { |
| 98 |
> |
r->rweight = 0.0; |
| 99 |
> |
} else { |
| 100 |
> |
r->rweight *= exp(-re); |
| 101 |
> |
} |
| 102 |
> |
} |
| 103 |
|
} |
| 104 |
|
rayclear(r); |
| 105 |
< |
return(r->rlvl <= maxdepth && r->rweight >= minweight ? 0 : -1); |
| 105 |
> |
if (r->rweight <= 0.0) /* check for expiration */ |
| 106 |
> |
return(-1); |
| 107 |
> |
if (r->crtype & SHADOW) /* shadow commitment */ |
| 108 |
> |
return(0); |
| 109 |
> |
if (maxdepth <= 0 && rc != NULL) { /* Russian roulette */ |
| 110 |
> |
if (minweight <= 0.0) |
| 111 |
> |
error(USER, "zero ray weight in Russian roulette"); |
| 112 |
> |
if (maxdepth < 0 && r->rlvl > -maxdepth) |
| 113 |
> |
return(-1); /* upper reflection limit */ |
| 114 |
> |
if (r->rweight >= minweight) |
| 115 |
> |
return(0); |
| 116 |
> |
if (frandom() > r->rweight/minweight) |
| 117 |
> |
return(-1); |
| 118 |
> |
rw = minweight/r->rweight; /* promote survivor */ |
| 119 |
> |
scalecolor(r->rcoef, rw); |
| 120 |
> |
r->rweight = minweight; |
| 121 |
> |
return(0); |
| 122 |
> |
} |
| 123 |
> |
return(r->rlvl <= abs(maxdepth) && r->rweight >= minweight ? 0 : -1); |
| 124 |
|
} |
| 125 |
|
|
| 126 |
|
|
| 144 |
|
|
| 145 |
|
|
| 146 |
|
extern void |
| 147 |
< |
rayvalue( /* trace a ray and compute its value */ |
| 147 |
> |
raytrace( /* trace a ray and compute its value */ |
| 148 |
|
RAY *r |
| 149 |
|
) |
| 150 |
|
{ |
| 303 |
|
foremat = backmat = 0; |
| 304 |
|
/* foreground */ |
| 305 |
|
fr = *r; |
| 306 |
< |
if (coef > FTINY) |
| 306 |
> |
if (coef > FTINY) { |
| 307 |
> |
scalecolor(fr.rcoef, coef); |
| 308 |
|
foremat = rayshade(&fr, fore); |
| 309 |
+ |
} |
| 310 |
|
/* background */ |
| 311 |
|
br = *r; |
| 312 |
< |
if (coef < 1.0-FTINY) |
| 312 |
> |
if (coef < 1.0-FTINY) { |
| 313 |
> |
scalecolor(br.rcoef, 1.0-coef); |
| 314 |
|
backmat = rayshade(&br, back); |
| 315 |
+ |
} |
| 316 |
|
/* check for transparency */ |
| 317 |
|
if (backmat ^ foremat) { |
| 318 |
|
if (backmat && coef > FTINY) |
| 359 |
|
|
| 360 |
|
extern void |
| 361 |
|
raycontrib( /* compute (cumulative) ray contribution */ |
| 362 |
< |
COLOR rc, |
| 362 |
> |
double rc[3], |
| 363 |
|
const RAY *r, |
| 364 |
|
int flags |
| 365 |
|
) |
| 366 |
|
{ |
| 367 |
< |
COLOR eext, ext1; |
| 368 |
< |
|
| 339 |
< |
setcolor(eext, 0., 0., 0.); |
| 340 |
< |
setcolor(rc, 1., 1., 1.); |
| 367 |
> |
double eext[3]; |
| 368 |
> |
int i; |
| 369 |
|
|
| 370 |
+ |
eext[0] = eext[1] = eext[2] = 0.; |
| 371 |
+ |
rc[0] = rc[1] = rc[2] = 1.; |
| 372 |
+ |
|
| 373 |
|
while (r != NULL && r->crtype&flags) { |
| 374 |
< |
multcolor(rc, r->rcoef); |
| 375 |
< |
copycolor(ext1, r->cext); |
| 376 |
< |
scalecolor(ext1, r->rot); |
| 377 |
< |
addcolor(eext, ext1); |
| 374 |
> |
for (i = 3; i--; ) { |
| 375 |
> |
rc[i] *= colval(r->rcoef,i); |
| 376 |
> |
eext[i] += r->rot * colval(r->cext,i); |
| 377 |
> |
} |
| 378 |
|
r = r->parent; |
| 379 |
|
} |
| 380 |
< |
if (intens(eext) > FTINY) { |
| 381 |
< |
setcolor(ext1, exp(-colval(eext,RED)), |
| 382 |
< |
exp(-colval(eext,GRN)), |
| 352 |
< |
exp(-colval(eext,BLU))); |
| 353 |
< |
multcolor(rc, ext1); |
| 354 |
< |
} |
| 380 |
> |
for (i = 3; i--; ) |
| 381 |
> |
rc[i] *= (eext[i] <= FTINY) ? 1. : |
| 382 |
> |
(eext[i] > 92.) ? 0. : exp(-eext[i]); |
| 383 |
|
} |
| 384 |
|
|
| 385 |
|
|