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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines