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.65 by schorsch, Mon Oct 27 10:30:18 2003 UTC vs.
Revision 2.76 by greg, Mon Jun 13 20:07:56 2005 UTC

# Line 1 | Line 1
1   #ifndef lint
2 < static const char RCSid[] = "$Id";
2 > static const char RCSid[] = "$Id$";
3   #endif
4   /*
5   *  rpict.c - routines and variables for picture generation.
# Line 7 | Line 7 | static const char RCSid[] = "$Id";
7  
8   #include "copyright.h"
9  
10 #include  "platform.h"
11 #include  "ray.h"
12
10   #include  <sys/types.h>
11  
12   #ifndef NON_POSIX
# Line 25 | Line 22 | static const char RCSid[] = "$Id";
22   #include  <time.h>
23   #include  <signal.h>
24  
25 + #include  "platform.h"
26 + #include  "ray.h"
27 + #include  "paths.h"
28 + #include  "ambient.h"
29   #include  "view.h"
30   #include  "random.h"
31   #include  "paths.h"
# Line 46 | Line 47 | int  dimlist[MAXDIM];                  /* sampling dimensions */
47   int  ndims = 0;                         /* number of sampling dimensions */
48   int  samplendx;                         /* sample index number */
49  
50 < extern void  ambnotify();
50 > //extern void  ambnotify();
51   void  (*addobjnotify[])() = {ambnotify, NULL};
52  
53   VIEW  ourview = STDVIEW;                /* view parameters */
# Line 60 | Line 61 | double dstrpix = 0.67;                 /* square pixel distribution
61  
62   double  mblur = 0.;                     /* motion blur parameter */
63  
64 + double  dblur = 0.;                     /* depth-of-field blur parameter */
65 +
66   void  (*trace)() = NULL;                /* trace call */
67  
68   int  do_irrad = 0;                      /* compute irradiance? */
69  
70 + int  rand_samp = 0;                     /* pure Monte Carlo sampling? */
71 +
72   double  dstrsrc = 0.0;                  /* square source distribution */
73   double  shadthresh = .05;               /* shadow threshold */
74   double  shadcert = .5;                  /* shadow certainty */
# Line 88 | Line 93 | double minweight = 4e-3;               /* minimum ray weight */
93   char  *ambfile = NULL;                  /* ambient file name */
94   COLOR  ambval = BLKCOLOR;               /* ambient value */
95   int  ambvwt = 0;                        /* initial weight for ambient value */
96 < double  ambacc = 0.15;                  /* ambient accuracy */
96 > double  ambacc = 0.2;                   /* ambient accuracy */
97   int  ambres = 64;                       /* ambient resolution */
98   int  ambdiv = 512;                      /* ambient divisions */
99   int  ambssamp = 128;                    /* ambient super-samples */
100   int  ambounce = 0;                      /* ambient bounces */
101 < char  *amblist[128];                    /* ambient include/exclude list */
101 > char  *amblist[AMBLLEN];                /* ambient include/exclude list */
102   int  ambincl = -1;                      /* include == 1, exclude == 0 */
103  
104   int  ralrm = 0;                         /* seconds between reports */
# Line 110 | Line 115 | int  hres, vres;                       /* resolution for this frame */
115  
116   static VIEW     lastview;               /* the previous view input */
117  
118 < extern char  *mktemp();  /* XXX should be in stdlib.h or unistd.h */
118 > //extern char  *mktemp();  /* XXX should be in stdlib.h or unistd.h */
119  
120 < void  report();
120 > //double        pixvalue();
121  
122 < double  pixvalue();
122 > static void report(int);
123 > static int nextview(FILE *fp);
124 > static void render(char *zfile, char *oldfile);
125 > static void fillscanline(COLOR *scanline, float *zline, char *sd, int xres,
126 >                int y, int xstep);
127 > static void fillscanbar(COLOR *scanbar[], float *zbar[], int xres,
128 >                int y, int ysize);
129 > static int fillsample(COLOR *colline, float *zline, int x, int y,
130 >                int xlen, int ylen, int b);
131 > static double pixvalue(COLOR  col, int  x, int  y);
132 > static int salvage(char  *oldfile);
133 > static int pixnumber(int  x, int  y, int  xres, int  yres);
134  
135 +
136 +
137   #ifdef RHAS_STAT
138   #include  <sys/types.h>
139   #include  <sys/stat.h>
# Line 137 | Line 155 | quit(code)                     /* quit program */
155   int  code;
156   {
157          if (code)                       /* report status */
158 <                report();
158 >                report(0);
159   #ifndef NON_POSIX
160          headclean();                    /* delete header file */
161          pfclean();                      /* clean up persist files */
# Line 147 | Line 165 | int  code;
165  
166  
167   #ifndef NON_POSIX
168 < void
169 < report()                /* report progress */
168 > static void
169 > report(int dummy)               /* report progress */
170   {
171          double  u, s;
172   #ifdef BSD
# Line 187 | Line 205 | report()               /* report progress */
205   #endif
206   }
207   #else
208 < void
209 < report()                /* report progress */
208 > static void
209 > report(int dummy)               /* report progress */
210   {
211          tlastrept = time((time_t *)NULL);
212          sprintf(errmsg, "%lu rays, %4.2f%% after %5.4f hours\n",
# Line 198 | Line 216 | report()               /* report progress */
216   #endif
217  
218  
219 < void
220 < rpict(seq, pout, zout, prvr)                    /* generate image(s) */
221 < int  seq;
222 < char  *pout, *zout, *prvr;
219 > extern void
220 > rpict(                  /* generate image(s) */
221 >        int  seq,
222 >        char  *pout,
223 >        char  *zout,
224 >        char  *prvr
225 > )
226   /*
227   * If seq is greater than zero, then we will render a sequence of
228   * images based on view parameter strings read from the standard input.
# Line 296 | Line 317 | char  *pout, *zout, *prvr;
317                  }
318                  hres = hresolu; vres = vresolu; pa = pixaspect;
319                  if (prvr != NULL) {
320 <                        if (viewfile(prvr, &ourview, &rs) <= 0
300 <                                        || rs.rt != PIXSTANDARD) {
320 >                        if (viewfile(prvr, &ourview, &rs) <= 0) {
321                                  sprintf(errmsg,
322                          "cannot recover view parameters from \"%s\"", prvr);
323                                  error(WARNING, errmsg);
# Line 341 | Line 361 | char  *pout, *zout, *prvr;
361   }
362  
363  
364 < nextview(fp)                            /* get next view from fp */
365 < FILE  *fp;
364 > static int
365 > nextview(                               /* get next view from fp */
366 >        FILE  *fp
367 > )
368   {
369          char  linebuf[256];
370  
# Line 354 | Line 376 | FILE  *fp;
376   }      
377  
378  
379 < render(zfile, oldfile)                          /* render the scene */
380 < char  *zfile, *oldfile;
379 > static void
380 > render(                         /* render the scene */
381 >        char  *zfile,
382 >        char  *oldfile
383 > )
384   {
385          COLOR  *scanbar[MAXDIV+1];      /* scanline arrays of pixel values */
386          float  *zbar[MAXDIV+1];         /* z values */
# Line 417 | Line 442 | char  *zfile, *oldfile;
442                  error(SYSTEM, "z-file seek error in render");
443          pctdone = 100.0*i/vres;
444          if (ralrm > 0)                  /* report init stats */
445 <                report();
445 >                report(0);
446   #ifdef SIGCONT
447          else
448          signal(SIGCONT, report);
# Line 463 | Line 488 | char  *zfile, *oldfile;
488                                                          /* record progress */
489                  pctdone = 100.0*(vres-1-ypos)/vres;
490                  if (ralrm > 0 && time((time_t *)NULL) >= tlastrept+ralrm)
491 <                        report();
491 >                        report(0);
492   #ifdef SIGCONT
493                  else
494                          signal(SIGCONT, report);
# Line 492 | Line 517 | alldone:
517                  free(sampdens);
518          pctdone = 100.0;
519          if (ralrm > 0)
520 <                report();
520 >                report(0);
521   #ifdef SIGCONT
522          signal(SIGCONT, SIG_DFL);
523   #endif
# Line 504 | Line 529 | memerr:
529   }
530  
531  
532 < fillscanline(scanline, zline, sd, xres, y, xstep)       /* fill scan at y */
533 < register COLOR  *scanline;
534 < register float  *zline;
535 < register char  *sd;
536 < int  xres, y, xstep;
532 > static void
533 > fillscanline(   /* fill scan at y */
534 >        register COLOR  *scanline,
535 >        register float  *zline,
536 >        register char  *sd,
537 >        int  xres,
538 >        int  y,
539 >        int  xstep
540 > )
541   {
542          static int  nc = 0;             /* number of calls */
543          int  bl = xstep, b = xstep;
# Line 539 | Line 568 | int  xres, y, xstep;
568   }
569  
570  
571 < fillscanbar(scanbar, zbar, xres, y, ysize)      /* fill interior */
572 < register COLOR  *scanbar[];
573 < register float  *zbar[];
574 < int  xres, y, ysize;
571 > static void
572 > fillscanbar(    /* fill interior */
573 >        register COLOR  *scanbar[],
574 >        register float  *zbar[],
575 >        int  xres,
576 >        int  y,
577 >        int  ysize
578 > )
579   {
580          COLOR  vline[MAXDIV+1];
581          float  zline[MAXDIV+1];
# Line 568 | Line 601 | int  xres, y, ysize;
601   }
602  
603  
604 < int
605 < fillsample(colline, zline, x, y, xlen, ylen, b) /* fill interior points */
606 < register COLOR  *colline;
607 < register float  *zline;
608 < int  x, y;
609 < int  xlen, ylen;
610 < int  b;
604 > static int
605 > fillsample( /* fill interior points */
606 >        register COLOR  *colline,
607 >        register float  *zline,
608 >        int  x,
609 >        int  y,
610 >        int  xlen,
611 >        int  ylen,
612 >        int  b
613 > )
614   {
615          double  ratio;
616          double  z;
# Line 621 | Line 657 | int  b;
657   }
658  
659  
660 < double
661 < pixvalue(col, x, y)             /* compute pixel value */
662 < COLOR  col;                     /* returned color */
663 < int  x, y;                      /* pixel position */
660 > static double
661 > pixvalue(               /* compute pixel value */
662 >        COLOR  col,                     /* returned color */
663 >        int  x,                 /* pixel position */
664 >        int  y
665 > )
666   {
667          RAY  thisray;
668          FVECT   lorg, ldir;
669 <        double  hpos, vpos, lmax, d;
669 >        double  hpos, vpos, vdist, lmax;
670 >        register int    i;
671                                                  /* compute view ray */
672          hpos = (x+pixjitter())/hres;
673          vpos = (y+pixjitter())/vres;
# Line 637 | Line 676 | int  x, y;                     /* pixel position */
676                  setcolor(col, 0.0, 0.0, 0.0);
677                  return(0.0);
678          }
679 +        vdist = ourview.vdist;
680  
681 <        samplendx = pixnumber(x,y,hres,vres);   /* set pixel index */
681 >        if (rand_samp)                          /* set pixel index */
682 >                samplendx = random();
683 >        else
684 >                samplendx = pixnumber(x,y,hres,vres);
685  
686                                                  /* optional motion blur */
687          if (lastview.type && mblur > FTINY && (lmax = viewray(lorg, ldir,
688                                          &lastview, hpos, vpos)) >= -FTINY) {
646                register int    i;
689                  register double  d = mblur*(.5-urand(281+samplendx));
690  
691                  thisray.rmax = (1.-d)*thisray.rmax + d*lmax;
# Line 653 | Line 695 | int  x, y;                     /* pixel position */
695                  }
696                  if (normalize(thisray.rdir) == 0.0)
697                          return(0.0);
698 +                vdist = (1.-d)*vdist + d*lastview.vdist;
699          }
700 +                                                /* optional depth-of-field */
701 +        if (dblur > FTINY && vdist > FTINY) {
702 +                double  vc, dfh, dfv;
703 +                                                /* PI/4. square/circle conv. */
704 +                dfh = PI/4.*dblur*(.5 - frandom());
705 +                dfv = PI/4.*dblur*(.5 - frandom());
706 +                if (ourview.type == VT_PER || ourview.type == VT_PAR) {
707 +                        dfh /= sqrt(ourview.hn2);
708 +                        dfv /= 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] ;
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) {
718 +                                if (ourview.type != VT_CYL)
719 +                                        dfh /= sqrt(ourview.hn2);
720 +                                dfv /= 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] +
726 +                                                        dfd*ourview.vdir[i] ;
727 +                                thisray.rdir[i] = vc - thisray.rorg[i];
728 +                        }
729 +                }
730 +                if (normalize(thisray.rdir) == 0.0)
731 +                        return(0.0);
732 +        }
733  
734 <        rayorigin(&thisray, NULL, PRIMARY, 1.0);
734 >        rayorigin(&thisray, PRIMARY, NULL, NULL);
735  
736          rayvalue(&thisray);                     /* trace ray */
737  
# Line 665 | Line 741 | int  x, y;                     /* pixel position */
741   }
742  
743  
744 < int
745 < salvage(oldfile)                /* salvage scanlines from killed program */
746 < char  *oldfile;
744 > static int
745 > salvage(                /* salvage scanlines from killed program */
746 >        char  *oldfile
747 > )
748   {
749          COLR  *scanline;
750          FILE  *fp;
# Line 721 | Line 798 | gotzip:
798   writerr:
799          sprintf(errmsg, "write error during recovery of \"%s\"", oldfile);
800          error(SYSTEM, errmsg);
801 +        return -1; /* pro forma return */
802   }
803  
804 <
805 < int
806 < pixnumber(x, y, xres, yres)             /* compute pixel index (brushed) */
807 < register int  x, y;
808 < int  xres, yres;
804 > static int
805 > pixnumber(              /* compute pixel index (brushed) */
806 >        register int  x,
807 >        register int  y,
808 >        int  xres,
809 >        int  yres
810 > )
811   {
812          x -= y;
813          while (x < 0)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines