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.39 by greg, Tue Jul 9 19:37:09 1996 UTC vs.
Revision 2.43 by gregl, Sat Aug 30 10:17:01 1997 UTC

# Line 50 | Line 50 | static int  nunflshed = 0;     /* number of unflushed ambi
50   #endif
51   #endif
52   #ifndef SORT_INTVL
53 < #define SORT_INTVL      (SORT_THRESH*256)
53 > #define SORT_INTVL      (SORT_THRESH<<1)
54   #endif
55   #ifndef MAX_SORT_INTVL
56 < #define MAX_SORT_INTVL  (SORT_INTVL<<4)
56 > #define MAX_SORT_INTVL  (SORT_INTVL<<6)
57   #endif
58  
59 < static COLOR  avsum = BLKCOLOR;         /* computed ambient value sum */
59 > static double  avsum = 0.;              /* computed ambient value sum (log) */
60 > static unsigned int  navsum = 0;        /* number of values in avsum */
61   static unsigned int  nambvals = 0;      /* total number of indirect values */
62   static unsigned int  nambshare = 0;     /* number of values from file */
63   static unsigned long  ambclock = 0;     /* ambient access clock */
# Line 69 | Line 70 | static long  sortintvl = SORT_INTVL;   /* time until nex
70           * through memory on a multiprocessor, when we want to avoid
71           * claiming our own memory (copy on write).  Go ahead anyway
72           * if more than two thirds of our values are unshared.
73 +         * Compile with -Dtracktime=0 to turn this code off.
74           */
75 + #ifndef tracktime
76   #define tracktime       (shm_boundary == NULL || nambvals > 3*nambshare)
77 + #endif
78  
79   #define  AMBFLUSH       (BUFSIZ/AMBVALSIZ)
80  
81   #define  newambval()    (AMBVAL *)bmalloc(sizeof(AMBVAL))
82  
83   extern long  ftell(), lseek();
84 < static int  initambfile(), avsave(), avinsert(), sortambvals();
84 > static int  initambfile(), avsave(), avinsert(), sortambvals(), avlmemi();
85   static AMBVAL  *avstore();
86   #ifdef  F_SETLKW
87   static  aflock();
# Line 144 | Line 148 | char  *afile;
148                  pos += (long)nambvals*AMBVALSIZ;
149                  flen = lseek(fileno(ambfp), 0L, 2);
150                  if (flen != pos) {
151 <                        error(WARNING,
151 >                        sprintf(errmsg,
152                          "ignoring last %ld values in ambient file (corrupted)",
153                                          (flen - pos)/AMBVALSIZ);
154 +                        error(WARNING, errmsg);
155                          fseek(ambfp, pos, 0);
156                          ftruncate(fileno(ambfp), pos);
157                  }
# Line 190 | Line 195 | register RAY  *r;
195   FVECT  nrm;
196   {
197          static int  rdepth = 0;                 /* ambient recursion */
198 <        double  d;
198 >        double  d, l;
199  
200          if (ambdiv <= 0)                        /* no ambient calculation */
201                  goto dumbamb;
# Line 210 | Line 215 | FVECT  nrm;
215                          goto dumbamb;
216                  return;
217          }
218 <                                                /* resort memory? */
219 <        sortambvals(0);
218 >
219 >        if (tracktime)                          /* sort to minimize thrashing */
220 >                sortambvals(0);
221                                                  /* get ambient value */
222          setcolor(acol, 0.0, 0.0, 0.0);
223          d = sumambient(acol, r, nrm, rdepth,
# Line 227 | Line 233 | FVECT  nrm;
233                  return;
234   dumbamb:                                        /* return global value */
235          copycolor(acol, ambval);
236 <        if (ambvwt <= 0 | nambvals == 0)
236 >        if (ambvwt <= 0 | navsum == 0)
237                  return;
238 <        scalecolor(acol, (double)ambvwt);
239 <        addcolor(acol, avsum);                  /* average in computations */
240 <        d = 1.0/(ambvwt+nambvals);
241 <        scalecolor(acol, d);
238 >        l = bright(ambval);                     /* average in computations */
239 >        if (l > FTINY) {
240 >                d = (log(l)*(double)ambvwt + avsum) /
241 >                                (double)(ambvwt + navsum);
242 >                d = exp(d) / l;
243 >                scalecolor(acol, d);            /* apply color of ambval */
244 >        } else {
245 >                d = exp( avsum / (double)navsum );
246 >                setcolor(acol, d, d, d);        /* neutral color */
247 >        }
248   }
249  
250  
# Line 257 | Line 269 | double s;
269                                          /* do this node */
270          for (av = at->alist; av != NULL; av = av->next) {
271                  if (tracktime)
272 <                        av->latick = ambclock++;
272 >                        av->latick = ambclock;
273                  /*
274                   *  Ambient level test.
275                   */
# Line 402 | Line 414 | int  creat;
414          setbuf(ambfp, bmalloc(BUFSIZ+8));
415          if (creat) {                    /* new file */
416                  newheader("RADIANCE", ambfp);
417 <                fprintf(ambfp, "%s -av %g %g %g -ab %d -aa %g ",
417 >                fprintf(ambfp, "%s -av %g %g %g -aw %d -ab %d -aa %g ",
418                                  progname, colval(ambval,RED),
419                                  colval(ambval,GRN), colval(ambval,BLU),
420 <                                ambounce, ambacc);
420 >                                ambvwt, ambounce, ambacc);
421                  fprintf(ambfp, "-ad %d -as %d -ar %d %s\n",
422                                  ambdiv, ambssamp, ambres,
423                                  octname==NULL ? "" : octname);
# Line 441 | Line 453 | avstore(aval)                          /* allocate memory and store aval */
453   register AMBVAL  *aval;
454   {
455          register AMBVAL  *av;
456 +        double  d;
457  
458          if ((av = newambval()) == NULL)
459                  error(SYSTEM, "out of memory in avstore");
460          copystruct(av, aval);
461          av->latick = ambclock;
462          av->next = NULL;
450        addcolor(avsum, av->val);       /* add to sum for averaging */
463          nambvals++;
464 +        d = bright(av->val);
465 +        if (d > FTINY) {                /* add to log sum for averaging */
466 +                avsum += log(d);
467 +                navsum++;
468 +        }
469          return(av);
470   }
471  
# Line 616 | Line 633 | int    always;
633          AMBVAL  tav, *tap, *pnext;
634          register int    i, j;
635                                          /* see if it's time yet */
636 <        if (!always && (ambclock < lastsort+sortintvl ||
636 >        if (!always && (ambclock++ < lastsort+sortintvl ||
637                          nambvals < SORT_THRESH))
638                  return;
639          /*

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines