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.58 by schorsch, Mon Jun 30 19:58:37 2003 UTC vs.
Revision 2.75 by greg, Tue Apr 19 01:15:06 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  "ray.h"
11
10   #include  <sys/types.h>
11  
12   #ifndef NON_POSIX
# Line 25 | Line 23 | static const char RCSid[] = "$Id";
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"
32 + #include  "rtmisc.h" /* myhostname() */
33  
34  
35   #define  RFTEMPLATE     "rfXXXXXX"
# Line 45 | 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 59 | 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? */
# Line 81 | Line 85 | double specjitter = 1.;                /* specular sampling jitter *
85  
86   int  backvis = 1;                       /* back face visibility */
87  
88 < int  maxdepth = 6;                      /* maximum recursion depth */
89 < double  minweight = 5e-3;               /* minimum ray weight */
88 > int  maxdepth = 7;                      /* maximum recursion depth */
89 > double  minweight = 4e-3;               /* minimum ray weight */
90  
91   char  *ambfile = NULL;                  /* ambient file name */
92   COLOR  ambval = BLKCOLOR;               /* ambient value */
93   int  ambvwt = 0;                        /* initial weight for ambient value */
94   double  ambacc = 0.2;                   /* ambient accuracy */
95 < int  ambres = 32;                       /* ambient resolution */
96 < int  ambdiv = 128;                      /* ambient divisions */
97 < int  ambssamp = 0;                      /* ambient super-samples */
95 > int  ambres = 64;                       /* ambient resolution */
96 > int  ambdiv = 512;                      /* ambient divisions */
97 > int  ambssamp = 128;                    /* ambient super-samples */
98   int  ambounce = 0;                      /* ambient bounces */
99 < char  *amblist[128];                    /* ambient include/exclude list */
99 > char  *amblist[AMBLLEN];                /* ambient include/exclude list */
100   int  ambincl = -1;                      /* include == 1, exclude == 0 */
101  
102   int  ralrm = 0;                         /* seconds between reports */
# Line 109 | Line 113 | int  hres, vres;                       /* resolution for this frame */
113  
114   static VIEW     lastview;               /* the previous view input */
115  
116 < extern char  *mktemp();  /* XXX should be in stdlib.h or unistd.h */
116 > //extern char  *mktemp();  /* XXX should be in stdlib.h or unistd.h */
117  
118 < void  report();
118 > //double        pixvalue();
119  
120 < double  pixvalue();
120 > static void report(int);
121 > static int nextview(FILE *fp);
122 > static void render(char *zfile, char *oldfile);
123 > static void fillscanline(COLOR *scanline, float *zline, char *sd, int xres,
124 >                int y, int xstep);
125 > static void fillscanbar(COLOR *scanbar[], float *zbar[], int xres,
126 >                int y, int ysize);
127 > static int fillsample(COLOR *colline, float *zline, int x, int y,
128 >                int xlen, int ylen, int b);
129 > static double pixvalue(COLOR  col, int  x, int  y);
130 > static int salvage(char  *oldfile);
131 > static int pixnumber(int  x, int  y, int  xres, int  yres);
132  
133 +
134 +
135   #ifdef RHAS_STAT
136   #include  <sys/types.h>
137   #include  <sys/stat.h>
# Line 136 | Line 153 | quit(code)                     /* quit program */
153   int  code;
154   {
155          if (code)                       /* report status */
156 <                report();
156 >                report(0);
157   #ifndef NON_POSIX
158          headclean();                    /* delete header file */
159          pfclean();                      /* clean up persist files */
# Line 146 | Line 163 | int  code;
163  
164  
165   #ifndef NON_POSIX
166 < void
167 < report()                /* report progress */
166 > static void
167 > report(int dummy)               /* report progress */
168   {
152        extern char  *myhostname();
169          double  u, s;
170   #ifdef BSD
171          struct rusage  rubuf;
# Line 187 | Line 203 | report()               /* report progress */
203   #endif
204   }
205   #else
206 < void
207 < report()                /* report progress */
206 > static void
207 > report(int dummy)               /* report progress */
208   {
209          tlastrept = time((time_t *)NULL);
210          sprintf(errmsg, "%lu rays, %4.2f%% after %5.4f hours\n",
# Line 198 | Line 214 | report()               /* report progress */
214   #endif
215  
216  
217 < void
218 < rpict(seq, pout, zout, prvr)                    /* generate image(s) */
219 < int  seq;
220 < char  *pout, *zout, *prvr;
217 > extern void
218 > rpict(                  /* generate image(s) */
219 >        int  seq,
220 >        char  *pout,
221 >        char  *zout,
222 >        char  *prvr
223 > )
224   /*
225   * If seq is greater than zero, then we will render a sequence of
226   * images based on view parameter strings read from the standard input.
# Line 243 | Line 262 | char  *pout, *zout, *prvr;
262                  setview(&ourview);
263                  prvr = fbuf;                    /* mark for renaming */
264          }
265 <        if (pout != NULL & prvr != NULL) {
265 >        if ((pout != NULL) & (prvr != NULL)) {
266                  sprintf(fbuf, pout, seq);
267                  if (!strcmp(prvr, fbuf)) {      /* rename */
268                          strcpy(fbuf2, fbuf);
# Line 253 | Line 272 | char  *pout, *zout, *prvr;
272                                  cp--;
273                          strcpy(cp, RFTEMPLATE);
274                          prvr = mktemp(fbuf2);
275 <                        if (rename(fbuf, prvr) < 0)
275 >                        if (rename(fbuf, prvr) < 0) {
276                                  if (errno == ENOENT) {  /* ghost file */
277                                          sprintf(errmsg,
278                                                  "new output file \"%s\"",
# Line 266 | Line 285 | char  *pout, *zout, *prvr;
285                                                  fbuf, prvr);
286                                          error(SYSTEM, errmsg);
287                                  }
288 +                        }
289                  }
290          }
291          npicts = 0;                     /* render sequence */
# Line 294 | Line 314 | char  *pout, *zout, *prvr;
314                          dupheader();
315                  }
316                  hres = hresolu; vres = vresolu; pa = pixaspect;
317 <                if (prvr != NULL)
318 <                        if (viewfile(prvr, &ourview, &rs) <= 0
299 <                                        || rs.rt != PIXSTANDARD) {
317 >                if (prvr != NULL) {
318 >                        if (viewfile(prvr, &ourview, &rs) <= 0) {
319                                  sprintf(errmsg,
320                          "cannot recover view parameters from \"%s\"", prvr);
321                                  error(WARNING, errmsg);
# Line 305 | Line 324 | char  *pout, *zout, *prvr;
324                                  hres = scanlen(&rs);
325                                  vres = numscans(&rs);
326                          }
327 +                }
328                  if ((cp = setview(&ourview)) != NULL)
329                          error(USER, cp);
330                  normaspect(viewaspect(&ourview), &pa, &hres, &vres);
# Line 322 | Line 342 | char  *pout, *zout, *prvr;
342                  putchar('\n');
343                  if (pa < .99 || pa > 1.01)
344                          fputaspect(pa, stdout);
345 +                fputnow(stdout);
346                  fputformat(COLRFMT, stdout);
347                  putchar('\n');
348                  if (zout != NULL)
# Line 338 | Line 359 | char  *pout, *zout, *prvr;
359   }
360  
361  
362 < nextview(fp)                            /* get next view from fp */
363 < FILE  *fp;
362 > static int
363 > nextview(                               /* get next view from fp */
364 >        FILE  *fp
365 > )
366   {
367          char  linebuf[256];
368  
369 <        copystruct(&lastview, &ourview);
369 >        lastview = ourview;
370          while (fgets(linebuf, sizeof(linebuf), fp) != NULL)
371                  if (isview(linebuf) && sscanview(&ourview, linebuf) > 0)
372                          return(0);
# Line 351 | Line 374 | FILE  *fp;
374   }      
375  
376  
377 < render(zfile, oldfile)                          /* render the scene */
378 < char  *zfile, *oldfile;
377 > static void
378 > render(                         /* render the scene */
379 >        char  *zfile,
380 >        char  *oldfile
381 > )
382   {
383          COLOR  *scanbar[MAXDIV+1];      /* scanline arrays of pixel values */
384          float  *zbar[MAXDIV+1];         /* z values */
# Line 410 | Line 436 | char  *zfile, *oldfile;
436          if (i >= vres)
437                  goto alldone;
438          if (zfd != -1 && i > 0 &&
439 <                        lseek(zfd, (off_t)i*hres*sizeof(float), 0) < 0)
439 >                        lseek(zfd, (off_t)i*hres*sizeof(float), SEEK_SET) < 0)
440                  error(SYSTEM, "z-file seek error in render");
441          pctdone = 100.0*i/vres;
442          if (ralrm > 0)                  /* report init stats */
443 <                report();
443 >                report(0);
444   #ifdef SIGCONT
445          else
446          signal(SIGCONT, report);
# Line 460 | Line 486 | char  *zfile, *oldfile;
486                                                          /* record progress */
487                  pctdone = 100.0*(vres-1-ypos)/vres;
488                  if (ralrm > 0 && time((time_t *)NULL) >= tlastrept+ralrm)
489 <                        report();
489 >                        report(0);
490   #ifdef SIGCONT
491                  else
492                          signal(SIGCONT, report);
# Line 489 | Line 515 | alldone:
515                  free(sampdens);
516          pctdone = 100.0;
517          if (ralrm > 0)
518 <                report();
518 >                report(0);
519   #ifdef SIGCONT
520          signal(SIGCONT, SIG_DFL);
521   #endif
# Line 501 | Line 527 | memerr:
527   }
528  
529  
530 < fillscanline(scanline, zline, sd, xres, y, xstep)       /* fill scan at y */
531 < register COLOR  *scanline;
532 < register float  *zline;
533 < register char  *sd;
534 < int  xres, y, xstep;
530 > static void
531 > fillscanline(   /* fill scan at y */
532 >        register COLOR  *scanline,
533 >        register float  *zline,
534 >        register char  *sd,
535 >        int  xres,
536 >        int  y,
537 >        int  xstep
538 > )
539   {
540          static int  nc = 0;             /* number of calls */
541          int  bl = xstep, b = xstep;
# Line 536 | Line 566 | int  xres, y, xstep;
566   }
567  
568  
569 < fillscanbar(scanbar, zbar, xres, y, ysize)      /* fill interior */
570 < register COLOR  *scanbar[];
571 < register float  *zbar[];
572 < int  xres, y, ysize;
569 > static void
570 > fillscanbar(    /* fill interior */
571 >        register COLOR  *scanbar[],
572 >        register float  *zbar[],
573 >        int  xres,
574 >        int  y,
575 >        int  ysize
576 > )
577   {
578          COLOR  vline[MAXDIV+1];
579          float  zline[MAXDIV+1];
# Line 565 | Line 599 | int  xres, y, ysize;
599   }
600  
601  
602 < int
603 < fillsample(colline, zline, x, y, xlen, ylen, b) /* fill interior points */
604 < register COLOR  *colline;
605 < register float  *zline;
606 < int  x, y;
607 < int  xlen, ylen;
608 < int  b;
602 > static int
603 > fillsample( /* fill interior points */
604 >        register COLOR  *colline,
605 >        register float  *zline,
606 >        int  x,
607 >        int  y,
608 >        int  xlen,
609 >        int  ylen,
610 >        int  b
611 > )
612   {
613          double  ratio;
614          double  z;
# Line 618 | Line 655 | int  b;
655   }
656  
657  
658 < double
659 < pixvalue(col, x, y)             /* compute pixel value */
660 < COLOR  col;                     /* returned color */
661 < int  x, y;                      /* pixel position */
658 > static double
659 > pixvalue(               /* compute pixel value */
660 >        COLOR  col,                     /* returned color */
661 >        int  x,                 /* pixel position */
662 >        int  y
663 > )
664   {
665          RAY  thisray;
666          FVECT   lorg, ldir;
667 <        double  hpos, vpos, lmax, d;
667 >        double  hpos, vpos, vdist, lmax;
668 >        register int    i;
669                                                  /* compute view ray */
670          hpos = (x+pixjitter())/hres;
671          vpos = (y+pixjitter())/vres;
# Line 634 | Line 674 | int  x, y;                     /* pixel position */
674                  setcolor(col, 0.0, 0.0, 0.0);
675                  return(0.0);
676          }
677 +        vdist = ourview.vdist;
678  
679          samplendx = pixnumber(x,y,hres,vres);   /* set pixel index */
680  
681                                                  /* optional motion blur */
682          if (lastview.type && mblur > FTINY && (lmax = viewray(lorg, ldir,
683                                          &lastview, hpos, vpos)) >= -FTINY) {
643                register int    i;
684                  register double  d = mblur*(.5-urand(281+samplendx));
685  
686                  thisray.rmax = (1.-d)*thisray.rmax + d*lmax;
# Line 650 | Line 690 | int  x, y;                     /* pixel position */
690                  }
691                  if (normalize(thisray.rdir) == 0.0)
692                          return(0.0);
693 +                vdist = (1.-d)*vdist + d*lastview.vdist;
694          }
695 +                                                /* optional depth-of-field */
696 +        if (dblur > FTINY && vdist > FTINY) {
697 +                double  vc, dfh, dfv;
698 +                                                /* PI/4. square/circle conv. */
699 +                dfh = PI/4.*dblur*(.5 - frandom());
700 +                dfv = PI/4.*dblur*(.5 - frandom());
701 +                if (ourview.type == VT_PER || ourview.type == VT_PAR) {
702 +                        dfh /= sqrt(ourview.hn2);
703 +                        dfv /= sqrt(ourview.vn2);
704 +                        for (i = 3; i--; ) {
705 +                                vc = thisray.rorg[i] + vdist*thisray.rdir[i];
706 +                                thisray.rorg[i] += dfh*ourview.hvec[i] +
707 +                                                        dfv*ourview.vvec[i] ;
708 +                                thisray.rdir[i] = vc - thisray.rorg[i];
709 +                        }
710 +                } else {                        /* non-standard view case */
711 +                        double  dfd = PI/4.*dblur*(.5 - frandom());
712 +                        if (ourview.type != VT_ANG) {
713 +                                if (ourview.type != VT_CYL)
714 +                                        dfh /= sqrt(ourview.hn2);
715 +                                dfv /= sqrt(ourview.vn2);
716 +                        }
717 +                        for (i = 3; i--; ) {
718 +                                vc = thisray.rorg[i] + vdist*thisray.rdir[i];
719 +                                thisray.rorg[i] += dfh*ourview.hvec[i] +
720 +                                                        dfv*ourview.vvec[i] +
721 +                                                        dfd*ourview.vdir[i] ;
722 +                                thisray.rdir[i] = vc - thisray.rorg[i];
723 +                        }
724 +                }
725 +                if (normalize(thisray.rdir) == 0.0)
726 +                        return(0.0);
727 +        }
728  
729 <        rayorigin(&thisray, NULL, PRIMARY, 1.0);
729 >        rayorigin(&thisray, PRIMARY, NULL, NULL);
730  
731          rayvalue(&thisray);                     /* trace ray */
732  
# Line 662 | Line 736 | int  x, y;                     /* pixel position */
736   }
737  
738  
739 < int
740 < salvage(oldfile)                /* salvage scanlines from killed program */
741 < char  *oldfile;
739 > static int
740 > salvage(                /* salvage scanlines from killed program */
741 >        char  *oldfile
742 > )
743   {
744          COLR  *scanline;
745          FILE  *fp;
# Line 718 | Line 793 | gotzip:
793   writerr:
794          sprintf(errmsg, "write error during recovery of \"%s\"", oldfile);
795          error(SYSTEM, errmsg);
796 +        return -1; /* pro forma return */
797   }
798  
799 <
800 < int
801 < pixnumber(x, y, xres, yres)             /* compute pixel index (brushed) */
802 < register int  x, y;
803 < int  xres, yres;
799 > static int
800 > pixnumber(              /* compute pixel index (brushed) */
801 >        register int  x,
802 >        register int  y,
803 >        int  xres,
804 >        int  yres
805 > )
806   {
807          x -= y;
808          while (x < 0)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines