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.16 by greg, Fri Jan 22 09:51:13 1993 UTC vs.
Revision 2.23 by greg, Sat Dec 18 10:37:01 1993 UTC

# Line 35 | Line 35 | double minarad;                /* minimum ambient radius */
35  
36   static AMBTREE  atrunk;         /* our ambient trunk node */
37  
38 static char  *ambfname = NULL;  /* ambient file name */
38   static FILE  *ambfp = NULL;     /* ambient file pointer */
39   static int  nunflshed = 0;      /* number of unflushed ambient values */
40  
# Line 44 | Line 43 | static int  nunflshed = 0;     /* number of unflushed ambi
43   #define  newambval()    (AMBVAL *)bmalloc(sizeof(AMBVAL))
44  
45   #define  newambtree()   (AMBTREE *)calloc(8, sizeof(AMBTREE))
46 + #define  freeambtree(t) free((char *)(t))
47  
48   extern long  ftell(), lseek();
49 < static int  initambfile(), avsave(), avinsert();
49 > static int  initambfile(), avsave(), avinsert(), loadatree();
50 > static AMBVAL  *avstore();
51 > #ifdef  F_SETLKW
52 > static  aflock();
53 > #endif
54  
55  
56   setambres(ar)                           /* set ambient resolution */
57   int  ar;
58   {
59 +        ambres = ar < 0 ? 0 : ar;               /* may be done already */
60                                                  /* set min & max radii */
61          if (ar <= 0) {
62                  minarad = 0.0;
# Line 67 | Line 72 | int  ar;
72   }
73  
74  
75 + setambacc(newa)                         /* set ambient accuracy */
76 + double  newa;
77 + {
78 +        static double  oldambacc = -1.0;
79 +        AMBTREE  oldatrunk;
80 +
81 +        ambacc = newa < 0.0 ? 0.0 : newa;       /* may be done already */
82 +        if (oldambacc < -FTINY)
83 +                oldambacc = ambacc;     /* do nothing first call */
84 +        if (fabs(newa - oldambacc) < 0.01)
85 +                return;                 /* insignificant -- don't bother */
86 +        if (ambacc <= FTINY)
87 +                return;                 /* cannot build new tree */
88 +                                        /* else need to rebuild tree */
89 +        copystruct(&oldatrunk, &atrunk);
90 +        atrunk.alist = NULL;
91 +        atrunk.kid = NULL;
92 +        loadatree(&oldatrunk);
93 +        oldambacc = ambacc;             /* remeber setting for next call */
94 + }
95 +
96 +
97   setambient(afile)                       /* initialize calculation */
98   char  *afile;
99   {
# Line 74 | Line 101 | char  *afile;
101          AMBVAL  amb;
102                                                  /* init ambient limits */
103          setambres(ambres);
104 +        setambacc(ambacc);
105 +        if (afile == NULL)
106 +                return;
107 +        if (ambacc <= FTINY) {
108 +                sprintf(errmsg, "zero ambient accuracy so \"%s\" not opened",
109 +                                afile);
110 +                error(WARNING, errmsg);
111 +                return;
112 +        }
113                                                  /* open ambient file */
114 <        if ((ambfname = afile) != NULL) {
115 <                if ((ambfp = fopen(afile, "r+")) != NULL) {
116 <                        initambfile(0);
117 <                        headlen = ftell(ambfp);
118 <                        while (readambval(&amb, ambfp))
119 <                                avinsert(&amb, &atrunk, thescene.cuorg,
120 <                                                thescene.cusize);
121 <                                                        /* align */
122 <                        fseek(ambfp, -((ftell(ambfp)-headlen)%AMBVALSIZ), 1);
123 <                } else if ((ambfp = fopen(afile, "w+")) != NULL)
124 <                        initambfile(1);
125 <                else {
90 <                        sprintf(errmsg, "cannot open ambient file \"%s\"",
91 <                                        afile);
92 <                        error(SYSTEM, errmsg);
93 <                }
94 <                nunflshed++;    /* lie */
95 <                ambsync();
114 >        if ((ambfp = fopen(afile, "r+")) != NULL) {
115 >                initambfile(0);
116 >                headlen = ftell(ambfp);
117 >                while (readambval(&amb, ambfp))
118 >                        avinsert(avstore(&amb));
119 >                                                /* align */
120 >                fseek(ambfp, -((ftell(ambfp)-headlen)%AMBVALSIZ), 1);
121 >        } else if ((ambfp = fopen(afile, "w+")) != NULL)
122 >                initambfile(1);
123 >        else {
124 >                sprintf(errmsg, "cannot open ambient file \"%s\"", afile);
125 >                error(SYSTEM, errmsg);
126          }
127 +        nunflshed++;    /* lie */
128 +        ambsync();
129   }
130  
131  
# Line 182 | Line 214 | double s;
214                  /*
215                   *  Ambient level test.
216                   */
217 <                if (av->lvl > al || av->weight < r->rweight-FTINY)
217 >                if (av->lvl > al)       /* list sorted, so this works */
218 >                        break;
219 >                if (av->weight < r->rweight-FTINY)
220                          continue;
221                  /*
222                   *  Ambient radius test.
# Line 309 | Line 343 | int  creat;
343   {
344          extern char  *progname, *octname, VersionID[];
345  
346 + #ifdef  F_SETLKW
347 +        aflock(creat ? F_WRLCK : F_RDLCK);
348 + #endif
349   #ifdef MSDOS
350          setmode(fileno(ambfp), O_BINARY);
351   #endif
352 <        setbuf(ambfp, bmalloc(BUFSIZ));
352 >        setbuf(ambfp, bmalloc(BUFSIZ+8));
353          if (creat) {                    /* new file */
354                  fprintf(ambfp, "%s -av %g %g %g -ab %d -aa %g ",
355                                  progname, colval(ambval,RED),
# Line 325 | Line 362 | int  creat;
362                  fputformat(AMBFMT, ambfp);
363                  putc('\n', ambfp);
364                  putambmagic(ambfp);
365 <        } else if (checkheader(ambfp, AMBFMT, NULL) < 0 || !hasambmagic(ambfp)) {
366 <                sprintf(errmsg, "bad ambient file \"%s\"", ambfname);
330 <                error(USER, errmsg);
331 <        }
365 >        } else if (checkheader(ambfp, AMBFMT, NULL) < 0 || !hasambmagic(ambfp))
366 >                error(USER, "bad ambient file");
367   }
368  
369  
# Line 336 | Line 371 | static
371   avsave(av)                              /* insert and save an ambient value */
372   AMBVAL  *av;
373   {
374 <        avinsert(av, &atrunk, thescene.cuorg, thescene.cusize);
374 >        avinsert(avstore(av));
375          if (ambfp == NULL)
376                  return;
377          if (writambval(av, ambfp) < 0)
# Line 346 | Line 381 | AMBVAL *av;
381                          goto writerr;
382          return;
383   writerr:
384 <        sprintf(errmsg, "error writing ambient file \"%s\"", ambfname);
350 <        error(SYSTEM, errmsg);
384 >        error(SYSTEM, "error writing ambient file");
385   }
386  
387  
388 + static AMBVAL *
389 + avstore(aval)                           /* allocate memory and store aval */
390 + register AMBVAL  *aval;
391 + {
392 +        register AMBVAL  *av;
393 +
394 +        if ((av = newambval()) == NULL)
395 +                error(SYSTEM, "out of memory in avstore");
396 +        copystruct(av, aval);
397 +        return(av);
398 + }
399 +
400 +
401   static
402 < avinsert(aval, at, c0, s)               /* insert ambient value in a tree */
403 < AMBVAL  *aval;
357 < register AMBTREE  *at;
358 < FVECT  c0;
359 < double  s;
402 > avinsert(av)                            /* insert ambient value in our tree */
403 > register AMBVAL  *av;
404   {
405 +        register AMBTREE  *at;
406 +        register AMBVAL  *ap;
407 +        AMBVAL  avh;
408          FVECT  ck0;
409 +        double  s;
410          int  branch;
363        register AMBVAL  *av;
411          register int  i;
412  
413 <        if ((av = newambval()) == NULL)
414 <                goto memerr;
415 <        copystruct(av, aval);
416 <        VCOPY(ck0, c0);
413 >        if (av->rad <= FTINY)
414 >                error(CONSISTENCY, "zero ambient radius in avinsert");
415 >        at = &atrunk;
416 >        VCOPY(ck0, thescene.cuorg);
417 >        s = thescene.cusize;
418          while (s*(OCTSCALE/2) > av->rad*ambacc) {
419                  if (at->kid == NULL)
420                          if ((at->kid = newambtree()) == NULL)
421 <                                goto memerr;
421 >                                error(SYSTEM, "out of memory in avinsert");
422                  s *= 0.5;
423                  branch = 0;
424                  for (i = 0; i < 3; i++)
# Line 380 | Line 428 | double s;
428                          }
429                  at = at->kid + branch;
430          }
431 <        av->next = at->alist;
432 <        at->alist = av;
433 <        return;
434 < memerr:
435 <        error(SYSTEM, "out of memory in avinsert");
431 >        avh.next = at->alist;           /* order by increasing level */
432 >        for (ap = &avh; ap->next != NULL; ap = ap->next)
433 >                if (ap->next->lvl >= av->lvl)
434 >                        break;
435 >        av->next = ap->next;
436 >        ap->next = av;
437 >        at->alist = avh.next;
438   }
439  
440  
441 < #ifdef  NIX
441 > static
442 > loadatree(at)                           /* move tree to main store */
443 > register AMBTREE  *at;
444 > {
445 >        register AMBVAL  *av;
446 >        register int  i;
447 >                                        /* transfer values at this node */
448 >        for (av = at->alist; av != NULL; av = at->alist) {
449 >                at->alist = av->next;
450 >                avinsert(av);
451 >        }
452 >        if (at->kid == NULL)
453 >                return;
454 >        for (i = 0; i < 8; i++)         /* transfer and free children */
455 >                loadatree(at->kid+i);
456 >        freeambtree(at->kid);
457 > }
458  
459 < int
460 < ambsync()                       /* flush ambient file */
459 >
460 > #ifdef  F_SETLKW
461 >
462 > static
463 > aflock(typ)                     /* lock/unlock ambient file */
464 > int  typ;
465   {
466 <        if (nunflshed == 0)
467 <                return(0);
468 <        nunflshed = 0;
469 <        return(fflush(ambfp));
466 >        static struct flock  fls;       /* static so initialized to zeroes */
467 >
468 >        fls.l_type = typ;
469 >        if (fcntl(fileno(ambfp), F_SETLKW, &fls) < 0)
470 >                error(SYSTEM, "cannot (un)lock ambient file");
471   }
472  
402 #else
473  
474   int
475   ambsync()                       /* synchronize ambient file */
476   {
477          static FILE  *ambinp = NULL;
478          static long  lastpos = -1;
409        struct flock  fls;
479          long  flen;
480          AMBVAL  avs;
481          register int  n;
482  
483          if (nunflshed == 0)
484                  return(0);
485 <                                /* gain exclusive access */
417 <        fls.l_type = F_WRLCK;
418 <        fls.l_whence = 0;
419 <        fls.l_start = 0L;
420 <        fls.l_len = 0L;
421 <        if (fcntl(fileno(ambfp), F_SETLKW, &fls) < 0)
422 <                error(SYSTEM, "cannot lock ambient file");
423 <        if (lastpos < 0)        /* initializing */
485 >        if (lastpos < 0)        /* initializing (locked in initambfile) */
486                  goto syncend;
487 +                                /* gain exclusive access */
488 +        aflock(F_WRLCK);
489                                  /* see if file has grown */
490          if ((flen = lseek(fileno(ambfp), 0L, 2)) < 0)
491 <                error(SYSTEM, "cannot seek on ambient file");
491 >                goto seekerr;
492          if (n = flen - lastpos) {               /* file has grown */
493 <                if (ambinp == NULL) {
494 <                        ambinp = fopen(ambfname, "r");
493 >                if (ambinp == NULL) {           /* use duplicate filedes */
494 >                        ambinp = fdopen(dup(fileno(ambfp)), "r");
495                          if (ambinp == NULL)
496 <                                error(SYSTEM, "fopen failed in ambsync");
496 >                                error(SYSTEM, "fdopen failed in ambsync");
497                  }
498                  if (fseek(ambinp, lastpos, 0) < 0)
499 <                        error(SYSTEM, "fseek failed in ambsync");
499 >                        goto seekerr;
500                  while (n >= AMBVALSIZ) {        /* load contributed values */
501                          readambval(&avs, ambinp);
502 <                        avinsert(&avs,&atrunk,thescene.cuorg,thescene.cusize);
502 >                        avinsert(avstore(&avs));
503                          n -= AMBVALSIZ;
504                  }
505 <                if (n)                          /* alignment */
506 <                        lseek(fileno(ambfp), flen-n, 0);
505 >                /*** seek always as safety measure
506 >                if (n) ***/                     /* alignment */
507 >                        if (lseek(fileno(ambfp), flen-n, 0) < 0)
508 >                                goto seekerr;
509          }
510 + #ifdef  DEBUG
511 +        if (ambfp->_ptr - ambfp->_base != nunflshed*AMBVALSIZ) {
512 +                sprintf(errmsg, "ambient file buffer at %d rather than %d",
513 +                                ambfp->_ptr - ambfp->_base,
514 +                                nunflshed*AMBVALSIZ);
515 +                error(CONSISTENCY, errmsg);
516 +        }
517 + #endif
518   syncend:
519          n = fflush(ambfp);                      /* calls write() at last */
520 <        lastpos = lseek(fileno(ambfp), 0L, 1);
521 <        fls.l_type = F_UNLCK;                   /* release file */
522 <        fcntl(fileno(ambfp), F_SETLKW, &fls);
520 >        if ((lastpos = lseek(fileno(ambfp), 0L, 1)) < 0)
521 >                goto seekerr;
522 >        aflock(F_UNLCK);                        /* release file */
523          nunflshed = 0;
524          return(n);
525 + seekerr:
526 +        error(SYSTEM, "seek failed in ambsync");
527 + }
528 +
529 + #else
530 +
531 + int
532 + ambsync()                       /* flush ambient file */
533 + {
534 +        if (nunflshed == 0)
535 +                return(0);
536 +        nunflshed = 0;
537 +        return(fflush(ambfp));
538   }
539  
540   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines