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.38 by greg, Sat Feb 22 02:07:29 2003 UTC vs.
Revision 2.54 by schorsch, Wed Jun 7 17:52:04 2006 UTC

# Line 7 | Line 7 | static const char      RCSid[] = "$Id$";
7   *  External symbols declared in rpaint.h
8   */
9  
10 < /* ====================================================================
11 < * The Radiance Software License, Version 1.0
12 < *
13 < * Copyright (c) 1990 - 2002 The Regents of the University of California,
14 < * through Lawrence Berkeley National Laboratory.   All rights reserved.
15 < *
16 < * Redistribution and use in source and binary forms, with or without
17 < * modification, are permitted provided that the following conditions
18 < * are met:
19 < *
20 < * 1. Redistributions of source code must retain the above copyright
21 < *         notice, this list of conditions and the following disclaimer.
22 < *
23 < * 2. Redistributions in binary form must reproduce the above copyright
24 < *       notice, this list of conditions and the following disclaimer in
25 < *       the documentation and/or other materials provided with the
26 < *       distribution.
27 < *
28 < * 3. The end-user documentation included with the redistribution,
29 < *           if any, must include the following acknowledgment:
30 < *             "This product includes Radiance software
31 < *                 (http://radsite.lbl.gov/)
32 < *                 developed by the Lawrence Berkeley National Laboratory
33 < *               (http://www.lbl.gov/)."
34 < *       Alternately, this acknowledgment may appear in the software itself,
35 < *       if and wherever such third-party acknowledgments normally appear.
36 < *
37 < * 4. The names "Radiance," "Lawrence Berkeley National Laboratory"
38 < *       and "The Regents of the University of California" must
39 < *       not be used to endorse or promote products derived from this
40 < *       software without prior written permission. For written
41 < *       permission, please contact [email protected].
42 < *
43 < * 5. Products derived from this software may not be called "Radiance",
44 < *       nor may "Radiance" appear in their name, without prior written
45 < *       permission of Lawrence Berkeley National Laboratory.
46 < *
47 < * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
48 < * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
49 < * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
50 < * DISCLAIMED.   IN NO EVENT SHALL Lawrence Berkeley National Laboratory OR
51 < * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
52 < * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
53 < * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
54 < * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
55 < * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
56 < * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
57 < * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 < * SUCH DAMAGE.
59 < * ====================================================================
60 < *
61 < * This software consists of voluntary contributions made by many
62 < * individuals on behalf of Lawrence Berkeley National Laboratory.   For more
63 < * information on Lawrence Berkeley National Laboratory, please see
64 < * <http://www.lbl.gov/>.
65 < */
10 > #include "copyright.h"
11  
12 < #include  "ray.h"
12 > #include  <ctype.h>
13 > #include  <string.h>
14  
15 + #include  "platform.h"
16 + #include  "ray.h"
17 + #include  "source.h"
18 + #include  "ambient.h"
19   #include  "otypes.h"
70
20   #include  "rpaint.h"
21  
73 #include  <ctype.h>
74
22   extern int  psample;                    /* pixel sample size */
23   extern double  maxdiff;                 /* max. sample difference */
24  
# Line 89 | Line 36 | extern char  *progname;
36   extern char  *octname;
37  
38  
39 < void
40 < getframe(s)                             /* get a new frame */
41 < char  *s;
39 > extern void
40 > getframe(                               /* get a new frame */
41 >        char  *s
42 > )
43   {
44          if (getrect(s, &pframe) < 0)
45                  return;
# Line 99 | Line 47 | char  *s;
47   }
48  
49  
50 < void
51 < getrepaint(s)                           /* get area and repaint */
52 < char  *s;
50 > extern void
51 > getrepaint(                             /* get area and repaint */
52 >        char  *s
53 > )
54   {
55          RECT  box;
56  
# Line 111 | Line 60 | char  *s;
60   }
61  
62  
63 < void
64 < getview(s)                              /* get/show view parameters */
65 < char  *s;
63 > extern void
64 > getview(                                /* get/show view parameters */
65 >        char  *s
66 > )
67   {
68          FILE  *fp;
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 */
127                copystruct(&nv, &ourview);
77                  if (sscanview(&nv, s))
78                          newview(&nv);
79                  else
# Line 152 | Line 101 | char  *s;
101          if (buf[0] && buf[0] != ourview.type) {
102                  nv.type = buf[0];
103                  change++;
104 <        } else
156 <                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 161 | Line 109 | char  *s;
109          if (buf[0] == CTRL('C')) return;
110          if (sscanvec(buf, nv.vp))
111                  change++;
164        else
165                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
174 <                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 179 | Line 127 | char  *s;
127          if (buf[0] == CTRL('C')) return;
128          if (sscanvec(buf, nv.vup))
129                  change++;
182        else
183                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 188 | Line 134 | char  *s;
134          if (buf[0] == CTRL('C')) return;
135          if (sscanf(buf, "%lf %lf", &nv.horiz, &nv.vert) == 2)
136                  change++;
191        else {
192                nv.horiz = ourview.horiz; nv.vert = ourview.vert;
193        }
137          sprintf(buf, "fore and aft clipping plane (%.6g %.6g): ",
138                          ourview.vfore, ourview.vaft);
139          (*dev->comout)(buf);
# Line 198 | Line 141 | char  *s;
141          if (buf[0] == CTRL('C')) return;
142          if (sscanf(buf, "%lf %lf", &nv.vfore, &nv.vaft) == 2)
143                  change++;
201        else {
202                nv.vfore = ourview.vfore; nv.vaft = ourview.vaft;
203        }
144          sprintf(buf, "view shift and lift (%.6g %.6g): ",
145                          ourview.hoff, ourview.voff);
146          (*dev->comout)(buf);
# Line 208 | Line 148 | char  *s;
148          if (buf[0] == CTRL('C')) return;
149          if (sscanf(buf, "%lf %lf", &nv.hoff, &nv.voff) == 2)
150                  change++;
211        else {
212                nv.hoff = ourview.hoff; nv.voff = ourview.voff;
213        }
151          if (change)
152                  newview(&nv);
153   }
154  
155  
156 < void
157 < lastview(s)                             /* return to a previous view */
158 < char  *s;
156 > extern void
157 > lastview(                               /* return to a previous view */
158 >        char  *s
159 > )
160   {
161          char  buf[128];
162          char  *fname;
# Line 226 | Line 164 | char  *s;
164          VIEW  nv;
165  
166          if (sscanf(s, "%s", buf) == 1) {        /* get parameters from a file */
167 <                copystruct(&nv, &stdview);
167 >                nv = stdview;
168                  if ((fname = getpath(buf, "", R_OK)) == NULL ||
169                                  (success = viewfile(fname, &nv, NULL)) == -1) {
170                          sprintf(errmsg, "cannot open \"%s\"", buf);
# Line 243 | Line 181 | char  *s;
181                  error(COMMAND, "no previous view");
182                  return;
183          }
184 <        copystruct(&nv, &ourview);
185 <        copystruct(&ourview, &oldview);
186 <        copystruct(&oldview, &nv);
184 >        nv = ourview;
185 >        ourview = oldview;
186 >        oldview = nv;
187          newimage();
188   }
189  
190  
191 < void
192 < saveview(s)                             /* save view to rad file */
193 < char  *s;
191 > extern void
192 > saveview(                               /* save view to rad file */
193 >        char  *s
194 > )
195   {
196          char  view[64];
197          char  *fname;
# Line 287 | Line 226 | char  *s;
226   }
227  
228  
229 < void
230 < loadview(s)                             /* load view from rad file */
231 < char  *s;
229 > extern void
230 > loadview(                               /* load view from rad file */
231 >        char  *s
232 > )
233   {
234          char  buf[512];
235          char  *fname;
# Line 320 | Line 260 | char  *s;
260          buf[0] = '\0';
261          fgets(buf, sizeof(buf), fp);
262          pclose(fp);
263 <        copystruct(&nv, &stdview);
263 >        nv = stdview;
264          if (!sscanview(&nv, buf)) {
265                  error(COMMAND, "rad error -- no such view?");
266                  return;
# Line 329 | Line 269 | char  *s;
269   }
270  
271  
272 < void
273 < getaim(s)                               /* aim camera */
274 < char  *s;
272 > extern void
273 > getaim(                         /* aim camera */
274 >        char  *s
275 > )
276   {
277 +        VIEW  nv = ourview;
278          double  zfact;
337        VIEW  nv;
279  
280          if (getinterest(s, 1, nv.vdir, &zfact) < 0)
281                  return;
341        nv.type = ourview.type;
342        VCOPY(nv.vp, ourview.vp);
343        VCOPY(nv.vup, ourview.vup);
344        nv.horiz = ourview.horiz; nv.vert = ourview.vert;
345        nv.vfore = ourview.vfore; nv.vaft = ourview.vaft;
346        nv.hoff = ourview.hoff; nv.voff = ourview.voff;
282          zoomview(&nv, zfact);
283          newview(&nv);
284   }
285  
286  
287 < void
288 < getmove(s)                              /* move camera */
289 < char  *s;
287 > extern void
288 > getfocus(                               /* set focus distance */
289 >        char *s
290 > )
291   {
292 +        char  buf[64];
293 +        double  dist;
294 +
295 +        if (sscanf(s, "%lf", &dist) < 1) {
296 +                int     x, y;
297 +                RAY     thisray;
298 +                if (dev->getcur == NULL)
299 +                        return;
300 +                (*dev->comout)("Pick focus point\n");
301 +                if ((*dev->getcur)(&x, &y) == ABORT)
302 +                        return;
303 +                if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir,
304 +                        &ourview, (x+.5)/hresolu, (y+.5)/vresolu)) < -FTINY) {
305 +                        error(COMMAND, "not on image");
306 +                        return;
307 +                }
308 +                rayorigin(&thisray, PRIMARY, NULL, NULL);
309 +                if (!localhit(&thisray, &thescene)) {
310 +                        error(COMMAND, "not a local object");
311 +                        return;
312 +                }
313 +                dist = thisray.rot;
314 +        } else if (dist <= .0) {
315 +                error(COMMAND, "focus distance must be positive");
316 +                return;
317 +        }
318 +        ourview.vdist = dist;
319 +        sprintf(buf, "Focus distance set to %f\n", dist);
320 +        (*dev->comout)(buf);
321 + }
322 +
323 +
324 + extern void
325 + getmove(                                /* move camera */
326 +        char  *s
327 + )
328 + {
329          FVECT  vc;
330          double  mag;
331  
# Line 362 | Line 335 | char  *s;
335   }
336  
337  
338 < void
339 < getrotate(s)                            /* rotate camera */
340 < char  *s;
338 > extern void
339 > getrotate(                              /* rotate camera */
340 >        char  *s
341 > )
342   {
343 <        VIEW  nv;
343 >        VIEW  nv = ourview;
344          FVECT  v1;
345          double  angle, elev, zfact;
346          
# Line 375 | Line 349 | char  *s;
349                  error(COMMAND, "missing angle");
350                  return;
351          }
378        nv.type = ourview.type;
379        VCOPY(nv.vp, ourview.vp);
380        VCOPY(nv.vup, ourview.vup);
381        nv.hoff = ourview.hoff; nv.voff = ourview.voff;
382        nv.vfore = ourview.vfore; nv.vaft = ourview.vaft;
352          spinvector(nv.vdir, ourview.vdir, ourview.vup, angle*(PI/180.));
353          if (elev != 0.0) {
354                  fcross(v1, nv.vdir, ourview.vup);
355                  normalize(v1);
356                  spinvector(nv.vdir, nv.vdir, v1, elev*(PI/180.));
357          }
389        nv.horiz = ourview.horiz; nv.vert = ourview.vert;
358          zoomview(&nv, zfact);
359          newview(&nv);
360   }
361  
362  
363 < void
364 < getpivot(s)                             /* pivot viewpoint */
365 < register char  *s;
363 > extern void
364 > getpivot(                               /* pivot viewpoint */
365 >        register char  *s
366 > )
367   {
368          FVECT  vc;
369          double  angle, elev, mag;
# Line 410 | Line 379 | register char  *s;
379   }
380  
381  
382 < void
383 < getexposure(s)                          /* get new exposure */
384 < char  *s;
382 > extern void
383 > getexposure(                            /* get new exposure */
384 >        char  *s
385 > )
386   {
387          char  buf[128];
388          register char  *cp;
# Line 478 | Line 448 | char  *s;
448  
449   typedef union {int i; double d; COLOR C;}       *MyUptr;
450  
451 < int
452 < getparam(str, dsc, typ, p)              /* get variable from user */
453 < char  *str, *dsc;
454 < int  typ;
455 < void  *p;
451 > extern int
452 > getparam(               /* get variable from user */
453 >        char  *str,
454 >        char  *dsc,
455 >        int  typ,
456 >        void  *p
457 > )
458   {
459          register MyUptr  ptr = (MyUptr)p;
460          int  i0;
# Line 519 | Line 491 | void  *p;
491                          (*dev->comout)(buf);
492                          (*dev->comin)(buf, NULL);
493                          if (buf[0] == '\0' ||
494 <                                        index("yY+1tTnN-0fF", buf[0]) == NULL)
494 >                                        strchr("yY+1tTnN-0fF", buf[0]) == NULL)
495                                  return(0);
496                  }
497 <                ptr->i = index("yY+1tT", buf[0]) != NULL;
497 >                ptr->i = strchr("yY+1tT", buf[0]) != NULL;
498                  return(1);
499          case 'C':                       /* color */
500                  if (sscanf(str, "%lf %lf %lf", &d0, &d1, &d2) != 3) {
# Line 539 | Line 511 | void  *p;
511                  setcolor(ptr->C, d0, d1, d2);
512                  return(1);
513          }
514 +        return 0; /* nothing matched */
515   }
516  
517  
518 < void
519 < setparam(s)                             /* get/set program parameter */
520 < register char  *s;
518 > extern void
519 > setparam(                               /* get/set program parameter */
520 >        register char  *s
521 > )
522   {
523          char  buf[128];
524          
525          if (s[0] == '\0') {
526                  (*dev->comout)(
527 <                "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: ");
527 >                "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: ");
528                  (*dev->comin)(buf, NULL);
529                  s = buf;
530          }
531          switch (s[0]) {
532 +        case 'u':                       /* uncorrelated sampling */
533 +                getparam(s+1, "uncorrelated sampling", 'b',
534 +                                (void *)&rand_samp);
535 +                break;
536          case 'l':                       /* limit */
537                  switch (s[1]) {
538                  case 'w':                       /* weight */
# Line 716 | Line 694 | badparam:
694   }
695  
696  
697 < void
697 > extern void
698   traceray(s)                             /* trace a single ray */
699   char  *s;
700   {
# Line 747 | Line 725 | char  *s;
725                  return;
726          }
727  
728 <        rayorigin(&thisray, NULL, PRIMARY, 1.0);
728 >        rayorigin(&thisray, PRIMARY, NULL, NULL);
729          
730          rayvalue(&thisray);
731  
732          if (thisray.ro == NULL)
733                  (*dev->comout)("ray hit nothing");
734          else {
735 <                sprintf(buf, "ray hit %s%s %s \"%s\"",
736 <                                thisray.rod < 0.0 ? "back of " : "",
737 <                                thisray.ro->omod == OVOID ? VOIDID :
738 <                                        objptr(thisray.ro->omod)->oname,
735 >                OBJREC  *mat = NULL;
736 >                OBJREC  *mod = NULL;
737 >                char    matspec[256];
738 >                matspec[0] = '\0';
739 >                if (thisray.ro->omod != OVOID) {
740 >                        mod = objptr(thisray.ro->omod);
741 >                        mat = findmaterial(mod);
742 >                }
743 >                if (thisray.rod < 0.0)
744 >                        strcpy(matspec, "back of ");
745 >                if (mod != NULL) {
746 >                        strcat(matspec, mod->oname);
747 >                        if (mat != mod && mat != NULL)
748 >                                sprintf(matspec+strlen(matspec),
749 >                                        " (%s)", mat->oname);
750 >                } else
751 >                        strcat(matspec, VOIDID);
752 >                sprintf(buf, "ray hit %s %s \"%s\"", matspec,
753                                  ofun[thisray.ro->otype].funame,
754                                  thisray.ro->oname);
755                  if ((ino = objptr(thisray.robj)) != thisray.ro)
# Line 785 | Line 777 | char  *s;
777   }
778  
779  
780 < void
780 > extern void
781   writepict(s)                            /* write the picture to a file */
782   char  *s;
783   {
# Line 809 | Line 801 | char  *s;
801                  error(COMMAND, errmsg);
802                  return;
803          }
804 < #ifdef MSDOS
813 <        setmode(fileno(fp), O_BINARY);
814 < #endif
804 >        SET_FILE_BINARY(fp);
805          (*dev->comout)("writing \"");
806          (*dev->comout)(fname);
807          (*dev->comout)("\"...\n");

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines