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.60 by greg, Fri Oct 8 22:55:49 2010 UTC vs.
Revision 2.63 by greg, Thu Sep 6 00:07:43 2012 UTC

# Line 13 | Line 13 | static const char      RCSid[] = "$Id$";
13   #include  <string.h>
14  
15   #include  "platform.h"
16 + #include  "rtprocess.h" /* win_popen() */
17 + #include  "paths.h"
18   #include  "ray.h"
19   #include  "source.h"
20   #include  "ambient.h"
# Line 61 | Line 63 | getrepaint(                            /* get area and repaint */
63  
64  
65   void
66 < getview(                                /* get/show view parameters */
66 > getview(                                /* get/show/save view parameters */
67          char  *s
68   )
69   {
# Line 80 | Line 82 | getview(                               /* get/show view parameters */
82                          error(COMMAND, "bad view option(s)");
83                  return;
84          }
85 <        if (sscanf(s, "%s", buf) == 1) {        /* write parameters to a file */
85 >        if (nextword(buf, sizeof(buf), s) != NULL) {    /* write to a file */
86                  if ((fname = getpath(buf, NULL, 0)) == NULL ||
87                                  (fp = fopen(fname, "a")) == NULL) {
88                          sprintf(errmsg, "cannot open \"%s\"", buf);
# Line 162 | Line 164 | lastview(                              /* return to a previous view */
164          char  *fname;
165          int  success;
166          VIEW  nv;
167 <
168 <        if (sscanf(s, "%s", buf) == 1) {        /* get parameters from a file */
167 >                                        /* get parameters from a file */
168 >        if (nextword(buf, sizeof(buf), s) != NULL) {
169                  nv = stdview;
170                  if ((fname = getpath(buf, "", R_OK)) == NULL ||
171                                  (success = viewfile(fname, &nv, NULL)) == -1) {
# Line 204 | Line 206 | saveview(                              /* save view to rad file */
206                  }
207                  s = sskip(s);
208          }
209 <        while (isspace(*s))
208 <                s++;
209 <        if (*s)
210 <                atos(rifname, sizeof(rifname), s);
211 <        else if (rifname[0] == '\0') {
209 >        if (nextword(rifname, sizeof(rifname), s) == NULL && !rifname[0]) {
210                  error(COMMAND, "no previous rad file");
211                  return;
212          }
# Line 241 | Line 239 | loadview(                              /* load view from rad file */
239                  s = sskip(s);
240          else
241                  strcat(buf, "1");
242 <        if (*s)
245 <                atos(rifname, sizeof(rifname), s);
246 <        else if (rifname[0] == '\0') {
242 >        if (nextword(rifname, sizeof(rifname), s) == NULL && !rifname[0]) {
243                  error(COMMAND, "no previous rad file");
244                  return;
245          }
# Line 341 | Line 337 | getrotate(                             /* rotate camera */
337   )
338   {
339          VIEW  nv = ourview;
344        FVECT  v1;
340          double  angle, elev, zfact;
341          
342          elev = 0.0; zfact = 1.0;
# Line 350 | Line 345 | getrotate(                             /* rotate camera */
345                  return;
346          }
347          spinvector(nv.vdir, ourview.vdir, ourview.vup, angle*(PI/180.));
348 <        if (elev != 0.0) {
349 <                fcross(v1, nv.vdir, ourview.vup);
350 <                normalize(v1);
356 <                spinvector(nv.vdir, nv.vdir, v1, elev*(PI/180.));
357 <        }
348 >        if (elev != 0.0)
349 >                geodesic(nv.vdir, nv.vdir, nv.vup, elev*(PI/180.), GEOD_RAD);
350 >        
351          zoomview(&nv, zfact);
352          newview(&nv);
353   }
# Line 716 | Line 709 | traceray(                              /* trace a single ray */
709          char  *s
710   )
711   {
712 <        char  buf[128];
713 <        int  x, y;
721 <        OBJREC  *ino;
722 <        RAY  thisray;
712 >        RAY     thisray;
713 >        char    buf[512];
714  
715          thisray.rmax = 0.0;
716  
717          if (!sscanvec(s, thisray.rorg) ||
718                          !sscanvec(sskip2(s,3), thisray.rdir)) {
719 +                int  x, y;
720  
721                  if (dev->getcur == NULL)
722                          return;
# Line 751 | Line 743 | traceray(                              /* trace a single ray */
743                  OBJREC  *mat = NULL;
744                  OBJREC  *mod = NULL;
745                  char    matspec[256];
746 +                OBJREC  *ino;
747 +
748                  matspec[0] = '\0';
749                  if (thisray.ro->omod != OVOID) {
750                          mod = objptr(thisray.ro->omod);
# Line 803 | Line 797 | writepict(                             /* write the picture to a file */
797          FILE  *fp;
798          COLR  *scanline;
799          int  y;
800 <
801 <        while (isspace(*s))
808 <                s++;
809 <        if (*s)
810 <                atos(buf, sizeof(buf), s);
811 <        else if (buf[0] == '\0') {
800 >                                /* XXX relies on words.c 2.11 behavior */
801 >        if (nextword(buf, sizeof(buf), s) == NULL && !buf[0]) {
802                  error(COMMAND, "no file");
803                  return;
804          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines