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

Comparing ray/src/rt/rv2.c (file contents):
Revision 1.12 by greg, Fri Oct 27 11:48:19 1989 UTC vs.
Revision 2.5 by greg, Wed Jan 15 16:55:21 1992 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1987 Regents of the University of California */
1 > /* Copyright (c) 1991 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 18 | Line 18 | static char SCCSid[] = "$SunId$ LBL";
18  
19   #include  "rpaint.h"
20  
21 + #include  "resolu.h"
22 +
23   #include  <ctype.h>
24  
25 < #define  CTRL(c)        ('c'-'@')
25 > #define  CTRL(c)        ((c)-'@')
26  
27 + extern char  VersionID[];
28   extern char  *progname;
29 + extern char  *octname;
30  
31  
32   getframe(s)                             /* get a new frame */
# Line 41 | Line 45 | char  *s;
45  
46          if (getrect(s, &box) < 0)
47                  return;
48 <        paintrect(&ptrunk, 0, 0, ourview.hresolu, ourview.vresolu, &box);
48 >        paintrect(&ptrunk, 0, 0, hresolu, vresolu, &box);
49   }
50  
51  
# Line 63 | Line 67 | char  *s;
67                  }
68                  fputs(progname, fp);
69                  fprintview(&ourview, fp);
70 +                fputs(sskip(s), fp);
71                  fputs("\n", fp);
72                  fclose(fp);
73                  return;
74          }
75          sprintf(buf, "view type (%c): ", ourview.type);
76          (*dev->comout)(buf);
77 <        (*dev->comin)(buf);
78 <        if (buf[0] == CTRL(C)) return;
77 >        (*dev->comin)(buf, NULL);
78 >        if (buf[0] == CTRL('C')) return;
79          if (buf[0] && buf[0] != ourview.type) {
80                  nv.type = buf[0];
81                  change++;
# Line 79 | Line 84 | char  *s;
84          sprintf(buf, "view point (%.6g %.6g %.6g): ",
85                          ourview.vp[0], ourview.vp[1], ourview.vp[2]);
86          (*dev->comout)(buf);
87 <        (*dev->comin)(buf);
88 <        if (buf[0] == CTRL(C)) return;
87 >        (*dev->comin)(buf, NULL);
88 >        if (buf[0] == CTRL('C')) return;
89          if (sscanf(buf, "%lf %lf %lf", &nv.vp[0], &nv.vp[1], &nv.vp[2]) == 3)
90                  change++;
91          else
# Line 88 | Line 93 | char  *s;
93          sprintf(buf, "view direction (%.6g %.6g %.6g): ",
94                          ourview.vdir[0], ourview.vdir[1], ourview.vdir[2]);
95          (*dev->comout)(buf);
96 <        (*dev->comin)(buf);
97 <        if (buf[0] == CTRL(C)) return;
96 >        (*dev->comin)(buf, NULL);
97 >        if (buf[0] == CTRL('C')) return;
98          if (sscanf(buf,"%lf %lf %lf",&nv.vdir[0],&nv.vdir[1],&nv.vdir[2]) == 3)
99                  change++;
100          else
# Line 97 | Line 102 | char  *s;
102          sprintf(buf, "view up (%.6g %.6g %.6g): ",
103                          ourview.vup[0], ourview.vup[1], ourview.vup[2]);
104          (*dev->comout)(buf);
105 <        (*dev->comin)(buf);
106 <        if (buf[0] == CTRL(C)) return;
105 >        (*dev->comin)(buf, NULL);
106 >        if (buf[0] == CTRL('C')) return;
107          if (sscanf(buf,"%lf %lf %lf",&nv.vup[0],&nv.vup[1],&nv.vup[2]) == 3)
108                  change++;
109          else
# Line 106 | Line 111 | char  *s;
111          sprintf(buf, "view horiz and vert size (%.6g %.6g): ",
112                          ourview.horiz, ourview.vert);
113          (*dev->comout)(buf);
114 <        (*dev->comin)(buf);
115 <        if (buf[0] == CTRL(C)) return;
114 >        (*dev->comin)(buf, NULL);
115 >        if (buf[0] == CTRL('C')) return;
116          if (sscanf(buf, "%lf %lf", &nv.horiz, &nv.vert) == 2)
117                  change++;
118          else {
119                  nv.horiz = ourview.horiz; nv.vert = ourview.vert;
120          }
121 <        sprintf(buf, "x and y resolution (%d %d): ",
122 <                        ourview.hresolu, ourview.vresolu);
121 >        sprintf(buf, "view shift and lift (%.6g %.6g): ",
122 >                        ourview.hoff, ourview.voff);
123          (*dev->comout)(buf);
124 <        (*dev->comin)(buf);
125 <        if (buf[0] == CTRL(C)) return;
126 <        if (sscanf(buf, "%d %d", &nv.hresolu, &nv.vresolu) == 2)
124 >        (*dev->comin)(buf, NULL);
125 >        if (buf[0] == CTRL('C')) return;
126 >        if (sscanf(buf, "%lf %lf", &nv.hoff, &nv.voff) == 2)
127                  change++;
128          else {
129 <                nv.hresolu = ourview.hresolu; nv.vresolu = ourview.vresolu;
129 >                nv.hoff = ourview.hoff; nv.voff = ourview.voff;
130          }
131          if (change)
132                  newview(&nv);
# Line 137 | Line 142 | char  *s;
142          VIEW  nv;
143  
144          if (sscanf(s, "%s", buf) == 1) {        /* get parameters from a file */
145 <                bcopy(&stdview, &nv, sizeof(VIEW));
145 >                copystruct(&nv, &stdview);
146                  if ((fname = getpath(buf, NULL, 0)) == NULL ||
147 <                                (success = viewfile(fname, &nv)) == -1) {
147 >                                (success = viewfile(fname, &nv, NULL)) == -1) {
148                          sprintf(errmsg, "cannot open \"%s\"", buf);
149                          error(COMMAND, errmsg);
150                          return;
# Line 150 | Line 155 | char  *s;
155                          newview(&nv);
156                  return;
157          }
158 <        if (oldview.hresolu == 0) {     /* no old view! */
158 >        if (oldview.type == 0) {        /* no old view! */
159                  error(COMMAND, "no previous view");
160                  return;
161          }
162 <        bcopy(&ourview, &nv, sizeof(VIEW));
163 <        bcopy(&oldview, &ourview, sizeof(VIEW));
164 <        bcopy(&nv, &oldview, sizeof(VIEW));
162 >        copystruct(&nv, &ourview);
163 >        copystruct(&ourview, &oldview);
164 >        copystruct(&oldview, &nv);
165          newimage();
166   }
167  
# Line 170 | Line 175 | char  *s;
175  
176          if (getinterest(s, 1, nv.vdir, &zfact) < 0)
177                  return;
178 +        nv.type = ourview.type;
179          VCOPY(nv.vp, ourview.vp);
180          VCOPY(nv.vup, ourview.vup);
181 <        nv.hresolu = ourview.hresolu; nv.vresolu = ourview.vresolu;
182 <        if ((nv.type = ourview.type) == VT_PAR) {
183 <                nv.horiz = ourview.horiz / zfact;
178 <                nv.vert = ourview.vert / zfact;
179 <        } else {
180 <                nv.horiz = atan(tan(ourview.horiz*(PI/180./2.))/zfact) /
181 <                                (PI/180./2.);
182 <                nv.vert = atan(tan(ourview.vert*(PI/180./2.))/zfact) /
183 <                                (PI/180./2.);
184 <        }
181 >        nv.hoff = ourview.hoff; nv.voff = ourview.voff;
182 >        nv.horiz = ourview.horiz; nv.vert = ourview.vert;
183 >        zoomview(&nv, zfact);
184          newview(&nv);
185   }
186  
# Line 211 | Line 210 | char  *s;
210                  error(COMMAND, "missing angle");
211                  return;
212          }
213 +        nv.type = ourview.type;
214          VCOPY(nv.vp, ourview.vp);
215          VCOPY(nv.vup, ourview.vup);
216 <        nv.hresolu = ourview.hresolu; nv.vresolu = ourview.vresolu;
216 >        nv.hoff = ourview.hoff; nv.voff = ourview.voff;
217          spinvector(nv.vdir, ourview.vdir, ourview.vup, angle*(PI/180.));
218          if (elev != 0.0) {
219                  fcross(v1, nv.vdir, ourview.vup);
220                  normalize(v1);
221                  spinvector(nv.vdir, nv.vdir, v1, elev*(PI/180.));
222          }
223 <        if ((nv.type = ourview.type) == VT_PAR) {
224 <                nv.horiz = ourview.horiz / zfact;
225 <                nv.vert = ourview.vert / zfact;
226 <        } else {
227 <                nv.horiz = atan(tan(ourview.horiz*(PI/180./2.))/zfact) /
228 <                                (PI/180./2.);
229 <                nv.vert = atan(tan(ourview.vert*(PI/180./2.))/zfact) /
230 <                                (PI/180./2.);
231 <        }
223 >        nv.horiz = ourview.horiz; nv.vert = ourview.vert;
224 >        zoomview(&nv, zfact);
225          newview(&nv);
226   }
227  
# Line 253 | Line 246 | register char  *s;
246   getexposure(s)                          /* get new exposure */
247   char  *s;
248   {
256        double  atof(), pow(), fabs();
249          char  buf[128];
250          register char  *cp;
251          register PNODE  *p;
# Line 270 | Line 262 | char  *s;
262                  if ((*dev->getcur)(&x, &y) == ABORT)
263                          return;
264                  r.l = r.d = 0;
265 <                r.r = ourview.hresolu; r.u = ourview.vresolu;
265 >                r.r = hresolu; r.u = vresolu;
266                  p = findrect(x, y, &ptrunk, &r, -1);
267                  e = 1.0;
268          } else {
# Line 282 | Line 274 | char  *s;
274                          if (*cp == '\0') {      /* interactive */
275                                  sprintf(buf, "exposure (%lf): ", exposure);
276                                  (*dev->comout)(buf);
277 <                                (*dev->comin)(buf);
277 >                                (*dev->comin)(buf, NULL);
278                                  for (cp = buf; isspace(*cp); cp++)
279                                          ;
280                                  if (*cp == '\0')
# Line 312 | Line 304 | char  *s;
304   }
305  
306  
307 + getparam(str, dsc, typ, ptr)            /* get variable from user */
308 + char  *str, *dsc;
309 + int  typ;
310 + register union {int i; double d; COLOR C;}  *ptr;
311 + {
312 +        extern char  *index();
313 +        int  i0;
314 +        double  d0, d1, d2;
315 +        char  buf[48];
316 +
317 +        switch (typ) {
318 +        case 'i':                       /* integer */
319 +                if (sscanf(str, "%d", &i0) != 1) {
320 +                        (*dev->comout)(dsc);
321 +                        sprintf(buf, " (%d): ", ptr->i);
322 +                        (*dev->comout)(buf);
323 +                        (*dev->comin)(buf, NULL);
324 +                        if (sscanf(buf, "%d", &i0) != 1)
325 +                                return(0);
326 +                }
327 +                ptr->i = i0;
328 +                return(1);
329 +        case 'r':                       /* real */
330 +                if (sscanf(str, "%lf", &d0) != 1) {
331 +                        (*dev->comout)(dsc);
332 +                        sprintf(buf, " (%.6g): ", ptr->d);
333 +                        (*dev->comout)(buf);
334 +                        (*dev->comin)(buf, NULL);
335 +                        if (sscanf(buf, "%lf", &d0) != 1)
336 +                                return(0);
337 +                }
338 +                ptr->d = d0;
339 +                return(1);
340 +        case 'b':                       /* boolean */
341 +                if (sscanf(str, "%1s", buf) != 1) {
342 +                        (*dev->comout)(dsc);
343 +                        sprintf(buf, "? (%c): ", ptr->i ? 'y' : 'n');
344 +                        (*dev->comout)(buf);
345 +                        (*dev->comin)(buf, NULL);
346 +                        if (buf[0] == '\0' ||
347 +                                        index("yY+1tTnN-0fF", buf[0]) == NULL)
348 +                                return(0);
349 +                }
350 +                ptr->i = index("yY+1tT", buf[0]) != NULL;
351 +                return(1);
352 +        case 'C':                       /* color */
353 +                if (sscanf(str, "%lf %lf %lf", &d0, &d1, &d2) != 3) {
354 +                        (*dev->comout)(dsc);
355 +                        sprintf(buf, " (%.6g %.6g %.6g): ",
356 +                                        colval(ptr->C,RED),
357 +                                        colval(ptr->C,GRN),
358 +                                        colval(ptr->C,BLU));
359 +                        (*dev->comout)(buf);
360 +                        (*dev->comin)(buf, NULL);
361 +                        if (sscanf(buf, "%lf %lf %lf", &d0, &d1, &d2) != 3)
362 +                                return(0);
363 +                }
364 +                setcolor(ptr->C, d0, d1, d2);
365 +                return(1);
366 +        }
367 + }
368 +
369 +
370   setparam(s)                             /* get/set program parameter */
371   register char  *s;
372   {
# Line 329 | Line 384 | register char  *s;
384          extern int  ambdiv;
385          extern int  ambssamp;
386          extern int  ambounce;
387 <        int  i0;
388 <        double  d0, d1, d2;
387 >        extern int  directinvis;
388 >        extern double  srcsizerat;
389 >        extern int  do_irrad;
390 >        extern double  specjitter;
391 >        extern double  specthresh;
392          char  buf[128];
393          
394          if (s[0] == '\0') {
395 <                (*dev->comout)("aa ab ad ar as av dc dj dt lr lw sp st: ");
396 <                (*dev->comin)(buf);
395 >                (*dev->comout)(
396 >                "aa ab ad ar as av b dc di dj ds dt i lr lw ps pt sj st: ");
397 >                (*dev->comin)(buf, NULL);
398                  s = buf;
399          }
400          switch (s[0]) {
401          case 'l':                       /* limit */
402                  switch (s[1]) {
403                  case 'w':                       /* weight */
404 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
346 <                                sprintf(buf, "limit weight (%.6g): ",
347 <                                                minweight);
348 <                                (*dev->comout)(buf);
349 <                                (*dev->comin)(buf);
350 <                                if (sscanf(buf, "%lf", &d0) != 1)
351 <                                        break;
352 <                        }
353 <                        minweight = d0;
404 >                        getparam(s+2, "limit weight", 'r', &minweight);
405                          break;
406                  case 'r':                       /* reflection */
407 <                        if (sscanf(s+2, "%d", &i0) != 1) {
357 <                                sprintf(buf, "limit reflection (%d): ",
358 <                                                maxdepth);
359 <                                (*dev->comout)(buf);
360 <                                (*dev->comin)(buf);
361 <                                if (sscanf(buf, "%d", &i0) != 1)
362 <                                        break;
363 <                        }
364 <                        maxdepth = i0;
407 >                        getparam(s+2, "limit reflection", 'i', &maxdepth);
408                          break;
409                  default:
410                          goto badparam;
# Line 370 | Line 413 | register char  *s;
413          case 'd':                       /* direct */
414                  switch (s[1]) {
415                  case 'j':                       /* jitter */
416 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
374 <                                sprintf(buf, "direct jitter (%.6g): ",
375 <                                                dstrsrc);
376 <                                (*dev->comout)(buf);
377 <                                (*dev->comin)(buf);
378 <                                if (sscanf(buf, "%lf", &d0) != 1)
379 <                                        break;
380 <                        }
381 <                        dstrsrc = d0;
416 >                        getparam(s+2, "direct jitter", 'r', &dstrsrc);
417                          break;
418                  case 'c':                       /* certainty */
419 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
385 <                                sprintf(buf, "direct certainty (%.6g): ",
386 <                                                shadcert);
387 <                                (*dev->comout)(buf);
388 <                                (*dev->comin)(buf);
389 <                                if (sscanf(buf, "%lf", &d0) != 1)
390 <                                        break;
391 <                        }
392 <                        shadcert = d0;
419 >                        getparam(s+2, "direct certainty", 'r', &shadcert);
420                          break;
421                  case 't':                       /* threshold */
422 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
396 <                                sprintf(buf, "direct threshold (%.6g): ",
397 <                                                shadthresh);
398 <                                (*dev->comout)(buf);
399 <                                (*dev->comin)(buf);
400 <                                if (sscanf(buf, "%lf", &d0) != 1)
401 <                                        break;
402 <                        }
403 <                        shadthresh = d0;
422 >                        getparam(s+2, "direct threshold", 'r', &shadthresh);
423                          break;
424 +                case 'i':                       /* invisibility */
425 +                        getparam(s+2, "direct invisibility",
426 +                                        'b', &directinvis);
427 +                        break;
428 +                case 's':                       /* sampling */
429 +                        getparam(s+2, "direct sampling", 'r', &srcsizerat);
430 +                        break;
431                  default:
432                          goto badparam;
433                  }
434                  break;
435 +        case 'b':                       /* black and white */
436 +                getparam(s+1, "black and white", 'b', &greyscale);
437 +                break;
438 +        case 'i':                       /* irradiance */
439 +                getparam(s+1, "irradiance", 'b', &do_irrad);
440 +                break;
441          case 'a':                       /* ambient */
442                  switch (s[1]) {
443                  case 'v':                       /* value */
444 <                        if (sscanf(s+2, "%lf %lf %lf", &d0, &d1, &d2) != 3) {
413 <                                sprintf(buf,
414 <                                        "ambient value (%.6g %.6g %.6g): ",
415 <                                                colval(ambval,RED),
416 <                                                colval(ambval,GRN),
417 <                                                colval(ambval,BLU));
418 <                                (*dev->comout)(buf);
419 <                                (*dev->comin)(buf);
420 <                                if (sscanf(buf, "%lf %lf %lf",
421 <                                                &d0, &d1, &d2) != 3)
422 <                                        break;
423 <                        }
424 <                        setcolor(ambval, d0, d1, d2);
444 >                        getparam(s+2, "ambient value", 'C', ambval);
445                          break;
446                  case 'a':                       /* accuracy */
447 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
428 <                                sprintf(buf, "ambient accuracy (%.6g): ",
429 <                                                ambacc);
430 <                                (*dev->comout)(buf);
431 <                                (*dev->comin)(buf);
432 <                                if (sscanf(buf, "%lf", &d0) != 1)
433 <                                        break;
434 <                        }
435 <                        ambacc = d0;
447 >                        getparam(s+2, "ambient accuracy", 'r', &ambacc);
448                          break;
449                  case 'd':                       /* divisions */
450 <                        if (sscanf(s+2, "%d", &i0) != 1) {
439 <                                sprintf(buf, "ambient divisions (%d): ",
440 <                                                ambdiv);
441 <                                (*dev->comout)(buf);
442 <                                (*dev->comin)(buf);
443 <                                if (sscanf(buf, "%d", &i0) != 1)
444 <                                        break;
445 <                        }
446 <                        ambdiv = i0;
450 >                        getparam(s+2, "ambient divisions", 'i', &ambdiv);
451                          break;
452                  case 's':                       /* samples */
453 <                        if (sscanf(s+2, "%d", &i0) != 1) {
450 <                                sprintf(buf, "ambient super-samples (%d): ",
451 <                                                ambssamp);
452 <                                (*dev->comout)(buf);
453 <                                (*dev->comin)(buf);
454 <                                if (sscanf(buf, "%d", &i0) != 1)
455 <                                        break;
456 <                        }
457 <                        ambssamp = i0;
453 >                        getparam(s+2, "ambient super-samples", 'i', &ambssamp);
454                          break;
455                  case 'b':                       /* bounces */
456 <                        if (sscanf(s+2, "%d", &i0) != 1) {
461 <                                sprintf(buf, "ambient bounces (%d): ",
462 <                                                ambounce);
463 <                                (*dev->comout)(buf);
464 <                                (*dev->comin)(buf);
465 <                                if (sscanf(buf, "%d", &i0) != 1)
466 <                                        break;
467 <                        }
468 <                        ambounce = i0;
456 >                        getparam(s+2, "ambient bounces", 'i', &ambounce);
457                          break;
458                  case 'r':
459 <                        if (sscanf(s+2, "%d", &i0) != 1) {
460 <                                sprintf(buf, "ambient resolution (%d): ",
461 <                                                ambres);
474 <                                (*dev->comout)(buf);
475 <                                (*dev->comin)(buf);
476 <                                if (sscanf(buf, "%d", &i0) != 1)
477 <                                        break;
478 <                        }
479 <                        ambres = i0;
480 <                        minarad = ambres > 0 ? thescene.cusize/ambres : 0.0;
459 >                        if (getparam(s+2, "ambient resolution", 'i', &ambres))
460 >                                minarad = ambres > 0 ?
461 >                                                thescene.cusize/ambres : 0.0;
462                          break;
463                  default:
464                          goto badparam;
465                  }
466                  break;
467 <        case 's':                       /* sample */
467 >        case 'p':                       /* pixel */
468                  switch (s[1]) {
469 <                case 'p':                       /* pixel */
470 <                        if (sscanf(s+2, "%d", &i0) != 1) {
471 <                                sprintf(buf, "sample pixel (%d): ", psample);
491 <                                (*dev->comout)(buf);
492 <                                (*dev->comin)(buf);
493 <                                if (sscanf(buf, "%d", &i0) != 1)
494 <                                        break;
495 <                        }
496 <                        psample = i0;
497 <                        pdepth = 0;
469 >                case 's':                       /* sample */
470 >                        if (getparam(s+2, "pixel sample", 'i', &psample))
471 >                                pdepth = 0;
472                          break;
473                  case 't':                       /* threshold */
474 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
475 <                                sprintf(buf, "sample threshold (%.6g): ",
502 <                                                maxdiff);
503 <                                (*dev->comout)(buf);
504 <                                (*dev->comin)(buf);
505 <                                if (sscanf(buf, "%lf", &d0) != 1)
506 <                                        break;
507 <                        }
508 <                        maxdiff = d0;
509 <                        pdepth = 0;
474 >                        if (getparam(s+2, "pixel threshold", 'r', &maxdiff))
475 >                                pdepth = 0;
476                          break;
477                  default:
478                          goto badparam;
479                  }
480                  break;
481 +        case 's':                       /* specular */
482 +                switch (s[1]) {
483 +                case 'j':                       /* jitter */
484 +                        getparam(s+2, "specular jitter", 'r', &specjitter);
485 +                        break;
486 +                case 't':                       /* threshold */
487 +                        getparam(s+2, "specular threshold", 'r', &specthresh);
488 +                        break;
489 +                default:
490 +                        goto badparam;
491 +                }
492 +                break;
493          case '\0':                      /* nothing */
494                  break;
495          default:;
496   badparam:
497 +                *sskip(s) = '\0';
498                  sprintf(errmsg, "%s: unknown variable", s);
499                  error(COMMAND, errmsg);
500                  break;
# Line 540 | Line 519 | char  *s;
519                  if ((*dev->getcur)(&x, &y) == ABORT)
520                          return;
521  
522 <                rayview(thisray.rorg, thisray.rdir, &ourview, x+.5, y+.5);
523 <                
522 >                if (viewray(thisray.rorg, thisray.rdir, &ourview,
523 >                                (x+.5)/hresolu, (y+.5)/vresolu) < 0) {
524 >                        error(COMMAND, "not on image");
525 >                        return;
526 >                }
527 >
528          } else if (normalize(thisray.rdir) == 0.0) {
529                  error(COMMAND, "zero ray direction");
530                  return;
# Line 559 | Line 542 | char  *s;
542                                  ofun[thisray.ro->otype].funame,
543                                  thisray.ro->oname);
544                  (*dev->comout)(buf);
545 <                (*dev->comin)(buf);
545 >                (*dev->comin)(buf, NULL);
546                  if (thisray.rot >= FHUGE)
547                          (*dev->comout)("at infinity");
548                  else {
# Line 567 | Line 550 | char  *s;
550                                          thisray.rop[1], thisray.rop[2]);
551                          (*dev->comout)(buf);
552                  }
553 <                (*dev->comin)(buf);
554 <                sprintf(buf, "with value (%.6g %.6g %.6g)",
553 >                (*dev->comin)(buf, NULL);
554 >                sprintf(buf, "value (%.5g %.5g %.5g) (%.1fL)",
555                                  colval(thisray.rcol,RED),
556                                  colval(thisray.rcol,GRN),
557 <                                colval(thisray.rcol,BLU));
557 >                                colval(thisray.rcol,BLU),
558 >                                luminance(thisray.rcol));
559                  (*dev->comout)(buf);
560          }
561 <        (*dev->comin)(buf);
561 >        (*dev->comin)(buf, NULL);
562   }
563  
564  
# Line 603 | Line 587 | char  *s;
587                                                  /* write header */
588          fputs(progname, fp);
589          fprintview(&ourview, fp);
590 <        putc('\n', fp);
590 >        if (octname != NULL)
591 >                fprintf(fp, " %s\n", octname);
592 >        else
593 >                putc('\n', fp);
594 >        fprintf(fp, "SOFTWARE= %s\n", VersionID);
595          if (exposure != 1.0)
596 <                fprintf(fp, "EXPOSURE=%e\n", exposure);
596 >                fputexpos(exposure, fp);
597 >        if (dev->pixaspect != 1.0)
598 >                fputaspect(dev->pixaspect, fp);
599 >        fputformat(COLRFMT, fp);
600          putc('\n', fp);
601 <        fputresolu(YMAJOR|YDECR, ourview.hresolu, ourview.vresolu, fp);
601 >        fprtresolu(hresolu, vresolu, fp);
602  
603 <        scanline = (COLR *)malloc(ourview.hresolu*sizeof(COLR));
604 <        if (scanline == NULL)
605 <                error(SYSTEM, "out of memory in writepict");
606 <        for (y = ourview.vresolu-1; y >= 0; y--) {
607 <                getpictcolrs(y, scanline, &ptrunk,
608 <                                ourview.hresolu, ourview.vresolu);
609 <                if (fwritecolrs(scanline, ourview.hresolu, fp) < 0)
603 >        scanline = (COLR *)malloc(hresolu*sizeof(COLR));
604 >        if (scanline == NULL) {
605 >                error(COMMAND, "not enough memory!");
606 >                fclose(fp);
607 >                unlink(fname);
608 >                return;
609 >        }
610 >        for (y = vresolu-1; y >= 0; y--) {
611 >                getpictcolrs(y, scanline, &ptrunk, hresolu, vresolu);
612 >                if (fwritecolrs(scanline, hresolu, fp) < 0)
613                          break;
614          }
615 +        free((char *)scanline);
616          if (fclose(fp) < 0)
617                  error(COMMAND, "write error");
623        free((char *)scanline);
618   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines