ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/rad.c
(Generate patch)

Comparing ray/src/util/rad.c (file contents):
Revision 2.56 by gwlarson, Wed Jun 3 16:37:51 1998 UTC vs.
Revision 2.60 by gwlarson, Tue Feb 2 08:57:56 1999 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1995 Regents of the University of California */
1 > /* Copyright (c) 1999 Silicon Graphics, Inc. */
2  
3   #ifndef lint
4 < static char SCCSid[] = "$SunId$ LBL";
4 > static char SCCSid[] = "$SunId$ SGI";
5   #endif
6  
7   /*
# Line 19 | Line 19 | static char SCCSid[] = "$SunId$ LBL";
19   #define AMBFILE         0               /* ambient file name */
20   #define DETAIL          1               /* level of scene detail */
21   #define EXPOSURE        2               /* picture exposure setting */
22 < #define ILLUM           3               /* mkillum input files */
23 < #define INDIRECT        4               /* indirection in lighting */
24 < #define MATERIAL        5               /* material files */
25 < #define MKILLUM         6               /* mkillum options */
26 < #define OBJECT          7               /* object files */
27 < #define OCONV           8               /* oconv options */
28 < #define OCTREE          9               /* octree file name */
29 < #define OPTFILE         10              /* rendering options file */
30 < #define PENUMBRAS       11              /* shadow penumbras are desired */
31 < #define PFILT           12              /* pfilt options */
32 < #define PICTURE         13              /* picture file root name */
33 < #define QUALITY         14              /* desired rendering quality */
34 < #define RAWFILE         15              /* raw picture file root name */
35 < #define RENDER          16              /* rendering options */
36 < #define REPORT          17              /* report frequency and errfile */
37 < #define RESOLUTION      18              /* maximum picture resolution */
38 < #define SCENE           19              /* scene files */
39 < #define UP              20              /* view up (X, Y or Z) */
40 < #define VARIABILITY     21              /* level of light variability */
41 < #define VIEWS           22              /* view(s) for picture(s) */
42 < #define ZFILE           23              /* distance file root name */
43 < #define ZONE            24              /* simulation zone */
22 > #define EYESEP          3               /* interocular distance */
23 > #define ILLUM           4               /* mkillum input files */
24 > #define INDIRECT        5               /* indirection in lighting */
25 > #define MATERIAL        6               /* material files */
26 > #define MKILLUM         7               /* mkillum options */
27 > #define OBJECT          8               /* object files */
28 > #define OCONV           9               /* oconv options */
29 > #define OCTREE          10              /* octree file name */
30 > #define OPTFILE         11              /* rendering options file */
31 > #define PENUMBRAS       12              /* shadow penumbras are desired */
32 > #define PFILT           13              /* pfilt options */
33 > #define PICTURE         14              /* picture file root name */
34 > #define QUALITY         15              /* desired rendering quality */
35 > #define RAWFILE         16              /* raw picture file root name */
36 > #define RENDER          17              /* rendering options */
37 > #define REPORT          18              /* report frequency and errfile */
38 > #define RESOLUTION      19              /* maximum picture resolution */
39 > #define SCENE           20              /* scene files */
40 > #define UP              21              /* view up (X, Y or Z) */
41 > #define VARIABILITY     22              /* level of light variability */
42 > #define VIEWS           23              /* view(s) for picture(s) */
43 > #define ZFILE           24              /* distance file root name */
44 > #define ZONE            25              /* simulation zone */
45                                  /* total number of variables */
46 < int NVARS = 25;
46 > int NVARS = 26;
47  
48   VARIABLE        vv[] = {                /* variable-value pairs */
49          {"AMBFILE",     3,      0,      NULL,   onevalue},
50          {"DETAIL",      3,      0,      NULL,   qualvalue},
51          {"EXPOSURE",    3,      0,      NULL,   fltvalue},
52 +        {"EYESEP",      3,      0,      NULL,   fltvalue},
53          {"illum",       3,      0,      NULL,   catvalues},
54          {"INDIRECT",    3,      0,      NULL,   intvalue},
55          {"materials",   3,      0,      NULL,   catvalues},
# Line 184 | Line 186 | char   *argv[];
186          quit(0);
187   userr:
188          fprintf(stderr,
189 < "Usage: %s [-s][-n][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
189 > "Usage: %s [-w][-s][-n][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
190                          progname);
191          quit(1);
192   }
# Line 211 | Line 213 | register char  *fnames;
213   {
214          char    thisfile[MAXPATH];
215          time_t  thisdate, lastdate = 0;
214        register char   *cp;
216  
217          if (fnames == NULL)
218                  return(0);
219 <        while (*fnames) {
220 <                while (isspace(*fnames)) fnames++;
221 <                cp = thisfile;
222 <                while (*fnames && !isspace(*fnames))
222 <                        *cp++ = *fnames++;
223 <                *cp = '\0';
219 >        while ((fnames = nextword(thisfile, MAXPATH, fnames)) != NULL) {
220 >                if (thisfile[0] == '!' ||
221 >                                (thisfile[0] == '\\' && thisfile[1] == '!'))
222 >                        continue;
223                  if (!(thisdate = fdate(thisfile)))
224                          syserr(thisfile);
225                  if (thisdate > lastdate)
# Line 339 | Line 338 | double org[3], *sizp;
338  
339   setdefaults()                   /* set default values for unassigned var's */
340   {
341 <        double  org[3], size;
341 >        double  org[3], lim[3], size;
342          char    buf[128];
343  
344          if (!vdef(ZONE)) {
# Line 349 | Line 348 | setdefaults()                  /* set default values for unassigned v
348                  vval(ZONE) = savqstr(buf);
349                  vdef(ZONE)++;
350          }
351 +        if (!vdef(EYESEP)) {
352 +                if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf",
353 +                                &org[0], &lim[0], &org[1], &lim[1],
354 +                                &org[2], &lim[2]) != 6)
355 +                        badvalue(ZONE);
356 +                sprintf(buf, "%f",
357 +                        0.01*(lim[0]-org[0]+lim[1]-org[1]+lim[2]-org[2]));
358 +                vval(EYESEP) = savqstr(buf);
359 +                vdef(EYESEP)++;
360 +        }
361          if (!vdef(INDIRECT)) {
362                  vval(INDIRECT) = "0";
363                  vdef(INDIRECT)++;
# Line 1036 | Line 1045 | again:
1045          }
1046   #endif
1047          copystruct(&vwr, &stdview);
1048 <        cp = vopts;                             /* get -vf files first */
1048 >        sscanview(&vwr, cp=vopts);              /* set initial options */
1049          while ((cp = strstr(cp, "-vf ")) != NULL &&
1050 <                        *atos(buf, sizeof(buf), cp += 4))
1051 <                viewfile(buf, &vwr, NULL);
1052 <        sscanview(&vwr, vopts);                 /* get the rest */
1050 >                        *atos(buf, sizeof(buf), cp += 4)) {
1051 >                viewfile(buf, &vwr, NULL);      /* load -vf file */
1052 >                sscanview(&vwr, cp);            /* reset tail */
1053 >        }
1054          fputs(VIEWSTR, stdout);
1055          fprintview(&vwr, stdout);               /* print full spec. */
1056          fputc('\n', stdout);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines