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.18 by greg, Tue Jan 30 11:37:37 1990 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 63 | Line 87 | char  *s;
87                  }
88                  fputs(progname, fp);
89                  fprintview(&ourview, fp);
90 <                fputs("\n", fp);
90 >                fputs(sskip(s), 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 80 | 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 89 | 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 98 | 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 107 | 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 117 | 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 138 | 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 150 | Line 175 | char  *s;
175                          newview(&nv);
176                  return;
177          }
178 <        if (oldview.horiz == 0) {       /* no old view! */
178 >        if (oldview.type == 0) {        /* no old view! */
179                  error(COMMAND, "no previous view");
180                  return;
181          }
# Line 161 | 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   {
167        extern double  tan(), atan();
269          double  zfact;
270          VIEW  nv;
271  
272          if (getinterest(s, 1, nv.vdir, &zfact) < 0)
273                  return;
274 +        nv.type = ourview.type;
275          VCOPY(nv.vp, ourview.vp);
276          VCOPY(nv.vup, ourview.vup);
277          nv.hoff = ourview.hoff; nv.voff = ourview.voff;
278 <        if ((nv.type = ourview.type) == VT_PAR) {
279 <                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 <        }
278 >        nv.horiz = ourview.horiz; nv.vert = ourview.vert;
279 >        zoomview(&nv, zfact);
280          newview(&nv);
281   }
282  
# Line 201 | Line 296 | char  *s;
296   getrotate(s)                            /* rotate camera */
297   char  *s;
298   {
204        extern double  normalize(), tan(), atan();
299          VIEW  nv;
300          FVECT  v1;
301          double  angle, elev, zfact;
# Line 211 | Line 305 | char  *s;
305                  error(COMMAND, "missing angle");
306                  return;
307          }
308 +        nv.type = ourview.type;
309          VCOPY(nv.vp, ourview.vp);
310          VCOPY(nv.vup, ourview.vup);
311          nv.hoff = ourview.hoff; nv.voff = ourview.voff;
# Line 220 | Line 315 | char  *s;
315                  normalize(v1);
316                  spinvector(nv.vdir, nv.vdir, v1, elev*(PI/180.));
317          }
318 <        if ((nv.type = ourview.type) == VT_PAR) {
319 <                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 <        }
318 >        nv.horiz = ourview.horiz; nv.vert = ourview.vert;
319 >        zoomview(&nv, zfact);
320          newview(&nv);
321   }
322  
# Line 253 | Line 341 | register char  *s;
341   getexposure(s)                          /* get new exposure */
342   char  *s;
343   {
256        double  atof(), pow(), fabs();
344          char  buf[128];
345          register char  *cp;
259        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 272 | 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);
275                e = 1.0;
367          } else {
368                  if (*cp == '=') {       /* absolute setting */
369                          p = NULL;
# Line 280 | 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 288 | Line 379 | char  *s;
379                                  if (*cp == '\0')
380                                          return;
381                          }
291                } else {                /* normalize to average */
292                        p = &ptrunk;
293                        e = 1.0;
382                  }
383                  if (*cp == '+' || *cp == '-')   /* f-stops */
384                          e *= pow(2.0, atof(cp));
# Line 298 | 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 312 | 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 324 | Line 478 | register char  *s;
478          extern double  shadcert;
479          extern COLOR  ambval;
480          extern double  ambacc;
327        extern double  minarad;
481          extern int  ambres;
482          extern int  ambdiv;
483          extern int  ambssamp;
484          extern int  ambounce;
485 <        int  i0;
486 <        double  d0, d1, d2;
485 >        extern int  directvis;
486 >        extern double  srcsizerat;
487 >        extern int  do_irrad;
488 >        extern double  specjitter;
489 >        extern double  specthresh;
490          char  buf[128];
491          
492          if (s[0] == '\0') {
493 <                (*dev->comout)("aa ab ad ar as av dc dj dt lr lw sp st: ");
493 >                (*dev->comout)(
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 342 | 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) {
346 <                                sprintf(buf, "limit weight (%.6g): ",
347 <                                                minweight);
348 <                                (*dev->comout)(buf);
349 <                                (*dev->comin)(buf, NULL);
350 <                                if (sscanf(buf, "%lf", &d0) != 1)
351 <                                        break;
352 <                        }
353 <                        minweight = d0;
502 >                        getparam(s+2, "limit weight", 'r', &minweight);
503                          break;
504                  case 'r':                       /* reflection */
505 <                        if (sscanf(s+2, "%d", &i0) != 1) {
357 <                                sprintf(buf, "limit reflection (%d): ",
358 <                                                maxdepth);
359 <                                (*dev->comout)(buf);
360 <                                (*dev->comin)(buf, NULL);
361 <                                if (sscanf(buf, "%d", &i0) != 1)
362 <                                        break;
363 <                        }
364 <                        maxdepth = i0;
505 >                        getparam(s+2, "limit reflection", 'i', &maxdepth);
506                          break;
507                  default:
508                          goto badparam;
# Line 370 | 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) {
374 <                                sprintf(buf, "direct jitter (%.6g): ",
375 <                                                dstrsrc);
376 <                                (*dev->comout)(buf);
377 <                                (*dev->comin)(buf, NULL);
378 <                                if (sscanf(buf, "%lf", &d0) != 1)
379 <                                        break;
380 <                        }
381 <                        dstrsrc = d0;
514 >                        getparam(s+2, "direct jitter", 'r', &dstrsrc);
515                          break;
516                  case 'c':                       /* certainty */
517 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
385 <                                sprintf(buf, "direct certainty (%.6g): ",
386 <                                                shadcert);
387 <                                (*dev->comout)(buf);
388 <                                (*dev->comin)(buf, NULL);
389 <                                if (sscanf(buf, "%lf", &d0) != 1)
390 <                                        break;
391 <                        }
392 <                        shadcert = d0;
517 >                        getparam(s+2, "direct certainty", 'r', &shadcert);
518                          break;
519                  case 't':                       /* threshold */
520 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
396 <                                sprintf(buf, "direct threshold (%.6g): ",
397 <                                                shadthresh);
398 <                                (*dev->comout)(buf);
399 <                                (*dev->comin)(buf, NULL);
400 <                                if (sscanf(buf, "%lf", &d0) != 1)
401 <                                        break;
402 <                        }
403 <                        shadthresh = d0;
520 >                        getparam(s+2, "direct threshold", 'r', &shadthresh);
521                          break;
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 +                getparam(s+1, "black and white", 'b', &greyscale);
535 +                break;
536 +        case 'i':                       /* irradiance */
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) {
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, NULL);
420 <                                if (sscanf(buf, "%lf %lf %lf",
421 <                                                &d0, &d1, &d2) != 3)
422 <                                        break;
423 <                        }
424 <                        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): ",
429 <                                                ambacc);
430 <                                (*dev->comout)(buf);
431 <                                (*dev->comin)(buf, NULL);
432 <                                if (sscanf(buf, "%lf", &d0) != 1)
433 <                                        break;
434 <                        }
435 <                        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) {
439 <                                sprintf(buf, "ambient divisions (%d): ",
440 <                                                ambdiv);
441 <                                (*dev->comout)(buf);
442 <                                (*dev->comin)(buf, NULL);
443 <                                if (sscanf(buf, "%d", &i0) != 1)
444 <                                        break;
445 <                        }
446 <                        ambdiv = i0;
549 >                        getparam(s+2, "ambient divisions", 'i', &ambdiv);
550                          break;
551                  case 's':                       /* samples */
552 <                        if (sscanf(s+2, "%d", &i0) != 1) {
450 <                                sprintf(buf, "ambient super-samples (%d): ",
451 <                                                ambssamp);
452 <                                (*dev->comout)(buf);
453 <                                (*dev->comin)(buf, NULL);
454 <                                if (sscanf(buf, "%d", &i0) != 1)
455 <                                        break;
456 <                        }
457 <                        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) {
461 <                                sprintf(buf, "ambient bounces (%d): ",
462 <                                                ambounce);
463 <                                (*dev->comout)(buf);
464 <                                (*dev->comin)(buf, NULL);
465 <                                if (sscanf(buf, "%d", &i0) != 1)
466 <                                        break;
467 <                        }
468 <                        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): ",
473 <                                                ambres);
474 <                                (*dev->comout)(buf);
475 <                                (*dev->comin)(buf, NULL);
476 <                                if (sscanf(buf, "%d", &i0) != 1)
477 <                                        break;
478 <                        }
479 <                        ambres = i0;
480 <                        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);
491 <                                (*dev->comout)(buf);
492 <                                (*dev->comin)(buf, NULL);
493 <                                if (sscanf(buf, "%d", &i0) != 1)
494 <                                        break;
495 <                        }
496 <                        psample = i0;
497 <                        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): ",
502 <                                                maxdiff);
503 <                                (*dev->comout)(buf);
504 <                                (*dev->comin)(buf, NULL);
505 <                                if (sscanf(buf, "%lf", &d0) != 1)
506 <                                        break;
507 <                        }
508 <                        maxdiff = d0;
509 <                        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 530 | 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],
535 <                &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 540 | Line 616 | char  *s;
616                  if ((*dev->getcur)(&x, &y) == ABORT)
617                          return;
618  
619 <                viewray(thisray.rorg, thisray.rdir, &ourview,
620 <                                (x+.5)/hresolu, (y+.5)/vresolu);
621 <                
619 >                if (viewray(thisray.rorg, thisray.rdir, &ourview,
620 >                                (x+.5)/hresolu, (y+.5)/vresolu) < 0) {
621 >                        error(COMMAND, "not on image");
622 >                        return;
623 >                }
624 >
625          } else if (normalize(thisray.rdir) == 0.0) {
626                  error(COMMAND, "zero ray direction");
627                  return;
# Line 569 | 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 588 | 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 598 | 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");
625        free((char *)scanline);
722   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines