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.55 by gregl, Fri Jan 23 17:17:32 1998 UTC vs.
Revision 2.63 by schorsch, Thu Jun 5 19:29:35 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1995 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Executive program for oconv, rpict and pfilt
6   */
# Line 13 | Line 10 | static char SCCSid[] = "$SunId$ LBL";
10   #include "paths.h"
11   #include "vars.h"
12   #include <ctype.h>
16 #include <sys/types.h>
13  
14 <                                /* variables */
15 < #define OBJECT          0               /* object files */
16 < #define SCENE           1               /* scene files */
17 < #define MATERIAL        2               /* material files */
18 < #define ILLUM           3               /* mkillum input files */
19 < #define MKILLUM         4               /* mkillum options */
20 < #define RENDER          5               /* rendering options */
21 < #define OCONV           6               /* oconv options */
22 < #define PFILT           7               /* pfilt options */
23 < #define VIEWS           8               /* view(s) for picture(s) */
24 < #define ZONE            9               /* simulation zone */
25 < #define QUALITY         10              /* desired rendering quality */
26 < #define OCTREE          11              /* octree file name */
27 < #define PICTURE         12              /* picture file root name */
28 < #define AMBFILE         13              /* ambient file name */
29 < #define OPTFILE         14              /* rendering options file */
30 < #define EXPOSURE        15              /* picture exposure setting */
31 < #define RESOLUTION      16              /* maximum picture resolution */
32 < #define UP              17              /* view up (X, Y or Z) */
33 < #define INDIRECT        18              /* indirection in lighting */
34 < #define DETAIL          19              /* level of scene detail */
35 < #define PENUMBRAS       20              /* shadow penumbras are desired */
36 < #define VARIABILITY     21              /* level of light variability */
37 < #define REPORT          22              /* report frequency and errfile */
38 < #define RAWFILE         23              /* raw picture file root name */
14 >                                /* variables (alphabetical by name) */
15 > #define AMBFILE         0               /* ambient file name */
16 > #define DETAIL          1               /* level of scene detail */
17 > #define EXPOSURE        2               /* picture exposure setting */
18 > #define EYESEP          3               /* interocular distance */
19 > #define ILLUM           4               /* mkillum input files */
20 > #define INDIRECT        5               /* indirection in lighting */
21 > #define MATERIAL        6               /* material files */
22 > #define MKILLUM         7               /* mkillum options */
23 > #define OBJECT          8               /* object files */
24 > #define OCONV           9               /* oconv options */
25 > #define OCTREE          10              /* octree file name */
26 > #define OPTFILE         11              /* rendering options file */
27 > #define PENUMBRAS       12              /* shadow penumbras are desired */
28 > #define PFILT           13              /* pfilt options */
29 > #define PICTURE         14              /* picture file root name */
30 > #define QUALITY         15              /* desired rendering quality */
31 > #define RAWFILE         16              /* raw picture file root name */
32 > #define RENDER          17              /* rendering options */
33 > #define REPORT          18              /* report frequency and errfile */
34 > #define RESOLUTION      19              /* maximum picture resolution */
35 > #define SCENE           20              /* scene files */
36 > #define UP              21              /* view up (X, Y or Z) */
37 > #define VARIABILITY     22              /* level of light variability */
38 > #define VIEWS           23              /* view(s) for picture(s) */
39   #define ZFILE           24              /* distance file root name */
40 + #define ZONE            25              /* simulation zone */
41                                  /* total number of variables */
42 < int NVARS = 25;
42 > int NVARS = 26;
43  
44   VARIABLE        vv[] = {                /* variable-value pairs */
45 <        {"objects",     3,      0,      NULL,   catvalues},
46 <        {"scene",       3,      0,      NULL,   catvalues},
47 <        {"materials",   3,      0,      NULL,   catvalues},
45 >        {"AMBFILE",     3,      0,      NULL,   onevalue},
46 >        {"DETAIL",      3,      0,      NULL,   qualvalue},
47 >        {"EXPOSURE",    3,      0,      NULL,   fltvalue},
48 >        {"EYESEP",      3,      0,      NULL,   fltvalue},
49          {"illum",       3,      0,      NULL,   catvalues},
50 +        {"INDIRECT",    3,      0,      NULL,   intvalue},
51 +        {"materials",   3,      0,      NULL,   catvalues},
52          {"mkillum",     3,      0,      NULL,   catvalues},
53 <        {"render",      3,      0,      NULL,   catvalues},
53 >        {"objects",     3,      0,      NULL,   catvalues},
54          {"oconv",       3,      0,      NULL,   catvalues},
55        {"pfilt",       2,      0,      NULL,   catvalues},
56        {"view",        2,      0,      NULL,   NULL},
57        {"ZONE",        2,      0,      NULL,   onevalue},
58        {"QUALITY",     3,      0,      NULL,   qualvalue},
55          {"OCTREE",      3,      0,      NULL,   onevalue},
60        {"PICTURE",     3,      0,      NULL,   onevalue},
61        {"AMBFILE",     3,      0,      NULL,   onevalue},
56          {"OPTFILE",     3,      0,      NULL,   onevalue},
57 <        {"EXPOSURE",    3,      0,      NULL,   fltvalue},
57 >        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
58 >        {"pfilt",       2,      0,      NULL,   catvalues},
59 >        {"PICTURE",     3,      0,      NULL,   onevalue},
60 >        {"QUALITY",     3,      0,      NULL,   qualvalue},
61 >        {"RAWFILE",     3,      0,      NULL,   onevalue},
62 >        {"render",      3,      0,      NULL,   catvalues},
63 >        {"REPORT",      3,      0,      NULL,   onevalue},
64          {"RESOLUTION",  3,      0,      NULL,   onevalue},
65 +        {"scene",       3,      0,      NULL,   catvalues},
66          {"UP",          2,      0,      NULL,   onevalue},
66        {"INDIRECT",    3,      0,      NULL,   intvalue},
67        {"DETAIL",      3,      0,      NULL,   qualvalue},
68        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
67          {"VARIABILITY", 3,      0,      NULL,   qualvalue},
68 <        {"REPORT",      3,      0,      NULL,   onevalue},
71 <        {"RAWFILE",     3,      0,      NULL,   onevalue},
68 >        {"view",        2,      0,      NULL,   NULL},
69          {"ZFILE",       2,      0,      NULL,   onevalue},
70 +        {"ZONE",        2,      0,      NULL,   onevalue},
71   };
72  
73                                  /* overture calculation file */
# Line 79 | Line 77 | char   overfile[] = "overture.unf";
77   char    overfile[] = "/dev/null";
78   #endif
79  
80 < extern time_t   fdate(), time();
80 > extern time_t   time();
81  
82   time_t  scenedate;              /* date of latest scene or object file */
83   time_t  octreedate;             /* date of octree */
# Line 184 | Line 182 | char   *argv[];
182          quit(0);
183   userr:
184          fprintf(stderr,
185 < "Usage: %s [-s][-n][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
185 > "Usage: %s [-w][-s][-n][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
186                          progname);
187          quit(1);
188   }
# Line 211 | Line 209 | register char  *fnames;
209   {
210          char    thisfile[MAXPATH];
211          time_t  thisdate, lastdate = 0;
214        register char   *cp;
212  
213          if (fnames == NULL)
214                  return(0);
215 <        while (*fnames) {
216 <                while (isspace(*fnames)) fnames++;
217 <                cp = thisfile;
218 <                while (*fnames && !isspace(*fnames))
222 <                        *cp++ = *fnames++;
223 <                *cp = '\0';
215 >        while ((fnames = nextword(thisfile, MAXPATH, fnames)) != NULL) {
216 >                if (thisfile[0] == '!' ||
217 >                                (thisfile[0] == '\\' && thisfile[1] == '!'))
218 >                        continue;
219                  if (!(thisdate = fdate(thisfile)))
220                          syserr(thisfile);
221                  if (thisdate > lastdate)
# Line 265 | Line 260 | checkfiles()                   /* check for existence and modified tim
260                          syserr(progname);
261                  sprintf(vval(OCTREE), "%s.oct", radname);
262                  vdef(OCTREE)++;
263 +        } else if (vval(OCTREE)[0] == '!') {
264 +                fprintf(stderr, "%s: illegal '%s' specification\n",
265 +                                progname, vnam(OCTREE));
266 +                quit(1);
267          }
268          octreedate = fdate(vval(OCTREE));
269          if (vdef(ILLUM)) {              /* illum requires secondary octrees */
# 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 812 | Line 821 | char   *ro;
821                          syserr(vval(OPTFILE));
822                  sprintf(ro, " @%s", vval(OPTFILE));
823          }
824 < #ifdef MSDOS
824 > #ifdef _WIN32
825          else if (n > 50) {
826                  setenv("ROPT", ro+1);
827                  strcpy(ro, " $ROPT");
# Line 831 | Line 840 | register char  *po;
840          }
841          switch (vscale(QUALITY)) {
842          case MEDIUM:
843 <                po = addarg(po, "-r 1");
843 >                po = addarg(po, "-r .6");
844                  break;
845          case HIGH:
846                  po = addarg(po, "-m .25");
# Line 968 | Line 977 | register char  *vs;
977          if (cp == viewopts)             /* append any additional options */
978                  vs++;           /* skip prefixed space if unneeded */
979          strcpy(cp, vs);
980 < #ifdef MSDOS
980 > #ifdef _WIN32
981          if (strlen(viewopts) > 40) {
982                  setenv("VIEW", viewopts);
983                  return("$VIEW");
# Line 1022 | Line 1031 | char   *vn;            /* returned view name */
1031   printview(vopts)                        /* print out selected view */
1032   register char   *vopts;
1033   {
1025        extern char     *strstr(), *atos(), *getenv();
1034          VIEW    vwr;
1035          char    buf[128];
1036          register char   *cp;
1037   again:
1038          if (vopts == NULL)
1039                  return(-1);
1040 < #ifdef MSDOS
1040 > #ifdef _WIN32
1041          if (vopts[0] == '$') {
1042                  vopts = getenv(vopts+1);
1043                  goto again;
1044          }
1045   #endif
1046          copystruct(&vwr, &stdview);
1047 <        cp = vopts;                             /* get -vf files first */
1047 >        sscanview(&vwr, cp=vopts);              /* set initial options */
1048          while ((cp = strstr(cp, "-vf ")) != NULL &&
1049 <                        *atos(buf, sizeof(buf), cp += 4))
1050 <                viewfile(buf, &vwr, NULL);
1051 <        sscanview(&vwr, vopts);                 /* get the rest */
1049 >                        *atos(buf, sizeof(buf), cp += 4)) {
1050 >                viewfile(buf, &vwr, NULL);      /* load -vf file */
1051 >                sscanview(&vwr, cp);            /* reset tail */
1052 >        }
1053          fputs(VIEWSTR, stdout);
1054          fprintview(&vwr, stdout);               /* print full spec. */
1055          fputc('\n', stdout);
# Line 1236 | Line 1245 | rmfile(fn)                     /* remove a file */
1245   char    *fn;
1246   {
1247          if (!silent)
1248 < #ifdef MSDOS
1248 > #ifdef _WIN32
1249                  printf("\tdel %s\n", fn);
1250   #else
1251                  printf("\trm -f %s\n", fn);
# Line 1251 | Line 1260 | mvfile(fold, fnew)             /* move a file */
1260   char    *fold, *fnew;
1261   {
1262          if (!silent)
1263 < #ifdef MSDOS
1263 > #ifdef _WIN32
1264                  printf("\trename %s %s\n", fold, fnew);
1265   #else
1266                  printf("\tmv %s %s\n", fold, fnew);
# Line 1262 | Line 1271 | char   *fold, *fnew;
1271   }
1272  
1273  
1274 < #ifdef MSDOS
1274 > #ifdef _WIN32
1275   setenv(vname, value)            /* set an environment variable */
1276   char    *vname, *value;
1277   {
# Line 1299 | Line 1308 | char   *s;
1308   }
1309  
1310  
1311 + void
1312   quit(ec)                        /* exit program */
1313   int     ec;
1314   {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines