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.43 by greg, Wed Feb 7 16:35:18 1996 UTC vs.
Revision 2.51 by gwlarson, Wed Jun 17 13:29:55 1998 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1995 Regents of the University of California */
1 > /* Copyright (c) 1996 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   *  rpict.c - routines and variables for picture generation.
9 *
10 *     8/14/85
9   */
10  
11   #include  "ray.h"
# Line 55 | Line 53 | int  psample = 4;                      /* pixel sample size */
53   double  maxdiff = .05;                  /* max. difference for interpolation */
54   double  dstrpix = 0.67;                 /* square pixel distribution */
55  
56 + double  mblur = 0.;                     /* motion blur parameter */
57 +
58   double  dstrsrc = 0.0;                  /* square source distribution */
59   double  shadthresh = .05;               /* shadow threshold */
60   double  shadcert = .5;                  /* shadow certainty */
# Line 64 | Line 64 | int  directvis = 1;                    /* sources visible? */
64   double  srcsizerat = .25;               /* maximum ratio source size/dist. */
65  
66   COLOR  cextinction = BLKCOLOR;          /* global extinction coefficient */
67 < double  salbedo = 0.;                   /* global scattering albedo */
67 > COLOR  salbedo = BLKCOLOR;              /* global scattering albedo */
68   double  seccg = 0.;                     /* global scattering eccentricity */
69   double  ssampdist = 0.;                 /* scatter sampling distance */
70  
# Line 77 | Line 77 | int  maxdepth = 6;                     /* maximum recursion depth */
77   double  minweight = 5e-3;               /* minimum ray weight */
78  
79   COLOR  ambval = BLKCOLOR;               /* ambient value */
80 + int  ambvwt = 0;                        /* initial weight for ambient value */
81   double  ambacc = 0.2;                   /* ambient accuracy */
82   int  ambres = 32;                       /* ambient resolution */
83   int  ambdiv = 128;                      /* ambient divisions */
# Line 103 | Line 104 | extern unsigned long  nrays;           /* number of rays traced
104  
105   #define  pixjitter()    (.5+dstrpix*(.5-frandom()))
106  
107 < static int  hres, vres;                 /* resolution for this frame */
107 > int  hres, vres;                        /* resolution for this frame */
108  
109 + static VIEW     lastview;               /* the previous view input */
110 +
111   extern char  *mktemp();
112  
113   double  pixvalue();
# Line 229 | Line 232 | char  *pout, *zout, *prvr;
232                  for ( ; seq < rn; seq++)
233                          if (nextview(stdin) == EOF)
234                                  error(USER, "unexpected EOF on view input");
235 +                setview(&ourview);
236                  prvr = fbuf;                    /* mark for renaming */
237          }
238          if (pout != NULL & prvr != NULL) {
# Line 270 | Line 274 | char  *pout, *zout, *prvr;
274                                                  fbuf);
275                                          error(USER, errmsg);
276                                  }
277 +                                setview(&ourview);
278                                  continue;               /* don't clobber */
279                          }
280                          if (freopen(fbuf, "w", stdout) == NULL) {
# Line 332 | Line 337 | FILE  *fp;
337   {
338          char  linebuf[256];
339  
340 +        copystruct(&lastview, &ourview);
341          while (fgets(linebuf, sizeof(linebuf), fp) != NULL)
342                  if (isview(linebuf) && sscanview(&ourview, linebuf) > 0)
343                          return(0);
# Line 342 | Line 348 | FILE  *fp;
348   render(zfile, oldfile)                          /* render the scene */
349   char  *zfile, *oldfile;
350   {
345        extern long  lseek();
351          COLOR  *scanbar[MAXDIV+1];      /* scanline arrays of pixel values */
352          float  *zbar[MAXDIV+1];         /* z values */
353          char  *sampdens;                /* previous sample density */
# Line 395 | Line 400 | char  *zfile, *oldfile;
400          if (i >= vres)
401                  goto alldone;
402          if (zfd != -1 && i > 0 &&
403 <                        lseek(zfd, (long)i*hres*sizeof(float), 0) == -1)
403 >                        lseek(zfd, (long)i*hres*sizeof(float), 0) < 0)
404                  error(SYSTEM, "z-file seek error in render");
405          pctdone = 100.0*i/vres;
406          if (ralrm > 0)                  /* report init stats */
# Line 404 | Line 409 | char  *zfile, *oldfile;
409          else
410   #endif
411          signal(SIGCONT, report);
412 <        ypos = vres-1 - i;
412 >        ypos = vres-1 - i;                      /* initialize sampling */
413 >        if (directvis)
414 >                init_drawsources(psample);
415          fillscanline(scanbar[0], zbar[0], sampdens, hres, ypos, hstep);
416                                                  /* compute scanlines */
417          for (ypos -= ystep; ypos > -ystep; ypos -= ystep) {
# Line 424 | Line 431 | char  *zfile, *oldfile;
431                                  hres, ypos, hstep);
432                                                          /* fill bar */
433                  fillscanbar(scanbar, zbar, hres, ypos, ystep);
434 +                if (directvis)                          /* add bitty sources */
435 +                        drawsources(scanbar, zbar, 0, hres, ypos, ystep);
436                                                          /* write it out */
437   #ifndef  BSD
438                  signal(SIGCONT, SIG_IGN);       /* don't interrupt writes */
# Line 488 | Line 497 | int  xres, y, xstep;
497          int  bl = xstep, b = xstep;
498          double  z;
499          register int  i;
500 <        
500 >
501          z = pixvalue(scanline[0], 0, y);
502          if (zline) zline[0] = z;
503                                  /* zig-zag start for quincunx pattern */
# Line 522 | Line 531 | int  xres, y, ysize;
531          float  zline[MAXDIV+1];
532          int  b = ysize;
533          register int  i, j;
534 <        
534 >
535          for (i = 0; i < xres; i++) {
527                
536                  copycolor(vline[0], scanbar[0][i]);
537                  copycolor(vline[ysize], scanbar[ysize][i]);
538                  if (zbar[0]) {
539                          zline[0] = zbar[0][i];
540                          zline[ysize] = zbar[ysize][i];
541                  }
534                
542                  b = fillsample(vline, zbar[0] ? zline : (float *)NULL,
543                                  i, y, 0, ysize, b/2);
544 <                
544 >
545                  for (j = 1; j < ysize; j++)
546                          copycolor(scanbar[j][i], vline[j]);
547                  if (zbar[0])
# Line 557 | Line 564 | int  b;
564          COLOR  ctmp;
565          int  ncut;
566          register int  len;
567 <        
567 >
568          if (xlen > 0)                   /* x or y length is zero */
569                  len = xlen;
570          else
571                  len = ylen;
572 <                
572 >
573          if (len <= 1)                   /* limit recursion */
574                  return(0);
575 <        
576 <        if (b > 0
577 <        || (zline && 2.*fabs(zline[0]-zline[len]) > maxdiff*(zline[0]+zline[len]))
575 >
576 >        if (b > 0 ||
577 >        (zline && 2.*fabs(zline[0]-zline[len]) > maxdiff*(zline[0]+zline[len]))
578                          || bigdiff(colline[0], colline[len], maxdiff)) {
579 <        
579 >
580                  z = pixvalue(colline[len>>1], x + (xlen>>1), y + (ylen>>1));
581                  if (zline) zline[len>>1] = z;
582                  ncut = 1;
576                
583          } else {                                        /* interpolate */
578        
584                  copycolor(colline[len>>1], colline[len]);
585                  ratio = (double)(len>>1) / len;
586                  scalecolor(colline[len>>1], ratio);
# Line 589 | Line 594 | int  b;
594          }
595                                                          /* recurse */
596          ncut += fillsample(colline, zline, x, y, xlen>>1, ylen>>1, (b-1)/2);
597 <        
597 >
598          ncut += fillsample(colline+(len>>1),
599                          zline ? zline+(len>>1) : (float *)NULL,
600                          x+(xlen>>1), y+(ylen>>1),
# Line 604 | Line 609 | pixvalue(col, x, y)            /* compute pixel value */
609   COLOR  col;                     /* returned color */
610   int  x, y;                      /* pixel position */
611   {
612 <        static RAY  thisray;
613 <
614 <        if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir, &ourview,
615 <                        (x+pixjitter())/hres, (y+pixjitter())/vres)) < -FTINY) {
612 >        RAY  thisray;
613 >        FVECT   lorg, ldir;
614 >        double  hpos, vpos, lmax, d;
615 >                                                /* compute view ray */
616 >        hpos = (x+pixjitter())/hres;
617 >        vpos = (y+pixjitter())/vres;
618 >        if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir,
619 >                                        &ourview, hpos, vpos)) < -FTINY) {
620                  setcolor(col, 0.0, 0.0, 0.0);
621                  return(0.0);
622          }
623  
615        rayorigin(&thisray, NULL, PRIMARY, 1.0);
616
624          samplendx = pixnumber(x,y,hres,vres);   /* set pixel index */
625  
626 +                                                /* optional motion blur */
627 +        if (lastview.type && mblur > FTINY && (lmax = viewray(lorg, ldir,
628 +                                        &lastview, hpos, vpos)) >= -FTINY) {
629 +                register int    i;
630 +                register double  d = mblur*(.5-urand(281+samplendx));
631 +
632 +                thisray.rmax = (1.-d)*thisray.rmax + d*lmax;
633 +                for (i = 3; i--; ) {
634 +                        thisray.rorg[i] = (1.-d)*thisray.rorg[i] + d*lorg[i];
635 +                        thisray.rdir[i] = (1.-d)*thisray.rdir[i] + d*ldir[i];
636 +                }
637 +                if (normalize(thisray.rdir) == 0.0)
638 +                        return(0.0);
639 +        }
640 +
641 +        rayorigin(&thisray, NULL, PRIMARY, 1.0);
642 +
643          rayvalue(&thisray);                     /* trace ray */
644  
645          copycolor(col, thisray.rcol);           /* return color */
646 <        
646 >
647          return(thisray.rt);                     /* return distance */
648   }
649  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines