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.15 by greg, Fri Oct 2 16:19:10 1992 UTC vs.
Revision 2.27 by greg, Mon Aug 2 21:48:37 1993 UTC

# Line 27 | Line 27 | static char SCCSid[] = "$SunId$ LBL";
27  
28   #include  "paths.h"
29  
30 + #define  RFTEMPLATE     "rfXXXXXX"
31 +
32 + #ifndef SIGCONT
33 + #define SIGCONT         SIGIO
34 + #endif
35 +
36   int  dimlist[MAXDIM];                   /* sampling dimensions */
37   int  ndims = 0;                         /* number of sampling dimensions */
38   int  samplendx;                         /* sample index number */
# Line 45 | Line 51 | double shadthresh = .05;               /* shadow threshold */
51   double  shadcert = .5;                  /* shadow certainty */
52   int  directrelay = 1;                   /* number of source relays */
53   int  vspretest = 512;                   /* virtual source pretest density */
54 < int  directinvis = 0;                   /* sources invisible? */
54 > int  directvis = 1;                     /* sources visible? */
55   double  srcsizerat = .25;               /* maximum ratio source size/dist. */
56  
57   double  specthresh = .15;               /* specular sampling threshold */
# Line 63 | Line 69 | int  ambounce = 0;                     /* ambient bounces */
69   char  *amblist[128];                    /* ambient include/exclude list */
70   int  ambincl = -1;                      /* include == 1, exclude == 0 */
71  
72 + #ifdef MSDOS
73 + int  ralrm = 60;                        /* seconds between reports */
74 + #else
75   int  ralrm = 0;                         /* seconds between reports */
76 + #endif
77  
78   double  pctdone = 0.0;                  /* percentage done */
79  
# Line 72 | Line 82 | long  tlastrept = 0L;                  /* time at last report */
82   extern long  time();
83   extern long  tstart;                    /* starting time */
84  
85 < extern long  nrays;                     /* number of rays traced */
85 > extern unsigned long  nrays;            /* number of rays traced */
86  
87   #define  MAXDIV         16              /* maximum sample size */
88  
89   #define  pixjitter()    (.5+dstrpix*(.5-frandom()))
90  
81 #define  RFTEMPLATE     "rfXXXXXX"
82 #define  HFTEMPLATE     TEMPLATE
83
84 static char  *hfname = NULL;            /* header file name */
85 static FILE  *hfp = NULL;               /* header file pointer */
86
91   static int  hres, vres;                 /* resolution for this frame */
92  
93   extern char  *mktemp();
94  
95   double  pixvalue();
96  
97 + #ifdef NIX
98 + #define  file_exists(f) (access(f,F_OK)==0)
99 + #else
100 + #include  <sys/types.h>
101 + #include  <sys/stat.h>
102 + int
103 + file_exists(fname)                              /* ordinary file exists? */
104 + char  *fname;
105 + {
106 +        struct stat  sbuf;
107 +        if (stat(fname, &sbuf) < 0) return(0);
108 +        return((sbuf.st_mode & S_IFREG) != 0);
109 + }
110 + #endif
111  
112 +
113   quit(code)                      /* quit program */
114   int  code;
115   {
116          if (code)                       /* report status */
117                  report();
118 <        if (hfname != NULL) {           /* delete header file */
119 <                if (hfp != NULL)
101 <                        fclose(hfp);
102 <                unlink(hfname);
103 <        }
118 >        headclean();                    /* delete header file */
119 >        pfclean();                      /* clean up persist files */
120          exit(code);
121   }
122  
# Line 118 | Line 134 | report()               /* report progress */
134          t += (rubuf.ru_utime.tv_usec + rubuf.ru_stime.tv_usec) / 1e6;
135          t += rubuf.ru_utime.tv_sec + rubuf.ru_stime.tv_sec;
136  
137 <        sprintf(errmsg, "%ld rays, %4.2f%% done after %5.4f CPU hours\n",
137 >        sprintf(errmsg, "%lu rays, %4.2f%% done after %5.4f CPU hours\n",
138                          nrays, pctdone, t/3600.0);
139          eputs(errmsg);
140          tlastrept = time((long *)0);
# Line 127 | Line 143 | report()               /* report progress */
143   report()                /* report progress */
144   {
145          tlastrept = time((long *)0);
146 <        sprintf(errmsg, "%ld rays, %4.2f%% done after %5.4f hours\n",
146 >        sprintf(errmsg, "%lu rays, %4.2f%% done after %5.4f hours\n",
147                          nrays, pctdone, (tlastrept-tstart)/3600.0);
148          eputs(errmsg);
149 <        signal(SIGALRM, report);
149 >        signal(SIGCONT, report);
150   }
151   #endif
152  
153  
138 openheader()                    /* save standard output to header file */
139 {
140        hfname = mktemp(HFTEMPLATE);
141        if (freopen(hfname, "w", stdout) == NULL) {
142                sprintf(errmsg, "cannot open header file \"%s\"", hfname);
143                error(SYSTEM, errmsg);
144        }
145 }
146
147
148 closeheader()                   /* done with header output */
149 {
150        if (hfname == NULL)
151                return;
152        if (fflush(stdout) == EOF || (hfp = fopen(hfname, "r")) == NULL)
153                error(SYSTEM, "error reopening header file");
154 }
155
156
157 dupheader()                     /* repeat header on standard output */
158 {
159        register int  c;
160
161        if (fseek(hfp, 0L, 0) < 0)
162                error(SYSTEM, "seek error on header file");
163        while ((c = getc(hfp)) != EOF)
164                putchar(c);
165 }
166
167
154   rpict(seq, pout, zout, prvr)                    /* generate image(s) */
155   int  seq;
156   char  *pout, *zout, *prvr;
# Line 180 | Line 166 | char  *pout, *zout, *prvr;
166   * sequenced file naming.
167   */
168   {
169 <        extern char  *rindex(), *strncpy(), *strcat();
169 >        extern char  *rindex(), *strncpy(), *strcat(), *strcpy();
170          char  fbuf[128], fbuf2[128];
171 +        int  npicts;
172          register char  *cp;
173          RESOLU  rs;
174          double  pa;
188                                        /* finished writing header */
189        closeheader();
175                                          /* check sampling */
176          if (psample < 1)
177                  psample = 1;
# Line 210 | Line 195 | char  *pout, *zout, *prvr;
195                                  error(USER, "unexpected EOF on view input");
196                  prvr = fbuf;                    /* mark for renaming */
197          }
198 <        if (pout != NULL) {
198 >        if (pout != NULL & prvr != NULL) {
199                  sprintf(fbuf, pout, seq);
200 <                if (prvr != NULL && !strcmp(prvr, fbuf)) {      /* rename */
201 <                        fbuf2[0] = '\0';
202 <                        if ((cp = rindex(fbuf, '/')) != NULL)
203 <                                strncpy(fbuf2, fbuf, cp-fbuf+1);
204 <                        strcat(fbuf2, RFTEMPLATE);
200 >                if (!strcmp(prvr, fbuf)) {      /* rename */
201 >                        strcpy(fbuf2, fbuf);
202 >                        for (cp = fbuf2; *cp; cp++)
203 >                                ;
204 >                        while (cp > fbuf2 && !ISDIRSEP(cp[-1]))
205 >                                cp--;
206 >                        strcpy(cp, RFTEMPLATE);
207                          prvr = mktemp(fbuf2);
208                          if (rename(fbuf, prvr) < 0 && errno != ENOENT) {
209                                  sprintf(errmsg,
# Line 226 | Line 213 | char  *pout, *zout, *prvr;
213                          }
214                  }
215          }
216 <                                        /* render sequence */
216 >        npicts = 0;                     /* render sequence */
217          do {
218                  if (seq && nextview(stdin) == EOF)
219                          break;
220 +                pctdone = 0.0;
221                  if (pout != NULL) {
222                          sprintf(fbuf, pout, seq);
223 +                        if (file_exists(fbuf)) {
224 +                                if (prvr != NULL || !strcmp(fbuf, pout)) {
225 +                                        sprintf(errmsg,
226 +                                                "output file \"%s\" exists",
227 +                                                fbuf);
228 +                                        error(USER, errmsg);
229 +                                }
230 +                                continue;               /* don't clobber */
231 +                        }
232                          if (freopen(fbuf, "w", stdout) == NULL) {
233                                  sprintf(errmsg,
234                                          "cannot open output file \"%s\"", fbuf);
235                                  error(SYSTEM, errmsg);
236                          }
237 + #ifdef MSDOS
238 +                        setmode(fileno(stdout), O_BINARY);
239 + #endif
240                          dupheader();
241                  }
242                  hres = hresolu; vres = vresolu; pa = pixaspect;
# Line 276 | Line 276 | char  *pout, *zout, *prvr;
276                          cp = NULL;
277                  render(cp, prvr);
278                  prvr = NULL;
279 +                npicts++;
280          } while (seq++);
281 +                                        /* check that we did something */
282 +        if (npicts == 0)
283 +                error(WARNING, "no output produced");
284   }
285  
286  
# Line 322 | Line 326 | char  *zfile, *oldfile;
326                          sampdens[i] = hstep;
327          } else
328                  sampdens = NULL;
329 <                                        /* open z file */
329 >                                        /* open z-file */
330          if (zfile != NULL) {
331                  if ((zfd = open(zfile, O_WRONLY|O_CREAT, 0666)) == -1) {
332 <                        sprintf(errmsg, "cannot open z file \"%s\"", zfile);
332 >                        sprintf(errmsg, "cannot open z-file \"%s\"", zfile);
333                          error(SYSTEM, errmsg);
334                  }
335 + #ifdef MSDOS
336 +                setmode(zfd, O_BINARY);
337 + #endif
338                  for (i = 0; i <= psample; i++) {
339                          zbar[i] = (float *)malloc(hres*sizeof(float));
340                          if (zbar[i] == NULL)
# Line 344 | Line 351 | char  *zfile, *oldfile;
351          i = salvage(oldfile);
352          if (zfd != -1 && i > 0 &&
353                          lseek(zfd, (long)i*hres*sizeof(float), 0) == -1)
354 <                error(SYSTEM, "z file seek error in render");
354 >                error(SYSTEM, "z-file seek error in render");
355          pctdone = 100.0*i/vres;
356          if (ralrm > 0)                  /* report init stats */
357                  report();
358   #ifndef  BSD
359          else
360   #endif
361 <        signal(SIGALRM, report);
361 >        signal(SIGCONT, report);
362          ypos = vres-1 - i;
363          fillscanline(scanbar[0], zbar[0], sampdens, hres, ypos, hstep);
364                                                  /* compute scanlines */
# Line 374 | Line 381 | char  *zfile, *oldfile;
381                  fillscanbar(scanbar, zbar, hres, ypos, ystep);
382                                                          /* write it out */
383   #ifndef  BSD
384 <                signal(SIGALRM, SIG_IGN);       /* don't interrupt writes */
384 >                signal(SIGCONT, SIG_IGN);       /* don't interrupt writes */
385   #endif
386                  for (i = ystep; i > 0; i--) {
387                          if (zfd != -1 && write(zfd, (char *)zbar[i],
# Line 392 | Line 399 | char  *zfile, *oldfile;
399                          report();
400   #ifndef  BSD
401                  else
402 <                        signal(SIGALRM, report);
402 >                        signal(SIGCONT, report);
403   #endif
404          }
405                                                  /* clean up */
406 <        signal(SIGALRM, SIG_IGN);
406 >        signal(SIGCONT, SIG_IGN);
407          if (zfd != -1) {
408                  if (write(zfd, (char *)zbar[0], hres*sizeof(float))
409                                  < hres*sizeof(float))
# Line 416 | Line 423 | char  *zfile, *oldfile;
423          pctdone = 100.0;
424          if (ralrm > 0)
425                  report();
426 +        signal(SIGCONT, SIG_DFL);
427          return;
428   writerr:
429          error(SYSTEM, "write error in render");
# Line 585 | Line 593 | char  *oldfile;
593                  error(WARNING, errmsg);
594                  return(0);
595          }
596 + #ifdef MSDOS
597 +        setmode(fileno(fp), O_BINARY);
598 + #endif
599                                  /* discard header */
600 <        getheader(fp, NULL);
600 >        getheader(fp, NULL, NULL);
601                                  /* get picture size */
602          if (!fscnresolu(&x, &y, fp)) {
603                  sprintf(errmsg, "bad recover file \"%s\"", oldfile);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines