| 275 |
|
goto dumbamb; |
| 276 |
|
|
| 277 |
|
if (ambacc <= FTINY) { /* no ambient storage */ |
| 278 |
+ |
copycolor(acol, aval); |
| 279 |
|
rdepth++; |
| 280 |
< |
d = doambient(acol, r, aval, intens(aval)*r->rweight, |
| 280 |
< |
NULL, NULL); |
| 280 |
> |
d = doambient(acol, r, r->rweight, NULL, NULL); |
| 281 |
|
rdepth--; |
| 282 |
|
if (d <= FTINY) |
| 283 |
|
goto dumbamb; |
| 284 |
< |
multcolor(aval, acol); |
| 284 |
> |
copycolor(aval, acol); |
| 285 |
|
return; |
| 286 |
|
} |
| 287 |
|
|
| 288 |
|
if (tracktime) /* sort to minimize thrashing */ |
| 289 |
|
sortambvals(0); |
| 290 |
< |
/* get ambient value */ |
| 290 |
> |
/* interpolate ambient value */ |
| 291 |
|
setcolor(acol, 0.0, 0.0, 0.0); |
| 292 |
< |
d = sumambient(acol, r, intens(aval)*r->rweight, nrm, rdepth, |
| 292 |
> |
d = sumambient(acol, r, nrm, rdepth, |
| 293 |
|
&atrunk, thescene.cuorg, thescene.cusize); |
| 294 |
|
if (d > FTINY) { |
| 295 |
< |
scalecolor(acol, 1.0/d); |
| 295 |
> |
d = 1.0/d; |
| 296 |
> |
scalecolor(acol, d); |
| 297 |
|
multcolor(aval, acol); |
| 298 |
|
return; |
| 299 |
|
} |
| 300 |
|
rdepth++; /* need to cache new value */ |
| 301 |
< |
d = makeambient(acol, r, aval, nrm, rdepth-1); |
| 301 |
> |
d = makeambient(acol, r, nrm, rdepth-1); |
| 302 |
|
rdepth--; |
| 303 |
|
if (d > FTINY) { |
| 304 |
|
multcolor(aval, acol); /* got new value */ |
| 327 |
|
sumambient( /* get interpolated ambient value */ |
| 328 |
|
COLOR acol, |
| 329 |
|
register RAY *r, |
| 329 |
– |
double rw, |
| 330 |
|
FVECT rn, |
| 331 |
|
int al, |
| 332 |
|
AMBTREE *at, |
| 352 |
|
*/ |
| 353 |
|
if (av->lvl > al) /* list sorted, so this works */ |
| 354 |
|
break; |
| 355 |
< |
if (av->weight < 0.9*rw) |
| 355 |
> |
if (av->weight < 0.9*r->rweight) |
| 356 |
|
continue; |
| 357 |
|
/* |
| 358 |
|
* Ambient radius test. |
| 431 |
|
break; |
| 432 |
|
} |
| 433 |
|
if (j == 3) |
| 434 |
< |
wsum += sumambient(acol, r, rw, rn, al, |
| 434 |
> |
wsum += sumambient(acol, r, rn, al, |
| 435 |
|
at->kid+i, ck0, s); |
| 436 |
|
} |
| 437 |
|
return(wsum); |
| 439 |
|
|
| 440 |
|
|
| 441 |
|
extern double |
| 442 |
< |
makeambient( /* make a new ambient value */ |
| 442 |
> |
makeambient( /* make a new ambient value for storage */ |
| 443 |
|
COLOR acol, |
| 444 |
|
RAY *r, |
| 445 |
– |
COLOR ac, |
| 445 |
|
FVECT rn, |
| 446 |
|
int al |
| 447 |
|
) |
| 448 |
|
{ |
| 449 |
|
AMBVAL amb; |
| 451 |
– |
double coef; |
| 450 |
|
FVECT gp, gd; |
| 451 |
< |
/* compute weight */ |
| 452 |
< |
amb.weight = pow(AVGREFL, (double)al); |
| 453 |
< |
coef = intens(ac)*r->rweight; |
| 454 |
< |
if (coef < 0.1*amb.weight) /* heuristic */ |
| 455 |
< |
amb.weight = coef; |
| 451 |
> |
int i; |
| 452 |
> |
|
| 453 |
> |
amb.weight = 1.0; /* compute weight */ |
| 454 |
> |
for (i = al; i-- > 0; ) |
| 455 |
> |
amb.weight *= AVGREFL; |
| 456 |
> |
if (r->rweight < 0.1*amb.weight) /* heuristic override */ |
| 457 |
> |
amb.weight = 1.25*r->rweight; |
| 458 |
> |
setcolor(acol, AVGREFL, AVGREFL, AVGREFL); |
| 459 |
|
/* compute ambient */ |
| 460 |
< |
amb.rad = doambient(acol, r, ac, amb.weight, gp, gd); |
| 461 |
< |
if (amb.rad <= FTINY) |
| 460 |
> |
amb.rad = doambient(acol, r, amb.weight, gp, gd); |
| 461 |
> |
if (amb.rad <= FTINY) { |
| 462 |
> |
setcolor(acol, 0.0, 0.0, 0.0); |
| 463 |
|
return(0.0); |
| 464 |
< |
/* store it */ |
| 464 |
> |
} |
| 465 |
> |
scalecolor(acol, 1./AVGREFL); /* undo assumed reflectance */ |
| 466 |
> |
/* store value */ |
| 467 |
|
VCOPY(amb.pos, r->rop); |
| 468 |
|
VCOPY(amb.dir, r->ron); |
| 469 |
|
amb.lvl = al; |