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.9 by greg, Tue Jun 13 10:57:45 1989 UTC vs.
Revision 2.9 by greg, Mon Apr 6 18:04:19 1992 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1987 Regents of the University of California */
1 > /* Copyright (c) 1992 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 +
34 + extern char  VersionID[];
35   extern char  *progname;
36 + extern char  *octname;
37  
38  
39   getframe(s)                             /* get a new frame */
40   char  *s;
41   {
42 <        int  x0, y0, x1, y1;
32 <
33 <        if (!strcmp("all", s)) {
34 <                pframe.l = pframe.d = 0;
35 <                pframe.r = ourview.hresolu;
36 <                pframe.u = ourview.vresolu;
37 <                pdepth = 0;
42 >        if (getrect(s, &pframe) < 0)
43                  return;
39        }
40        if (sscanf(s, "%d %d %d %d", &x0, &y0, &x1, &y1) != 4) {
41                if (dev->getcur == NULL)
42                        return;
43                (*dev->comout)("Pick first corner\n");
44                if ((*dev->getcur)(&x0, &y0) == ABORT)
45                        return;
46                (*dev->comout)("Pick second corner\n");
47                if ((*dev->getcur)(&x1, &y1) == ABORT)
48                        return;
49        }
50        if (x0 < x1) {
51                pframe.l = x0;
52                pframe.r = x1;
53        } else {
54                pframe.l = x1;
55                pframe.r = x0;
56        }
57        if (y0 < y1) {
58                pframe.d = y0;
59                pframe.u = y1;
60        } else {
61                pframe.d = y1;
62                pframe.u = y0;
63        }
64        if (pframe.l < 0) pframe.l = 0;
65        if (pframe.d < 0) pframe.d = 0;
66        if (pframe.r > ourview.hresolu) pframe.r = ourview.hresolu;
67        if (pframe.u > ourview.vresolu) pframe.u = ourview.vresolu;
68        if (pframe.l > pframe.r) pframe.l = pframe.r;
69        if (pframe.d > pframe.u) pframe.d = pframe.u;
44          pdepth = 0;
45   }
46  
47  
48 + getrepaint(s)                           /* get area and repaint */
49 + char  *s;
50 + {
51 +        RECT  box;
52 +
53 +        if (getrect(s, &box) < 0)
54 +                return;
55 +        paintrect(&ptrunk, 0, 0, hresolu, vresolu, &box);
56 + }
57 +
58 +
59   getview(s)                              /* get/show view parameters */
60   char  *s;
61   {
62          FILE  *fp;
63          char  buf[128];
64 <        char  *fname, *getpath();
64 >        char  *fname;
65          int  change = 0;
66          VIEW  nv;
67  
68 +        while (isspace(*s))
69 +                s++;
70 +        if (*s == '-') {                        /* command line parameters */
71 +                copystruct(&nv, &ourview);
72 +                if (sscanview(&nv, s))
73 +                        newview(&nv);
74 +                else
75 +                        error(COMMAND, "bad view option(s)");
76 +                return;
77 +        }
78          if (sscanf(s, "%s", buf) == 1) {        /* write parameters to a file */
79 <                if ((fname = getpath(buf, NULL)) == NULL ||
79 >                if ((fname = getpath(buf, NULL, 0)) == NULL ||
80                                  (fp = fopen(fname, "a")) == NULL) {
81                          sprintf(errmsg, "cannot open \"%s\"", buf);
82                          error(COMMAND, errmsg);
# Line 89 | Line 84 | char  *s;
84                  }
85                  fputs(progname, fp);
86                  fprintview(&ourview, fp);
87 +                fputs(sskip(s), fp);
88                  fputs("\n", fp);
89                  fclose(fp);
90                  return;
91          }
92          sprintf(buf, "view type (%c): ", ourview.type);
93          (*dev->comout)(buf);
94 <        (*dev->comin)(buf);
95 <        if (buf[0] == CTRL(C)) return;
94 >        (*dev->comin)(buf, NULL);
95 >        if (buf[0] == CTRL('C')) return;
96          if (buf[0] && buf[0] != ourview.type) {
97                  nv.type = buf[0];
98                  change++;
# Line 105 | Line 101 | char  *s;
101          sprintf(buf, "view point (%.6g %.6g %.6g): ",
102                          ourview.vp[0], ourview.vp[1], ourview.vp[2]);
103          (*dev->comout)(buf);
104 <        (*dev->comin)(buf);
105 <        if (buf[0] == CTRL(C)) return;
106 <        if (sscanf(buf, "%lf %lf %lf", &nv.vp[0], &nv.vp[1], &nv.vp[2]) == 3)
104 >        (*dev->comin)(buf, NULL);
105 >        if (buf[0] == CTRL('C')) return;
106 >        if (sscanvec(buf, nv.vp))
107                  change++;
108          else
109                  VCOPY(nv.vp, ourview.vp);
110          sprintf(buf, "view direction (%.6g %.6g %.6g): ",
111                          ourview.vdir[0], ourview.vdir[1], ourview.vdir[2]);
112          (*dev->comout)(buf);
113 <        (*dev->comin)(buf);
114 <        if (buf[0] == CTRL(C)) return;
115 <        if (sscanf(buf,"%lf %lf %lf",&nv.vdir[0],&nv.vdir[1],&nv.vdir[2]) == 3)
113 >        (*dev->comin)(buf, NULL);
114 >        if (buf[0] == CTRL('C')) return;
115 >        if (sscanvec(buf, nv.vdir))
116                  change++;
117          else
118                  VCOPY(nv.vdir, ourview.vdir);
119          sprintf(buf, "view up (%.6g %.6g %.6g): ",
120                          ourview.vup[0], ourview.vup[1], ourview.vup[2]);
121          (*dev->comout)(buf);
122 <        (*dev->comin)(buf);
123 <        if (buf[0] == CTRL(C)) return;
124 <        if (sscanf(buf,"%lf %lf %lf",&nv.vup[0],&nv.vup[1],&nv.vup[2]) == 3)
122 >        (*dev->comin)(buf, NULL);
123 >        if (buf[0] == CTRL('C')) return;
124 >        if (sscanvec(buf, nv.vup))
125                  change++;
126          else
127                  VCOPY(nv.vup, ourview.vup);
128          sprintf(buf, "view horiz and vert size (%.6g %.6g): ",
129                          ourview.horiz, ourview.vert);
130          (*dev->comout)(buf);
131 <        (*dev->comin)(buf);
132 <        if (buf[0] == CTRL(C)) return;
131 >        (*dev->comin)(buf, NULL);
132 >        if (buf[0] == CTRL('C')) return;
133          if (sscanf(buf, "%lf %lf", &nv.horiz, &nv.vert) == 2)
134                  change++;
135          else {
136                  nv.horiz = ourview.horiz; nv.vert = ourview.vert;
137          }
138 <        sprintf(buf, "x and y resolution (%d %d): ",
139 <                        ourview.hresolu, ourview.vresolu);
138 >        sprintf(buf, "view shift and lift (%.6g %.6g): ",
139 >                        ourview.hoff, ourview.voff);
140          (*dev->comout)(buf);
141 <        (*dev->comin)(buf);
142 <        if (buf[0] == CTRL(C)) return;
143 <        if (sscanf(buf, "%d %d", &nv.hresolu, &nv.vresolu) == 2)
141 >        (*dev->comin)(buf, NULL);
142 >        if (buf[0] == CTRL('C')) return;
143 >        if (sscanf(buf, "%lf %lf", &nv.hoff, &nv.voff) == 2)
144                  change++;
145          else {
146 <                nv.hresolu = ourview.hresolu; nv.vresolu = ourview.vresolu;
146 >                nv.hoff = ourview.hoff; nv.voff = ourview.voff;
147          }
148          if (change)
149                  newview(&nv);
# Line 158 | Line 154 | lastview(s)                            /* return to a previous view */
154   char  *s;
155   {
156          char  buf[128];
157 <        char  *fname, *getpath();
157 >        char  *fname;
158          int  success;
159          VIEW  nv;
160  
161          if (sscanf(s, "%s", buf) == 1) {        /* get parameters from a file */
162 <                bcopy(&stdview, &nv, sizeof(VIEW));
163 <                if ((fname = getpath(buf, NULL)) == NULL ||
164 <                                (success = viewfile(fname, &nv)) == -1) {
162 >                copystruct(&nv, &stdview);
163 >                if ((fname = getpath(buf, NULL, 0)) == NULL ||
164 >                                (success = viewfile(fname, &nv, NULL)) == -1) {
165                          sprintf(errmsg, "cannot open \"%s\"", buf);
166                          error(COMMAND, errmsg);
167                          return;
# Line 176 | Line 172 | char  *s;
172                          newview(&nv);
173                  return;
174          }
175 <        if (oldview.hresolu == 0) {     /* no old view! */
175 >        if (oldview.type == 0) {        /* no old view! */
176                  error(COMMAND, "no previous view");
177                  return;
178          }
179 <        bcopy(&ourview, &nv, sizeof(VIEW));
180 <        bcopy(&oldview, &ourview, sizeof(VIEW));
181 <        bcopy(&nv, &oldview, sizeof(VIEW));
179 >        copystruct(&nv, &ourview);
180 >        copystruct(&ourview, &oldview);
181 >        copystruct(&oldview, &nv);
182          newimage();
183   }
184  
185  
190 getinterest(s, direc, vec, mp)          /* get area of interest */
191 char  *s;
192 int  direc;
193 FVECT  vec;
194 double  *mp;
195 {
196        int  x, y;
197        RAY  thisray;
198        register int  i;
199
200        if (sscanf(s, "%lf", mp) != 1)
201                *mp = 1.0;
202        else if (*mp < -FTINY)          /* negative zoom is reduction */
203                *mp = -1.0 / *mp;
204        else if (*mp <= FTINY) {        /* too small */
205                error(COMMAND, "illegal magnification");
206                return(-1);
207        }
208        if (sscanf(s, "%*lf %lf %lf %lf", &vec[0], &vec[1], &vec[2]) != 3) {
209                if (dev->getcur == NULL)
210                        return(-1);
211                (*dev->comout)("Pick view center\n");
212                if ((*dev->getcur)(&x, &y) == ABORT)
213                        return(-1);
214                rayview(thisray.rorg, thisray.rdir, &ourview, x+.5, y+.5);
215                if (!direc || ourview.type == VT_PAR) {
216                        rayorigin(&thisray, NULL, PRIMARY, 1.0);
217                        if (!localhit(&thisray, &thescene)) {
218                                error(COMMAND, "not a local object");
219                                return(-1);
220                        }
221                }
222                if (direc)
223                        if (ourview.type == VT_PAR)
224                                for (i = 0; i < 3; i++)
225                                        vec[i] = thisray.rop[i] - ourview.vp[i];
226                        else
227                                VCOPY(vec, thisray.rdir);
228                else
229                        VCOPY(vec, thisray.rop);
230        } else if (direc)
231                        for (i = 0; i < 3; i++)
232                                vec[i] -= ourview.vp[i];
233        return(0);
234 }
235
236
186   getaim(s)                               /* aim camera */
187   char  *s;
188   {
# Line 243 | Line 192 | char  *s;
192  
193          if (getinterest(s, 1, nv.vdir, &zfact) < 0)
194                  return;
195 +        nv.type = ourview.type;
196          VCOPY(nv.vp, ourview.vp);
197          VCOPY(nv.vup, ourview.vup);
198 <        nv.hresolu = ourview.hresolu; nv.vresolu = ourview.vresolu;
199 <        if ((nv.type = ourview.type) == VT_PAR) {
200 <                nv.horiz = ourview.horiz / zfact;
251 <                nv.vert = ourview.vert / zfact;
252 <        } else {
253 <                nv.horiz = atan(tan(ourview.horiz*(PI/180./2.))/zfact) /
254 <                                (PI/180./2.);
255 <                nv.vert = atan(tan(ourview.vert*(PI/180./2.))/zfact) /
256 <                                (PI/180./2.);
257 <        }
198 >        nv.hoff = ourview.hoff; nv.voff = ourview.voff;
199 >        nv.horiz = ourview.horiz; nv.vert = ourview.vert;
200 >        zoomview(&nv, zfact);
201          newview(&nv);
202   }
203  
# Line 284 | Line 227 | char  *s;
227                  error(COMMAND, "missing angle");
228                  return;
229          }
230 +        nv.type = ourview.type;
231          VCOPY(nv.vp, ourview.vp);
232          VCOPY(nv.vup, ourview.vup);
233 <        nv.hresolu = ourview.hresolu; nv.vresolu = ourview.vresolu;
233 >        nv.hoff = ourview.hoff; nv.voff = ourview.voff;
234          spinvector(nv.vdir, ourview.vdir, ourview.vup, angle*(PI/180.));
235          if (elev != 0.0) {
236                  fcross(v1, nv.vdir, ourview.vup);
237                  normalize(v1);
238                  spinvector(nv.vdir, nv.vdir, v1, elev*(PI/180.));
239          }
240 <        if ((nv.type = ourview.type) == VT_PAR) {
241 <                nv.horiz = ourview.horiz / zfact;
298 <                nv.vert = ourview.vert / zfact;
299 <        } else {
300 <                nv.horiz = atan(tan(ourview.horiz*(PI/180./2.))/zfact) /
301 <                                (PI/180./2.);
302 <                nv.vert = atan(tan(ourview.vert*(PI/180./2.))/zfact) /
303 <                                (PI/180./2.);
304 <        }
240 >        nv.horiz = ourview.horiz; nv.vert = ourview.vert;
241 >        zoomview(&nv, zfact);
242          newview(&nv);
243   }
244  
# Line 326 | Line 263 | register char  *s;
263   getexposure(s)                          /* get new exposure */
264   char  *s;
265   {
329        double  atof(), pow(), fabs();
266          char  buf[128];
267          register char  *cp;
268          register PNODE  *p;
# Line 343 | Line 279 | char  *s;
279                  if ((*dev->getcur)(&x, &y) == ABORT)
280                          return;
281                  r.l = r.d = 0;
282 <                r.r = ourview.hresolu; r.u = ourview.vresolu;
282 >                r.r = hresolu; r.u = vresolu;
283                  p = findrect(x, y, &ptrunk, &r, -1);
284                  e = 1.0;
285          } else {
# Line 355 | Line 291 | char  *s;
291                          if (*cp == '\0') {      /* interactive */
292                                  sprintf(buf, "exposure (%lf): ", exposure);
293                                  (*dev->comout)(buf);
294 <                                (*dev->comin)(buf);
294 >                                (*dev->comin)(buf, NULL);
295                                  for (cp = buf; isspace(*cp); cp++)
296                                          ;
297                                  if (*cp == '\0')
# Line 371 | Line 307 | char  *s;
307                          e *= atof(cp);
308          }
309          if (p != NULL) {                /* relative setting */
310 <                if (bright(p->v) <= FTINY) {
310 >                if (bright(p->v) < 1e-25) {
311                          error(COMMAND, "cannot normalize to zero");
312                          return;
313                  }
# Line 385 | Line 321 | char  *s;
321   }
322  
323  
324 + getparam(str, dsc, typ, ptr)            /* get variable from user */
325 + char  *str, *dsc;
326 + int  typ;
327 + register union {int i; double d; COLOR C;}  *ptr;
328 + {
329 +        extern char  *index();
330 +        int  i0;
331 +        double  d0, d1, d2;
332 +        char  buf[48];
333 +
334 +        switch (typ) {
335 +        case 'i':                       /* integer */
336 +                if (sscanf(str, "%d", &i0) != 1) {
337 +                        (*dev->comout)(dsc);
338 +                        sprintf(buf, " (%d): ", ptr->i);
339 +                        (*dev->comout)(buf);
340 +                        (*dev->comin)(buf, NULL);
341 +                        if (sscanf(buf, "%d", &i0) != 1)
342 +                                return(0);
343 +                }
344 +                ptr->i = i0;
345 +                return(1);
346 +        case 'r':                       /* real */
347 +                if (sscanf(str, "%lf", &d0) != 1) {
348 +                        (*dev->comout)(dsc);
349 +                        sprintf(buf, " (%.6g): ", ptr->d);
350 +                        (*dev->comout)(buf);
351 +                        (*dev->comin)(buf, NULL);
352 +                        if (sscanf(buf, "%lf", &d0) != 1)
353 +                                return(0);
354 +                }
355 +                ptr->d = d0;
356 +                return(1);
357 +        case 'b':                       /* boolean */
358 +                if (sscanf(str, "%1s", buf) != 1) {
359 +                        (*dev->comout)(dsc);
360 +                        sprintf(buf, "? (%c): ", ptr->i ? 'y' : 'n');
361 +                        (*dev->comout)(buf);
362 +                        (*dev->comin)(buf, NULL);
363 +                        if (buf[0] == '\0' ||
364 +                                        index("yY+1tTnN-0fF", buf[0]) == NULL)
365 +                                return(0);
366 +                }
367 +                ptr->i = index("yY+1tT", buf[0]) != NULL;
368 +                return(1);
369 +        case 'C':                       /* color */
370 +                if (sscanf(str, "%lf %lf %lf", &d0, &d1, &d2) != 3) {
371 +                        (*dev->comout)(dsc);
372 +                        sprintf(buf, " (%.6g %.6g %.6g): ",
373 +                                        colval(ptr->C,RED),
374 +                                        colval(ptr->C,GRN),
375 +                                        colval(ptr->C,BLU));
376 +                        (*dev->comout)(buf);
377 +                        (*dev->comin)(buf, NULL);
378 +                        if (sscanf(buf, "%lf %lf %lf", &d0, &d1, &d2) != 3)
379 +                                return(0);
380 +                }
381 +                setcolor(ptr->C, d0, d1, d2);
382 +                return(1);
383 +        }
384 + }
385 +
386 +
387   setparam(s)                             /* get/set program parameter */
388   register char  *s;
389   {
# Line 397 | Line 396 | register char  *s;
396          extern double  shadcert;
397          extern COLOR  ambval;
398          extern double  ambacc;
400        extern double  minarad;
399          extern int  ambres;
400          extern int  ambdiv;
401          extern int  ambssamp;
402          extern int  ambounce;
403 <        int  i0;
404 <        double  d0, d1, d2;
403 >        extern int  directinvis;
404 >        extern double  srcsizerat;
405 >        extern int  do_irrad;
406 >        extern double  specjitter;
407 >        extern double  specthresh;
408          char  buf[128];
409          
410          if (s[0] == '\0') {
411 <                (*dev->comout)("aa ab ad ar as av dc dj dt lr lw sp st: ");
412 <                (*dev->comin)(buf);
411 >                (*dev->comout)(
412 >                "aa ab ad ar as av b dc di dj ds dt i lr lw ps pt sj st: ");
413 >                (*dev->comin)(buf, NULL);
414                  s = buf;
415          }
416          switch (s[0]) {
417          case 'l':                       /* limit */
418                  switch (s[1]) {
419                  case 'w':                       /* weight */
420 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
419 <                                sprintf(buf, "limit weight (%.6g): ",
420 <                                                minweight);
421 <                                (*dev->comout)(buf);
422 <                                (*dev->comin)(buf);
423 <                                if (sscanf(buf, "%lf", &d0) != 1)
424 <                                        break;
425 <                        }
426 <                        minweight = d0;
420 >                        getparam(s+2, "limit weight", 'r', &minweight);
421                          break;
422                  case 'r':                       /* reflection */
423 <                        if (sscanf(s+2, "%d", &i0) != 1) {
430 <                                sprintf(buf, "limit reflection (%d): ",
431 <                                                maxdepth);
432 <                                (*dev->comout)(buf);
433 <                                (*dev->comin)(buf);
434 <                                if (sscanf(buf, "%d", &i0) != 1)
435 <                                        break;
436 <                        }
437 <                        maxdepth = i0;
423 >                        getparam(s+2, "limit reflection", 'i', &maxdepth);
424                          break;
425                  default:
426                          goto badparam;
# Line 443 | Line 429 | register char  *s;
429          case 'd':                       /* direct */
430                  switch (s[1]) {
431                  case 'j':                       /* jitter */
432 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
447 <                                sprintf(buf, "direct jitter (%.6g): ",
448 <                                                dstrsrc);
449 <                                (*dev->comout)(buf);
450 <                                (*dev->comin)(buf);
451 <                                if (sscanf(buf, "%lf", &d0) != 1)
452 <                                        break;
453 <                        }
454 <                        dstrsrc = d0;
432 >                        getparam(s+2, "direct jitter", 'r', &dstrsrc);
433                          break;
434                  case 'c':                       /* certainty */
435 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
458 <                                sprintf(buf, "direct certainty (%.6g): ",
459 <                                                shadcert);
460 <                                (*dev->comout)(buf);
461 <                                (*dev->comin)(buf);
462 <                                if (sscanf(buf, "%lf", &d0) != 1)
463 <                                        break;
464 <                        }
465 <                        shadcert = d0;
435 >                        getparam(s+2, "direct certainty", 'r', &shadcert);
436                          break;
437                  case 't':                       /* threshold */
438 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
469 <                                sprintf(buf, "direct threshold (%.6g): ",
470 <                                                shadthresh);
471 <                                (*dev->comout)(buf);
472 <                                (*dev->comin)(buf);
473 <                                if (sscanf(buf, "%lf", &d0) != 1)
474 <                                        break;
475 <                        }
476 <                        shadthresh = d0;
438 >                        getparam(s+2, "direct threshold", 'r', &shadthresh);
439                          break;
440 +                case 'i':                       /* invisibility */
441 +                        getparam(s+2, "direct invisibility",
442 +                                        'b', &directinvis);
443 +                        break;
444 +                case 's':                       /* sampling */
445 +                        getparam(s+2, "direct sampling", 'r', &srcsizerat);
446 +                        break;
447                  default:
448                          goto badparam;
449                  }
450                  break;
451 +        case 'b':                       /* black and white */
452 +                getparam(s+1, "black and white", 'b', &greyscale);
453 +                break;
454 +        case 'i':                       /* irradiance */
455 +                getparam(s+1, "irradiance", 'b', &do_irrad);
456 +                break;
457          case 'a':                       /* ambient */
458                  switch (s[1]) {
459                  case 'v':                       /* value */
460 <                        if (sscanf(s+2, "%lf %lf %lf", &d0, &d1, &d2) != 3) {
486 <                                sprintf(buf,
487 <                                        "ambient value (%.6g %.6g %.6g): ",
488 <                                                colval(ambval,RED),
489 <                                                colval(ambval,GRN),
490 <                                                colval(ambval,BLU));
491 <                                (*dev->comout)(buf);
492 <                                (*dev->comin)(buf);
493 <                                if (sscanf(buf, "%lf %lf %lf",
494 <                                                &d0, &d1, &d2) != 3)
495 <                                        break;
496 <                        }
497 <                        setcolor(ambval, d0, d1, d2);
460 >                        getparam(s+2, "ambient value", 'C', ambval);
461                          break;
462                  case 'a':                       /* accuracy */
463 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
501 <                                sprintf(buf, "ambient accuracy (%.6g): ",
502 <                                                ambacc);
503 <                                (*dev->comout)(buf);
504 <                                (*dev->comin)(buf);
505 <                                if (sscanf(buf, "%lf", &d0) != 1)
506 <                                        break;
507 <                        }
508 <                        ambacc = d0;
463 >                        getparam(s+2, "ambient accuracy", 'r', &ambacc);
464                          break;
465                  case 'd':                       /* divisions */
466 <                        if (sscanf(s+2, "%d", &i0) != 1) {
512 <                                sprintf(buf, "ambient divisions (%d): ",
513 <                                                ambdiv);
514 <                                (*dev->comout)(buf);
515 <                                (*dev->comin)(buf);
516 <                                if (sscanf(buf, "%d", &i0) != 1)
517 <                                        break;
518 <                        }
519 <                        ambdiv = i0;
466 >                        getparam(s+2, "ambient divisions", 'i', &ambdiv);
467                          break;
468                  case 's':                       /* samples */
469 <                        if (sscanf(s+2, "%d", &i0) != 1) {
523 <                                sprintf(buf, "ambient super-samples (%d): ",
524 <                                                ambssamp);
525 <                                (*dev->comout)(buf);
526 <                                (*dev->comin)(buf);
527 <                                if (sscanf(buf, "%d", &i0) != 1)
528 <                                        break;
529 <                        }
530 <                        ambssamp = i0;
469 >                        getparam(s+2, "ambient super-samples", 'i', &ambssamp);
470                          break;
471                  case 'b':                       /* bounces */
472 <                        if (sscanf(s+2, "%d", &i0) != 1) {
534 <                                sprintf(buf, "ambient bounces (%d): ",
535 <                                                ambounce);
536 <                                (*dev->comout)(buf);
537 <                                (*dev->comin)(buf);
538 <                                if (sscanf(buf, "%d", &i0) != 1)
539 <                                        break;
540 <                        }
541 <                        ambounce = i0;
472 >                        getparam(s+2, "ambient bounces", 'i', &ambounce);
473                          break;
474                  case 'r':
475 <                        if (sscanf(s+2, "%d", &i0) != 1) {
476 <                                sprintf(buf, "ambient resolution (%d): ",
546 <                                                ambres);
547 <                                (*dev->comout)(buf);
548 <                                (*dev->comin)(buf);
549 <                                if (sscanf(buf, "%d", &i0) != 1)
550 <                                        break;
551 <                        }
552 <                        ambres = i0;
553 <                        minarad = ambres > 0 ? thescene.cusize/ambres : 0.0;
475 >                        if (getparam(s+2, "ambient resolution", 'i', &ambres))
476 >                                setambres(ambres);
477                          break;
478                  default:
479                          goto badparam;
480                  }
481                  break;
482 <        case 's':                       /* sample */
482 >        case 'p':                       /* pixel */
483                  switch (s[1]) {
484 <                case 'p':                       /* pixel */
485 <                        if (sscanf(s+2, "%d", &i0) != 1) {
486 <                                sprintf(buf, "sample pixel (%d): ", psample);
564 <                                (*dev->comout)(buf);
565 <                                (*dev->comin)(buf);
566 <                                if (sscanf(buf, "%d", &i0) != 1)
567 <                                        break;
568 <                        }
569 <                        psample = i0;
570 <                        pdepth = 0;
484 >                case 's':                       /* sample */
485 >                        if (getparam(s+2, "pixel sample", 'i', &psample))
486 >                                pdepth = 0;
487                          break;
488                  case 't':                       /* threshold */
489 <                        if (sscanf(s+2, "%lf", &d0) != 1) {
490 <                                sprintf(buf, "sample threshold (%.6g): ",
575 <                                                maxdiff);
576 <                                (*dev->comout)(buf);
577 <                                (*dev->comin)(buf);
578 <                                if (sscanf(buf, "%lf", &d0) != 1)
579 <                                        break;
580 <                        }
581 <                        maxdiff = d0;
582 <                        pdepth = 0;
489 >                        if (getparam(s+2, "pixel threshold", 'r', &maxdiff))
490 >                                pdepth = 0;
491                          break;
492                  default:
493                          goto badparam;
494                  }
495                  break;
496 +        case 's':                       /* specular */
497 +                switch (s[1]) {
498 +                case 'j':                       /* jitter */
499 +                        getparam(s+2, "specular jitter", 'r', &specjitter);
500 +                        break;
501 +                case 't':                       /* threshold */
502 +                        getparam(s+2, "specular threshold", 'r', &specthresh);
503 +                        break;
504 +                default:
505 +                        goto badparam;
506 +                }
507 +                break;
508          case '\0':                      /* nothing */
509                  break;
510          default:;
511   badparam:
512 +                *sskip(s) = '\0';
513                  sprintf(errmsg, "%s: unknown variable", s);
514                  error(COMMAND, errmsg);
515                  break;
# Line 603 | Line 524 | char  *s;
524          int  x, y;
525          RAY  thisray;
526  
527 <        if (sscanf(s, "%lf %lf %lf %lf %lf %lf",
528 <                &thisray.rorg[0], &thisray.rorg[1], &thisray.rorg[2],
608 <                &thisray.rdir[0], &thisray.rdir[1], &thisray.rdir[2]) != 6) {
527 >        if (!sscanvec(s, thisray.rorg) ||
528 >                        !sscanvec(sskip(sskip(sskip(s))), thisray.rdir)) {
529  
530                  if (dev->getcur == NULL)
531                          return;
# Line 613 | Line 533 | char  *s;
533                  if ((*dev->getcur)(&x, &y) == ABORT)
534                          return;
535  
536 <                rayview(thisray.rorg, thisray.rdir, &ourview, x+.5, y+.5);
537 <                
536 >                if (viewray(thisray.rorg, thisray.rdir, &ourview,
537 >                                (x+.5)/hresolu, (y+.5)/vresolu) < 0) {
538 >                        error(COMMAND, "not on image");
539 >                        return;
540 >                }
541 >
542          } else if (normalize(thisray.rdir) == 0.0) {
543                  error(COMMAND, "zero ray direction");
544                  return;
# Line 632 | Line 556 | char  *s;
556                                  ofun[thisray.ro->otype].funame,
557                                  thisray.ro->oname);
558                  (*dev->comout)(buf);
559 <                (*dev->comin)(buf);
559 >                (*dev->comin)(buf, NULL);
560                  if (thisray.rot >= FHUGE)
561                          (*dev->comout)("at infinity");
562                  else {
# Line 640 | Line 564 | char  *s;
564                                          thisray.rop[1], thisray.rop[2]);
565                          (*dev->comout)(buf);
566                  }
567 <                (*dev->comin)(buf);
568 <                sprintf(buf, "with value (%.6g %.6g %.6g)",
567 >                (*dev->comin)(buf, NULL);
568 >                sprintf(buf, "value (%.5g %.5g %.5g) (%.1fL)",
569                                  colval(thisray.rcol,RED),
570                                  colval(thisray.rcol,GRN),
571 <                                colval(thisray.rcol,BLU));
571 >                                colval(thisray.rcol,BLU),
572 >                                luminance(thisray.rcol));
573                  (*dev->comout)(buf);
574          }
575 <        (*dev->comin)(buf);
575 >        (*dev->comin)(buf, NULL);
576   }
577  
578  
# Line 655 | Line 580 | writepict(s)                           /* write the picture to a file */
580   char  *s;
581   {
582          static char  buf[128];
583 <        char  *fname, *getpath();
583 >        char  *fname;
584          FILE  *fp;
585          COLR  *scanline;
586          int  y;
# Line 664 | Line 589 | char  *s;
589                  error(COMMAND, "no file");
590                  return;
591          }
592 <        if ((fname = getpath(buf, NULL)) == NULL ||
592 >        if ((fname = getpath(buf, NULL, 0)) == NULL ||
593                          (fp = fopen(fname, "w")) == NULL) {
594                  sprintf(errmsg, "cannot open \"%s\"", buf);
595                  error(COMMAND, errmsg);
# Line 676 | Line 601 | char  *s;
601                                                  /* write header */
602          fputs(progname, fp);
603          fprintview(&ourview, fp);
604 <        fputs("\n", fp);
604 >        if (octname != NULL)
605 >                fprintf(fp, " %s\n", octname);
606 >        else
607 >                putc('\n', fp);
608 >        fprintf(fp, "SOFTWARE= %s\n", VersionID);
609          if (exposure != 1.0)
610 <                fprintf(fp, "EXPOSURE=%e\n", exposure);
611 <        fprintf(fp, "\n-Y %d +X %d\n", ourview.vresolu, ourview.hresolu);
610 >                fputexpos(exposure, fp);
611 >        if (dev->pixaspect != 1.0)
612 >                fputaspect(dev->pixaspect, fp);
613 >        fputformat(COLRFMT, fp);
614 >        putc('\n', fp);
615 >        fprtresolu(hresolu, vresolu, fp);
616  
617 <        scanline = (COLR *)malloc(ourview.hresolu*sizeof(COLR));
618 <        if (scanline == NULL)
619 <                error(SYSTEM, "out of memory in writepict");
620 <        for (y = ourview.vresolu-1; y >= 0; y--) {
621 <                getpictcolrs(y, scanline, &ptrunk,
622 <                                ourview.hresolu, ourview.vresolu);
623 <                if (fwritecolrs(scanline, ourview.hresolu, fp) < 0)
617 >        scanline = (COLR *)malloc(hresolu*sizeof(COLR));
618 >        if (scanline == NULL) {
619 >                error(COMMAND, "not enough memory!");
620 >                fclose(fp);
621 >                unlink(fname);
622 >                return;
623 >        }
624 >        for (y = vresolu-1; y >= 0; y--) {
625 >                getpictcolrs(y, scanline, &ptrunk, hresolu, vresolu);
626 >                if (fwritecolrs(scanline, hresolu, fp) < 0)
627                          break;
628          }
629 +        free((char *)scanline);
630          if (fclose(fp) < 0)
631                  error(COMMAND, "write error");
695        free((char *)scanline);
632   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines