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.23 by greg, Thu Jul 18 15:49:06 1991 UTC vs.
Revision 2.20 by greg, Thu Sep 9 13:47:55 1993 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1987 Regents of the University of California */
1 > /* Copyright (c) 1993 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 + #ifdef  SMLFLT
28 + #define  sscanvec(s,v)  (sscanf(s,"%f %f %f",v,v+1,v+2)==3)
29 + #else
30 + #define  sscanvec(s,v)  (sscanf(s,"%lf %lf %lf",v,v+1,v+2)==3)
31 + #endif
32 +
33 + extern char  *atos();
34 +
35 + extern char  rifname[128];              /* rad input file name */
36 +
37 + extern char  VersionID[];
38   extern char  *progname;
39 + extern char  *octname;
40  
41  
42   getframe(s)                             /* get a new frame */
# Line 54 | Line 68 | char  *s;
68          int  change = 0;
69          VIEW  nv;
70  
71 +        while (isspace(*s))
72 +                s++;
73 +        if (*s == '-') {                        /* command line parameters */
74 +                copystruct(&nv, &ourview);
75 +                if (sscanview(&nv, s))
76 +                        newview(&nv);
77 +                else
78 +                        error(COMMAND, "bad view option(s)");
79 +                return;
80 +        }
81          if (sscanf(s, "%s", buf) == 1) {        /* write parameters to a file */
82                  if ((fname = getpath(buf, NULL, 0)) == NULL ||
83                                  (fp = fopen(fname, "a")) == NULL) {
# Line 64 | Line 88 | char  *s;
88                  fputs(progname, fp);
89                  fprintview(&ourview, fp);
90                  fputs(sskip(s), fp);
91 <                fputs("\n", fp);
91 >                putc('\n', fp);
92                  fclose(fp);
93                  return;
94          }
95          sprintf(buf, "view type (%c): ", ourview.type);
96          (*dev->comout)(buf);
97          (*dev->comin)(buf, NULL);
98 <        if (buf[0] == CTRL(C)) return;
98 >        if (buf[0] == CTRL('C')) return;
99          if (buf[0] && buf[0] != ourview.type) {
100                  nv.type = buf[0];
101                  change++;
# Line 81 | Line 105 | char  *s;
105                          ourview.vp[0], ourview.vp[1], ourview.vp[2]);
106          (*dev->comout)(buf);
107          (*dev->comin)(buf, NULL);
108 <        if (buf[0] == CTRL(C)) return;
109 <        if (sscanf(buf, "%lf %lf %lf", &nv.vp[0], &nv.vp[1], &nv.vp[2]) == 3)
108 >        if (buf[0] == CTRL('C')) return;
109 >        if (sscanvec(buf, nv.vp))
110                  change++;
111          else
112                  VCOPY(nv.vp, ourview.vp);
# Line 90 | Line 114 | char  *s;
114                          ourview.vdir[0], ourview.vdir[1], ourview.vdir[2]);
115          (*dev->comout)(buf);
116          (*dev->comin)(buf, NULL);
117 <        if (buf[0] == CTRL(C)) return;
118 <        if (sscanf(buf,"%lf %lf %lf",&nv.vdir[0],&nv.vdir[1],&nv.vdir[2]) == 3)
117 >        if (buf[0] == CTRL('C')) return;
118 >        if (sscanvec(buf, nv.vdir))
119                  change++;
120          else
121                  VCOPY(nv.vdir, ourview.vdir);
# Line 99 | Line 123 | char  *s;
123                          ourview.vup[0], ourview.vup[1], ourview.vup[2]);
124          (*dev->comout)(buf);
125          (*dev->comin)(buf, NULL);
126 <        if (buf[0] == CTRL(C)) return;
127 <        if (sscanf(buf,"%lf %lf %lf",&nv.vup[0],&nv.vup[1],&nv.vup[2]) == 3)
126 >        if (buf[0] == CTRL('C')) return;
127 >        if (sscanvec(buf, nv.vup))
128                  change++;
129          else
130                  VCOPY(nv.vup, ourview.vup);
# Line 108 | Line 132 | char  *s;
132                          ourview.horiz, ourview.vert);
133          (*dev->comout)(buf);
134          (*dev->comin)(buf, NULL);
135 <        if (buf[0] == CTRL(C)) return;
135 >        if (buf[0] == CTRL('C')) return;
136          if (sscanf(buf, "%lf %lf", &nv.horiz, &nv.vert) == 2)
137                  change++;
138          else {
# Line 118 | Line 142 | char  *s;
142                          ourview.hoff, ourview.voff);
143          (*dev->comout)(buf);
144          (*dev->comin)(buf, NULL);
145 <        if (buf[0] == CTRL(C)) return;
145 >        if (buf[0] == CTRL('C')) return;
146          if (sscanf(buf, "%lf %lf", &nv.hoff, &nv.voff) == 2)
147                  change++;
148          else {
# Line 139 | Line 163 | char  *s;
163  
164          if (sscanf(s, "%s", buf) == 1) {        /* get parameters from a file */
165                  copystruct(&nv, &stdview);
166 <                if ((fname = getpath(buf, NULL, 0)) == NULL ||
167 <                                (success = viewfile(fname, &nv, 0, 0)) == -1) {
166 >                if ((fname = getpath(buf, "", R_OK)) == NULL ||
167 >                                (success = viewfile(fname, &nv, NULL)) == -1) {
168                          sprintf(errmsg, "cannot open \"%s\"", buf);
169                          error(COMMAND, errmsg);
170                          return;
# Line 162 | Line 186 | char  *s;
186   }
187  
188  
189 + saveview(s)                             /* save view to rad file */
190 + char  *s;
191 + {
192 +        char  view[64];
193 +        char  *fname;
194 +        FILE  *fp;
195 +
196 +        if (*atos(view, sizeof(view), s)) {
197 +                if (isint(view)) {
198 +                        error(COMMAND, "cannot write view by number");
199 +                        return;
200 +                }
201 +                s = sskip(s);
202 +        }
203 +        while (isspace(*s))
204 +                s++;
205 +        if (*s)
206 +                atos(rifname, sizeof(rifname), s);
207 +        else if (rifname[0] == '\0') {
208 +                error(COMMAND, "no previous rad file");
209 +                return;
210 +        }
211 +        if ((fname = getpath(rifname, NULL, 0)) == NULL ||
212 +                        (fp = fopen(fname, "a")) == NULL) {
213 +                sprintf(errmsg, "cannot open \"%s\"", rifname);
214 +                error(COMMAND, errmsg);
215 +                return;
216 +        }
217 +        fputs("view= ", fp);
218 +        fputs(view, fp);
219 +        fprintview(&ourview, fp);
220 +        putc('\n', fp);
221 +        fclose(fp);
222 + }
223 +
224 +
225 + loadview(s)                             /* load view from rad file */
226 + char  *s;
227 + {
228 +        char  buf[512];
229 +        char  *fname;
230 +        FILE  *fp;
231 +        VIEW  nv;
232 +
233 +        strcpy(buf, "rad -n -s -V -v ");
234 +        if (sscanf(s, "%s", buf+strlen(buf)) == 1)
235 +                s = sskip(s);
236 +        else
237 +                strcat(buf, "1");
238 +        if (*s)
239 +                atos(rifname, sizeof(rifname), s);
240 +        else if (rifname[0] == '\0') {
241 +                error(COMMAND, "no previous rad file");
242 +                return;
243 +        }
244 +        if ((fname = getpath(rifname, "", R_OK)) == NULL) {
245 +                sprintf(errmsg, "cannot access \"%s\"", rifname);
246 +                error(COMMAND, errmsg);
247 +                return;
248 +        }
249 +        sprintf(buf+strlen(buf), " %s", fname);
250 +        if ((fp = popen(buf, "r")) == NULL) {
251 +                error(COMMAND, "cannot run rad");
252 +                return;
253 +        }
254 +        buf[0] = '\0';
255 +        fgets(buf, sizeof(buf), fp);
256 +        pclose(fp);
257 +        copystruct(&nv, &stdview);
258 +        if (!sscanview(&nv, buf)) {
259 +                error(COMMAND, "rad error -- no such view?");
260 +                return;
261 +        }
262 +        newview(&nv);
263 + }
264 +
265 +
266   getaim(s)                               /* aim camera */
267   char  *s;
268   {
168        extern double  tan(), atan();
269          double  zfact;
270          VIEW  nv;
271  
# Line 196 | Line 296 | char  *s;
296   getrotate(s)                            /* rotate camera */
297   char  *s;
298   {
199        extern double  normalize(), tan(), atan();
299          VIEW  nv;
300          FVECT  v1;
301          double  angle, elev, zfact;
# Line 242 | Line 341 | register char  *s;
341   getexposure(s)                          /* get new exposure */
342   char  *s;
343   {
245        double  atof(), pow(), fabs();
344          char  buf[128];
345          register char  *cp;
248        register PNODE  *p;
346          RECT  r;
347          int  x, y;
348 <        double  e;
349 <
348 >        register PNODE  *p = &ptrunk;
349 >        int  adapt = 0;
350 >        double  e = 1.0;
351 > start:
352          for (cp = s; isspace(*cp); cp++)
353                  ;
354 +        if (*cp == '@') {
355 +                adapt++;
356 +                goto start;
357 +        }
358          if (*cp == '\0') {              /* normalize to point */
359                  if (dev->getcur == NULL)
360                          return;
# Line 261 | Line 364 | char  *s;
364                  r.l = r.d = 0;
365                  r.r = hresolu; r.u = vresolu;
366                  p = findrect(x, y, &ptrunk, &r, -1);
264                e = 1.0;
367          } else {
368                  if (*cp == '=') {       /* absolute setting */
369                          p = NULL;
# Line 269 | Line 371 | char  *s;
371                          for (cp++; isspace(*cp); cp++)
372                                  ;
373                          if (*cp == '\0') {      /* interactive */
374 <                                sprintf(buf, "exposure (%lf): ", exposure);
374 >                                sprintf(buf, "exposure (%f): ", exposure);
375                                  (*dev->comout)(buf);
376                                  (*dev->comin)(buf, NULL);
377                                  for (cp = buf; isspace(*cp); cp++)
# Line 277 | Line 379 | char  *s;
379                                  if (*cp == '\0')
380                                          return;
381                          }
280                } else {                /* normalize to average */
281                        p = &ptrunk;
282                        e = 1.0;
382                  }
383                  if (*cp == '+' || *cp == '-')   /* f-stops */
384                          e *= pow(2.0, atof(cp));
# Line 287 | Line 386 | char  *s;
386                          e *= atof(cp);
387          }
388          if (p != NULL) {                /* relative setting */
389 <                if (bright(p->v) <= FTINY) {
389 >                if (bright(p->v) < 1e-15) {
390                          error(COMMAND, "cannot normalize to zero");
391                          return;
392                  }
393 <                e *= 0.5 / bright(p->v);
393 >                if (adapt)
394 >                        e *= 106./pow(1.219+pow(luminance(p->v)/exposure,.4),2.5)/exposure;
395 >                else
396 >                        e *= 0.5 / bright(p->v);
397          }
398          if (e <= FTINY || fabs(1.0 - e) <= FTINY)
399                  return;
# Line 301 | Line 403 | char  *s;
403   }
404  
405  
406 + getparam(str, dsc, typ, ptr)            /* get variable from user */
407 + char  *str, *dsc;
408 + int  typ;
409 + register union {int i; double d; COLOR C;}  *ptr;
410 + {
411 +        extern char  *index();
412 +        int  i0;
413 +        double  d0, d1, d2;
414 +        char  buf[48];
415 +
416 +        switch (typ) {
417 +        case 'i':                       /* integer */
418 +                if (sscanf(str, "%d", &i0) != 1) {
419 +                        (*dev->comout)(dsc);
420 +                        sprintf(buf, " (%d): ", ptr->i);
421 +                        (*dev->comout)(buf);
422 +                        (*dev->comin)(buf, NULL);
423 +                        if (sscanf(buf, "%d", &i0) != 1)
424 +                                return(0);
425 +                }
426 +                ptr->i = i0;
427 +                return(1);
428 +        case 'r':                       /* real */
429 +                if (sscanf(str, "%lf", &d0) != 1) {
430 +                        (*dev->comout)(dsc);
431 +                        sprintf(buf, " (%.6g): ", ptr->d);
432 +                        (*dev->comout)(buf);
433 +                        (*dev->comin)(buf, NULL);
434 +                        if (sscanf(buf, "%lf", &d0) != 1)
435 +                                return(0);
436 +                }
437 +                ptr->d = d0;
438 +                return(1);
439 +        case 'b':                       /* boolean */
440 +                if (sscanf(str, "%1s", buf) != 1) {
441 +                        (*dev->comout)(dsc);
442 +                        sprintf(buf, "? (%c): ", ptr->i ? 'y' : 'n');
443 +                        (*dev->comout)(buf);
444 +                        (*dev->comin)(buf, NULL);
445 +                        if (buf[0] == '\0' ||
446 +                                        index("yY+1tTnN-0fF", buf[0]) == NULL)
447 +                                return(0);
448 +                }
449 +                ptr->i = index("yY+1tT", buf[0]) != NULL;
450 +                return(1);
451 +        case 'C':                       /* color */
452 +                if (sscanf(str, "%lf %lf %lf", &d0, &d1, &d2) != 3) {
453 +                        (*dev->comout)(dsc);
454 +                        sprintf(buf, " (%.6g %.6g %.6g): ",
455 +                                        colval(ptr->C,RED),
456 +                                        colval(ptr->C,GRN),
457 +                                        colval(ptr->C,BLU));
458 +                        (*dev->comout)(buf);
459 +                        (*dev->comin)(buf, NULL);
460 +                        if (sscanf(buf, "%lf %lf %lf", &d0, &d1, &d2) != 3)
461 +                                return(0);
462 +                }
463 +                setcolor(ptr->C, d0, d1, d2);
464 +                return(1);
465 +        }
466 + }
467 +
468 +
469   setparam(s)                             /* get/set program parameter */
470   register char  *s;
471   {
# Line 313 | Line 478 | register char  *s;
478          extern double  shadcert;
479          extern COLOR  ambval;
480          extern double  ambacc;
316        extern double  minarad;
481          extern int  ambres;
482          extern int  ambdiv;
483          extern int  ambssamp;
484          extern int  ambounce;
485 <        extern int  directinvis;
485 >        extern int  directvis;
486 >        extern double  srcsizerat;
487          extern int  do_irrad;
488 <        int  i0;
489 <        double  d0, d1, d2;
490 <        char  buf[128], ans[4];
488 >        extern double  specjitter;
489 >        extern double  specthresh;
490 >        char  buf[128];
491          
492          if (s[0] == '\0') {
493                  (*dev->comout)(
494 <                        "aa ab ad ar as av b dc dj di dt i lr lw sp st: ");
494 >                "aa ab ad ar as av b dc di dj ds dt i lr lw ps pt sj st: ");
495                  (*dev->comin)(buf, NULL);
496                  s = buf;
497          }
# Line 334 | Line 499 | register char  *s;
499          case 'l':                       /* limit */
500                  switch (s[1]) {
501                  case 'w':                       /* weight */
502 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
338 <                                sprintf(buf, "limit weight (%.6g): ",
339 <                                                minweight);
340 <                                (*dev->comout)(buf);
341 <                                (*dev->comin)(buf, NULL);
342 <                                if (sscanf(buf, "%lf", &d0) != 1)
343 <                                        break;
344 <                        }
345 <                        minweight = d0;
502 >                        getparam(s+2, "limit weight", 'r', &minweight);
503                          break;
504                  case 'r':                       /* reflection */
505 <                        if (sscanf(s+2, "%d", &i0) != 1) {
349 <                                sprintf(buf, "limit reflection (%d): ",
350 <                                                maxdepth);
351 <                                (*dev->comout)(buf);
352 <                                (*dev->comin)(buf, NULL);
353 <                                if (sscanf(buf, "%d", &i0) != 1)
354 <                                        break;
355 <                        }
356 <                        maxdepth = i0;
505 >                        getparam(s+2, "limit reflection", 'i', &maxdepth);
506                          break;
507                  default:
508                          goto badparam;
# Line 362 | Line 511 | register char  *s;
511          case 'd':                       /* direct */
512                  switch (s[1]) {
513                  case 'j':                       /* jitter */
514 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
366 <                                sprintf(buf, "direct jitter (%.6g): ",
367 <                                                dstrsrc);
368 <                                (*dev->comout)(buf);
369 <                                (*dev->comin)(buf, NULL);
370 <                                if (sscanf(buf, "%lf", &d0) != 1)
371 <                                        break;
372 <                        }
373 <                        dstrsrc = d0;
514 >                        getparam(s+2, "direct jitter", 'r', &dstrsrc);
515                          break;
516                  case 'c':                       /* certainty */
517 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
377 <                                sprintf(buf, "direct certainty (%.6g): ",
378 <                                                shadcert);
379 <                                (*dev->comout)(buf);
380 <                                (*dev->comin)(buf, NULL);
381 <                                if (sscanf(buf, "%lf", &d0) != 1)
382 <                                        break;
383 <                        }
384 <                        shadcert = d0;
517 >                        getparam(s+2, "direct certainty", 'r', &shadcert);
518                          break;
519                  case 't':                       /* threshold */
520 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
388 <                                sprintf(buf, "direct threshold (%.6g): ",
389 <                                                shadthresh);
390 <                                (*dev->comout)(buf);
391 <                                (*dev->comin)(buf, NULL);
392 <                                if (sscanf(buf, "%lf", &d0) != 1)
393 <                                        break;
394 <                        }
395 <                        shadthresh = d0;
520 >                        getparam(s+2, "direct threshold", 'r', &shadthresh);
521                          break;
522 <                case 'i':                       /* invisibility */
523 <                        if (sscanf(s+2, "%1s", ans) != 1) {
524 <                                sprintf(buf, "direct invisibility (%c): ",
400 <                                                directinvis ? 'y' : 'n');
401 <                                (*dev->comout)(buf);
402 <                                (*dev->comin)(buf, NULL);
403 <                                if (sscanf(buf, "%1s", ans) != 1)
404 <                                        break;
405 <                        }
406 <                        directinvis = tolower(ans[0]) == 'y';
522 >                case 'v':                       /* visibility */
523 >                        getparam(s+2, "direct visibility",
524 >                                        'b', &directvis);
525                          break;
526 +                case 's':                       /* sampling */
527 +                        getparam(s+2, "direct sampling", 'r', &srcsizerat);
528 +                        break;
529                  default:
530                          goto badparam;
531                  }
532                  break;
533          case 'b':                       /* black and white */
534 <                if (sscanf(s+1, "%1s", ans) != 1) {
414 <                        sprintf(buf, "black and white (%c): ",
415 <                                        greyscale ? 'y' : 'n');
416 <                        (*dev->comout)(buf);
417 <                        (*dev->comin)(buf, NULL);
418 <                        if (sscanf(buf, "%1s", ans) != 1)
419 <                                break;
420 <                }
421 <                greyscale = tolower(ans[0]) == 'y';
534 >                getparam(s+1, "black and white", 'b', &greyscale);
535                  break;
536          case 'i':                       /* irradiance */
537 <                if (sscanf(s+1, "%1s", ans) != 1) {
425 <                        sprintf(buf, "irradiance (%c): ",
426 <                                        do_irrad ? 'y' : 'n');
427 <                        (*dev->comout)(buf);
428 <                        (*dev->comin)(buf, NULL);
429 <                        if (sscanf(buf, "%1s", ans) != 1)
430 <                                break;
431 <                }
432 <                do_irrad = tolower(ans[0]) == 'y';
537 >                getparam(s+1, "irradiance", 'b', &do_irrad);
538                  break;
539          case 'a':                       /* ambient */
540                  switch (s[1]) {
541                  case 'v':                       /* value */
542 <                        if (sscanf(s+2, "%lf %lf %lf", &d0, &d1, &d2) != 3) {
438 <                                sprintf(buf,
439 <                                        "ambient value (%.6g %.6g %.6g): ",
440 <                                                colval(ambval,RED),
441 <                                                colval(ambval,GRN),
442 <                                                colval(ambval,BLU));
443 <                                (*dev->comout)(buf);
444 <                                (*dev->comin)(buf, NULL);
445 <                                if (sscanf(buf, "%lf %lf %lf",
446 <                                                &d0, &d1, &d2) != 3)
447 <                                        break;
448 <                        }
449 <                        setcolor(ambval, d0, d1, d2);
542 >                        getparam(s+2, "ambient value", 'C', (COLOR *)ambval);
543                          break;
544                  case 'a':                       /* accuracy */
545 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
546 <                                sprintf(buf, "ambient accuracy (%.6g): ",
454 <                                                ambacc);
455 <                                (*dev->comout)(buf);
456 <                                (*dev->comin)(buf, NULL);
457 <                                if (sscanf(buf, "%lf", &d0) != 1)
458 <                                        break;
459 <                        }
460 <                        ambacc = d0;
545 >                        if (getparam(s+2, "ambient accuracy", 'r', &ambacc))
546 >                                setambacc(ambacc);
547                          break;
548                  case 'd':                       /* divisions */
549 <                        if (sscanf(s+2, "%d", &i0) != 1) {
464 <                                sprintf(buf, "ambient divisions (%d): ",
465 <                                                ambdiv);
466 <                                (*dev->comout)(buf);
467 <                                (*dev->comin)(buf, NULL);
468 <                                if (sscanf(buf, "%d", &i0) != 1)
469 <                                        break;
470 <                        }
471 <                        ambdiv = i0;
549 >                        getparam(s+2, "ambient divisions", 'i', &ambdiv);
550                          break;
551                  case 's':                       /* samples */
552 <                        if (sscanf(s+2, "%d", &i0) != 1) {
475 <                                sprintf(buf, "ambient super-samples (%d): ",
476 <                                                ambssamp);
477 <                                (*dev->comout)(buf);
478 <                                (*dev->comin)(buf, NULL);
479 <                                if (sscanf(buf, "%d", &i0) != 1)
480 <                                        break;
481 <                        }
482 <                        ambssamp = i0;
552 >                        getparam(s+2, "ambient super-samples", 'i', &ambssamp);
553                          break;
554                  case 'b':                       /* bounces */
555 <                        if (sscanf(s+2, "%d", &i0) != 1) {
486 <                                sprintf(buf, "ambient bounces (%d): ",
487 <                                                ambounce);
488 <                                (*dev->comout)(buf);
489 <                                (*dev->comin)(buf, NULL);
490 <                                if (sscanf(buf, "%d", &i0) != 1)
491 <                                        break;
492 <                        }
493 <                        ambounce = i0;
555 >                        getparam(s+2, "ambient bounces", 'i', &ambounce);
556                          break;
557                  case 'r':
558 <                        if (sscanf(s+2, "%d", &i0) != 1) {
559 <                                sprintf(buf, "ambient resolution (%d): ",
498 <                                                ambres);
499 <                                (*dev->comout)(buf);
500 <                                (*dev->comin)(buf, NULL);
501 <                                if (sscanf(buf, "%d", &i0) != 1)
502 <                                        break;
503 <                        }
504 <                        ambres = i0;
505 <                        minarad = ambres > 0 ? thescene.cusize/ambres : 0.0;
558 >                        if (getparam(s+2, "ambient resolution", 'i', &ambres))
559 >                                setambres(ambres);
560                          break;
561                  default:
562                          goto badparam;
563                  }
564                  break;
565 <        case 's':                       /* sample */
565 >        case 'p':                       /* pixel */
566                  switch (s[1]) {
567 <                case 'p':                       /* pixel */
568 <                        if (sscanf(s+2, "%d", &i0) != 1) {
569 <                                sprintf(buf, "sample pixel (%d): ", psample);
516 <                                (*dev->comout)(buf);
517 <                                (*dev->comin)(buf, NULL);
518 <                                if (sscanf(buf, "%d", &i0) != 1)
519 <                                        break;
520 <                        }
521 <                        psample = i0;
522 <                        pdepth = 0;
567 >                case 's':                       /* sample */
568 >                        if (getparam(s+2, "pixel sample", 'i', &psample))
569 >                                pdepth = 0;
570                          break;
571                  case 't':                       /* threshold */
572 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
573 <                                sprintf(buf, "sample threshold (%.6g): ",
527 <                                                maxdiff);
528 <                                (*dev->comout)(buf);
529 <                                (*dev->comin)(buf, NULL);
530 <                                if (sscanf(buf, "%lf", &d0) != 1)
531 <                                        break;
532 <                        }
533 <                        maxdiff = d0;
534 <                        pdepth = 0;
572 >                        if (getparam(s+2, "pixel threshold", 'r', &maxdiff))
573 >                                pdepth = 0;
574                          break;
575                  default:
576                          goto badparam;
577                  }
578                  break;
579 +        case 's':                       /* specular */
580 +                switch (s[1]) {
581 +                case 'j':                       /* jitter */
582 +                        getparam(s+2, "specular jitter", 'r', &specjitter);
583 +                        break;
584 +                case 't':                       /* threshold */
585 +                        getparam(s+2, "specular threshold", 'r', &specthresh);
586 +                        break;
587 +                default:
588 +                        goto badparam;
589 +                }
590 +                break;
591          case '\0':                      /* nothing */
592                  break;
593          default:;
594   badparam:
595 +                *sskip(s) = '\0';
596                  sprintf(errmsg, "%s: unknown variable", s);
597                  error(COMMAND, errmsg);
598                  break;
# Line 555 | Line 607 | char  *s;
607          int  x, y;
608          RAY  thisray;
609  
610 <        if (sscanf(s, "%lf %lf %lf %lf %lf %lf",
611 <                &thisray.rorg[0], &thisray.rorg[1], &thisray.rorg[2],
560 <                &thisray.rdir[0], &thisray.rdir[1], &thisray.rdir[2]) != 6) {
610 >        if (!sscanvec(s, thisray.rorg) ||
611 >                        !sscanvec(sskip(sskip(sskip(s))), thisray.rdir)) {
612  
613                  if (dev->getcur == NULL)
614                          return;
# Line 597 | Line 648 | char  *s;
648                          (*dev->comout)(buf);
649                  }
650                  (*dev->comin)(buf, NULL);
651 <                sprintf(buf, "with value (%.6g %.6g %.6g)",
651 >                sprintf(buf, "value (%.5g %.5g %.5g) (%.1fL)",
652                                  colval(thisray.rcol,RED),
653                                  colval(thisray.rcol,GRN),
654 <                                colval(thisray.rcol,BLU));
654 >                                colval(thisray.rcol,BLU),
655 >                                luminance(thisray.rcol));
656                  (*dev->comout)(buf);
657          }
658          (*dev->comin)(buf, NULL);
# Line 616 | Line 668 | char  *s;
668          COLR  *scanline;
669          int  y;
670  
671 <        if (sscanf(s, "%s", buf) != 1 && buf[0] == '\0') {
671 >        while (isspace(*s))
672 >                s++;
673 >        if (*s)
674 >                atos(buf, sizeof(buf), s);
675 >        else if (buf[0] == '\0') {
676                  error(COMMAND, "no file");
677                  return;
678          }
# Line 626 | Line 682 | char  *s;
682                  error(COMMAND, errmsg);
683                  return;
684          }
685 + #ifdef MSDOS
686 +        setmode(fileno(fp), O_BINARY);
687 + #endif
688          (*dev->comout)("writing \"");
689          (*dev->comout)(fname);
690          (*dev->comout)("\"...\n");
691                                                  /* write header */
692          fputs(progname, fp);
693          fprintview(&ourview, fp);
694 <        putc('\n', fp);
694 >        if (octname != NULL)
695 >                fprintf(fp, " %s\n", octname);
696 >        else
697 >                putc('\n', fp);
698 >        fprintf(fp, "SOFTWARE= %s\n", VersionID);
699          if (exposure != 1.0)
700                  fputexpos(exposure, fp);
701          if (dev->pixaspect != 1.0)
702                  fputaspect(dev->pixaspect, fp);
703          fputformat(COLRFMT, fp);
704          putc('\n', fp);
705 <        fputresolu(YMAJOR|YDECR, hresolu, vresolu, fp);
705 >        fprtresolu(hresolu, vresolu, fp);
706  
707          scanline = (COLR *)malloc(hresolu*sizeof(COLR));
708 <        if (scanline == NULL)
709 <                error(SYSTEM, "out of memory in writepict");
708 >        if (scanline == NULL) {
709 >                error(COMMAND, "not enough memory!");
710 >                fclose(fp);
711 >                unlink(fname);
712 >                return;
713 >        }
714          for (y = vresolu-1; y >= 0; y--) {
715                  getpictcolrs(y, scanline, &ptrunk, hresolu, vresolu);
716                  if (fwritecolrs(scanline, hresolu, fp) < 0)
717                          break;
718          }
719 +        free((char *)scanline);
720          if (fclose(fp) < 0)
721                  error(COMMAND, "write error");
654        free((char *)scanline);
722   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines