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.45 by greg, Fri Mar 15 21:02:09 1996 UTC vs.
Revision 2.55 by schorsch, Thu Jun 5 19:29:34 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1995 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.
6   */
7  
8 + #include "copyright.h"
9 +
10   #include  "ray.h"
11  
12   #include  <sys/types.h>
# Line 22 | Line 21 | static char SCCSid[] = "$SunId$ LBL";
21   #endif
22   #endif
23  
24 < extern time_t   time();
26 <
24 > #include  <time.h>
25   #include  <signal.h>
26  
27 + #include  "platform.h"
28   #include  "view.h"
30
31 #include  "resolu.h"
32
29   #include  "random.h"
34
30   #include  "paths.h"
31  
32 +
33   #define  RFTEMPLATE     "rfXXXXXX"
34  
35   #ifndef SIGCONT
36   #define SIGCONT         SIGIO
37   #endif
38  
39 + CUBE  thescene;                         /* our scene */
40 + OBJECT  nsceneobjs;                     /* number of objects in our scene */
41 +
42   int  dimlist[MAXDIM];                   /* sampling dimensions */
43   int  ndims = 0;                         /* number of sampling dimensions */
44   int  samplendx;                         /* sample index number */
45  
46 + extern void  ambnotify();
47 + void  (*addobjnotify[])() = {ambnotify, NULL};
48 +
49   VIEW  ourview = STDVIEW;                /* view parameters */
50   int  hresolu = 512;                     /* horizontal resolution */
51   int  vresolu = 512;                     /* vertical resolution */
# Line 53 | Line 55 | int  psample = 4;                      /* pixel sample size */
55   double  maxdiff = .05;                  /* max. difference for interpolation */
56   double  dstrpix = 0.67;                 /* square pixel distribution */
57  
58 + double  mblur = 0.;                     /* motion blur parameter */
59 +
60 + void  (*trace)() = NULL;                /* trace call */
61 +
62 + int  do_irrad = 0;                      /* compute irradiance? */
63 +
64   double  dstrsrc = 0.0;                  /* square source distribution */
65   double  shadthresh = .05;               /* shadow threshold */
66   double  shadcert = .5;                  /* shadow certainty */
# Line 62 | Line 70 | int  directvis = 1;                    /* sources visible? */
70   double  srcsizerat = .25;               /* maximum ratio source size/dist. */
71  
72   COLOR  cextinction = BLKCOLOR;          /* global extinction coefficient */
73 < double  salbedo = 0.;                   /* global scattering albedo */
73 > COLOR  salbedo = BLKCOLOR;              /* global scattering albedo */
74   double  seccg = 0.;                     /* global scattering eccentricity */
75   double  ssampdist = 0.;                 /* scatter sampling distance */
76  
# Line 74 | Line 82 | int  backvis = 1;                      /* back face visibility */
82   int  maxdepth = 6;                      /* maximum recursion depth */
83   double  minweight = 5e-3;               /* minimum ray weight */
84  
85 + char  *ambfile = NULL;                  /* ambient file name */
86   COLOR  ambval = BLKCOLOR;               /* ambient value */
87   int  ambvwt = 0;                        /* initial weight for ambient value */
88   double  ambacc = 0.2;                   /* ambient accuracy */
# Line 84 | Line 93 | int  ambounce = 0;                     /* ambient bounces */
93   char  *amblist[128];                    /* ambient include/exclude list */
94   int  ambincl = -1;                      /* include == 1, exclude == 0 */
95  
87 #ifdef MSDOS
88 int  ralrm = 60;                        /* seconds between reports */
89 #else
96   int  ralrm = 0;                         /* seconds between reports */
91 #endif
97  
98   double  pctdone = 0.0;                  /* percentage done */
94
99   time_t  tlastrept = 0L;                 /* time at last report */
100 + time_t  tstart;                         /* starting time */
101  
97 extern time_t  tstart;                  /* starting time */
98
99 extern unsigned long  nrays;            /* number of rays traced */
100
102   #define  MAXDIV         16              /* maximum sample size */
103  
104   #define  pixjitter()    (.5+dstrpix*(.5-frandom()))
105  
106 < static int  hres, vres;                 /* resolution for this frame */
106 > int  hres, vres;                        /* resolution for this frame */
107  
108 < extern char  *mktemp();
108 > static VIEW     lastview;               /* the previous view input */
109  
110 + extern char  *mktemp();  /* XXX should be in stdlib.h or unistd.h */
111 +
112 + void  report();
113 +
114   double  pixvalue();
115  
116   #ifdef NIX
# Line 124 | Line 129 | char  *fname;
129   #endif
130  
131  
132 + void
133   quit(code)                      /* quit program */
134   int  code;
135   {
136          if (code)                       /* report status */
137                  report();
138 + #ifndef NIX
139          headclean();                    /* delete header file */
140          pfclean();                      /* clean up persist files */
141 + #endif
142          exit(code);
143   }
144  
145  
146   #ifndef NIX
147 + void
148   report()                /* report progress */
149   {
150          extern char  *myhostname();
# Line 176 | Line 185 | report()               /* report progress */
185   #endif
186   }
187   #else
188 + void
189   report()                /* report progress */
190   {
191          tlastrept = time((time_t *)NULL);
# Line 186 | Line 196 | report()               /* report progress */
196   #endif
197  
198  
199 + void
200   rpict(seq, pout, zout, prvr)                    /* generate image(s) */
201   int  seq;
202   char  *pout, *zout, *prvr;
# Line 201 | Line 212 | char  *pout, *zout, *prvr;
212   * sequenced file naming.
213   */
214   {
204        extern char  *rindex(), *strncpy(), *strcat(), *strcpy();
215          char  fbuf[128], fbuf2[128];
216          int  npicts;
217          register char  *cp;
# Line 228 | Line 238 | char  *pout, *zout, *prvr;
238                  for ( ; seq < rn; seq++)
239                          if (nextview(stdin) == EOF)
240                                  error(USER, "unexpected EOF on view input");
241 +                setview(&ourview);
242                  prvr = fbuf;                    /* mark for renaming */
243          }
244          if (pout != NULL & prvr != NULL) {
# Line 269 | Line 280 | char  *pout, *zout, *prvr;
280                                                  fbuf);
281                                          error(USER, errmsg);
282                                  }
283 +                                setview(&ourview);
284                                  continue;               /* don't clobber */
285                          }
286                          if (freopen(fbuf, "w", stdout) == NULL) {
# Line 276 | Line 288 | char  *pout, *zout, *prvr;
288                                          "cannot open output file \"%s\"", fbuf);
289                                  error(SYSTEM, errmsg);
290                          }
291 < #ifdef MSDOS
280 <                        setmode(fileno(stdout), O_BINARY);
281 < #endif
291 >                        SET_FILE_BINARY(stdout);
292                          dupheader();
293                  }
294                  hres = hresolu; vres = vresolu; pa = pixaspect;
295                  if (prvr != NULL)
296                          if (viewfile(prvr, &ourview, &rs) <= 0
297 <                                        || rs.or != PIXSTANDARD) {
297 >                                        || rs.rt != PIXSTANDARD) {
298                                  sprintf(errmsg,
299                          "cannot recover view parameters from \"%s\"", prvr);
300                                  error(WARNING, errmsg);
# Line 331 | Line 341 | FILE  *fp;
341   {
342          char  linebuf[256];
343  
344 +        copystruct(&lastview, &ourview);
345          while (fgets(linebuf, sizeof(linebuf), fp) != NULL)
346                  if (isview(linebuf) && sscanview(&ourview, linebuf) > 0)
347                          return(0);
# Line 341 | Line 352 | FILE  *fp;
352   render(zfile, oldfile)                          /* render the scene */
353   char  *zfile, *oldfile;
354   {
344        extern long  lseek();
355          COLOR  *scanbar[MAXDIV+1];      /* scanline arrays of pixel values */
356          float  *zbar[MAXDIV+1];         /* z values */
357          char  *sampdens;                /* previous sample density */
# Line 352 | Line 362 | char  *zfile, *oldfile;
362          COLOR  *colptr;
363          float  *zptr;
364          register int  i;
365 +                                        /* check for empty image */
366 +        if (hres <= 0 || vres <= 0) {
367 +                error(WARNING, "empty output picture");
368 +                fprtresolu(0, 0, stdout);
369 +                return;
370 +        }
371                                          /* allocate scanlines */
372          for (i = 0; i <= psample; i++) {
373                  scanbar[i] = (COLOR *)malloc(hres*sizeof(COLOR));
# Line 362 | Line 378 | char  *zfile, *oldfile;
378          ystep = (psample*99+70)/140;
379          if (hstep > 2) {
380                  i = hres/hstep + 2;
381 <                if ((sampdens = malloc(i)) == NULL)
381 >                if ((sampdens = (char *)malloc(i)) == NULL)
382                          goto memerr;
383                  while (i--)
384                          sampdens[i] = hstep;
# Line 374 | Line 390 | char  *zfile, *oldfile;
390                          sprintf(errmsg, "cannot open z-file \"%s\"", zfile);
391                          error(SYSTEM, errmsg);
392                  }
393 < #ifdef MSDOS
378 <                setmode(zfd, O_BINARY);
379 < #endif
393 >                SET_FD_BINARY(zfd);
394                  for (i = 0; i <= psample; i++) {
395                          zbar[i] = (float *)malloc(hres*sizeof(float));
396                          if (zbar[i] == NULL)
# Line 394 | Line 408 | char  *zfile, *oldfile;
408          if (i >= vres)
409                  goto alldone;
410          if (zfd != -1 && i > 0 &&
411 <                        lseek(zfd, (long)i*hres*sizeof(float), 0) == -1)
411 >                        lseek(zfd, (off_t)i*hres*sizeof(float), 0) < 0)
412                  error(SYSTEM, "z-file seek error in render");
413          pctdone = 100.0*i/vres;
414          if (ralrm > 0)                  /* report init stats */
# Line 403 | Line 417 | char  *zfile, *oldfile;
417          else
418   #endif
419          signal(SIGCONT, report);
420 <        ypos = vres-1 - i;
420 >        ypos = vres-1 - i;                      /* initialize sampling */
421 >        if (directvis)
422 >                init_drawsources(psample);
423          fillscanline(scanbar[0], zbar[0], sampdens, hres, ypos, hstep);
424                                                  /* compute scanlines */
425          for (ypos -= ystep; ypos > -ystep; ypos -= ystep) {
# Line 423 | Line 439 | char  *zfile, *oldfile;
439                                  hres, ypos, hstep);
440                                                          /* fill bar */
441                  fillscanbar(scanbar, zbar, hres, ypos, ystep);
442 <                                                        /* add bitty sources */
443 <                drawsources(&ourview, hres, vres, scanbar, zbar,
428 <                                0, hres, ypos, ystep, psample);
442 >                if (directvis)                          /* add bitty sources */
443 >                        drawsources(scanbar, zbar, 0, hres, ypos, ystep);
444                                                          /* write it out */
445   #ifndef  BSD
446                  signal(SIGCONT, SIG_IGN);       /* don't interrupt writes */
# Line 462 | Line 477 | alldone:
477                  if (close(zfd) == -1)
478                          goto writerr;
479                  for (i = 0; i <= psample; i++)
480 <                        free((char *)zbar[i]);
480 >                        free((void *)zbar[i]);
481          }
482          for (i = 0; i <= psample; i++)
483 <                free((char *)scanbar[i]);
483 >                free((void *)scanbar[i]);
484          if (sampdens != NULL)
485                  free(sampdens);
486          pctdone = 100.0;
# Line 602 | Line 617 | pixvalue(col, x, y)            /* compute pixel value */
617   COLOR  col;                     /* returned color */
618   int  x, y;                      /* pixel position */
619   {
620 <        static RAY  thisray;
621 <
622 <        if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir, &ourview,
623 <                        (x+pixjitter())/hres, (y+pixjitter())/vres)) < -FTINY) {
620 >        RAY  thisray;
621 >        FVECT   lorg, ldir;
622 >        double  hpos, vpos, lmax, d;
623 >                                                /* compute view ray */
624 >        hpos = (x+pixjitter())/hres;
625 >        vpos = (y+pixjitter())/vres;
626 >        if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir,
627 >                                        &ourview, hpos, vpos)) < -FTINY) {
628                  setcolor(col, 0.0, 0.0, 0.0);
629                  return(0.0);
630          }
631  
613        rayorigin(&thisray, NULL, PRIMARY, 1.0);
614
632          samplendx = pixnumber(x,y,hres,vres);   /* set pixel index */
633  
634 +                                                /* optional motion blur */
635 +        if (lastview.type && mblur > FTINY && (lmax = viewray(lorg, ldir,
636 +                                        &lastview, hpos, vpos)) >= -FTINY) {
637 +                register int    i;
638 +                register double  d = mblur*(.5-urand(281+samplendx));
639 +
640 +                thisray.rmax = (1.-d)*thisray.rmax + d*lmax;
641 +                for (i = 3; i--; ) {
642 +                        thisray.rorg[i] = (1.-d)*thisray.rorg[i] + d*lorg[i];
643 +                        thisray.rdir[i] = (1.-d)*thisray.rdir[i] + d*ldir[i];
644 +                }
645 +                if (normalize(thisray.rdir) == 0.0)
646 +                        return(0.0);
647 +        }
648 +
649 +        rayorigin(&thisray, NULL, PRIMARY, 1.0);
650 +
651          rayvalue(&thisray);                     /* trace ray */
652  
653          copycolor(col, thisray.rcol);           /* return color */
# Line 638 | Line 672 | char  *oldfile;
672                  error(WARNING, errmsg);
673                  goto gotzip;
674          }
675 < #ifdef MSDOS
642 <        setmode(fileno(fp), O_BINARY);
643 < #endif
675 >        SET_FILE_BINARY(fp);
676                                  /* discard header */
677          getheader(fp, NULL, NULL);
678                                  /* get picture size */
# Line 669 | Line 701 | char  *oldfile;
701          }
702          if (fflush(stdout) == EOF)
703                  goto writerr;
704 <        free((char *)scanline);
704 >        free((void *)scanline);
705          fclose(fp);
706          unlink(oldfile);
707          return(y);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines