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.4 by greg, Fri Apr 10 16:14:34 1992 UTC vs.
Revision 2.17 by greg, Tue Jan 26 09:08:20 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 FILE  *ambfp = NULL;     /* ambient file pointer */
39 + static int  nunflshed = 0;      /* number of unflushed ambient values */
40  
41 < #define  newambval()    (AMBVAL *)bmalloc(sizeof(AMBVAL))
41 > #define  AMBFLUSH       (BUFSIZ/AMBVALSIZ)
42  
43 < #define  newambtree()   (AMBTREE *)calloc(8, sizeof(AMBTREE))
43 > #define  newambval()    (AMBVAL *)bmalloc(sizeof(AMBVAL))
44  
45 + #define  newambtree()   (AMBTREE *)calloc(8, sizeof(AMBTREE))
46  
47 + extern long  ftell(), lseek();
48 + static int  initambfile(), avsave(), avinsert();
49 +
50 +
51   setambres(ar)                           /* set ambient resolution */
52   int  ar;
53   {
# Line 68 | Line 69 | int  ar;
69   setambient(afile)                       /* initialize calculation */
70   char  *afile;
71   {
72 <        long  ftell();
73 <        AMBVAL  amb;
72 >        long  headlen;
73 >        AMBVAL  amb;
74                                                  /* init ambient limits */
75          setambres(ambres);
76                                                  /* open ambient file */
77 <        if (afile != NULL)
77 >        if (afile != NULL) {
78                  if ((ambfp = fopen(afile, "r+")) != NULL) {
79 <                        while (fread((char *)&amb,sizeof(AMBVAL),1,ambfp) == 1)
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)%sizeof(AMBVAL)), 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\"",
90                                          afile);
91                          error(SYSTEM, errmsg);
92                  }
93 +                nunflshed++;    /* lie */
94 +                ambsync();
95 +        }
96   }
97  
98  
99   ambnotify(obj)                  /* record new modifier */
100 < OBJECT  obj;
100 > OBJECT  obj;
101   {
102          static int  hitlimit = 0;
103 <        register OBJREC  *o = objptr(obj);
103 >        register OBJREC  *o = objptr(obj);
104          register char  **amblp;
105  
106          if (hitlimit || !ismodifier(o->otype))
# Line 115 | Line 123 | COLOR  acol;
123   register RAY  *r;
124   {
125          static int  rdepth = 0;                 /* ambient recursion */
126 <        double  d;
126 >        double  d;
127  
128          if (ambdiv <= 0)                        /* no ambient calculation */
129                  goto dumbamb;
# Line 157 | Line 165 | sumambient(acol, r, al, at, c0, s)     /* get interpolated
165   COLOR  acol;
166   register RAY  *r;
167   int  al;
168 < AMBTREE  *at;
168 > AMBTREE  *at;
169   FVECT  c0;
170 < double  s;
170 > double  s;
171   {
172 <        extern double  sqrt();
165 <        double  d, e1, e2, wt, wsum;
172 >        double  d, e1, e2, wt, wsum;
173          COLOR  ct;
174          FVECT  ck0;
175          int  i;
176          register int  j;
177 <        register AMBVAL  *av;
177 >        register AMBVAL  *av;
178                                          /* do this node */
179          wsum = 0.0;
180          for (av = at->alist; av != NULL; av = av->next) {
# Line 246 | Line 253 | COLOR  acol;
253   register RAY  *r;
254   int  al;
255   {
256 <        AMBVAL  amb;
256 >        AMBVAL  amb;
257          FVECT   gp, gd;
258                                                  /* compute weight */
259          amb.weight = pow(AVGREFL, (double)al);
# Line 264 | Line 271 | int  al;
271          VCOPY(amb.gpos, gp);
272          VCOPY(amb.gdir, gd);
273                                                  /* insert into tree */
274 <        avinsert(&amb, &atrunk, thescene.cuorg, thescene.cusize);
268 <        avsave(&amb);                           /* write to file */
274 >        avsave(&amb);                           /* and save to file */
275          return(amb.rad);
276   }
277  
278  
279   extambient(cr, ap, pv, nv)              /* extrapolate value at pv, nv */
280   COLOR  cr;
281 < register AMBVAL  *ap;
281 > register AMBVAL  *ap;
282   FVECT  pv, nv;
283   {
284          FVECT  v1, v2;
285          register int  i;
286 <        double  d;
286 >        double  d;
287  
288          d = 1.0;                        /* zeroeth order */
289                                          /* gradient due to translation */
# Line 297 | Line 303 | FVECT  pv, nv;
303  
304  
305   static
306 < avsave(av)                              /* save an ambient value */
307 < AMBVAL  *av;
306 > initambfile(creat)              /* initialize ambient file */
307 > int  creat;
308   {
309 < #ifdef  AMBFLUSH
310 <        static int  nunflshed = 0;
309 >        extern char  *progname, *octname, VersionID[];
310 >
311 > #ifdef MSDOS
312 >        setmode(fileno(ambfp), O_BINARY);
313   #endif
314 +        setbuf(ambfp, bmalloc(BUFSIZ));
315 +        if (creat) {                    /* new file */
316 +                fprintf(ambfp, "%s -av %g %g %g -ab %d -aa %g ",
317 +                                progname, colval(ambval,RED),
318 +                                colval(ambval,GRN), colval(ambval,BLU),
319 +                                ambounce, ambacc);
320 +                fprintf(ambfp, "-ad %d -as %d -ar %d %s\n",
321 +                                ambdiv, ambssamp, ambres,
322 +                                octname==NULL ? "" : octname);
323 +                fprintf(ambfp, "SOFTWARE= %s\n", VersionID);
324 +                fputformat(AMBFMT, ambfp);
325 +                putc('\n', ambfp);
326 +                putambmagic(ambfp);
327 +        } else if (checkheader(ambfp, AMBFMT, NULL) < 0 || !hasambmagic(ambfp))
328 +                error(USER, "bad ambient file");
329 + }
330 +
331 +
332 + static
333 + avsave(av)                              /* insert and save an ambient value */
334 + AMBVAL  *av;
335 + {
336 +        avinsert(av, &atrunk, thescene.cuorg, thescene.cusize);
337          if (ambfp == NULL)
338                  return;
339 <        if (fwrite((char *)av, sizeof(AMBVAL), 1, ambfp) != 1)
339 >        if (writambval(av, ambfp) < 0)
340                  goto writerr;
341 < #ifdef  AMBFLUSH
342 <        if (++nunflshed >= AMBFLUSH) {
312 <                if (fflush(ambfp) == EOF)
341 >        if (++nunflshed >= AMBFLUSH)
342 >                if (ambsync() == EOF)
343                          goto writerr;
314                nunflshed = 0;
315        }
316 #endif
344          return;
345   writerr:
346          error(SYSTEM, "error writing ambient file");
# Line 322 | Line 349 | writerr:
349  
350   static
351   avinsert(aval, at, c0, s)               /* insert ambient value in a tree */
352 < AMBVAL  *aval;
352 > AMBVAL  *aval;
353   register AMBTREE  *at;
354   FVECT  c0;
355 < double  s;
355 > double  s;
356   {
357          FVECT  ck0;
358          int  branch;
359 <        register AMBVAL  *av;
359 >        register AMBVAL  *av;
360          register int  i;
361  
362          if ((av = newambval()) == NULL)
# Line 355 | Line 382 | double  s;
382   memerr:
383          error(SYSTEM, "out of memory in avinsert");
384   }
385 +
386 +
387 + #ifdef  NIX
388 +
389 + int
390 + ambsync()                       /* flush ambient file */
391 + {
392 +        if (nunflshed == 0)
393 +                return(0);
394 +        nunflshed = 0;
395 +        return(fflush(ambfp));
396 + }
397 +
398 + #else
399 +
400 + int
401 + ambsync()                       /* synchronize ambient file */
402 + {
403 +        static FILE  *ambinp = NULL;
404 +        static long  lastpos = -1;
405 +        struct flock  fls;
406 +        long  flen;
407 +        AMBVAL  avs;
408 +        register int  n;
409 +
410 +        if (nunflshed == 0)
411 +                return(0);
412 +                                /* gain exclusive access */
413 +        fls.l_type = F_WRLCK;
414 +        fls.l_whence = 0;
415 +        fls.l_start = 0L;
416 +        fls.l_len = 0L;
417 +        if (fcntl(fileno(ambfp), F_SETLKW, &fls) < 0)
418 +                error(SYSTEM, "cannot lock ambient file");
419 +        if (lastpos < 0)        /* initializing */
420 +                goto syncend;
421 +                                /* see if file has grown */
422 +        if ((flen = lseek(fileno(ambfp), 0L, 2)) < 0)
423 +                error(SYSTEM, "cannot seek on ambient file");
424 +        if (n = flen - lastpos) {               /* file has grown */
425 +                if (ambinp == NULL) {           /* use duplicate filedes */
426 +                        ambinp = fdopen(dup(fileno(ambfp)), "r");
427 +                        if (ambinp == NULL)
428 +                                error(SYSTEM, "fdopen failed in ambsync");
429 +                }
430 +                if (fseek(ambinp, lastpos, 0) < 0)
431 +                        error(SYSTEM, "fseek failed in ambsync");
432 +                while (n >= AMBVALSIZ) {        /* load contributed values */
433 +                        readambval(&avs, ambinp);
434 +                        avinsert(&avs,&atrunk,thescene.cuorg,thescene.cusize);
435 +                        n -= AMBVALSIZ;
436 +                }
437 +                if (n)                          /* alignment */
438 +                        lseek(fileno(ambfp), flen-n, 0);
439 +        }
440 + syncend:
441 +        n = fflush(ambfp);                      /* calls write() at last */
442 +        lastpos = lseek(fileno(ambfp), 0L, 1);
443 +        fls.l_type = F_UNLCK;                   /* release file */
444 +        fcntl(fileno(ambfp), F_SETLKW, &fls);
445 +        nunflshed = 0;
446 +        return(n);
447 + }
448 +
449 + #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines