ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rpict.c
(Generate patch)

Comparing ray/src/rt/rpict.c (file contents):
Revision 2.30 by greg, Thu Oct 28 15:24:19 1993 UTC vs.
Revision 2.60 by schorsch, Thu Jul 3 21:44:41 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1992 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char RCSid[] = "$Id";
3   #endif
6
4   /*
5   *  rpict.c - routines and variables for picture generation.
9 *
10 *     8/14/85
6   */
7  
8 + #include "copyright.h"
9 +
10 + #include  "platform.h"
11   #include  "ray.h"
12  
13 < #ifndef NIX
13 > #include  <sys/types.h>
14 >
15 > #ifndef NON_POSIX
16   #ifdef BSD
17   #include  <sys/time.h>
18   #include  <sys/resource.h>
19   #else
20 #include  <sys/types.h>
20   #include  <sys/times.h>
21 < #include  <limits.h>
21 > #include  <unistd.h>
22   #endif
23   #endif
24  
25 + #include  <time.h>
26   #include  <signal.h>
27  
28   #include  "view.h"
29
30 #include  "resolu.h"
31
29   #include  "random.h"
33
30   #include  "paths.h"
31  
32 +
33   #define  RFTEMPLATE     "rfXXXXXX"
34  
35   #ifndef SIGCONT
36 + #ifdef SIGIO     /* XXX can we live without this? */
37   #define SIGCONT         SIGIO
38   #endif
39 + #endif
40  
41 + CUBE  thescene;                         /* our scene */
42 + OBJECT  nsceneobjs;                     /* number of objects in our scene */
43 +
44   int  dimlist[MAXDIM];                   /* sampling dimensions */
45   int  ndims = 0;                         /* number of sampling dimensions */
46   int  samplendx;                         /* sample index number */
47  
48 + extern void  ambnotify();
49 + void  (*addobjnotify[])() = {ambnotify, NULL};
50 +
51   VIEW  ourview = STDVIEW;                /* view parameters */
52   int  hresolu = 512;                     /* horizontal resolution */
53   int  vresolu = 512;                     /* vertical resolution */
# Line 52 | Line 57 | int  psample = 4;                      /* pixel sample size */
57   double  maxdiff = .05;                  /* max. difference for interpolation */
58   double  dstrpix = 0.67;                 /* square pixel distribution */
59  
60 + double  mblur = 0.;                     /* motion blur parameter */
61 +
62 + void  (*trace)() = NULL;                /* trace call */
63 +
64 + int  do_irrad = 0;                      /* compute irradiance? */
65 +
66   double  dstrsrc = 0.0;                  /* square source distribution */
67   double  shadthresh = .05;               /* shadow threshold */
68   double  shadcert = .5;                  /* shadow certainty */
# Line 60 | Line 71 | int  vspretest = 512;                  /* virtual source pretest dens
71   int  directvis = 1;                     /* sources visible? */
72   double  srcsizerat = .25;               /* maximum ratio source size/dist. */
73  
74 + COLOR  cextinction = BLKCOLOR;          /* global extinction coefficient */
75 + COLOR  salbedo = BLKCOLOR;              /* global scattering albedo */
76 + double  seccg = 0.;                     /* global scattering eccentricity */
77 + double  ssampdist = 0.;                 /* scatter sampling distance */
78 +
79   double  specthresh = .15;               /* specular sampling threshold */
80   double  specjitter = 1.;                /* specular sampling jitter */
81  
82 + int  backvis = 1;                       /* back face visibility */
83 +
84   int  maxdepth = 6;                      /* maximum recursion depth */
85   double  minweight = 5e-3;               /* minimum ray weight */
86  
87 + char  *ambfile = NULL;                  /* ambient file name */
88   COLOR  ambval = BLKCOLOR;               /* ambient value */
89 + int  ambvwt = 0;                        /* initial weight for ambient value */
90   double  ambacc = 0.2;                   /* ambient accuracy */
91   int  ambres = 32;                       /* ambient resolution */
92   int  ambdiv = 128;                      /* ambient divisions */
# Line 75 | Line 95 | int  ambounce = 0;                     /* ambient bounces */
95   char  *amblist[128];                    /* ambient include/exclude list */
96   int  ambincl = -1;                      /* include == 1, exclude == 0 */
97  
78 #ifdef MSDOS
79 int  ralrm = 60;                        /* seconds between reports */
80 #else
98   int  ralrm = 0;                         /* seconds between reports */
82 #endif
99  
100   double  pctdone = 0.0;                  /* percentage done */
101 + time_t  tlastrept = 0L;                 /* time at last report */
102 + time_t  tstart;                         /* starting time */
103  
86 long  tlastrept = 0L;                   /* time at last report */
87
88 extern long  time();
89 extern long  tstart;                    /* starting time */
90
91 extern unsigned long  nrays;            /* number of rays traced */
92
104   #define  MAXDIV         16              /* maximum sample size */
105  
106   #define  pixjitter()    (.5+dstrpix*(.5-frandom()))
107  
108 < static int  hres, vres;                 /* resolution for this frame */
108 > int  hres, vres;                        /* resolution for this frame */
109  
110 < extern char  *mktemp();
110 > static VIEW     lastview;               /* the previous view input */
111  
112 + extern char  *mktemp();  /* XXX should be in stdlib.h or unistd.h */
113 +
114 + void  report();
115 +
116   double  pixvalue();
117  
118 < #ifdef NIX
104 < #define  file_exists(f) (access(f,F_OK)==0)
105 < #else
118 > #ifdef RHAS_STAT
119   #include  <sys/types.h>
120   #include  <sys/stat.h>
121   int
# Line 113 | Line 126 | char  *fname;
126          if (stat(fname, &sbuf) < 0) return(0);
127          return((sbuf.st_mode & S_IFREG) != 0);
128   }
129 + #else
130 + #define  file_exists(f) (access(f,F_OK)==0)
131   #endif
132  
133  
134 + void
135   quit(code)                      /* quit program */
136   int  code;
137   {
138          if (code)                       /* report status */
139                  report();
140 + #ifndef NON_POSIX
141          headclean();                    /* delete header file */
142          pfclean();                      /* clean up persist files */
143 + #endif
144          exit(code);
145   }
146  
147  
148 < #ifndef NIX
148 > #ifndef NON_POSIX
149 > void
150   report()                /* report progress */
151   {
152 <        char  hostname[128];
152 >        extern char  *myhostname();
153          double  u, s;
154   #ifdef BSD
155          struct rusage  rubuf;
156   #else
157          struct tms  tbuf;
158 +        double  period;
159   #endif
160  
161 <        tlastrept = time((long *)0);
161 >        tlastrept = time((time_t *)NULL);
162   #ifdef BSD
163          getrusage(RUSAGE_SELF, &rubuf);
164          u = rubuf.ru_utime.tv_sec + rubuf.ru_utime.tv_usec/1e6;
# Line 148 | Line 168 | report()               /* report progress */
168          s += rubuf.ru_stime.tv_sec + rubuf.ru_stime.tv_usec/1e6;
169   #else
170          times(&tbuf);
171 <        u = ( tbuf.tms_utime + tbuf.tms_cutime ) / CLK_TCK;
172 <        s = ( tbuf.tms_stime + tbuf.tms_cstime ) / CLK_TCK;
171 > #ifdef _SC_CLK_TCK
172 >        period = 1.0 / sysconf(_SC_CLK_TCK);
173 > #else
174 >        period = 1.0 / 60.0;
175   #endif
176 <        gethostname(hostname, sizeof(hostname));
176 >        u = ( tbuf.tms_utime + tbuf.tms_cutime ) * period;
177 >        s = ( tbuf.tms_stime + tbuf.tms_cstime ) * period;
178 > #endif
179  
180          sprintf(errmsg,
181                  "%lu rays, %4.2f%% after %.3fu %.3fs %.3fr hours on %s\n",
182                          nrays, pctdone, u/3600., s/3600.,
183 <                        (tlastrept-tstart)/3600., hostname);
183 >                        (tlastrept-tstart)/3600., myhostname());
184          eputs(errmsg);
185 + #ifdef SIGCONT
186 +        signal(SIGCONT, report);
187 + #endif
188   }
189   #else
190 + void
191   report()                /* report progress */
192   {
193 <        tlastrept = time((long *)0);
193 >        tlastrept = time((time_t *)NULL);
194          sprintf(errmsg, "%lu rays, %4.2f%% after %5.4f hours\n",
195                          nrays, pctdone, (tlastrept-tstart)/3600.0);
196          eputs(errmsg);
169        signal(SIGCONT, report);
197   }
198   #endif
199  
200  
201 + void
202   rpict(seq, pout, zout, prvr)                    /* generate image(s) */
203   int  seq;
204   char  *pout, *zout, *prvr;
# Line 186 | Line 214 | char  *pout, *zout, *prvr;
214   * sequenced file naming.
215   */
216   {
189        extern char  *rindex(), *strncpy(), *strcat(), *strcpy();
217          char  fbuf[128], fbuf2[128];
218          int  npicts;
219          register char  *cp;
# Line 213 | Line 240 | char  *pout, *zout, *prvr;
240                  for ( ; seq < rn; seq++)
241                          if (nextview(stdin) == EOF)
242                                  error(USER, "unexpected EOF on view input");
243 +                setview(&ourview);
244                  prvr = fbuf;                    /* mark for renaming */
245          }
246          if (pout != NULL & prvr != NULL) {
# Line 254 | Line 282 | char  *pout, *zout, *prvr;
282                                                  fbuf);
283                                          error(USER, errmsg);
284                                  }
285 +                                setview(&ourview);
286                                  continue;               /* don't clobber */
287                          }
288                          if (freopen(fbuf, "w", stdout) == NULL) {
# Line 261 | Line 290 | char  *pout, *zout, *prvr;
290                                          "cannot open output file \"%s\"", fbuf);
291                                  error(SYSTEM, errmsg);
292                          }
293 < #ifdef MSDOS
265 <                        setmode(fileno(stdout), O_BINARY);
266 < #endif
293 >                        SET_FILE_BINARY(stdout);
294                          dupheader();
295                  }
296                  hres = hresolu; vres = vresolu; pa = pixaspect;
297                  if (prvr != NULL)
298                          if (viewfile(prvr, &ourview, &rs) <= 0
299 <                                        || rs.or != PIXSTANDARD) {
299 >                                        || rs.rt != PIXSTANDARD) {
300                                  sprintf(errmsg,
301                          "cannot recover view parameters from \"%s\"", prvr);
302                                  error(WARNING, errmsg);
# Line 295 | Line 322 | char  *pout, *zout, *prvr;
322                  putchar('\n');
323                  if (pa < .99 || pa > 1.01)
324                          fputaspect(pa, stdout);
325 +                fputnow(stdout);
326                  fputformat(COLRFMT, stdout);
327                  putchar('\n');
328                  if (zout != NULL)
# Line 316 | Line 344 | FILE  *fp;
344   {
345          char  linebuf[256];
346  
347 +        copystruct(&lastview, &ourview);
348          while (fgets(linebuf, sizeof(linebuf), fp) != NULL)
349                  if (isview(linebuf) && sscanview(&ourview, linebuf) > 0)
350                          return(0);
# Line 326 | Line 355 | FILE  *fp;
355   render(zfile, oldfile)                          /* render the scene */
356   char  *zfile, *oldfile;
357   {
329        extern long  lseek();
358          COLOR  *scanbar[MAXDIV+1];      /* scanline arrays of pixel values */
359          float  *zbar[MAXDIV+1];         /* z values */
360          char  *sampdens;                /* previous sample density */
# Line 337 | Line 365 | char  *zfile, *oldfile;
365          COLOR  *colptr;
366          float  *zptr;
367          register int  i;
368 +                                        /* check for empty image */
369 +        if (hres <= 0 || vres <= 0) {
370 +                error(WARNING, "empty output picture");
371 +                fprtresolu(0, 0, stdout);
372 +                return;
373 +        }
374                                          /* allocate scanlines */
375          for (i = 0; i <= psample; i++) {
376                  scanbar[i] = (COLOR *)malloc(hres*sizeof(COLOR));
# Line 347 | Line 381 | char  *zfile, *oldfile;
381          ystep = (psample*99+70)/140;
382          if (hstep > 2) {
383                  i = hres/hstep + 2;
384 <                if ((sampdens = malloc(i)) == NULL)
384 >                if ((sampdens = (char *)malloc(i)) == NULL)
385                          goto memerr;
386                  while (i--)
387                          sampdens[i] = hstep;
# Line 359 | Line 393 | char  *zfile, *oldfile;
393                          sprintf(errmsg, "cannot open z-file \"%s\"", zfile);
394                          error(SYSTEM, errmsg);
395                  }
396 < #ifdef MSDOS
363 <                setmode(zfd, O_BINARY);
364 < #endif
396 >                SET_FD_BINARY(zfd);
397                  for (i = 0; i <= psample; i++) {
398                          zbar[i] = (float *)malloc(hres*sizeof(float));
399                          if (zbar[i] == NULL)
# Line 376 | Line 408 | char  *zfile, *oldfile;
408          fprtresolu(hres, vres, stdout);
409                                          /* recover file and compute first */
410          i = salvage(oldfile);
411 +        if (i >= vres)
412 +                goto alldone;
413          if (zfd != -1 && i > 0 &&
414 <                        lseek(zfd, (long)i*hres*sizeof(float), 0) == -1)
414 >                        lseek(zfd, (off_t)i*hres*sizeof(float), 0) < 0)
415                  error(SYSTEM, "z-file seek error in render");
416          pctdone = 100.0*i/vres;
417          if (ralrm > 0)                  /* report init stats */
418                  report();
419 < #ifndef  BSD
419 > #ifdef SIGCONT
420          else
387 #endif
421          signal(SIGCONT, report);
422 <        ypos = vres-1 - i;
422 > #endif
423 >        ypos = vres-1 - i;                      /* initialize sampling */
424 >        if (directvis)
425 >                init_drawsources(psample);
426          fillscanline(scanbar[0], zbar[0], sampdens, hres, ypos, hstep);
427                                                  /* compute scanlines */
428          for (ypos -= ystep; ypos > -ystep; ypos -= ystep) {
# Line 406 | Line 442 | char  *zfile, *oldfile;
442                                  hres, ypos, hstep);
443                                                          /* fill bar */
444                  fillscanbar(scanbar, zbar, hres, ypos, ystep);
445 +                if (directvis)                          /* add bitty sources */
446 +                        drawsources(scanbar, zbar, 0, hres, ypos, ystep);
447                                                          /* write it out */
448 < #ifndef  BSD
448 > #ifdef SIGCONT
449                  signal(SIGCONT, SIG_IGN);       /* don't interrupt writes */
450   #endif
451                  for (i = ystep; i > 0; i--) {
# Line 422 | Line 460 | char  *zfile, *oldfile;
460                          goto writerr;
461                                                          /* record progress */
462                  pctdone = 100.0*(vres-1-ypos)/vres;
463 <                if (ralrm > 0 && time((long *)0) >= tlastrept+ralrm)
463 >                if (ralrm > 0 && time((time_t *)NULL) >= tlastrept+ralrm)
464                          report();
465 < #ifndef  BSD
465 > #ifdef SIGCONT
466                  else
467                          signal(SIGCONT, report);
468   #endif
469          }
470                                                  /* clean up */
471 + #ifdef SIGCONT
472          signal(SIGCONT, SIG_IGN);
473 <        if (zfd != -1) {
474 <                if (write(zfd, (char *)zbar[0], hres*sizeof(float))
473 > #endif
474 >        if (zfd != -1 && write(zfd, (char *)zbar[0], hres*sizeof(float))
475                                  < hres*sizeof(float))
476 <                        goto writerr;
476 >                goto writerr;
477 >        fwritescan(scanbar[0], hres, stdout);
478 >        if (fflush(stdout) == EOF)
479 >                goto writerr;
480 > alldone:
481 >        if (zfd != -1) {
482                  if (close(zfd) == -1)
483                          goto writerr;
484                  for (i = 0; i <= psample; i++)
485 <                        free((char *)zbar[i]);
485 >                        free((void *)zbar[i]);
486          }
443        fwritescan(scanbar[0], hres, stdout);
444        if (fflush(stdout) == EOF)
445                goto writerr;
487          for (i = 0; i <= psample; i++)
488 <                free((char *)scanbar[i]);
488 >                free((void *)scanbar[i]);
489          if (sampdens != NULL)
490                  free(sampdens);
491          pctdone = 100.0;
492          if (ralrm > 0)
493                  report();
494 + #ifdef SIGCONT
495          signal(SIGCONT, SIG_DFL);
496 + #endif
497          return;
498   writerr:
499          error(SYSTEM, "write error in render");
# Line 469 | Line 512 | int  xres, y, xstep;
512          int  bl = xstep, b = xstep;
513          double  z;
514          register int  i;
515 <        
515 >
516          z = pixvalue(scanline[0], 0, y);
517          if (zline) zline[0] = z;
518                                  /* zig-zag start for quincunx pattern */
# Line 485 | Line 528 | int  xres, y, xstep;
528                          b = fillsample(scanline, zline, 0, y, i, 0, b/2);
529                  else
530                          b = fillsample(scanline+i-xstep,
531 <                                        zline ? zline+i-xstep : NULL,
531 >                                        zline ? zline+i-xstep : (float *)NULL,
532                                          i-xstep, y, xstep, 0, b/2);
533                  if (sd) *sd++ = nc & 1 ? bl : b;
534                  bl = b;
# Line 503 | Line 546 | int  xres, y, ysize;
546          float  zline[MAXDIV+1];
547          int  b = ysize;
548          register int  i, j;
549 <        
549 >
550          for (i = 0; i < xres; i++) {
508                
551                  copycolor(vline[0], scanbar[0][i]);
552                  copycolor(vline[ysize], scanbar[ysize][i]);
553                  if (zbar[0]) {
554                          zline[0] = zbar[0][i];
555                          zline[ysize] = zbar[ysize][i];
556                  }
557 <                
516 <                b = fillsample(vline, zbar[0] ? zline : NULL,
557 >                b = fillsample(vline, zbar[0] ? zline : (float *)NULL,
558                                  i, y, 0, ysize, b/2);
559 <                
559 >
560                  for (j = 1; j < ysize; j++)
561                          copycolor(scanbar[j][i], vline[j]);
562                  if (zbar[0])
# Line 538 | Line 579 | int  b;
579          COLOR  ctmp;
580          int  ncut;
581          register int  len;
582 <        
582 >
583          if (xlen > 0)                   /* x or y length is zero */
584                  len = xlen;
585          else
586                  len = ylen;
587 <                
587 >
588          if (len <= 1)                   /* limit recursion */
589                  return(0);
590 <        
591 <        if (b > 0
592 <        || (zline && 2.*fabs(zline[0]-zline[len]) > maxdiff*(zline[0]+zline[len]))
590 >
591 >        if (b > 0 ||
592 >        (zline && 2.*fabs(zline[0]-zline[len]) > maxdiff*(zline[0]+zline[len]))
593                          || bigdiff(colline[0], colline[len], maxdiff)) {
594 <        
594 >
595                  z = pixvalue(colline[len>>1], x + (xlen>>1), y + (ylen>>1));
596                  if (zline) zline[len>>1] = z;
597                  ncut = 1;
557                
598          } else {                                        /* interpolate */
559        
599                  copycolor(colline[len>>1], colline[len]);
600                  ratio = (double)(len>>1) / len;
601                  scalecolor(colline[len>>1], ratio);
# Line 570 | Line 609 | int  b;
609          }
610                                                          /* recurse */
611          ncut += fillsample(colline, zline, x, y, xlen>>1, ylen>>1, (b-1)/2);
612 <        
613 <        ncut += fillsample(colline+(len>>1), zline ? zline+(len>>1) : NULL,
612 >
613 >        ncut += fillsample(colline+(len>>1),
614 >                        zline ? zline+(len>>1) : (float *)NULL,
615                          x+(xlen>>1), y+(ylen>>1),
616                          xlen-(xlen>>1), ylen-(ylen>>1), b/2);
617  
# Line 584 | Line 624 | pixvalue(col, x, y)            /* compute pixel value */
624   COLOR  col;                     /* returned color */
625   int  x, y;                      /* pixel position */
626   {
627 <        static RAY  thisray;
628 <
629 <        if (viewray(thisray.rorg, thisray.rdir, &ourview,
630 <                        (x+pixjitter())/hres, (y+pixjitter())/vres) < 0) {
627 >        RAY  thisray;
628 >        FVECT   lorg, ldir;
629 >        double  hpos, vpos, lmax, d;
630 >                                                /* compute view ray */
631 >        hpos = (x+pixjitter())/hres;
632 >        vpos = (y+pixjitter())/vres;
633 >        if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir,
634 >                                        &ourview, hpos, vpos)) < -FTINY) {
635                  setcolor(col, 0.0, 0.0, 0.0);
636                  return(0.0);
637          }
638  
595        rayorigin(&thisray, NULL, PRIMARY, 1.0);
596
639          samplendx = pixnumber(x,y,hres,vres);   /* set pixel index */
640  
641 +                                                /* optional motion blur */
642 +        if (lastview.type && mblur > FTINY && (lmax = viewray(lorg, ldir,
643 +                                        &lastview, hpos, vpos)) >= -FTINY) {
644 +                register int    i;
645 +                register double  d = mblur*(.5-urand(281+samplendx));
646 +
647 +                thisray.rmax = (1.-d)*thisray.rmax + d*lmax;
648 +                for (i = 3; i--; ) {
649 +                        thisray.rorg[i] = (1.-d)*thisray.rorg[i] + d*lorg[i];
650 +                        thisray.rdir[i] = (1.-d)*thisray.rdir[i] + d*ldir[i];
651 +                }
652 +                if (normalize(thisray.rdir) == 0.0)
653 +                        return(0.0);
654 +        }
655 +
656 +        rayorigin(&thisray, NULL, PRIMARY, 1.0);
657 +
658          rayvalue(&thisray);                     /* trace ray */
659  
660          copycolor(col, thisray.rcol);           /* return color */
661 <        
661 >
662          return(thisray.rt);                     /* return distance */
663   }
664  
# Line 613 | Line 672 | char  *oldfile;
672          int  x, y;
673  
674          if (oldfile == NULL)
675 <                return(0);
676 <        
675 >                goto gotzip;
676 >
677          if ((fp = fopen(oldfile, "r")) == NULL) {
678                  sprintf(errmsg, "cannot open recover file \"%s\"", oldfile);
679                  error(WARNING, errmsg);
680 <                return(0);
680 >                goto gotzip;
681          }
682 < #ifdef MSDOS
624 <        setmode(fileno(fp), O_BINARY);
625 < #endif
682 >        SET_FILE_BINARY(fp);
683                                  /* discard header */
684          getheader(fp, NULL, NULL);
685                                  /* get picture size */
# Line 631 | Line 688 | char  *oldfile;
688                                  oldfile);
689                  error(WARNING, errmsg);
690                  fclose(fp);
691 <                return(0);
691 >                goto gotzip;
692          }
693  
694          if (x != hres || y != vres) {
# Line 651 | Line 708 | char  *oldfile;
708          }
709          if (fflush(stdout) == EOF)
710                  goto writerr;
711 <        free((char *)scanline);
711 >        free((void *)scanline);
712          fclose(fp);
713          unlink(oldfile);
714          return(y);
715 + gotzip:
716 +        if (fflush(stdout) == EOF)
717 +                error(SYSTEM, "error writing picture header");
718 +        return(0);
719   writerr:
720          sprintf(errmsg, "write error during recovery of \"%s\"", oldfile);
721          error(SYSTEM, errmsg);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines