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 2.43 by schorsch, Tue Mar 30 16:13:01 2004 UTC vs.
Revision 2.53 by greg, Mon Aug 22 07:02:21 2005 UTC

# Line 14 | Line 14 | static const char      RCSid[] = "$Id$";
14  
15   #include  "platform.h"
16   #include  "ray.h"
17 + #include  "source.h"
18   #include  "ambient.h"
19   #include  "otypes.h"
20   #include  "rpaint.h"
# Line 68 | Line 69 | getview(                               /* get/show view parameters */
69          char  buf[128];
70          char  *fname;
71          int  change = 0;
72 <        VIEW  nv;
72 >        VIEW  nv = ourview;
73  
74          while (isspace(*s))
75                  s++;
76          if (*s == '-') {                        /* command line parameters */
76                nv = ourview;
77                  if (sscanview(&nv, s))
78                          newview(&nv);
79                  else
# Line 101 | Line 101 | getview(                               /* get/show view parameters */
101          if (buf[0] && buf[0] != ourview.type) {
102                  nv.type = buf[0];
103                  change++;
104 <        } else
105 <                nv.type = ourview.type;
104 >        }
105          sprintf(buf, "view point (%.6g %.6g %.6g): ",
106                          ourview.vp[0], ourview.vp[1], ourview.vp[2]);
107          (*dev->comout)(buf);
# Line 110 | Line 109 | getview(                               /* get/show view parameters */
109          if (buf[0] == CTRL('C')) return;
110          if (sscanvec(buf, nv.vp))
111                  change++;
113        else
114                VCOPY(nv.vp, ourview.vp);
112          sprintf(buf, "view direction (%.6g %.6g %.6g): ",
113 <                        ourview.vdir[0], ourview.vdir[1], ourview.vdir[2]);
113 >                        ourview.vdir[0]*ourview.vdist,
114 >                        ourview.vdir[1]*ourview.vdist,
115 >                        ourview.vdir[2]*ourview.vdist);
116          (*dev->comout)(buf);
117          (*dev->comin)(buf, NULL);
118          if (buf[0] == CTRL('C')) return;
119 <        if (sscanvec(buf, nv.vdir))
119 >        if (sscanvec(buf, nv.vdir)) {
120 >                nv.vdist = 1.;
121                  change++;
122 <        else
123 <                VCOPY(nv.vdir, ourview.vdir);
122 >        }
123          sprintf(buf, "view up (%.6g %.6g %.6g): ",
124                          ourview.vup[0], ourview.vup[1], ourview.vup[2]);
125          (*dev->comout)(buf);
# Line 128 | Line 127 | getview(                               /* get/show view parameters */
127          if (buf[0] == CTRL('C')) return;
128          if (sscanvec(buf, nv.vup))
129                  change++;
131        else
132                VCOPY(nv.vup, ourview.vup);
130          sprintf(buf, "view horiz and vert size (%.6g %.6g): ",
131                          ourview.horiz, ourview.vert);
132          (*dev->comout)(buf);
# Line 137 | Line 134 | getview(                               /* get/show view parameters */
134          if (buf[0] == CTRL('C')) return;
135          if (sscanf(buf, "%lf %lf", &nv.horiz, &nv.vert) == 2)
136                  change++;
140        else {
141                nv.horiz = ourview.horiz; nv.vert = ourview.vert;
142        }
137          sprintf(buf, "fore and aft clipping plane (%.6g %.6g): ",
138                          ourview.vfore, ourview.vaft);
139          (*dev->comout)(buf);
# Line 147 | Line 141 | getview(                               /* get/show view parameters */
141          if (buf[0] == CTRL('C')) return;
142          if (sscanf(buf, "%lf %lf", &nv.vfore, &nv.vaft) == 2)
143                  change++;
150        else {
151                nv.vfore = ourview.vfore; nv.vaft = ourview.vaft;
152        }
144          sprintf(buf, "view shift and lift (%.6g %.6g): ",
145                          ourview.hoff, ourview.voff);
146          (*dev->comout)(buf);
# Line 157 | Line 148 | getview(                               /* get/show view parameters */
148          if (buf[0] == CTRL('C')) return;
149          if (sscanf(buf, "%lf %lf", &nv.hoff, &nv.voff) == 2)
150                  change++;
160        else {
161                nv.hoff = ourview.hoff; nv.voff = ourview.voff;
162        }
151          if (change)
152                  newview(&nv);
153   }
# Line 286 | Line 274 | getaim(                                /* aim camera */
274          char  *s
275   )
276   {
277 +        VIEW  nv = ourview;
278          double  zfact;
290        VIEW  nv;
279  
280          if (getinterest(s, 1, nv.vdir, &zfact) < 0)
281                  return;
294        nv.type = ourview.type;
295        VCOPY(nv.vp, ourview.vp);
296        VCOPY(nv.vup, ourview.vup);
297        nv.horiz = ourview.horiz; nv.vert = ourview.vert;
298        nv.vfore = ourview.vfore; nv.vaft = ourview.vaft;
299        nv.hoff = ourview.hoff; nv.voff = ourview.voff;
282          zoomview(&nv, zfact);
283          newview(&nv);
284   }
285  
286  
287   extern void
288 + getfocus(                               /* set focus distance */
289 +        char *s
290 + )
291 + {
292 +        char  buf[64];
293 +        FVECT  vc;
294 +        double  dist;
295 +
296 +        if (sscanf(s, "%lf", &dist) < 1) {
297 +                int     x, y;
298 +                RAY     thisray;
299 +                if (dev->getcur == NULL)
300 +                        return;
301 +                (*dev->comout)("Pick focus point\n");
302 +                if ((*dev->getcur)(&x, &y) == ABORT)
303 +                        return;
304 +                if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir,
305 +                        &ourview, (x+.5)/hresolu, (y+.5)/vresolu)) < -FTINY) {
306 +                        error(COMMAND, "not on image");
307 +                        return;
308 +                }
309 +                rayorigin(&thisray, PRIMARY, NULL, NULL);
310 +                if (!localhit(&thisray, &thescene)) {
311 +                        error(COMMAND, "not a local object");
312 +                        return;
313 +                }
314 +                dist = thisray.rot;
315 +        } else if (dist <= .0) {
316 +                error(COMMAND, "focus distance must be positive");
317 +                return;
318 +        }
319 +        ourview.vdist = dist;
320 +        sprintf(buf, "Focus distance set to %f\n", dist);
321 +        (*dev->comout)(buf);
322 + }
323 +
324 +
325 + extern void
326   getmove(                                /* move camera */
327          char  *s
328   )
# Line 321 | Line 341 | getrotate(                             /* rotate camera */
341          char  *s
342   )
343   {
344 <        VIEW  nv;
344 >        VIEW  nv = ourview;
345          FVECT  v1;
346          double  angle, elev, zfact;
347          
# Line 330 | Line 350 | getrotate(                             /* rotate camera */
350                  error(COMMAND, "missing angle");
351                  return;
352          }
333        nv.type = ourview.type;
334        VCOPY(nv.vp, ourview.vp);
335        VCOPY(nv.vup, ourview.vup);
336        nv.hoff = ourview.hoff; nv.voff = ourview.voff;
337        nv.vfore = ourview.vfore; nv.vaft = ourview.vaft;
353          spinvector(nv.vdir, ourview.vdir, ourview.vup, angle*(PI/180.));
354          if (elev != 0.0) {
355                  fcross(v1, nv.vdir, ourview.vup);
356                  normalize(v1);
357                  spinvector(nv.vdir, nv.vdir, v1, elev*(PI/180.));
358          }
344        nv.horiz = ourview.horiz; nv.vert = ourview.vert;
359          zoomview(&nv, zfact);
360          newview(&nv);
361   }
# Line 511 | Line 525 | setparam(                              /* get/set program parameter */
525          
526          if (s[0] == '\0') {
527                  (*dev->comout)(
528 <                "aa ab ad ar as av aw b dc dv dj ds dt i lr lw me ma mg ms ps pt sj st bv: ");
528 >                "aa ab ad ar as av aw b bv dc dv dj ds dt i lr lw me ma mg ms ps pt sj st u: ");
529                  (*dev->comin)(buf, NULL);
530                  s = buf;
531          }
532          switch (s[0]) {
533 +        case 'u':                       /* uncorrelated sampling */
534 +                getparam(s+1, "uncorrelated sampling", 'b',
535 +                                (void *)&rand_samp);
536 +                break;
537          case 'l':                       /* limit */
538                  switch (s[1]) {
539                  case 'w':                       /* weight */
# Line 708 | Line 726 | char  *s;
726                  return;
727          }
728  
729 <        rayorigin(&thisray, NULL, PRIMARY, 1.0);
729 >        rayorigin(&thisray, PRIMARY, NULL, NULL);
730          
731          rayvalue(&thisray);
732  
733          if (thisray.ro == NULL)
734                  (*dev->comout)("ray hit nothing");
735          else {
736 <                sprintf(buf, "ray hit %s%s %s \"%s\"",
737 <                                thisray.rod < 0.0 ? "back of " : "",
738 <                                thisray.ro->omod == OVOID ? VOIDID :
739 <                                        objptr(thisray.ro->omod)->oname,
736 >                OBJREC  *mat = NULL;
737 >                OBJREC  *mod = NULL;
738 >                char    matspec[256];
739 >                matspec[0] = '\0';
740 >                if (thisray.ro->omod != OVOID) {
741 >                        mod = objptr(thisray.ro->omod);
742 >                        mat = findmaterial(mod);
743 >                }
744 >                if (thisray.rod < 0.0)
745 >                        strcpy(matspec, "back of ");
746 >                if (mod != NULL) {
747 >                        strcat(matspec, mod->oname);
748 >                        if (mat != mod && mat != NULL)
749 >                                sprintf(matspec+strlen(matspec),
750 >                                        " (%s)", mat->oname);
751 >                } else
752 >                        strcat(matspec, VOIDID);
753 >                sprintf(buf, "ray hit %s %s \"%s\"", matspec,
754                                  ofun[thisray.ro->otype].funame,
755                                  thisray.ro->oname);
756                  if ((ino = objptr(thisray.robj)) != thisray.ro)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines