ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/ambient.c
(Generate patch)

Comparing ray/src/rt/ambient.c (file contents):
Revision 2.71 by greg, Fri Apr 11 20:31:37 2014 UTC vs.
Revision 2.79 by greg, Fri Apr 25 00:21:52 2014 UTC

# Line 51 | Line 51 | static int  nunflshed = 0;     /* number of unflushed ambi
51   #define MAX_SORT_INTVL  (SORT_INTVL<<6)
52   #endif
53  
54 +
55 + static double  qambacc = 0.;            /* ambient accuracy to the 1/4 power */
56   static double  avsum = 0.;              /* computed ambient value sum (log) */
57   static unsigned int  navsum = 0;        /* number of values in avsum */
58   static unsigned int  nambvals = 0;      /* total number of indirect values */
# Line 132 | Line 134 | setambacc(                             /* set ambient accuracy */
134          if (newa < 0.0)
135                  newa = 0.0;
136          ambdiff = fabs(newa - ambacc);
137 <        if (ambdiff >= .01 && (ambacc = newa) > FTINY && nambvals > 0)
138 <                sortambvals(1);                 /* rebuild tree */
137 >        if (ambdiff >= .01 && (ambacc = newa) > FTINY) {
138 >                qambacc = sqrt(sqrt(ambacc));
139 >                if (nambvals > 0)
140 >                        sortambvals(1);         /* rebuild tree */
141 >        }
142   }
143  
144  
# Line 147 | Line 152 | setambient(void)                               /* initialize calculation */
152          ambdone();
153                                                  /* init ambient limits */
154          setambres(ambres);
155 <        setambacc(ambacc);
155 >        qambacc = sqrt(sqrt(ambacc *= (ambacc > FTINY)));
156          if (ambfile == NULL || !ambfile[0])
157                  return;
158          if (ambacc <= FTINY) {
# Line 263 | Line 268 | ambnotify(                     /* record new modifier */
268  
269   #ifdef NEWAMB
270  
271 < #define tfunc(lwr, x, upr)      (((x)-(lwr)/((upr)-(lwr)))
271 > #define tfunc(lwr, x, upr)      (((x)-(lwr))/((upr)-(lwr)))
272  
273 + static double   sumambient(COLOR acol, RAY *r, FVECT rn, int al,
274 +                                AMBTREE *at, FVECT c0, double s);
275 + static int      makeambient(COLOR acol, RAY *r, FVECT rn, int al);
276 + static void     extambient(COLOR cr, AMBVAL *ap, FVECT pv, FVECT nv,
277 +                                FVECT uvw[3]);
278  
279   void
280   multambient(            /* compute ambient component & multiply by coef. */
# Line 315 | Line 325 | multambient(           /* compute ambient component & multiply
325          ok = makeambient(acol, r, nrm, rdepth-1);
326          rdepth--;
327          if (ok) {
328 <                multcolor(aval, acol);          /* got new value */
328 >                multcolor(aval, acol);          /* computed new value */
329                  return;
330          }
331   dumbamb:                                        /* return global value */
# Line 338 | Line 348 | dumbamb:                                       /* return global value */
348  
349  
350   double
351 < sumambient(     /* get interpolated ambient value */
351 > sumambient(             /* get interpolated ambient value */
352          COLOR  acol,
353          RAY  *r,
354          FVECT  rn,
# Line 347 | Line 357 | sumambient(    /* get interpolated ambient value */
357          FVECT  c0,
358          double  s
359   )
360 < {                                       /* initial limit is ambacc radians */
361 <        const double    maxangle = (ambacc-PI/2.)*pow(r->rweight,0.13) + PI/2.;
360 > {                       /* initial limit is 5 degrees plus ambacc radians */
361 >        const double    minangle = 5.0 * PI/180.;
362 >        const double    maxangle = (minangle+ambacc-PI/2.)*pow(r->rweight,0.13)
363 >                                        + PI/2.;
364          double          wsum = 0.0;
365          FVECT           ck0;
366          int             i, j;
# Line 362 | Line 374 | sumambient(    /* get interpolated ambient value */
374                  if (tracktime)
375                          av->latick = ambclock;
376                  /*
377 <                 *  Ambient level test.
377 >                 *  Ambient level test
378                   */
379                  if (av->lvl > al)       /* list sorted, so this works */
380                          break;
381                  if (av->weight < 0.9*r->rweight)
382                          continue;
383                  /*
384 <                 *  Direction test using unperturbed normal.
384 >                 *  Direction test using unperturbed normal
385                   */
386                  decodedir(uvw[2], av->ndir);
387                  d = DOT(uvw[2], r->ron);
# Line 379 | Line 391 | sumambient(    /* get interpolated ambient value */
391                  if (delta_r2 >= maxangle*maxangle)
392                          continue;
393                  /*
394 <                 *  Ambient radius test.
394 >                 *  Elliptical radii test based on Hessian
395                   */
396                  decodedir(uvw[0], av->udir);
397                  VCROSS(uvw[1], uvw[2], uvw[0]);
# Line 388 | Line 400 | sumambient(    /* get interpolated ambient value */
400                  delta_t2 = d*d;
401                  d = DOT(ck0, uvw[1]) / av->rad[1];
402                  delta_t2 += d*d;
403 <                if (delta_t2 >= ambacc*ambacc)
403 >                if (delta_t2 >= qambacc*qambacc)
404                          continue;
405                  /*
406 <                 *  Ray behind test.
406 >                 *  Intersection behind test
407                   */
408                  d = 0.0;
409                  for (j = 0; j < 3; j++)
410                          d += (r->rop[j] - av->pos[j])*(uvw[2][j] + r->ron[j]);
411 <                if (d*0.5 < -minarad*ambacc-.001)
411 >                if (d*0.5 < -minarad*qambacc-.001)
412                          continue;
413                  /*
414 <                 *  Convert to final weight (hat function)
414 >                 *  Extrapolate value and compute final weight (hat function)
415                   */
416 +                extambient(ct, av, r->rop, rn, uvw);
417                  d = tfunc(maxangle, sqrt(delta_r2), 0.0) *
418 <                        tfunc(ambacc, sqrt(delta_t2), 0.0);
406 <                wsum += d;
407 <                extambient(ct, av, uvw, r->rop, rn);
418 >                        tfunc(qambacc, sqrt(delta_t2), 0.0);
419                  scalecolor(ct, d);
420                  addcolor(acol, ct);
421 +                wsum += d;
422          }
423          if (at->kid == NULL)
424                  return(wsum);
# Line 439 | Line 451 | makeambient(           /* make a new ambient value for storage
451   )
452   {
453          AMBVAL  amb;
454 <        FVECT   uv[2];
454 >        FVECT   uvw[3];
455          int     i;
456  
457          amb.weight = 1.0;                       /* compute weight */
# Line 449 | Line 461 | makeambient(           /* make a new ambient value for storage
461                  amb.weight = 1.25*r->rweight;
462          setcolor(acol, AVGREFL, AVGREFL, AVGREFL);
463                                                  /* compute ambient */
464 <        if (!doambient(acol, r, amb.weight, uv, amb.rad, amb.gpos, amb.gdir)) {
453 <                setcolor(acol, 0.0, 0.0, 0.0);
454 <                return(0);
455 <        }
464 >        i = doambient(acol, r, amb.weight, uvw, amb.rad, amb.gpos, amb.gdir);
465          scalecolor(acol, 1./AVGREFL);           /* undo assumed reflectance */
466 +        if (i <= 0 || amb.rad[0] <= FTINY)      /* no Hessian or zero radius */
467 +                return(i);
468                                                  /* store value */
469          VCOPY(amb.pos, r->rop);
470          amb.ndir = encodedir(r->ron);
471 <        amb.udir = encodedir(uv[0]);
471 >        amb.udir = encodedir(uvw[0]);
472          amb.lvl = al;
473          copycolor(amb.val, acol);
474                                                  /* insert into tree */
475          avsave(&amb);                           /* and save to file */
476 <        if (rn != r->ron)
477 <                extambient(acol, &amb, r->rop, rn);     /* texture */
476 >        if (rn != r->ron) {                     /* texture */
477 >                VCOPY(uvw[2], r->ron);
478 >                extambient(acol, &amb, r->rop, rn, uvw);
479 >        }
480          return(1);
481   }
482  
# Line 472 | Line 485 | void
485   extambient(             /* extrapolate value at pv, nv */
486          COLOR  cr,
487          AMBVAL   *ap,
475        FVECT  uvw[3],
488          FVECT  pv,
489 <        FVECT  nv
489 >        FVECT  nv,
490 >        FVECT  uvw[3]
491   )
492   {
493 <        FVECT  v1;
494 <        int  i;
495 <        double  d = 1.0;                /* zeroeth order */
493 >        static FVECT    my_uvw[3];
494 >        FVECT           v1;
495 >        int             i;
496 >        double          d = 1.0;        /* zeroeth order */
497  
498 +        if (uvw == NULL) {              /* need local coordinates? */
499 +                decodedir(my_uvw[2], ap->ndir);
500 +                decodedir(my_uvw[0], ap->udir);
501 +                VCROSS(my_uvw[1], my_uvw[2], my_uvw[0]);
502 +                uvw = my_uvw;
503 +        }
504          for (i = 3; i--; )              /* gradient due to translation */
505                  d += (pv[i] - ap->pos[i]) *
506                          (ap->gpos[0]*uvw[0][i] + ap->gpos[1]*uvw[1][i]);
# Line 516 | Line 536 | avinsert(                              /* insert ambient value in our tree */
536          at = &atrunk;
537          VCOPY(ck0, thescene.cuorg);
538          s = thescene.cusize;
539 <        while (s*(OCTSCALE/2) > av->rad[1]*ambacc) {
539 >        while (s*(OCTSCALE/2) > av->rad[1]*qambacc) {
540                  if (at->kid == NULL)
541                          if ((at->kid = newambtree()) == NULL)
542                                  error(SYSTEM, "out of memory in avinsert");
# Line 541 | Line 561 | avinsert(                              /* insert ambient value in our tree */
561  
562   #else /* ! NEWAMB */
563  
564 + static double   sumambient(COLOR acol, RAY *r, FVECT rn, int al,
565 +                                AMBTREE *at, FVECT c0, double s);
566 + static double   makeambient(COLOR acol, RAY *r, FVECT rn, int al);
567 + static void     extambient(COLOR cr, AMBVAL *ap, FVECT pv, FVECT nv);
568  
569 +
570   void
571   multambient(            /* compute ambient component & multiply by coef. */
572          COLOR  aval,
# Line 612 | Line 637 | dumbamb:                                       /* return global value */
637   }
638  
639  
640 < double
640 > static double
641   sumambient(     /* get interpolated ambient value */
642          COLOR  acol,
643          RAY  *r,
# Line 723 | Line 748 | sumambient(    /* get interpolated ambient value */
748   }
749  
750  
751 < double
751 > static double
752   makeambient(            /* make a new ambient value for storage */
753          COLOR  acol,
754          RAY  *r,
# Line 763 | Line 788 | makeambient(           /* make a new ambient value for storage
788   }
789  
790  
791 < void
791 > static void
792   extambient(             /* extrapolate value at pv, nv */
793          COLOR  cr,
794          AMBVAL   *ap,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines