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.51 by gwlarson, Wed Jun 17 13:29:55 1998 UTC vs.
Revision 2.60 by schorsch, Thu Jul 3 21:44:41 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1996 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char RCSid[] = "$Id";
3   #endif
6
4   /*
5   *  rpict.c - routines and variables for picture generation.
6   */
7  
8 + #include "copyright.h"
9 +
10 + #include  "platform.h"
11   #include  "ray.h"
12  
13   #include  <sys/types.h>
14  
15 < #ifndef NIX
15 > #ifndef NON_POSIX
16   #ifdef BSD
17   #include  <sys/time.h>
18   #include  <sys/resource.h>
# Line 22 | Line 22 | static char SCCSid[] = "$SunId$ LBL";
22   #endif
23   #endif
24  
25 < extern time_t   time();
26 <
25 > #include  <time.h>
26   #include  <signal.h>
27  
28   #include  "view.h"
30
31 #include  "resolu.h"
32
29   #include  "random.h"
34
30   #include  "paths.h"
31  
32 +
33   #define  RFTEMPLATE     "rfXXXXXX"
34  
35   #ifndef SIGCONT
36 + #ifdef SIGIO     /* XXX can we live without this? */
37   #define SIGCONT         SIGIO
38   #endif
39 + #endif
40  
41 + CUBE  thescene;                         /* our scene */
42 + OBJECT  nsceneobjs;                     /* number of objects in our scene */
43 +
44   int  dimlist[MAXDIM];                   /* sampling dimensions */
45   int  ndims = 0;                         /* number of sampling dimensions */
46   int  samplendx;                         /* sample index number */
47  
48 + extern void  ambnotify();
49 + void  (*addobjnotify[])() = {ambnotify, NULL};
50 +
51   VIEW  ourview = STDVIEW;                /* view parameters */
52   int  hresolu = 512;                     /* horizontal resolution */
53   int  vresolu = 512;                     /* vertical resolution */
# Line 55 | Line 59 | double dstrpix = 0.67;                 /* square pixel distribution
59  
60   double  mblur = 0.;                     /* motion blur parameter */
61  
62 + void  (*trace)() = NULL;                /* trace call */
63 +
64 + int  do_irrad = 0;                      /* compute irradiance? */
65 +
66   double  dstrsrc = 0.0;                  /* square source distribution */
67   double  shadthresh = .05;               /* shadow threshold */
68   double  shadcert = .5;                  /* shadow certainty */
# Line 76 | Line 84 | int  backvis = 1;                      /* back face visibility */
84   int  maxdepth = 6;                      /* maximum recursion depth */
85   double  minweight = 5e-3;               /* minimum ray weight */
86  
87 + char  *ambfile = NULL;                  /* ambient file name */
88   COLOR  ambval = BLKCOLOR;               /* ambient value */
89   int  ambvwt = 0;                        /* initial weight for ambient value */
90   double  ambacc = 0.2;                   /* ambient accuracy */
# Line 86 | Line 95 | int  ambounce = 0;                     /* ambient bounces */
95   char  *amblist[128];                    /* ambient include/exclude list */
96   int  ambincl = -1;                      /* include == 1, exclude == 0 */
97  
89 #ifdef MSDOS
90 int  ralrm = 60;                        /* seconds between reports */
91 #else
98   int  ralrm = 0;                         /* seconds between reports */
93 #endif
99  
100   double  pctdone = 0.0;                  /* percentage done */
96
101   time_t  tlastrept = 0L;                 /* time at last report */
102 + time_t  tstart;                         /* starting time */
103  
99 extern time_t  tstart;                  /* starting time */
100
101 extern unsigned long  nrays;            /* number of rays traced */
102
104   #define  MAXDIV         16              /* maximum sample size */
105  
106   #define  pixjitter()    (.5+dstrpix*(.5-frandom()))
# Line 108 | Line 109 | int  hres, vres;                       /* resolution for this frame */
109  
110   static VIEW     lastview;               /* the previous view input */
111  
112 < extern char  *mktemp();
112 > extern char  *mktemp();  /* XXX should be in stdlib.h or unistd.h */
113  
114 + void  report();
115 +
116   double  pixvalue();
117  
118 < #ifdef NIX
116 < #define  file_exists(f) (access(f,F_OK)==0)
117 < #else
118 > #ifdef RHAS_STAT
119   #include  <sys/types.h>
120   #include  <sys/stat.h>
121   int
# Line 125 | Line 126 | char  *fname;
126          if (stat(fname, &sbuf) < 0) return(0);
127          return((sbuf.st_mode & S_IFREG) != 0);
128   }
129 + #else
130 + #define  file_exists(f) (access(f,F_OK)==0)
131   #endif
132  
133  
134 + void
135   quit(code)                      /* quit program */
136   int  code;
137   {
138          if (code)                       /* report status */
139                  report();
140 + #ifndef NON_POSIX
141          headclean();                    /* delete header file */
142          pfclean();                      /* clean up persist files */
143 + #endif
144          exit(code);
145   }
146  
147  
148 < #ifndef NIX
148 > #ifndef NON_POSIX
149 > void
150   report()                /* report progress */
151   {
152          extern char  *myhostname();
# Line 175 | Line 182 | report()               /* report progress */
182                          nrays, pctdone, u/3600., s/3600.,
183                          (tlastrept-tstart)/3600., myhostname());
184          eputs(errmsg);
185 < #ifndef BSD
185 > #ifdef SIGCONT
186          signal(SIGCONT, report);
187   #endif
188   }
189   #else
190 + void
191   report()                /* report progress */
192   {
193          tlastrept = time((time_t *)NULL);
# Line 190 | Line 198 | report()               /* report progress */
198   #endif
199  
200  
201 + void
202   rpict(seq, pout, zout, prvr)                    /* generate image(s) */
203   int  seq;
204   char  *pout, *zout, *prvr;
# Line 205 | Line 214 | char  *pout, *zout, *prvr;
214   * sequenced file naming.
215   */
216   {
208        extern char  *rindex(), *strncpy(), *strcat(), *strcpy();
217          char  fbuf[128], fbuf2[128];
218          int  npicts;
219          register char  *cp;
# Line 282 | Line 290 | char  *pout, *zout, *prvr;
290                                          "cannot open output file \"%s\"", fbuf);
291                                  error(SYSTEM, errmsg);
292                          }
293 < #ifdef MSDOS
286 <                        setmode(fileno(stdout), O_BINARY);
287 < #endif
293 >                        SET_FILE_BINARY(stdout);
294                          dupheader();
295                  }
296                  hres = hresolu; vres = vresolu; pa = pixaspect;
297                  if (prvr != NULL)
298                          if (viewfile(prvr, &ourview, &rs) <= 0
299 <                                        || rs.or != PIXSTANDARD) {
299 >                                        || rs.rt != PIXSTANDARD) {
300                                  sprintf(errmsg,
301                          "cannot recover view parameters from \"%s\"", prvr);
302                                  error(WARNING, errmsg);
# Line 316 | Line 322 | char  *pout, *zout, *prvr;
322                  putchar('\n');
323                  if (pa < .99 || pa > 1.01)
324                          fputaspect(pa, stdout);
325 +                fputnow(stdout);
326                  fputformat(COLRFMT, stdout);
327                  putchar('\n');
328                  if (zout != NULL)
# Line 358 | Line 365 | char  *zfile, *oldfile;
365          COLOR  *colptr;
366          float  *zptr;
367          register int  i;
368 +                                        /* check for empty image */
369 +        if (hres <= 0 || vres <= 0) {
370 +                error(WARNING, "empty output picture");
371 +                fprtresolu(0, 0, stdout);
372 +                return;
373 +        }
374                                          /* allocate scanlines */
375          for (i = 0; i <= psample; i++) {
376                  scanbar[i] = (COLOR *)malloc(hres*sizeof(COLOR));
# Line 368 | Line 381 | char  *zfile, *oldfile;
381          ystep = (psample*99+70)/140;
382          if (hstep > 2) {
383                  i = hres/hstep + 2;
384 <                if ((sampdens = malloc(i)) == NULL)
384 >                if ((sampdens = (char *)malloc(i)) == NULL)
385                          goto memerr;
386                  while (i--)
387                          sampdens[i] = hstep;
# Line 380 | Line 393 | char  *zfile, *oldfile;
393                          sprintf(errmsg, "cannot open z-file \"%s\"", zfile);
394                          error(SYSTEM, errmsg);
395                  }
396 < #ifdef MSDOS
384 <                setmode(zfd, O_BINARY);
385 < #endif
396 >                SET_FD_BINARY(zfd);
397                  for (i = 0; i <= psample; i++) {
398                          zbar[i] = (float *)malloc(hres*sizeof(float));
399                          if (zbar[i] == NULL)
# Line 400 | Line 411 | char  *zfile, *oldfile;
411          if (i >= vres)
412                  goto alldone;
413          if (zfd != -1 && i > 0 &&
414 <                        lseek(zfd, (long)i*hres*sizeof(float), 0) < 0)
414 >                        lseek(zfd, (off_t)i*hres*sizeof(float), 0) < 0)
415                  error(SYSTEM, "z-file seek error in render");
416          pctdone = 100.0*i/vres;
417          if (ralrm > 0)                  /* report init stats */
418                  report();
419 < #ifndef  BSD
419 > #ifdef SIGCONT
420          else
410 #endif
421          signal(SIGCONT, report);
422 + #endif
423          ypos = vres-1 - i;                      /* initialize sampling */
424          if (directvis)
425                  init_drawsources(psample);
# Line 434 | Line 445 | char  *zfile, *oldfile;
445                  if (directvis)                          /* add bitty sources */
446                          drawsources(scanbar, zbar, 0, hres, ypos, ystep);
447                                                          /* write it out */
448 < #ifndef  BSD
448 > #ifdef SIGCONT
449                  signal(SIGCONT, SIG_IGN);       /* don't interrupt writes */
450   #endif
451                  for (i = ystep; i > 0; i--) {
# Line 451 | Line 462 | char  *zfile, *oldfile;
462                  pctdone = 100.0*(vres-1-ypos)/vres;
463                  if (ralrm > 0 && time((time_t *)NULL) >= tlastrept+ralrm)
464                          report();
465 < #ifndef  BSD
465 > #ifdef SIGCONT
466                  else
467                          signal(SIGCONT, report);
468   #endif
469          }
470                                                  /* clean up */
471 + #ifdef SIGCONT
472          signal(SIGCONT, SIG_IGN);
473 + #endif
474          if (zfd != -1 && write(zfd, (char *)zbar[0], hres*sizeof(float))
475                                  < hres*sizeof(float))
476                  goto writerr;
# Line 469 | Line 482 | alldone:
482                  if (close(zfd) == -1)
483                          goto writerr;
484                  for (i = 0; i <= psample; i++)
485 <                        free((char *)zbar[i]);
485 >                        free((void *)zbar[i]);
486          }
487          for (i = 0; i <= psample; i++)
488 <                free((char *)scanbar[i]);
488 >                free((void *)scanbar[i]);
489          if (sampdens != NULL)
490                  free(sampdens);
491          pctdone = 100.0;
492          if (ralrm > 0)
493                  report();
494 + #ifdef SIGCONT
495          signal(SIGCONT, SIG_DFL);
496 + #endif
497          return;
498   writerr:
499          error(SYSTEM, "write error in render");
# Line 664 | Line 679 | char  *oldfile;
679                  error(WARNING, errmsg);
680                  goto gotzip;
681          }
682 < #ifdef MSDOS
668 <        setmode(fileno(fp), O_BINARY);
669 < #endif
682 >        SET_FILE_BINARY(fp);
683                                  /* discard header */
684          getheader(fp, NULL, NULL);
685                                  /* get picture size */
# Line 695 | Line 708 | char  *oldfile;
708          }
709          if (fflush(stdout) == EOF)
710                  goto writerr;
711 <        free((char *)scanline);
711 >        free((void *)scanline);
712          fclose(fp);
713          unlink(oldfile);
714          return(y);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines