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 1.2 by greg, Mon Apr 10 09:32:55 1989 UTC vs.
Revision 2.23 by greg, Fri Jan 29 12:15:40 1993 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1986 Regents of the University of California */
1 > /* Copyright (c) 1992 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 17 | Line 17 | static char SCCSid[] = "$SunId$ LBL";
17   #include  <sys/resource.h>
18   #endif
19  
20 + #include  <signal.h>
21 +
22   #include  "view.h"
23  
24 + #include  "resolu.h"
25 +
26   #include  "random.h"
27  
28 < VIEW  ourview = STDVIEW(512);           /* view parameters */
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 */
39 +
40 + VIEW  ourview = STDVIEW;                /* view parameters */
41 + int  hresolu = 512;                     /* horizontal resolution */
42 + int  vresolu = 512;                     /* vertical resolution */
43 + double  pixaspect = 1.0;                /* pixel aspect ratio */
44 +
45   int  psample = 4;                       /* pixel sample size */
46 + double  maxdiff = .05;                  /* max. difference for interpolation */
47 + double  dstrpix = 0.67;                 /* square pixel distribution */
48  
49 < double  maxdiff = .05;                  /* max. difference for interpolation */
49 > double  dstrsrc = 0.0;                  /* square source distribution */
50 > 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  directvis = 1;                     /* sources visible? */
55 > double  srcsizerat = .25;               /* maximum ratio source size/dist. */
56  
57 < double  dstrpix = 0.67;                 /* square pixel distribution */
58 < double  dstrsrc = 0.0;                  /* square source distribution */
57 > double  specthresh = .15;               /* specular sampling threshold */
58 > double  specjitter = 1.;                /* specular sampling jitter */
59  
60   int  maxdepth = 6;                      /* maximum recursion depth */
61 < double  minweight = 5e-3;               /* minimum ray weight */
61 > double  minweight = 5e-3;               /* minimum ray weight */
62  
63   COLOR  ambval = BLKCOLOR;               /* ambient value */
64 < double  ambacc = 0.2;                   /* ambient accuracy */
65 < int  ambres = 128;                      /* ambient resolution */
64 > double  ambacc = 0.2;                   /* ambient accuracy */
65 > int  ambres = 32;                       /* ambient resolution */
66   int  ambdiv = 128;                      /* ambient divisions */
67   int  ambssamp = 0;                      /* ambient super-samples */
68   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 */
78 > double  pctdone = 0.0;                  /* percentage done */
79  
80 + long  tlastrept = 0L;                   /* time at last report */
81 +
82 + extern long  time();
83 + extern long  tstart;                    /* starting time */
84 +
85   extern long  nrays;                     /* number of rays traced */
86  
87 < #define  MAXDIV         32              /* maximum sample size */
87 > #define  MAXDIV         16              /* maximum sample size */
88  
89 < #define  pixjitter()    (.5+dstrpix*(.5-frandom()))
89 > #define  pixjitter()    (.5+dstrpix*(.5-frandom()))
90  
91 + static int  hres, vres;                 /* resolution for this frame */
92  
93 + extern char  *mktemp();
94 +
95 + double  pixvalue();
96 +
97 +
98   quit(code)                      /* quit program */
99   int  code;
100   {
101 <        if (code || ralrm > 0)          /* report status */
101 >        if (code)                       /* report status */
102                  report();
103 <
103 >        headclean();                    /* delete header file */
104 >        pfclean();                      /* clean up persist files */
105          exit(code);
106   }
107  
108  
109 + #ifdef BSD
110   report()                /* report progress */
111   {
68 #ifdef BSD
112          struct rusage  rubuf;
113 <        double  t;
113 >        double  t;
114  
115          getrusage(RUSAGE_SELF, &rubuf);
116          t = (rubuf.ru_utime.tv_usec + rubuf.ru_stime.tv_usec) / 1e6;
# Line 78 | Line 121 | report()               /* report progress */
121  
122          sprintf(errmsg, "%ld rays, %4.2f%% done after %5.4f CPU hours\n",
123                          nrays, pctdone, t/3600.0);
124 +        eputs(errmsg);
125 +        tlastrept = time((long *)0);
126 + }
127   #else
128 <        sprintf(errmsg, "%ld rays, %4.2f%% done\n", nrays, pctdone);
129 < #endif
128 > report()                /* report progress */
129 > {
130 >        tlastrept = time((long *)0);
131 >        sprintf(errmsg, "%ld rays, %4.2f%% done after %5.4f hours\n",
132 >                        nrays, pctdone, (tlastrept-tstart)/3600.0);
133          eputs(errmsg);
134 +        signal(SIGCONT, report);
135 + }
136 + #endif
137  
138 <        if (ralrm > 0)
139 <                alarm(ralrm);
138 >
139 > rpict(seq, pout, zout, prvr)                    /* generate image(s) */
140 > int  seq;
141 > char  *pout, *zout, *prvr;
142 > /*
143 > * If seq is greater than zero, then we will render a sequence of
144 > * images based on view parameter strings read from the standard input.
145 > * If pout is NULL, then all images will be sent to the standard ouput.
146 > * If seq is greater than zero and prvr is an integer, then it is the
147 > * frame number at which rendering should begin.  Preceeding view parameter
148 > * strings will be skipped in the input.
149 > * If pout and prvr are the same, prvr is renamed to avoid overwriting.
150 > * Note that pout and zout should contain %d format specifications for
151 > * sequenced file naming.
152 > */
153 > {
154 >        extern char  *rindex(), *strncpy(), *strcat(), *strcpy();
155 >        char  fbuf[128], fbuf2[128];
156 >        register char  *cp;
157 >        RESOLU  rs;
158 >        double  pa;
159 >                                        /* check sampling */
160 >        if (psample < 1)
161 >                psample = 1;
162 >        else if (psample > MAXDIV) {
163 >                sprintf(errmsg, "pixel sampling reduced from %d to %d",
164 >                                psample, MAXDIV);
165 >                error(WARNING, errmsg);
166 >                psample = MAXDIV;
167 >        }
168 >                                        /* get starting frame */
169 >        if (seq <= 0)
170 >                seq = 0;
171 >        else if (prvr != NULL && isint(prvr)) {
172 >                register int  rn;               /* skip to specified view */
173 >                if ((rn = atoi(prvr)) < seq)
174 >                        error(USER, "recover frame less than start frame");
175 >                if (pout == NULL)
176 >                        error(USER, "missing output file specification");
177 >                for ( ; seq < rn; seq++)
178 >                        if (nextview(stdin) == EOF)
179 >                                error(USER, "unexpected EOF on view input");
180 >                prvr = fbuf;                    /* mark for renaming */
181 >        }
182 >        if (pout != NULL & prvr != NULL) {
183 >                sprintf(fbuf, pout, seq);
184 >                if (!strcmp(prvr, fbuf)) {      /* rename */
185 >                        strcpy(fbuf2, fbuf);
186 >                        for (cp = fbuf2; *cp; cp++)
187 >                                ;
188 >                        while (cp > fbuf2 && !ISDIRSEP(cp[-1]))
189 >                                cp--;
190 >                        strcpy(cp, RFTEMPLATE);
191 >                        prvr = mktemp(fbuf2);
192 >                        if (rename(fbuf, prvr) < 0 && errno != ENOENT) {
193 >                                sprintf(errmsg,
194 >                                        "cannot rename \"%s\" to \"%s\"",
195 >                                                fbuf, prvr);
196 >                                error(SYSTEM, errmsg);
197 >                        }
198 >                }
199 >        }
200 >                                        /* render sequence */
201 >        do {
202 >                if (seq && nextview(stdin) == EOF)
203 >                        break;
204 >                if (pout != NULL) {
205 >                        sprintf(fbuf, pout, seq);
206 >                        if (freopen(fbuf, "w", stdout) == NULL) {
207 >                                sprintf(errmsg,
208 >                                        "cannot open output file \"%s\"", fbuf);
209 >                                error(SYSTEM, errmsg);
210 >                        }
211 > #ifdef MSDOS
212 >                        setmode(fileno(stdout), O_BINARY);
213 > #endif
214 >                        dupheader();
215 >                }
216 >                hres = hresolu; vres = vresolu; pa = pixaspect;
217 >                if (prvr != NULL)
218 >                        if (viewfile(prvr, &ourview, &rs) <= 0
219 >                                        || rs.or != PIXSTANDARD) {
220 >                                sprintf(errmsg,
221 >                        "cannot recover view parameters from \"%s\"", prvr);
222 >                                error(WARNING, errmsg);
223 >                        } else {
224 >                                pa = 0.0;
225 >                                hres = scanlen(&rs);
226 >                                vres = numscans(&rs);
227 >                        }
228 >                if ((cp = setview(&ourview)) != NULL)
229 >                        error(USER, cp);
230 >                normaspect(viewaspect(&ourview), &pa, &hres, &vres);
231 >                if (seq) {
232 >                        if (ralrm > 0) {
233 >                                fprintf(stderr, "FRAME %d:", seq);
234 >                                fprintview(&ourview, stderr);
235 >                                putc('\n', stderr);
236 >                                fflush(stderr);
237 >                        }
238 >                        printf("FRAME=%d\n", seq);
239 >                }
240 >                fputs(VIEWSTR, stdout);
241 >                fprintview(&ourview, stdout);
242 >                putchar('\n');
243 >                if (pa < .99 || pa > 1.01)
244 >                        fputaspect(pa, stdout);
245 >                fputformat(COLRFMT, stdout);
246 >                putchar('\n');
247 >                if (zout != NULL)
248 >                        sprintf(cp=fbuf, zout, seq);
249 >                else
250 >                        cp = NULL;
251 >                render(cp, prvr);
252 >                prvr = NULL;
253 >        } while (seq++);
254   }
255  
256  
257 < render(oldfile)                         /* render the scene */
258 < char  *oldfile;
257 > nextview(fp)                            /* get next view from fp */
258 > FILE  *fp;
259   {
260 +        char  linebuf[256];
261 +
262 +        while (fgets(linebuf, sizeof(linebuf), fp) != NULL)
263 +                if (isview(linebuf) && sscanview(&ourview, linebuf) > 0)
264 +                        return(0);
265 +        return(EOF);
266 + }      
267 +
268 +
269 + render(zfile, oldfile)                          /* render the scene */
270 + char  *zfile, *oldfile;
271 + {
272 +        extern long  lseek();
273          COLOR  *scanbar[MAXDIV+1];      /* scanline arrays of pixel values */
274 +        float  *zbar[MAXDIV+1];         /* z values */
275 +        char  *sampdens;                /* previous sample density */
276          int  ypos;                      /* current scanline */
277 +        int  ystep;                     /* current y step size */
278 +        int  hstep;                     /* h step size */
279 +        int  zfd;
280          COLOR  *colptr;
281 +        float  *zptr;
282          register int  i;
283 <
99 <        if (psample < 1)
100 <                psample = 1;
101 <        else if (psample > MAXDIV)
102 <                psample = MAXDIV;
103 <
104 <        ourview.hresolu -= ourview.hresolu % psample;
105 <        ourview.vresolu -= ourview.vresolu % psample;
106 <                
283 >                                        /* allocate scanlines */
284          for (i = 0; i <= psample; i++) {
285 <                scanbar[i] = (COLOR *)malloc((ourview.hresolu+1)*sizeof(COLOR));
285 >                scanbar[i] = (COLOR *)malloc(hres*sizeof(COLOR));
286                  if (scanbar[i] == NULL)
287 <                        error(SYSTEM, "out of memory in render");
287 >                        goto memerr;
288          }
289 <        
289 >        hstep = (psample*140+49)/99;            /* quincunx sampling */
290 >        ystep = (psample*99+70)/140;
291 >        if (hstep > 2) {
292 >                i = hres/hstep + 2;
293 >                if ((sampdens = malloc(i)) == NULL)
294 >                        goto memerr;
295 >                while (i--)
296 >                        sampdens[i] = hstep;
297 >        } else
298 >                sampdens = NULL;
299 >                                        /* open z file */
300 >        if (zfile != NULL) {
301 >                if ((zfd = open(zfile, O_WRONLY|O_CREAT, 0666)) == -1) {
302 >                        sprintf(errmsg, "cannot open z file \"%s\"", zfile);
303 >                        error(SYSTEM, errmsg);
304 >                }
305 > #ifdef MSDOS
306 >                setmode(zfd, O_BINARY);
307 > #endif
308 >                for (i = 0; i <= psample; i++) {
309 >                        zbar[i] = (float *)malloc(hres*sizeof(float));
310 >                        if (zbar[i] == NULL)
311 >                                goto memerr;
312 >                }
313 >        } else {
314 >                zfd = -1;
315 >                for (i = 0; i <= psample; i++)
316 >                        zbar[i] = NULL;
317 >        }
318                                          /* write out boundaries */
319 <        printf("-Y %d +X %d\n", ourview.vresolu, ourview.hresolu);
320 <
321 <        ypos = ourview.vresolu - salvage(oldfile);      /* find top line */
322 <        fillscanline(scanbar[0], ypos, psample);        /* top scan */
323 <
324 <        for (ypos -= psample; ypos > -psample; ypos -= psample) {
325 <        
326 <                colptr = scanbar[psample];              /* get last scanline */
327 <                scanbar[psample] = scanbar[0];
319 >        fprtresolu(hres, vres, stdout);
320 >                                        /* recover file and compute first */
321 >        i = salvage(oldfile);
322 >        if (zfd != -1 && i > 0 &&
323 >                        lseek(zfd, (long)i*hres*sizeof(float), 0) == -1)
324 >                error(SYSTEM, "z file seek error in render");
325 >        pctdone = 100.0*i/vres;
326 >        if (ralrm > 0)                  /* report init stats */
327 >                report();
328 > #ifndef  BSD
329 >        else
330 > #endif
331 >        signal(SIGCONT, report);
332 >        ypos = vres-1 - i;
333 >        fillscanline(scanbar[0], zbar[0], sampdens, hres, ypos, hstep);
334 >                                                /* compute scanlines */
335 >        for (ypos -= ystep; ypos > -ystep; ypos -= ystep) {
336 >                                                        /* bottom adjust? */
337 >                if (ypos < 0) {
338 >                        ystep += ypos;
339 >                        ypos = 0;
340 >                }
341 >                colptr = scanbar[ystep];                /* move base to top */
342 >                scanbar[ystep] = scanbar[0];
343                  scanbar[0] = colptr;
344 <
345 <                fillscanline(scanbar[0], ypos, psample);        /* base scan */
346 <        
347 <                fillscanbar(scanbar, ypos, psample);
348 <                
349 <                for (i = psample-1; i >= 0; i--)
350 <                        if (fwritescan(scanbar[i], ourview.hresolu, stdout) < 0)
344 >                zptr = zbar[ystep];
345 >                zbar[ystep] = zbar[0];
346 >                zbar[0] = zptr;
347 >                                                        /* fill base line */
348 >                fillscanline(scanbar[0], zbar[0], sampdens,
349 >                                hres, ypos, hstep);
350 >                                                        /* fill bar */
351 >                fillscanbar(scanbar, zbar, hres, ypos, ystep);
352 >                                                        /* write it out */
353 > #ifndef  BSD
354 >                signal(SIGCONT, SIG_IGN);       /* don't interrupt writes */
355 > #endif
356 >                for (i = ystep; i > 0; i--) {
357 >                        if (zfd != -1 && write(zfd, (char *)zbar[i],
358 >                                        hres*sizeof(float))
359 >                                        < hres*sizeof(float))
360                                  goto writerr;
361 +                        if (fwritescan(scanbar[i], hres, stdout) < 0)
362 +                                goto writerr;
363 +                }
364                  if (fflush(stdout) == EOF)
365                          goto writerr;
366 <                pctdone = 100.0*(ourview.vresolu-ypos)/ourview.vresolu;
366 >                                                        /* record progress */
367 >                pctdone = 100.0*(vres-1-ypos)/vres;
368 >                if (ralrm > 0 && time((long *)0) >= tlastrept+ralrm)
369 >                        report();
370 > #ifndef  BSD
371 >                else
372 >                        signal(SIGCONT, report);
373 > #endif
374          }
375 <                
375 >                                                /* clean up */
376 >        signal(SIGCONT, SIG_IGN);
377 >        if (zfd != -1) {
378 >                if (write(zfd, (char *)zbar[0], hres*sizeof(float))
379 >                                < hres*sizeof(float))
380 >                        goto writerr;
381 >                if (close(zfd) == -1)
382 >                        goto writerr;
383 >                for (i = 0; i <= psample; i++)
384 >                        free((char *)zbar[i]);
385 >        }
386 >        fwritescan(scanbar[0], hres, stdout);
387 >        if (fflush(stdout) == EOF)
388 >                goto writerr;
389          for (i = 0; i <= psample; i++)
390                  free((char *)scanbar[i]);
391 +        if (sampdens != NULL)
392 +                free(sampdens);
393 +        pctdone = 100.0;
394 +        if (ralrm > 0)
395 +                report();
396 +        signal(SIGCONT, SIG_DFL);
397          return;
398   writerr:
399          error(SYSTEM, "write error in render");
400 + memerr:
401 +        error(SYSTEM, "out of memory in render");
402   }
403  
404  
405 < fillscanline(scanline, y, xstep)                /* fill scan line at y */
406 < register COLOR  *scanline;
407 < int  y, xstep;
405 > fillscanline(scanline, zline, sd, xres, y, xstep)       /* fill scan at y */
406 > register COLOR  *scanline;
407 > register float  *zline;
408 > register char  *sd;
409 > int  xres, y, xstep;
410   {
411 <        int  b = xstep;
411 >        static int  nc = 0;             /* number of calls */
412 >        int  bl = xstep, b = xstep;
413 >        double  z;
414          register int  i;
415          
416 <        pixvalue(scanline[0], 0, y);
417 <
418 <        for (i = xstep; i <= ourview.hresolu; i += xstep) {
419 <        
420 <                pixvalue(scanline[i], i, y);
421 <                
422 <                b = fillsample(scanline+i-xstep, i-xstep, y, xstep, 0, b/2);
416 >        z = pixvalue(scanline[0], 0, y);
417 >        if (zline) zline[0] = z;
418 >                                /* zig-zag start for quincunx pattern */
419 >        for (i = ++nc & 1 ? xstep : xstep/2; i < xres-1+xstep; i += xstep) {
420 >                if (i >= xres) {
421 >                        xstep += xres-1-i;
422 >                        i = xres-1;
423 >                }
424 >                z = pixvalue(scanline[i], i, y);
425 >                if (zline) zline[i] = z;
426 >                if (sd) b = sd[0] > sd[1] ? sd[0] : sd[1];
427 >                if (i <= xstep)
428 >                        b = fillsample(scanline, zline, 0, y, i, 0, b/2);
429 >                else
430 >                        b = fillsample(scanline+i-xstep,
431 >                                        zline ? zline+i-xstep : NULL,
432 >                                        i-xstep, y, xstep, 0, b/2);
433 >                if (sd) *sd++ = nc & 1 ? bl : b;
434 >                bl = b;
435          }
436 +        if (sd && nc & 1) *sd = bl;
437   }
438  
439  
440 < fillscanbar(scanbar, y, ysize)          /* fill interior */
441 < register COLOR  *scanbar[];
442 < int  y, ysize;
440 > fillscanbar(scanbar, zbar, xres, y, ysize)      /* fill interior */
441 > register COLOR  *scanbar[];
442 > register float  *zbar[];
443 > int  xres, y, ysize;
444   {
445          COLOR  vline[MAXDIV+1];
446 +        float  zline[MAXDIV+1];
447          int  b = ysize;
448          register int  i, j;
449          
450 <        for (i = 0; i < ourview.hresolu; i++) {
450 >        for (i = 0; i < xres; i++) {
451                  
452                  copycolor(vline[0], scanbar[0][i]);
453                  copycolor(vline[ysize], scanbar[ysize][i]);
454 +                if (zbar[0]) {
455 +                        zline[0] = zbar[0][i];
456 +                        zline[ysize] = zbar[ysize][i];
457 +                }
458                  
459 <                b = fillsample(vline, i, y, 0, ysize, b/2);
459 >                b = fillsample(vline, zbar[0] ? zline : NULL,
460 >                                i, y, 0, ysize, b/2);
461                  
462                  for (j = 1; j < ysize; j++)
463                          copycolor(scanbar[j][i], vline[j]);
464 +                if (zbar[0])
465 +                        for (j = 1; j < ysize; j++)
466 +                                zbar[j][i] = zline[j];
467          }
468   }
469  
470  
471   int
472 < fillsample(colline, x, y, xlen, ylen, b)        /* fill interior points */
473 < register COLOR  *colline;
472 > fillsample(colline, zline, x, y, xlen, ylen, b) /* fill interior points */
473 > register COLOR  *colline;
474 > register float  *zline;
475   int  x, y;
476   int  xlen, ylen;
477   int  b;
478   {
479 <        double  ratio;
479 >        double  ratio;
480 >        double  z;
481          COLOR  ctmp;
482          int  ncut;
483          register int  len;
# Line 201 | Line 490 | int  b;
490          if (len <= 1)                   /* limit recursion */
491                  return(0);
492          
493 <        if (b > 0 || bigdiff(colline[0], colline[len], maxdiff)) {
493 >        if (b > 0
494 >        || (zline && 2.*fabs(zline[0]-zline[len]) > maxdiff*(zline[0]+zline[len]))
495 >                        || bigdiff(colline[0], colline[len], maxdiff)) {
496          
497 <                pixvalue(colline[len>>1], x + (xlen>>1), y + (ylen>>1));
497 >                z = pixvalue(colline[len>>1], x + (xlen>>1), y + (ylen>>1));
498 >                if (zline) zline[len>>1] = z;
499                  ncut = 1;
500                  
501          } else {                                        /* interpolate */
# Line 211 | Line 503 | int  b;
503                  copycolor(colline[len>>1], colline[len]);
504                  ratio = (double)(len>>1) / len;
505                  scalecolor(colline[len>>1], ratio);
506 <                copycolor(ctmp, colline[0]);
506 >                if (zline) zline[len>>1] = zline[len] * ratio;
507                  ratio = 1.0 - ratio;
508 +                copycolor(ctmp, colline[0]);
509                  scalecolor(ctmp, ratio);
510                  addcolor(colline[len>>1], ctmp);
511 +                if (zline) zline[len>>1] += zline[0] * ratio;
512                  ncut = 0;
513          }
514                                                          /* recurse */
515 <        ncut += fillsample(colline, x, y, xlen>>1, ylen>>1, (b-1)/2);
515 >        ncut += fillsample(colline, zline, x, y, xlen>>1, ylen>>1, (b-1)/2);
516          
517 <        ncut += fillsample(colline + (len>>1), x + (xlen>>1), y + (ylen>>1),
518 <                                xlen - (xlen>>1), ylen - (ylen>>1), b/2);
517 >        ncut += fillsample(colline+(len>>1), zline ? zline+(len>>1) : NULL,
518 >                        x+(xlen>>1), y+(ylen>>1),
519 >                        xlen-(xlen>>1), ylen-(ylen>>1), b/2);
520  
521          return(ncut);
522   }
523  
524  
525 + double
526   pixvalue(col, x, y)             /* compute pixel value */
527   COLOR  col;                     /* returned color */
528   int  x, y;                      /* pixel position */
529   {
530 <        static RAY  thisray;    /* our ray for this pixel */
530 >        static RAY  thisray;
531  
532 <        rayview(thisray.rorg, thisray.rdir, &ourview,
533 <                        x + pixjitter(), y + pixjitter());
532 >        if (viewray(thisray.rorg, thisray.rdir, &ourview,
533 >                        (x+pixjitter())/hres, (y+pixjitter())/vres) < 0) {
534 >                setcolor(col, 0.0, 0.0, 0.0);
535 >                return(0.0);
536 >        }
537  
538          rayorigin(&thisray, NULL, PRIMARY, 1.0);
539 <        
539 >
540 >        samplendx = pixnumber(x,y,hres,vres);   /* set pixel index */
541 >
542          rayvalue(&thisray);                     /* trace ray */
543  
544          copycolor(col, thisray.rcol);           /* return color */
545 +        
546 +        return(thisray.rt);                     /* return distance */
547   }
548  
549  
# Line 254 | Line 557 | char  *oldfile;
557  
558          if (oldfile == NULL)
559                  return(0);
560 <        else if ((fp = fopen(oldfile, "r")) == NULL) {
560 >        
561 >        if ((fp = fopen(oldfile, "r")) == NULL) {
562                  sprintf(errmsg, "cannot open recover file \"%s\"", oldfile);
563                  error(WARNING, errmsg);
564                  return(0);
565          }
566 + #ifdef MSDOS
567 +        setmode(fileno(fp), O_BINARY);
568 + #endif
569                                  /* discard header */
570 <        getheader(fp, NULL);
570 >        getheader(fp, NULL, NULL);
571                                  /* get picture size */
572 <        if (fscanf(fp, "-Y %d +X %d\n", &y, &x) != 2) {
572 >        if (!fscnresolu(&x, &y, fp)) {
573                  sprintf(errmsg, "bad recover file \"%s\"", oldfile);
574                  error(WARNING, errmsg);
575                  fclose(fp);
576                  return(0);
577          }
578  
579 <        if (x != ourview.hresolu || y != ourview.vresolu) {
579 >        if (x != hres || y != vres) {
580                  sprintf(errmsg, "resolution mismatch in recover file \"%s\"",
581                                  oldfile);
582                  error(USER, errmsg);
276                return(0);
583          }
584  
585 <        scanline = (COLR *)malloc(ourview.hresolu*sizeof(COLR));
585 >        scanline = (COLR *)malloc(hres*sizeof(COLR));
586          if (scanline == NULL)
587                  error(SYSTEM, "out of memory in salvage");
588 <        for (y = 0; y < ourview.vresolu; y++) {
589 <                if (freadcolrs(scanline, ourview.hresolu, fp) < 0)
588 >        for (y = 0; y < vres; y++) {
589 >                if (freadcolrs(scanline, hres, fp) < 0)
590                          break;
591 <                if (fwritecolrs(scanline, ourview.hresolu, stdout) < 0)
591 >                if (fwritecolrs(scanline, hres, stdout) < 0)
592                          goto writerr;
593          }
594          if (fflush(stdout) == EOF)
# Line 292 | Line 598 | char  *oldfile;
598          unlink(oldfile);
599          return(y);
600   writerr:
601 <        error(SYSTEM, "write error in salvage");
601 >        sprintf(errmsg, "write error during recovery of \"%s\"", oldfile);
602 >        error(SYSTEM, errmsg);
603 > }
604 >
605 >
606 > int
607 > pixnumber(x, y, xres, yres)             /* compute pixel index (brushed) */
608 > register int  x, y;
609 > int  xres, yres;
610 > {
611 >        x -= y;
612 >        while (x < 0)
613 >                x += xres;
614 >        return((((x>>2)*yres + y) << 2) + (x & 3));
615   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines