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.8 by greg, Thu Jul 16 14:03:27 1992 UTC vs.
Revision 2.15 by greg, Wed Jan 20 10:48:23 1993 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 Regents of the University of California */
1 > /* Copyright (c) 1993 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 6 | Line 6 | static char SCCSid[] = "$SunId$ LBL";
6  
7   /*
8   *  ambient.c - routines dealing with ambient (inter-reflected) component.
9 *
10 *  The macro AMBFLUSH (if defined) is the number of ambient values
11 *      to wait before flushing to the ambient file.
12 *
13 *     5/9/86
9   */
10  
11   #include  "ray.h"
# Line 23 | Line 18 | static char SCCSid[] = "$SunId$ LBL";
18  
19   #include  "random.h"
20  
21 < #define  OCTSCALE       0.5     /* ceil((valid rad.)/(cube size)) */
21 > #define  OCTSCALE       0.5     /* ceil((valid rad.)/(cube size)) */
22  
23   typedef struct ambtree {
24 <        AMBVAL  *alist;         /* ambient value list */
25 <        struct ambtree  *kid;   /* 8 child nodes */
24 >        AMBVAL  *alist;         /* ambient value list */
25 >        struct ambtree  *kid;   /* 8 child nodes */
26   }  AMBTREE;                     /* ambient octree */
27  
28   extern CUBE  thescene;          /* contains space boundaries */
29  
30 < #define  MAXASET        511     /* maximum number of elements in ambient set */
31 < OBJECT  ambset[MAXASET+1]={0};  /* ambient include/exclude set */
30 > #define  MAXASET        511     /* maximum number of elements in ambient set */
31 > OBJECT  ambset[MAXASET+1]={0};  /* ambient include/exclude set */
32  
33 < double  maxarad;                /* maximum ambient radius */
34 < double  minarad;                /* minimum ambient radius */
33 > double  maxarad;                /* maximum ambient radius */
34 > double  minarad;                /* minimum ambient radius */
35  
36 < static AMBTREE  atrunk;         /* our ambient trunk node */
36 > static AMBTREE  atrunk;         /* our ambient trunk node */
37  
38 + static char  *ambfname = NULL;  /* ambient file name */
39   static FILE  *ambfp = NULL;     /* ambient file pointer */
44 static char  *afname;           /* ambient file name */
45 static long  ambheadlen;        /* length of ambient file header */
40  
41 < #define  AMBFLUSH       (BUFSIZ/AMBVALSIZ)
41 > #define  AMBFLUSH       (BUFSIZ/AMBVALSIZ)
42  
43 < #define  newambval()    (AMBVAL *)bmalloc(sizeof(AMBVAL))
43 > #define  newambval()    (AMBVAL *)bmalloc(sizeof(AMBVAL))
44  
45 < #define  newambtree()   (AMBTREE *)calloc(8, sizeof(AMBTREE))
45 > #define  newambtree()   (AMBTREE *)calloc(8, sizeof(AMBTREE))
46  
47   extern long  ftell(), lseek();
48 + static int  initambfile(), avsave(), avinsert(), ambsync();
49  
50  
51   setambres(ar)                           /* set ambient resolution */
# Line 74 | Line 69 | int  ar;
69   setambient(afile)                       /* initialize calculation */
70   char  *afile;
71   {
72 <        AMBVAL  amb;
72 >        long  headlen;
73 >        AMBVAL  amb;
74                                                  /* init ambient limits */
75          setambres(ambres);
76                                                  /* open ambient file */
77 <        if ((afname = afile) != NULL)
77 >        if ((ambfname = afile) != NULL)
78                  if ((ambfp = fopen(afile, "r+")) != NULL) {
79                          initambfile(0);
80 +                        headlen = ftell(ambfp);
81                          while (readambval(&amb, ambfp))
82                                  avinsert(&amb, &atrunk, thescene.cuorg,
83                                                  thescene.cusize);
84                                                          /* align */
85 <                        fseek(ambfp, -((ftell(ambfp)-ambheadlen)%AMBVALSIZ), 1);
86 <                } else if ((ambfp = fopen(afile, "w")) != NULL)
85 >                        fseek(ambfp, -((ftell(ambfp)-headlen)%AMBVALSIZ), 1);
86 >                } else if ((ambfp = fopen(afile, "w+")) != NULL)
87                          initambfile(1);
88                  else {
89                          sprintf(errmsg, "cannot open ambient file \"%s\"",
# Line 96 | Line 93 | char  *afile;
93   }
94  
95  
99 initambfile(creat)              /* initialize ambient file */
100 int  creat;
101 {
102        extern char  *progname, *octname, VersionID[];
103
104        setbuf(ambfp, bmalloc(BUFSIZ));
105        if (creat) {                    /* new file */
106                fprintf(ambfp, "%s -av %g %g %g -ab %d -aa %g ",
107                                progname, colval(ambval,RED),
108                                colval(ambval,GRN), colval(ambval,BLU),
109                                ambounce, ambacc);
110                fprintf(ambfp, "-ad %d -as %d -ar %d %s\n",
111                                ambdiv, ambssamp, ambres,
112                                octname==NULL ? "" : octname);
113                fprintf(ambfp, "SOFTWARE= %s\n", VersionID);
114                fputformat(AMBFMT, ambfp);
115                putc('\n', ambfp);
116                putambmagic(ambfp);
117                fflush(ambfp);
118        } else if (checkheader(ambfp, AMBFMT, NULL) < 0
119                        || !hasambmagic(ambfp)) {
120                sprintf(errmsg, "\"%s\" is not an ambient file", afname);
121                error(USER, errmsg);
122        }
123        ambheadlen = ftell(ambfp);
124 }
125
126
96   ambnotify(obj)                  /* record new modifier */
97 < OBJECT  obj;
97 > OBJECT  obj;
98   {
99          static int  hitlimit = 0;
100 <        register OBJREC  *o = objptr(obj);
100 >        register OBJREC  *o = objptr(obj);
101          register char  **amblp;
102  
103          if (hitlimit || !ismodifier(o->otype))
# Line 151 | Line 120 | COLOR  acol;
120   register RAY  *r;
121   {
122          static int  rdepth = 0;                 /* ambient recursion */
123 <        double  d;
123 >        double  d;
124  
125          if (ambdiv <= 0)                        /* no ambient calculation */
126                  goto dumbamb;
# Line 193 | Line 162 | sumambient(acol, r, al, at, c0, s)     /* get interpolated
162   COLOR  acol;
163   register RAY  *r;
164   int  al;
165 < AMBTREE  *at;
165 > AMBTREE  *at;
166   FVECT  c0;
167 < double  s;
167 > double  s;
168   {
169 <        extern double  sqrt();
201 <        double  d, e1, e2, wt, wsum;
169 >        double  d, e1, e2, wt, wsum;
170          COLOR  ct;
171          FVECT  ck0;
172          int  i;
173          register int  j;
174 <        register AMBVAL  *av;
174 >        register AMBVAL  *av;
175                                          /* do this node */
176          wsum = 0.0;
177          for (av = at->alist; av != NULL; av = av->next) {
# Line 282 | Line 250 | COLOR  acol;
250   register RAY  *r;
251   int  al;
252   {
253 <        AMBVAL  amb;
253 >        AMBVAL  amb;
254          FVECT   gp, gd;
255                                                  /* compute weight */
256          amb.weight = pow(AVGREFL, (double)al);
# Line 307 | Line 275 | int  al;
275  
276   extambient(cr, ap, pv, nv)              /* extrapolate value at pv, nv */
277   COLOR  cr;
278 < register AMBVAL  *ap;
278 > register AMBVAL  *ap;
279   FVECT  pv, nv;
280   {
281          FVECT  v1, v2;
282          register int  i;
283 <        double  d;
283 >        double  d;
284  
285          d = 1.0;                        /* zeroeth order */
286                                          /* gradient due to translation */
# Line 332 | Line 300 | FVECT  pv, nv;
300  
301  
302   static
303 + initambfile(creat)              /* initialize ambient file */
304 + int  creat;
305 + {
306 +        extern char  *progname, *octname, VersionID[];
307 +
308 + #ifdef MSDOS
309 +        setmode(fileno(ambfp), O_BINARY);
310 + #endif
311 +        setbuf(ambfp, bmalloc(BUFSIZ));
312 +        if (creat) {                    /* new file */
313 +                fprintf(ambfp, "%s -av %g %g %g -ab %d -aa %g ",
314 +                                progname, colval(ambval,RED),
315 +                                colval(ambval,GRN), colval(ambval,BLU),
316 +                                ambounce, ambacc);
317 +                fprintf(ambfp, "-ad %d -as %d -ar %d %s\n",
318 +                                ambdiv, ambssamp, ambres,
319 +                                octname==NULL ? "" : octname);
320 +                fprintf(ambfp, "SOFTWARE= %s\n", VersionID);
321 +                fputformat(AMBFMT, ambfp);
322 +                putc('\n', ambfp);
323 +                putambmagic(ambfp);
324 +        } else if (checkheader(ambfp, AMBFMT, NULL) < 0 || !hasambmagic(ambfp))
325 +                error(USER, "bad ambient file");
326 +        ambsync();
327 + }
328 +
329 +
330 + static
331   avsave(av)                              /* insert and save an ambient value */
332 < AMBVAL  *av;
332 > AMBVAL  *av;
333   {
334          static int  nunflshed = 0;
335  
# Line 355 | Line 351 | writerr:
351  
352   static
353   avinsert(aval, at, c0, s)               /* insert ambient value in a tree */
354 < AMBVAL  *aval;
354 > AMBVAL  *aval;
355   register AMBTREE  *at;
356   FVECT  c0;
357 < double  s;
357 > double  s;
358   {
359          FVECT  ck0;
360          int  branch;
361 <        register AMBVAL  *av;
361 >        register AMBVAL  *av;
362          register int  i;
363  
364          if ((av = newambval()) == NULL)
# Line 390 | Line 386 | memerr:
386   }
387  
388  
389 < #include  <fcntl.h>
389 > #ifdef  NIX
390  
391 + static
392 + ambsync()                       /* flush ambient file */
393 + {
394 +        return(fflush(ambfp));
395 + }
396  
397 + #else
398 +
399   static
400   ambsync()                       /* synchronize ambient file */
401   {
402          static FILE  *ambinp = NULL;
403 +        static long  lastpos = -1;
404          struct flock  fls;
405 <        AMBVAL  avs;
406 <        long  lastpos, flen;
405 >        long  flen;
406 >        AMBVAL  avs;
407          register int  n;
408                                  /* gain exclusive access */
409          fls.l_type = F_WRLCK;
# Line 408 | Line 412 | ambsync()                      /* synchronize ambient file */
412          fls.l_len = 0L;
413          if (fcntl(fileno(ambfp), F_SETLKW, &fls) < 0)
414                  error(SYSTEM, "cannot lock ambient file");
415 +        if (lastpos < 0)        /* initializing */
416 +                goto syncend;
417                                  /* see if file has grown */
418 <        lastpos = lseek(fileno(ambfp), 0L, 2);  /* may move pointer */
419 <        flen = lseek(fileno(ambfp), 0L, 1);     /* new(?) file length */
420 <        if (n = (flen - lastpos)%AMBVALSIZ)     /* assure alignment */
421 <                lseek(fileno(ambfp), flen -= n, 0);
422 <        if (n = (flen - lastpos)/AMBVALSIZ) {   /* file has grown */
423 <                if (ambinp == NULL && (ambinp = fopen(afname, "r")) == NULL)
424 <                        error(SYSTEM, "cannot reopen ambient file");
425 <                fseek(ambinp, lastpos, 0);      /* go to previous position */
426 <                while (n--) {                   /* load contributed values */
418 >        if ((flen = lseek(fileno(ambfp), 0L, 2)) < 0)
419 >                error(SYSTEM, "cannot seek on ambient file");
420 >        if (n = flen - lastpos) {               /* file has grown */
421 >                if (ambinp == NULL) {
422 >                        ambinp = fopen(ambfname, "r");
423 >                        if (ambinp == NULL)
424 >                                error(SYSTEM, "fopen failed in ambsync");
425 >                }
426 >                if (fseek(ambinp, lastpos, 0) < 0)
427 >                        error(SYSTEM, "fseek failed in ambsync");
428 >                while (n >= AMBVALSIZ) {        /* load contributed values */
429                          readambval(&avs, ambinp);
430                          avinsert(&avs,&atrunk,thescene.cuorg,thescene.cusize);
431 +                        n -= AMBVALSIZ;
432                  }
433 +                if (n)                          /* alignment */
434 +                        lseek(fileno(ambfp), flen-n, 0);
435          }
436 + syncend:
437          n = fflush(ambfp);                      /* calls write() at last */
438 +        lastpos = lseek(fileno(ambfp), 0L, 1);
439          fls.l_type = F_UNLCK;                   /* release file */
440          fcntl(fileno(ambfp), F_SETLKW, &fls);
441          return(n);
442   }
443 +
444 + #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines