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.61 by greg, Tue May 31 18:01:09 2005 UTC vs.
Revision 2.65 by greg, Sat Sep 15 02:47:30 2007 UTC

# Line 192 | Line 192 | setambient(void)                               /* initialize calculation */
192                  sprintf(errmsg, "cannot open ambient file \"%s\"", ambfile);
193                  error(SYSTEM, errmsg);
194          }
195 <        nunflshed++;    /* lie */
196 <        ambsync();
195 >        ambsync();                      /* load previous values */
196   }
197  
198  
# Line 454 | Line 453 | makeambient(           /* make a new ambient value for storage
453          for (i = al; i-- > 0; )
454                  amb.weight *= AVGREFL;
455          if (r->rweight < 0.1*amb.weight)        /* heuristic override */
456 <                amb.weight = r->rweight;
456 >                amb.weight = 1.25*r->rweight;
457          setcolor(acol, AVGREFL, AVGREFL, AVGREFL);
458                                                  /* compute ambient */
459          amb.rad = doambient(acol, r, amb.weight, gp, gd);
# Line 877 | Line 876 | ambsync(void)                  /* synchronize ambient file */
876          AMBVAL  avs;
877          register int  n;
878  
879 <        if (nunflshed == 0)
879 >        if (ambfp == NULL)      /* no ambient file? */
880                  return(0);
881          if (lastpos < 0)        /* initializing (locked in initambfile) */
882                  goto syncend;
883 <                                /* gain exclusive access */
884 <        aflock(F_WRLCK);
883 >                                /* gain appropriate access */
884 >        aflock(nunflshed ? F_WRLCK : F_RDLCK);
885                                  /* see if file has grown */
886          if ((flen = lseek(fileno(ambfp), (off_t)0, SEEK_END)) < 0)
887                  goto seekerr;
# Line 905 | Line 904 | ambsync(void)                  /* synchronize ambient file */
904                          avinsert(avstore(&avs));
905                          n -= AMBVALSIZ;
906                  }
907 +                lastpos = flen - n;
908                  /*** seek always as safety measure
909                  if (n) ***/                     /* alignment */
910 <                        if (lseek(fileno(ambfp), (off_t)(flen-n), SEEK_SET) < 0)
910 >                        if (lseek(fileno(ambfp), (off_t)lastpos, SEEK_SET) < 0)
911                                  goto seekerr;
912          }
913   #ifdef  DEBUG
# Line 920 | Line 920 | ambsync(void)                  /* synchronize ambient file */
920   #endif
921   syncend:
922          n = fflush(ambfp);                      /* calls write() at last */
923 <        if ((lastpos = lseek(fileno(ambfp), (off_t)0, SEEK_CUR)) < 0)
924 <                goto seekerr;
923 >        if ((n == EOF) | (lastpos < 0)) {
924 >                if ((lastpos = lseek(fileno(ambfp), (off_t)0, SEEK_CUR)) < 0)
925 >                        goto seekerr;
926 >        } else
927 >                lastpos += (long)nunflshed*AMBVALSIZ;
928          aflock(F_UNLCK);                        /* release file */
929          nunflshed = 0;
930          return(n);
# Line 935 | Line 938 | seekerr:
938   extern int
939   ambsync(void)                   /* flush ambient file */
940   {
941 <        if (nunflshed == 0)
941 >        if (ambfp == NULL)
942                  return(0);
943          nunflshed = 0;
944          return(fflush(ambfp));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines