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.36 by greg, Sun Dec 12 13:56:08 1993 UTC vs.
Revision 2.44 by greg, Wed Feb 14 15:18:05 1996 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1993 Regents of the University of California */
1 > /* Copyright (c) 1995 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 20 | Line 20 | static char SCCSid[] = "$SunId$ LBL";
20   #include  <sys/resource.h>
21   #else
22   #include  <sys/times.h>
23 #include  <sys/utsname.h>
23   #include  <unistd.h>
24   #endif
25   #endif
# Line 64 | Line 63 | int  vspretest = 512;                  /* virtual source pretest dens
63   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 */
68 + double  seccg = 0.;                     /* global scattering eccentricity */
69 + double  ssampdist = 0.;                 /* scatter sampling distance */
70 +
71   double  specthresh = .15;               /* specular sampling threshold */
72   double  specjitter = 1.;                /* specular sampling jitter */
73  
74 + int  backvis = 1;                       /* back face visibility */
75 +
76   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 133 | Line 140 | int  code;
140   #ifndef NIX
141   report()                /* report progress */
142   {
143 +        extern char  *myhostname();
144          double  u, s;
145   #ifdef BSD
138        char  hostname[257];
146          struct rusage  rubuf;
147   #else
148          struct tms  tbuf;
142        struct utsname  nambuf;
149          double  period;
144 #define hostname  nambuf.nodename
150   #endif
151  
152          tlastrept = time((time_t *)NULL);
# Line 152 | Line 157 | report()               /* report progress */
157          getrusage(RUSAGE_CHILDREN, &rubuf);
158          u += rubuf.ru_utime.tv_sec + rubuf.ru_utime.tv_usec/1e6;
159          s += rubuf.ru_stime.tv_sec + rubuf.ru_stime.tv_usec/1e6;
155        gethostname(hostname, sizeof(hostname));
160   #else
161          times(&tbuf);
162   #ifdef _SC_CLK_TCK
# Line 162 | Line 166 | report()               /* report progress */
166   #endif
167          u = ( tbuf.tms_utime + tbuf.tms_cutime ) * period;
168          s = ( tbuf.tms_stime + tbuf.tms_cstime ) * period;
165        uname(&nambuf);
169   #endif
170  
171          sprintf(errmsg,
172                  "%lu rays, %4.2f%% after %.3fu %.3fs %.3fr hours on %s\n",
173                          nrays, pctdone, u/3600., s/3600.,
174 <                        (tlastrept-tstart)/3600., hostname);
174 >                        (tlastrept-tstart)/3600., myhostname());
175          eputs(errmsg);
176   #ifndef BSD
177          signal(SIGCONT, report);
175 #undef hostname
178   #endif
179   }
180   #else
# Line 391 | Line 393 | char  *zfile, *oldfile;
393          fprtresolu(hres, vres, stdout);
394                                          /* recover file and compute first */
395          i = salvage(oldfile);
396 +        if (i >= vres)
397 +                goto alldone;
398          if (zfd != -1 && i > 0 &&
399                          lseek(zfd, (long)i*hres*sizeof(float), 0) == -1)
400                  error(SYSTEM, "z-file seek error in render");
# Line 446 | Line 450 | char  *zfile, *oldfile;
450          }
451                                                  /* clean up */
452          signal(SIGCONT, SIG_IGN);
453 <        if (zfd != -1) {
450 <                if (write(zfd, (char *)zbar[0], hres*sizeof(float))
453 >        if (zfd != -1 && write(zfd, (char *)zbar[0], hres*sizeof(float))
454                                  < hres*sizeof(float))
455 <                        goto writerr;
455 >                goto writerr;
456 >        fwritescan(scanbar[0], hres, stdout);
457 >        if (fflush(stdout) == EOF)
458 >                goto writerr;
459 > alldone:
460 >        if (zfd != -1) {
461                  if (close(zfd) == -1)
462                          goto writerr;
463                  for (i = 0; i <= psample; i++)
464                          free((char *)zbar[i]);
465          }
458        fwritescan(scanbar[0], hres, stdout);
459        if (fflush(stdout) == EOF)
460                goto writerr;
466          for (i = 0; i <= psample; i++)
467                  free((char *)scanbar[i]);
468          if (sampdens != NULL)
# Line 500 | Line 505 | int  xres, y, xstep;
505                          b = fillsample(scanline, zline, 0, y, i, 0, b/2);
506                  else
507                          b = fillsample(scanline+i-xstep,
508 <                                        zline ? zline+i-xstep : NULL,
508 >                                        zline ? zline+i-xstep : (float *)NULL,
509                                          i-xstep, y, xstep, 0, b/2);
510                  if (sd) *sd++ = nc & 1 ? bl : b;
511                  bl = b;
# Line 528 | Line 533 | int  xres, y, ysize;
533                          zline[ysize] = zbar[ysize][i];
534                  }
535                  
536 <                b = fillsample(vline, zbar[0] ? zline : NULL,
536 >                b = fillsample(vline, zbar[0] ? zline : (float *)NULL,
537                                  i, y, 0, ysize, b/2);
538                  
539                  for (j = 1; j < ysize; j++)
# Line 586 | Line 591 | int  b;
591                                                          /* recurse */
592          ncut += fillsample(colline, zline, x, y, xlen>>1, ylen>>1, (b-1)/2);
593          
594 <        ncut += fillsample(colline+(len>>1), zline ? zline+(len>>1) : NULL,
594 >        ncut += fillsample(colline+(len>>1),
595 >                        zline ? zline+(len>>1) : (float *)NULL,
596                          x+(xlen>>1), y+(ylen>>1),
597                          xlen-(xlen>>1), ylen-(ylen>>1), b/2);
598  
# Line 601 | Line 607 | int  x, y;                     /* pixel position */
607   {
608          static RAY  thisray;
609  
610 <        if (viewray(thisray.rorg, thisray.rdir, &ourview,
611 <                        (x+pixjitter())/hres, (y+pixjitter())/vres) < 0) {
610 >        if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir, &ourview,
611 >                        (x+pixjitter())/hres, (y+pixjitter())/vres)) < -FTINY) {
612                  setcolor(col, 0.0, 0.0, 0.0);
613                  return(0.0);
614          }
# Line 628 | Line 634 | char  *oldfile;
634          int  x, y;
635  
636          if (oldfile == NULL)
637 <                return(0);
638 <        
637 >                goto gotzip;
638 >
639          if ((fp = fopen(oldfile, "r")) == NULL) {
640                  sprintf(errmsg, "cannot open recover file \"%s\"", oldfile);
641                  error(WARNING, errmsg);
642 <                return(0);
642 >                goto gotzip;
643          }
644   #ifdef MSDOS
645          setmode(fileno(fp), O_BINARY);
# Line 646 | Line 652 | char  *oldfile;
652                                  oldfile);
653                  error(WARNING, errmsg);
654                  fclose(fp);
655 <                return(0);
655 >                goto gotzip;
656          }
657  
658          if (x != hres || y != vres) {
# Line 670 | Line 676 | char  *oldfile;
676          fclose(fp);
677          unlink(oldfile);
678          return(y);
679 + gotzip:
680 +        if (fflush(stdout) == EOF)
681 +                error(SYSTEM, "error writing picture header");
682 +        return(0);
683   writerr:
684          sprintf(errmsg, "write error during recovery of \"%s\"", oldfile);
685          error(SYSTEM, errmsg);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines