ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/pinterp.c
(Generate patch)

Comparing ray/src/px/pinterp.c (file contents):
Revision 1.13 by greg, Thu Jan 4 16:52:05 1990 UTC vs.
Revision 1.17 by greg, Mon Jan 8 14:47:15 1990 UTC

# Line 14 | Line 14 | static char SCCSid[] = "$SunId$ LBL";
14  
15   #include "color.h"
16  
17 < #define pscan(y)        (ourpict+(y)*ourview.hresolu)
18 < #define zscan(y)        (ourzbuf+(y)*ourview.hresolu)
17 > #define pscan(y)        (ourpict+(y)*hresolu)
18 > #define zscan(y)        (ourzbuf+(y)*hresolu)
19  
20   #define F_FORE          1               /* fill foreground */
21   #define F_BACK          2               /* fill background */
# Line 26 | Line 26 | static char SCCSid[] = "$SunId$ LBL";
26  
27   #define ABS(x)          ((x)>0?(x):-(x))
28  
29 < VIEW    ourview = STDVIEW(512);         /* desired view */
29 > struct position {int x,y; float z;};
30  
31 + VIEW    ourview = STDVIEW;              /* desired view */
32 + int     hresolu = 512;                  /* horizontal resolution */
33 + int     vresolu = 512;                  /* vertical resolution */
34 +
35   double  zeps = .02;                     /* allowed z epsilon */
36  
37   COLR    *ourpict;                       /* output picture */
# Line 35 | Line 39 | float  *ourzbuf;                       /* corresponding z-buffer */
39  
40   char    *progname;
41  
38 VIEW    theirview = STDVIEW(512);       /* input view */
39 int     gotview;                        /* got input view? */
40
42   int     fill = F_FORE|F_BACK;           /* selected fill algorithm */
43 < extern int      backfill(), calfill();  /* fill functions */
43 > extern int      backfill(), rcalfill(); /* fill functions */
44   int     (*deffill)() = backfill;        /* selected fill function */
45   COLR    backcolr = BLKCOLR;             /* background color */
46   double  backz = 0.0;                    /* background z value */
47 + int     normdist = 1;                   /* normalized distance? */
48 + double  ourexp = -1;                    /* output picture exposure */
49  
50 + VIEW    theirview = STDVIEW;            /* input view */
51 + int     gotview;                        /* got input view? */
52 + int     thresolu, tvresolu;             /* input resolution */
53 + double  theirexp;                       /* input picture exposure */
54   double  theirs2ours[4][4];              /* transformation matrix */
48 int     normdist = 1;                   /* normalized distance? */
55  
56 + int     childpid = -1;                  /* id of fill process */
57   FILE    *psend, *precv;                 /* pipes to/from fill calculation */
51 int     childpid;                       /* child's process id */
58   int     queue[PACKSIZ][2];              /* pending pixels */
59   int     queuesiz;                       /* number of pixels pending */
60  
# Line 62 | Line 68 | char   *argv[];
68          int     gotvfile = 0;
69          char    *zfile = NULL;
70          char    *err;
71 <        int     i;
71 >        int     i, rval;
72  
73          progname = argv[0];
74  
75 <        for (i = 1; i < argc && argv[i][0] == '-'; i++)
75 >        for (i = 1; i < argc && argv[i][0] == '-'; i++) {
76 >                rval = getviewopt(&ourview, argc-i, argv+i);
77 >                if (rval >= 0) {
78 >                        i += rval;
79 >                        continue;
80 >                }
81                  switch (argv[i][1]) {
82                  case 't':                               /* threshold */
83                          check(2,1);
# Line 108 | Line 119 | char   *argv[];
119                                  break;
120                          case 'r':                               /* rtrace */
121                                  check(3,1);
122 <                                deffill = calfill;
122 >                                deffill = rcalfill;
123                                  calstart(RTCOM, argv[++i]);
124                                  break;
125                          default:
# Line 121 | Line 132 | char   *argv[];
132                          break;
133                  case 'x':                               /* x resolution */
134                          check(2,1);
135 <                        ourview.hresolu = atoi(argv[++i]);
135 >                        hresolu = atoi(argv[++i]);
136                          break;
137                  case 'y':                               /* y resolution */
138                          check(2,1);
139 <                        ourview.vresolu = atoi(argv[++i]);
139 >                        vresolu = atoi(argv[++i]);
140                          break;
141 <                case 'v':                               /* view */
142 <                        switch (argv[i][2]) {
132 <                        case 't':                               /* type */
133 <                                check(4,0);
134 <                                ourview.type = argv[i][3];
135 <                                break;
136 <                        case 'p':                               /* point */
137 <                                check(3,3);
138 <                                ourview.vp[0] = atof(argv[++i]);
139 <                                ourview.vp[1] = atof(argv[++i]);
140 <                                ourview.vp[2] = atof(argv[++i]);
141 <                                break;
142 <                        case 'd':                               /* direction */
143 <                                check(3,3);
144 <                                ourview.vdir[0] = atof(argv[++i]);
145 <                                ourview.vdir[1] = atof(argv[++i]);
146 <                                ourview.vdir[2] = atof(argv[++i]);
147 <                                break;
148 <                        case 'u':                               /* up */
149 <                                check(3,3);
150 <                                ourview.vup[0] = atof(argv[++i]);
151 <                                ourview.vup[1] = atof(argv[++i]);
152 <                                ourview.vup[2] = atof(argv[++i]);
153 <                                break;
154 <                        case 'h':                               /* horizontal */
155 <                                check(3,1);
156 <                                ourview.horiz = atof(argv[++i]);
157 <                                break;
158 <                        case 'v':                               /* vertical */
159 <                                check(3,1);
160 <                                ourview.vert = atof(argv[++i]);
161 <                                break;
162 <                        case 'f':                               /* file */
163 <                                check(3,1);
164 <                                gotvfile = viewfile(argv[++i], &ourview);
165 <                                if (gotvfile < 0) {
166 <                                        perror(argv[i]);
167 <                                        exit(1);
168 <                                } else if (gotvfile == 0) {
169 <                                        fprintf(stderr, "%s: bad view file\n",
170 <                                                        argv[i]);
171 <                                        exit(1);
172 <                                }
173 <                                break;
174 <                        default:
141 >                case 'v':                               /* view file */
142 >                        if (argv[i][2] != 'f')
143                                  goto badopt;
144 +                        check(3,1);
145 +                        gotvfile = viewfile(argv[++i], &ourview);
146 +                        if (gotvfile < 0) {
147 +                                perror(argv[i]);
148 +                                exit(1);
149 +                        } else if (gotvfile == 0) {
150 +                                fprintf(stderr, "%s: bad view file\n",
151 +                                                argv[i]);
152 +                                exit(1);
153                          }
154                          break;
155                  default:
# Line 181 | Line 158 | char   *argv[];
158                                          progname, argv[i]);
159                          goto userr;
160                  }
161 +        }
162                                                  /* check arguments */
163          if ((argc-i)%2)
164                  goto userr;
# Line 190 | Line 168 | char   *argv[];
168                  exit(1);
169          }
170                                                  /* allocate frame */
171 <        ourpict = (COLR *)malloc(ourview.hresolu*ourview.vresolu*sizeof(COLR));
172 <        ourzbuf = (float *)calloc(ourview.hresolu*ourview.vresolu,sizeof(float));
173 <        if (ourpict == NULL || ourzbuf == NULL) {
174 <                perror(progname);
197 <                exit(1);
198 <        }
171 >        ourpict = (COLR *)malloc(hresolu*vresolu*sizeof(COLR));
172 >        ourzbuf = (float *)calloc(hresolu*vresolu,sizeof(float));
173 >        if (ourpict == NULL || ourzbuf == NULL)
174 >                syserror();
175                                                          /* get input */
176          for ( ; i < argc; i += 2)
177                  addpicture(argv[i], argv[i+1]);
# Line 205 | Line 181 | char   *argv[];
181          else
182                  fillpicture();
183                                                          /* close calculation */
184 <        if (deffill == calfill)
209 <                caldone();
184 >        caldone();
185                                                          /* add to header */
186          printargs(argc, argv, stdout);
187          if (gotvfile) {
# Line 214 | Line 189 | char   *argv[];
189                  fprintview(&ourview, stdout);
190                  printf("\n");
191          }
192 +        if (ourexp > 0 && ourexp != 1.0)
193 +                fputexpos(ourexp, stdout);
194          printf("\n");
195                                                          /* write picture */
196          writepicture();
# Line 224 | Line 201 | char   *argv[];
201          exit(0);
202   userr:
203          fprintf(stderr,
204 <        "Usage: %s [view opts][-t zthresh][-z zout][-fT][-n] pfile zspec ..\n",
204 >        "Usage: %s [view opts][-t eps][-z zout][-fT][-n] pfile zspec ..\n",
205                          progname);
206          exit(1);
207   #undef check
# Line 239 | Line 216 | char   *s;
216  
217          printf("\t%s", s);
218  
219 +        if (isexpos(s)) {
220 +                theirexp *= exposval(s);
221 +                return;
222 +        }
223          for (an = altname; *an != NULL; an++)
224                  if (!strncmp(*an, s, strlen(*an))) {
225 <                        if (sscanview(&theirview, s+strlen(*an)) == 0)
225 >                        if (sscanview(&theirview, s+strlen(*an)) > 0)
226                                  gotview++;
227                          break;
228                  }
# Line 255 | Line 236 | char   *pfile, *zspec;
236          FILE    *pfp, *zfp;
237          char    *err;
238          COLR    *scanin;
239 <        float   *zin, *zlast;
240 <        int     *plast;
239 >        float   *zin;
240 >        struct position *plast;
241          int     y;
242                                          /* open picture file */
243          if ((pfp = fopen(pfile, "r")) == NULL) {
244                  perror(pfile);
245                  exit(1);
246          }
247 <                                        /* get header and view */
248 <        printf("%s:\n", pfile);
247 >                                        /* get header with exposure and view */
248 >        theirexp = 1.0;
249          gotview = 0;
250 +        printf("%s:\n", pfile);
251          getheader(pfp, headline);
252 <        if (!gotview || fgetresolu(&theirview.hresolu, &theirview.vresolu, pfp)
252 >        if (!gotview || fgetresolu(&thresolu, &tvresolu, pfp)
253                          != (YMAJOR|YDECR)) {
254                  fprintf(stderr, "%s: picture view error\n", pfile);
255                  exit(1);
256          }
257 +        if (ourexp <= 0)
258 +                ourexp = theirexp;
259 +        else if (ABS(theirexp-ourexp) > .01*ourexp)
260 +                fprintf(stderr, "%s: different exposure (warning)\n", pfile);
261          if (err = setview(&theirview)) {
262                  fprintf(stderr, "%s: %s\n", pfile, err);
263                  exit(1);
# Line 279 | Line 265 | char   *pfile, *zspec;
265                                          /* compute transformation */
266          pixform(theirs2ours, &theirview, &ourview);
267                                          /* allocate scanlines */
268 <        scanin = (COLR *)malloc(theirview.hresolu*sizeof(COLR));
269 <        zin = (float *)malloc(theirview.hresolu*sizeof(float));
270 <        plast = (int *)calloc(theirview.hresolu, sizeof(int));
271 <        zlast = (float *)calloc(theirview.hresolu, sizeof(float));
272 <        if (scanin == NULL || zin == NULL || plast == NULL || zlast == NULL) {
287 <                perror(progname);
288 <                exit(1);
289 <        }
268 >        scanin = (COLR *)malloc(thresolu*sizeof(COLR));
269 >        zin = (float *)malloc(thresolu*sizeof(float));
270 >        plast = (struct position *)calloc(thresolu, sizeof(struct position));
271 >        if (scanin == NULL || zin == NULL || plast == NULL)
272 >                syserror();
273                                          /* get z specification or file */
274          if ((zfp = fopen(zspec, "r")) == NULL) {
275                  double  zvalue;
# Line 295 | Line 278 | char   *pfile, *zspec;
278                          perror(zspec);
279                          exit(1);
280                  }
281 <                for (x = 0; x < theirview.hresolu; x++)
281 >                for (x = 0; x < thresolu; x++)
282                          zin[x] = zvalue;
283          }
284                                          /* load image */
285 <        for (y = theirview.vresolu-1; y >= 0; y--) {
286 <                if (freadcolrs(scanin, theirview.hresolu, pfp) < 0) {
285 >        for (y = tvresolu-1; y >= 0; y--) {
286 >                if (freadcolrs(scanin, thresolu, pfp) < 0) {
287                          fprintf(stderr, "%s: read error\n", pfile);
288                          exit(1);
289                  }
290                  if (zfp != NULL
291 <                        && fread(zin,sizeof(float),theirview.hresolu,zfp)
309 <                                < theirview.hresolu) {
291 >                        && fread(zin,sizeof(float),thresolu,zfp) < thresolu) {
292                          fprintf(stderr, "%s: read error\n", zspec);
293                          exit(1);
294                  }
295 <                addscanline(y, scanin, zin, plast, zlast);
295 >                addscanline(y, scanin, zin, plast);
296          }
297                                          /* clean up */
298          free((char *)scanin);
299          free((char *)zin);
300          free((char *)plast);
319        free((char *)zlast);
301          fclose(pfp);
302          if (zfp != NULL)
303                  fclose(zfp);
# Line 330 | Line 311 | register VIEW  *vw1, *vw2;
311          double  m4t[4][4];
312  
313          setident4(xfmat);
314 <        xfmat[0][0] = vw1->vhinc[0];
315 <        xfmat[0][1] = vw1->vhinc[1];
316 <        xfmat[0][2] = vw1->vhinc[2];
317 <        xfmat[1][0] = vw1->vvinc[0];
318 <        xfmat[1][1] = vw1->vvinc[1];
319 <        xfmat[1][2] = vw1->vvinc[2];
314 >        xfmat[0][0] = vw1->hvec[0];
315 >        xfmat[0][1] = vw1->hvec[1];
316 >        xfmat[0][2] = vw1->hvec[2];
317 >        xfmat[1][0] = vw1->vvec[0];
318 >        xfmat[1][1] = vw1->vvec[1];
319 >        xfmat[1][2] = vw1->vvec[2];
320          xfmat[2][0] = vw1->vdir[0];
321          xfmat[2][1] = vw1->vdir[1];
322          xfmat[2][2] = vw1->vdir[2];
# Line 343 | Line 324 | register VIEW  *vw1, *vw2;
324          xfmat[3][1] = vw1->vp[1];
325          xfmat[3][2] = vw1->vp[2];
326          setident4(m4t);
327 <        m4t[0][0] = vw2->vhinc[0]/vw2->vhn2;
328 <        m4t[1][0] = vw2->vhinc[1]/vw2->vhn2;
329 <        m4t[2][0] = vw2->vhinc[2]/vw2->vhn2;
330 <        m4t[3][0] = -DOT(vw2->vp,vw2->vhinc)/vw2->vhn2;
331 <        m4t[0][1] = vw2->vvinc[0]/vw2->vvn2;
332 <        m4t[1][1] = vw2->vvinc[1]/vw2->vvn2;
333 <        m4t[2][1] = vw2->vvinc[2]/vw2->vvn2;
334 <        m4t[3][1] = -DOT(vw2->vp,vw2->vvinc)/vw2->vvn2;
327 >        m4t[0][0] = vw2->hvec[0]/vw2->hn2;
328 >        m4t[1][0] = vw2->hvec[1]/vw2->hn2;
329 >        m4t[2][0] = vw2->hvec[2]/vw2->hn2;
330 >        m4t[3][0] = -DOT(vw2->vp,vw2->hvec)/vw2->hn2;
331 >        m4t[0][1] = vw2->vvec[0]/vw2->vn2;
332 >        m4t[1][1] = vw2->vvec[1]/vw2->vn2;
333 >        m4t[2][1] = vw2->vvec[2]/vw2->vn2;
334 >        m4t[3][1] = -DOT(vw2->vp,vw2->vvec)/vw2->vn2;
335          m4t[0][2] = vw2->vdir[0];
336          m4t[1][2] = vw2->vdir[1];
337          m4t[2][2] = vw2->vdir[2];
# Line 359 | Line 340 | register VIEW  *vw1, *vw2;
340   }
341  
342  
343 < addscanline(y, pline, zline, lasty, lastyz)     /* add scanline to output */
343 > addscanline(y, pline, zline, lasty)     /* add scanline to output */
344   int     y;
345   COLR    *pline;
346   float   *zline;
347 < int     *lasty;                 /* input/output */
367 < float   *lastyz;                /* input/output */
347 > struct position *lasty;         /* input/output */
348   {
349          extern double   sqrt();
350          double  pos[3];
351 <        int     lastx = 0;
372 <        double  lastxz = 0;
373 <        double  zt;
374 <        int     xpos, ypos;
351 >        struct position lastx, newpos;
352          register int    x;
353  
354 <        for (x = theirview.hresolu-1; x >= 0; x--) {
355 <                pos[0] = x - .5*(theirview.hresolu-1);
356 <                pos[1] = y - .5*(theirview.vresolu-1);
354 >        for (x = thresolu-1; x >= 0; x--) {
355 >                pos[0] = (x+.5)/thresolu + theirview.hoff - .5;
356 >                pos[1] = (y+.5)/tvresolu + theirview.voff - .5;
357                  pos[2] = zline[x];
358                  if (theirview.type == VT_PER) {
359                          if (normdist)   /* adjust for eye-ray distance */
360                                  pos[2] /= sqrt( 1.
361 <                                        + pos[0]*pos[0]*theirview.vhn2
362 <                                        + pos[1]*pos[1]*theirview.vvn2 );
361 >                                        + pos[0]*pos[0]*theirview.hn2
362 >                                        + pos[1]*pos[1]*theirview.vn2 );
363                          pos[0] *= pos[2];
364                          pos[1] *= pos[2];
365                  }
366                  multp3(pos, pos, theirs2ours);
367 <                if (pos[2] <= 0)
367 >                if (pos[2] <= 0) {
368 >                        lasty[x].z = lastx.z = 0;       /* mark invalid */
369                          continue;
370 +                }
371                  if (ourview.type == VT_PER) {
372                          pos[0] /= pos[2];
373                          pos[1] /= pos[2];
374                  }
375 <                pos[0] += .5*ourview.hresolu;
376 <                pos[1] += .5*ourview.vresolu;
377 <                if (pos[0] < 0 || (xpos = pos[0]) >= ourview.hresolu
378 <                        || pos[1] < 0 || (ypos = pos[1]) >= ourview.vresolu)
379 <                        continue;
375 >                pos[0] += .5 - ourview.hoff;
376 >                pos[1] += .5 - ourview.voff;
377 >                newpos.x = pos[0] * hresolu;
378 >                newpos.y = pos[1] * vresolu;
379 >                newpos.z = zline[x];
380                                          /* add pixel to our image */
381 <                zt = 2.*zeps*zline[x];
382 <                addpixel(xpos, ypos,
383 <                        (fill&F_FORE && ABS(zline[x]-lastxz) <= zt)
384 <                                ? lastx - xpos : 1,
385 <                        (fill&F_FORE && ABS(zline[x]-lastyz[x]) <= zt)
386 <                                ? lasty[x] - ypos : 1,
387 <                        pline[x], pos[2]);
388 <                lastx = xpos;
410 <                lasty[x] = ypos;
411 <                lastxz = lastyz[x] = zline[x];
381 >                if (pos[0] >= 0 && newpos.x < hresolu
382 >                                && pos[1] >= 0 && newpos.y < vresolu) {
383 >                        addpixel(&newpos, &lastx, &lasty[x], pline[x], pos[2]);
384 >                        lasty[x].x = lastx.x = newpos.x;
385 >                        lasty[x].y = lastx.y = newpos.y;
386 >                        lasty[x].z = lastx.z = newpos.z;
387 >                } else
388 >                        lasty[x].z = lastx.z = 0;       /* mark invalid */
389          }
390   }
391  
392  
393 < addpixel(xstart, ystart, width, height, pix, z) /* fill in area for pixel */
394 < int     xstart, ystart;
418 < int     width, height;
393 > addpixel(p0, p1, p2, pix, z)            /* fill in pixel parallelogram */
394 > struct position *p0, *p1, *p2;
395   COLR    pix;
396   double  z;
397   {
398 <        register int    x, y;
399 <                                        /* make width and height positive */
400 <        if (width < 0) {
401 <                width = -width;
402 <                xstart = xstart-width+1;
403 <        } else if (width == 0)
404 <                width = 1;
405 <        if (height < 0) {
406 <                height = -height;
407 <                ystart = ystart-height+1;
408 <        } else if (height == 0)
409 <                height = 1;
410 <                                        /* fill pixel(s) within rectangle */
411 <        for (y = ystart; y < ystart+height; y++)
412 <                for (x = xstart; x < xstart+width; x++)
413 <                        if (zscan(y)[x] <= 0
414 <                                        || zscan(y)[x]-z > zeps*zscan(y)[x]) {
398 >        double  zt = 2.*zeps*p0->z;             /* threshold */
399 >        int     s1x, s1y, s2x, s2y;             /* step sizes */
400 >        int     l1, l2, c1, c2;                 /* side lengths and counters */
401 >        int     p1isy;                          /* p0p1 along y? */
402 >        int     x1, y1;                         /* p1 position */
403 >        register int    x, y;                   /* final position */
404 >
405 >                                        /* compute vector p0p1 */
406 >        if (fill&F_FORE && ABS(p1->z-p0->z) <= zt) {
407 >                s1x = p1->x - p0->x;
408 >                s1y = p1->y - p0->y;
409 >                l1 = ABS(s1x);
410 >                if (p1isy = (ABS(s1y) > l1))
411 >                        l1 = ABS(s1y);
412 >        } else {
413 >                l1 = s1x = s1y = 1;
414 >                p1isy = -1;
415 >        }
416 >                                        /* compute vector p0p2 */
417 >        if (fill&F_FORE && ABS(p2->z-p0->z) <= zt) {
418 >                s2x = p2->x - p0->x;
419 >                s2y = p2->y - p0->y;
420 >                if (p1isy == 1)
421 >                        l2 = ABS(s2x);
422 >                else {
423 >                        l2 = ABS(s2y);
424 >                        if (p1isy != 0 && ABS(s2x) > l2)
425 >                                l2 = ABS(s2x);
426 >                }
427 >        } else
428 >                l2 = s2x = s2y = 1;
429 >                                        /* fill the parallelogram */
430 >        for (c1 = l1; c1-- > 0; ) {
431 >                x1 = p0->x + c1*s1x/l1;
432 >                y1 = p0->y + c1*s1y/l1;
433 >                for (c2 = l2; c2-- > 0; ) {
434 >                        x = x1 + c2*s2x/l2;
435 >                        y = y1 + c2*s2y/l2;
436 >                        if (zscan(y)[x] <= 0 || zscan(y)[x]-z
437 >                                                > zeps*zscan(y)[x]) {
438                                  zscan(y)[x] = z;
439                                  copycolr(pscan(y)[x], pix);
440                          }
441 +                }
442 +        }
443   }
444  
445  
# Line 449 | Line 450 | backpicture()                          /* background fill algorithm */
450          COLR    pfill;
451          register int    x, i;
452                                                          /* get back buffer */
453 <        yback = (int *)malloc(ourview.hresolu*sizeof(int));
454 <        if (yback == NULL) {
455 <                perror(progname);
456 <                return;
456 <        }
457 <        for (x = 0; x < ourview.hresolu; x++)
453 >        yback = (int *)malloc(hresolu*sizeof(int));
454 >        if (yback == NULL)
455 >                syserror();
456 >        for (x = 0; x < hresolu; x++)
457                  yback[x] = -2;
458          /*
459           * Xback and yback are the pixel locations of suitable
# Line 463 | Line 462 | backpicture()                          /* background fill algorithm */
462           * that there is no suitable background in this direction.
463           */
464                                                          /* fill image */
465 <        for (y = 0; y < ourview.vresolu; y++) {
465 >        for (y = 0; y < vresolu; y++) {
466                  xback = -2;
467 <                for (x = 0; x < ourview.hresolu; x++)
467 >                for (x = 0; x < hresolu; x++)
468                          if (zscan(y)[x] <= 0) {         /* empty pixel */
469                                  /*
470                                   * First, find background from above or below.
471                                   * (farthest assigned pixel)
472                                   */
473                                  if (yback[x] == -2) {
474 <                                        for (i = y+1; i < ourview.vresolu; i++)
474 >                                        for (i = y+1; i < vresolu; i++)
475                                                  if (zscan(i)[x] > 0)
476                                                          break;
477 <                                        if (i < ourview.vresolu
477 >                                        if (i < vresolu
478                                  && (y <= 0 || zscan(y-1)[x] < zscan(i)[x]))
479                                                  yback[x] = i;
480                                          else
# Line 485 | Line 484 | backpicture()                          /* background fill algorithm */
484                                   * Next, find background from left or right.
485                                   */
486                                  if (xback == -2) {
487 <                                        for (i = x+1; i < ourview.hresolu; i++)
487 >                                        for (i = x+1; i < hresolu; i++)
488                                                  if (zscan(y)[i] > 0)
489                                                          break;
490 <                                        if (i < ourview.hresolu
490 >                                        if (i < hresolu
491                                  && (x <= 0 || zscan(y)[x-1] < zscan(y)[i]))
492                                                  xback = i;
493                                          else
# Line 530 | Line 529 | fillpicture()                          /* paint in empty pixels with default
529   {
530          register int    x, y;
531  
532 <        for (y = 0; y < ourview.vresolu; y++)
533 <                for (x = 0; x < ourview.hresolu; x++)
532 >        for (y = 0; y < vresolu; y++)
533 >                for (x = 0; x < hresolu; x++)
534                          if (zscan(y)[x] <= 0)
535                                  (*deffill)(x,y);
536   }
# Line 541 | Line 540 | writepicture()                         /* write out picture */
540   {
541          int     y;
542  
543 <        fputresolu(YMAJOR|YDECR, ourview.hresolu, ourview.vresolu, stdout);
544 <        for (y = ourview.vresolu-1; y >= 0; y--)
545 <                if (fwritecolrs(pscan(y), ourview.hresolu, stdout) < 0) {
546 <                        perror(progname);
548 <                        exit(1);
549 <                }
543 >        fputresolu(YMAJOR|YDECR, hresolu, vresolu, stdout);
544 >        for (y = vresolu-1; y >= 0; y--)
545 >                if (fwritecolrs(pscan(y), hresolu, stdout) < 0)
546 >                        syserror();
547   }
548  
549  
# Line 564 | Line 561 | char   *fname;
561                  exit(1);
562          }
563          if (donorm
564 <        && (zout = (float *)malloc(ourview.hresolu*sizeof(float))) == NULL) {
565 <                perror(progname);
566 <                exit(1);
570 <        }
571 <        for (y = ourview.vresolu-1; y >= 0; y--) {
564 >        && (zout = (float *)malloc(hresolu*sizeof(float))) == NULL)
565 >                syserror();
566 >        for (y = vresolu-1; y >= 0; y--) {
567                  if (donorm) {
568                          double  vx, yzn2;
569                          register int    x;
570 <                        yzn2 = y - .5*(ourview.vresolu-1);
571 <                        yzn2 = 1. + yzn2*yzn2*ourview.vvn2;
572 <                        for (x = 0; x < ourview.hresolu; x++) {
573 <                                vx = x - .5*(ourview.hresolu-1);
570 >                        yzn2 = y - .5*(vresolu-1);
571 >                        yzn2 = 1. + yzn2*yzn2*ourview.vn2;
572 >                        for (x = 0; x < hresolu; x++) {
573 >                                vx = x - .5*(hresolu-1);
574                                  zout[x] = zscan(y)[x]
575 <                                        * sqrt(vx*vx*ourview.vhn2 + yzn2);
575 >                                        * sqrt(vx*vx*ourview.hn2 + yzn2);
576                          }
577                  } else
578                          zout = zscan(y);
579 <                if (fwrite(zout, sizeof(float), ourview.hresolu, fp)
585 <                                < ourview.hresolu) {
579 >                if (fwrite(zout, sizeof(float), hresolu, fp) < hresolu) {
580                          perror(fname);
581                          exit(1);
582                  }
# Line 620 | Line 614 | char   *prog, *args;
614          char    combuf[512];
615          int     p0[2], p1[2];
616  
617 +        if (childpid != -1) {
618 +                fprintf(stderr, "%s: too many calculations\n", progname);
619 +                exit(1);
620 +        }
621          sprintf(combuf, prog, PACKSIZ, args);
622          if (pipe(p0) < 0 || pipe(p1) < 0)
623 <                goto syserr;
623 >                syserror();
624          if ((childpid = vfork()) == 0) {        /* fork calculation */
625                  close(p0[1]);
626                  close(p1[0]);
# Line 638 | Line 636 | char   *prog, *args;
636                  perror("/bin/sh");
637                  _exit(127);
638          }
639 <        if (childpid < 0)
640 <                goto syserr;
639 >        if (childpid == -1)
640 >                syserror();
641          close(p0[0]);
642          close(p1[1]);
643          if ((psend = fdopen(p0[1], "w")) == NULL)
644 <                goto syserr;
644 >                syserror();
645          if ((precv = fdopen(p1[0], "r")) == NULL)
646 <                goto syserr;
646 >                syserror();
647          queuesiz = 0;
650        return;
651 syserr:
652        perror(progname);
653        exit(1);
648   }
649  
650  
# Line 658 | Line 652 | caldone()                              /* done with calculation */
652   {
653          int     pid;
654  
655 <        fclose(psend);
655 >        if (childpid == -1)
656 >                return;
657 >        if (fclose(psend) == EOF)
658 >                syserror();
659          clearqueue();
660          fclose(precv);
661          while ((pid = wait(0)) != -1 && pid != childpid)
662                  ;
663 +        childpid = -1;
664   }
665  
666  
667 < calfill(x, y)                           /* fill with calculated pixel */
667 > rcalfill(x, y)                          /* fill with ray-calculated pixel */
668   int     x, y;
669   {
670          FVECT   orig, dir;
671          float   outbuf[6];
672  
673          if (queuesiz >= PACKSIZ) {      /* flush queue */
674 <                fflush(psend);
674 >                if (fflush(psend) == EOF)
675 >                        syserror();
676                  clearqueue();
677          }
678                                          /* send new ray */
679 <        rayview(orig, dir, &ourview, x+.5, y+.5);
679 >        viewray(orig, dir, &ourview, (x+.5)/hresolu, (y+.5)/vresolu);
680          outbuf[0] = orig[0]; outbuf[1] = orig[1]; outbuf[2] = orig[2];
681          outbuf[3] = dir[0]; outbuf[4] = dir[1]; outbuf[5] = dir[2];
682 <        fwrite(outbuf, sizeof(float), 6, psend);
682 >        if (fwrite(outbuf, sizeof(float), 6, psend) < 6)
683 >                syserror();
684                                          /* remember it */
685          queue[queuesiz][0] = x;
686          queue[queuesiz][1] = y;
# Line 694 | Line 694 | clearqueue()                           /* get results from queue */
694          register int    i;
695  
696          for (i = 0; i < queuesiz; i++) {
697 <                fread(inbuf, sizeof(float), 4, precv);
697 >                if (fread(inbuf, sizeof(float), 4, precv) < 4) {
698 >                        fprintf(stderr, "%s: read error in clearqueue\n",
699 >                                        progname);
700 >                        exit(1);
701 >                }
702 >                if (ourexp > 0 && ourexp != 1.0) {
703 >                        inbuf[0] *= ourexp;
704 >                        inbuf[1] *= ourexp;
705 >                        inbuf[2] *= ourexp;
706 >                }
707                  setcolr(pscan(queue[i][1])[queue[i][0]],
708                                  inbuf[0], inbuf[1], inbuf[2]);
709                  zscan(queue[i][1])[queue[i][0]] = inbuf[3];
710          }
711          queuesiz = 0;
712 + }
713 +
714 +
715 + syserror()                      /* report error and exit */
716 + {
717 +        perror(progname);
718 +        exit(1);
719   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines