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.81 by greg, Mon May 11 21:46:31 2009 UTC vs.
Revision 2.86 by greg, Thu Mar 21 00:03:09 2013 UTC

# Line 51 | Line 51 | int  dimlist[MAXDIM];                  /* sampling dimensions */
51   int  ndims = 0;                         /* number of sampling dimensions */
52   int  samplendx;                         /* sample index number */
53  
54 //extern void  ambnotify();
54   void  (*addobjnotify[])() = {ambnotify, NULL};
55  
56   VIEW  ourview = STDVIEW;                /* view parameters */
# Line 92 | Line 91 | double specjitter = 1.;                /* specular sampling jitter *
91   int  backvis = 1;                       /* back face visibility */
92  
93   int  maxdepth = 7;                      /* maximum recursion depth */
94 < double  minweight = 4e-3;               /* minimum ray weight */
94 > double  minweight = 1e-3;               /* minimum ray weight */
95  
96   char  *ambfile = NULL;                  /* ambient file name */
97   COLOR  ambval = BLKCOLOR;               /* ambient value */
# Line 119 | Line 118 | int  hres, vres;                       /* resolution for this frame */
118  
119   static VIEW     lastview;               /* the previous view input */
120  
122 //extern char  *mktemp();  /* XXX should be in stdlib.h or unistd.h */
123
124 //double        pixvalue();
125
121   static void report(int);
122   static int nextview(FILE *fp);
123   static void render(char *zfile, char *oldfile);
# Line 241 | Line 236 | rpict(                 /* generate image(s) */
236   {
237          char  fbuf[128], fbuf2[128];
238          int  npicts;
239 <        register char  *cp;
239 >        char  *cp;
240          RESOLU  rs;
241          double  pa;
242                                          /* check sampling */
# Line 257 | Line 252 | rpict(                 /* generate image(s) */
252          if (seq <= 0)
253                  seq = 0;
254          else if (prvr != NULL && isint(prvr)) {
255 <                register int  rn;               /* skip to specified view */
255 >                int  rn;                /* skip to specified view */
256                  if ((rn = atoi(prvr)) < seq)
257                          error(USER, "recover frame less than start frame");
258                  if (pout == NULL)
# Line 346 | Line 341 | rpict(                 /* generate image(s) */
341                  fputs(VIEWSTR, stdout);
342                  fprintview(&ourview, stdout);
343                  putchar('\n');
344 <                if (pa < .99 || pa > 1.01)
344 >                if ((pa < .99) | (pa > 1.01))
345                          fputaspect(pa, stdout);
346                  fputnow(stdout);
347                  fputformat(COLRFMT, stdout);
# Line 395 | Line 390 | render(                                /* render the scene */
390          int  zfd;
391          COLOR  *colptr;
392          float  *zptr;
393 <        register int  i;
393 >        int  i;
394                                          /* check for empty image */
395 <        if (hres <= 0 || vres <= 0) {
395 >        if ((hres <= 0) | (vres <= 0)) {
396                  error(WARNING, "empty output picture");
397                  fprtresolu(0, 0, stdout);
398                  return;
# Line 441 | Line 436 | render(                                /* render the scene */
436          i = salvage(oldfile);
437          if (i >= vres)
438                  goto alldone;
439 <        if (zfd != -1 && i > 0 &&
439 >        if ((zfd != -1) & (i > 0) &&
440                          lseek(zfd, (off_t)i*hres*sizeof(float), SEEK_SET) < 0)
441                  error(SYSTEM, "z-file seek error in render");
442          pctdone = 100.0*i/vres;
# Line 535 | Line 530 | memerr:
530  
531   static void
532   fillscanline(   /* fill scan at y */
533 <        register COLOR  *scanline,
534 <        register float  *zline,
535 <        register char  *sd,
533 >        COLOR   *scanline,
534 >        float   *zline,
535 >        char  *sd,
536          int  xres,
537          int  y,
538          int  xstep
# Line 546 | Line 541 | fillscanline(  /* fill scan at y */
541          static int  nc = 0;             /* number of calls */
542          int  bl = xstep, b = xstep;
543          double  z;
544 <        register int  i;
544 >        int  i;
545  
546          z = pixvalue(scanline[0], 0, y);
547          if (zline) zline[0] = z;
# Line 574 | Line 569 | fillscanline(  /* fill scan at y */
569  
570   static void
571   fillscanbar(    /* fill interior */
572 <        register COLOR  *scanbar[],
573 <        register float  *zbar[],
572 >        COLOR   *scanbar[],
573 >        float   *zbar[],
574          int  xres,
575          int  y,
576          int  ysize
# Line 584 | Line 579 | fillscanbar(   /* fill interior */
579          COLOR  vline[MAXDIV+1];
580          float  zline[MAXDIV+1];
581          int  b = ysize;
582 <        register int  i, j;
582 >        int  i, j;
583  
584          for (i = 0; i < xres; i++) {
585                  copycolor(vline[0], scanbar[0][i]);
# Line 607 | Line 602 | fillscanbar(   /* fill interior */
602  
603   static int
604   fillsample( /* fill interior points */
605 <        register COLOR  *colline,
606 <        register float  *zline,
605 >        COLOR   *colline,
606 >        float   *zline,
607          int  x,
608          int  y,
609          int  xlen,
# Line 620 | Line 615 | fillsample( /* fill interior points */
615          double  z;
616          COLOR  ctmp;
617          int  ncut;
618 <        register int  len;
618 >        int  len;
619  
620          if (xlen > 0)                   /* x or y length is zero */
621                  len = xlen;
# Line 668 | Line 663 | pixvalue(              /* compute pixel value */
663          int  y
664   )
665   {
666 +        extern void  SDsquare2disk(double ds[2], double seedx, double seedy);
667          RAY  thisray;
668          FVECT   lorg, ldir;
669          double  hpos, vpos, vdist, lmax;
670 <        register int    i;
670 >        int     i;
671                                                  /* compute view ray */
672 +        setcolor(col, 0.0, 0.0, 0.0);
673          hpos = (x+pixjitter())/hres;
674          vpos = (y+pixjitter())/vres;
675          if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir,
676 <                                        &ourview, hpos, vpos)) < -FTINY) {
680 <                setcolor(col, 0.0, 0.0, 0.0);
676 >                                        &ourview, hpos, vpos)) < -FTINY)
677                  return(0.0);
678 <        }
678 >
679          vdist = ourview.vdist;
680                                                  /* set pixel index */
681          samplendx = pixnumber(x,y,hres,vres);
682                                                  /* optional motion blur */
683          if (lastview.type && mblur > FTINY && (lmax = viewray(lorg, ldir,
684                                          &lastview, hpos, vpos)) >= -FTINY) {
685 <                register double  d = mblur*(.5-urand(281+samplendx));
685 >                double  d = mblur*(.5-urand(281+samplendx));
686  
687                  thisray.rmax = (1.-d)*thisray.rmax + d*lmax;
688                  for (i = 3; i--; ) {
# Line 698 | Line 694 | pixvalue(              /* compute pixel value */
694                  vdist = (1.-d)*vdist + d*lastview.vdist;
695          }
696                                                  /* optional depth-of-field */
697 <        if (dblur > FTINY && vdist > FTINY) {
698 <                double  vc, dfh, dfv;
699 <                                                /* square/circle conv. */
700 <                dfh = vc = frandom();
701 <                dfv = frandom();
702 <                dfh *= .5*dblur*sqrt(1. - .5*dfv*dfv);
703 <                dfv *= .5*dblur*sqrt(1. - .5*vc*vc);
704 <                if (ourview.type == VT_PER || ourview.type == VT_PAR) {
705 <                        dfh /= sqrt(ourview.hn2);
706 <                        dfv /= sqrt(ourview.vn2);
697 >        if (dblur > FTINY) {
698 >                double  vc, df[2];
699 >                                                /* random point on disk */
700 >                SDsquare2disk(df, frandom(), frandom());
701 >                df[0] *= .5*dblur;
702 >                df[1] *= .5*dblur;
703 >                if ((ourview.type == VT_PER) | (ourview.type == VT_PAR)) {
704 >                        double  adj = 1.0;
705 >                        if (ourview.type == VT_PER)
706 >                                adj /= DOT(thisray.rdir, ourview.vdir);
707 >                        df[0] /= sqrt(ourview.hn2);
708 >                        df[1] /= sqrt(ourview.vn2);
709                          for (i = 3; i--; ) {
710 <                                vc = thisray.rorg[i] + vdist*thisray.rdir[i];
711 <                                thisray.rorg[i] += dfh*ourview.hvec[i] +
712 <                                                        dfv*ourview.vvec[i] ;
710 >                                vc = ourview.vp[i] + adj*vdist*thisray.rdir[i];
711 >                                thisray.rorg[i] += df[0]*ourview.hvec[i] +
712 >                                                        df[1]*ourview.vvec[i] ;
713                                  thisray.rdir[i] = vc - thisray.rorg[i];
714                          }
715                  } else {                        /* non-standard view case */
716                          double  dfd = PI/4.*dblur*(.5 - frandom());
717 <                        if (ourview.type != VT_ANG && ourview.type != VT_PLS) {
717 >                        if ((ourview.type != VT_ANG) & (ourview.type != VT_PLS)) {
718                                  if (ourview.type != VT_CYL)
719 <                                        dfh /= sqrt(ourview.hn2);
720 <                                dfv /= sqrt(ourview.vn2);
719 >                                        df[0] /= sqrt(ourview.hn2);
720 >                                df[1] /= sqrt(ourview.vn2);
721                          }
722                          for (i = 3; i--; ) {
723 <                                vc = thisray.rorg[i] + vdist*thisray.rdir[i];
724 <                                thisray.rorg[i] += dfh*ourview.hvec[i] +
725 <                                                        dfv*ourview.vvec[i] +
723 >                                vc = ourview.vp[i] + vdist*thisray.rdir[i];
724 >                                thisray.rorg[i] += df[0]*ourview.hvec[i] +
725 >                                                        df[1]*ourview.vvec[i] +
726                                                          dfd*ourview.vdir[i] ;
727                                  thisray.rdir[i] = vc - thisray.rorg[i];
728                          }
# Line 772 | Line 770 | salvage(               /* salvage scanlines from killed program */
770                  goto gotzip;
771          }
772  
773 <        if (x != hres || y != vres) {
773 >        if ((x != hres) | (y != vres)) {
774                  sprintf(errmsg, "resolution mismatch in recover file \"%s\"",
775                                  oldfile);
776                  error(USER, errmsg);
# Line 805 | Line 803 | writerr:
803  
804   static int
805   pixnumber(              /* compute pixel index (brushed) */
806 <        register int  x,
807 <        register int  y,
806 >        int  x,
807 >        int  y,
808          int  xres,
809          int  yres
810   )

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines