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.53 by greg, Thu Mar 20 12:50:07 1997 UTC vs.
Revision 2.64 by schorsch, Thu Jun 26 00:58:11 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   */
7  
8   #include "standard.h"
9 +
10 + #include <ctype.h>
11 +
12 + #include "platform.h"
13 + #include "view.h"
14   #include "paths.h"
15   #include "vars.h"
14 #include <ctype.h>
15 #include <sys/types.h>
16  
17 <                                /* variables */
18 < #define OBJECT          0               /* object files */
19 < #define SCENE           1               /* scene files */
20 < #define MATERIAL        2               /* material files */
21 < #define ILLUM           3               /* mkillum input files */
22 < #define MKILLUM         4               /* mkillum options */
23 < #define RENDER          5               /* rendering options */
24 < #define OCONV           6               /* oconv options */
25 < #define PFILT           7               /* pfilt options */
26 < #define VIEW            8               /* view(s) for picture(s) */
27 < #define ZONE            9               /* simulation zone */
28 < #define QUALITY         10              /* desired rendering quality */
29 < #define OCTREE          11              /* octree file name */
30 < #define PICTURE         12              /* picture file root name */
31 < #define AMBFILE         13              /* ambient file name */
32 < #define OPTFILE         14              /* rendering options file */
33 < #define EXPOSURE        15              /* picture exposure setting */
34 < #define RESOLUTION      16              /* maximum picture resolution */
35 < #define UP              17              /* view up (X, Y or Z) */
36 < #define INDIRECT        18              /* indirection in lighting */
37 < #define DETAIL          19              /* level of scene detail */
38 < #define PENUMBRAS       20              /* shadow penumbras are desired */
39 < #define VARIABILITY     21              /* level of light variability */
40 < #define REPORT          22              /* report frequency and errfile */
41 < #define RAWFILE         23              /* raw picture file root name */
17 >                                /* variables (alphabetical by name) */
18 > #define AMBFILE         0               /* ambient file name */
19 > #define DETAIL          1               /* level of scene detail */
20 > #define EXPOSURE        2               /* picture exposure setting */
21 > #define EYESEP          3               /* interocular distance */
22 > #define ILLUM           4               /* mkillum input files */
23 > #define INDIRECT        5               /* indirection in lighting */
24 > #define MATERIAL        6               /* material files */
25 > #define MKILLUM         7               /* mkillum options */
26 > #define OBJECT          8               /* object files */
27 > #define OCONV           9               /* oconv options */
28 > #define OCTREE          10              /* octree file name */
29 > #define OPTFILE         11              /* rendering options file */
30 > #define PENUMBRAS       12              /* shadow penumbras are desired */
31 > #define PFILT           13              /* pfilt options */
32 > #define PICTURE         14              /* picture file root name */
33 > #define QUALITY         15              /* desired rendering quality */
34 > #define RAWFILE         16              /* raw picture file root name */
35 > #define RENDER          17              /* rendering options */
36 > #define REPORT          18              /* report frequency and errfile */
37 > #define RESOLUTION      19              /* maximum picture resolution */
38 > #define SCENE           20              /* scene files */
39 > #define UP              21              /* view up (X, Y or Z) */
40 > #define VARIABILITY     22              /* level of light variability */
41 > #define VIEWS           23              /* view(s) for picture(s) */
42   #define ZFILE           24              /* distance file root name */
43 + #define ZONE            25              /* simulation zone */
44                                  /* total number of variables */
45 < int NVARS = 25;
45 > int NVARS = 26;
46  
47   VARIABLE        vv[] = {                /* variable-value pairs */
48 <        {"objects",     3,      0,      NULL,   catvalues},
49 <        {"scene",       3,      0,      NULL,   catvalues},
50 <        {"materials",   3,      0,      NULL,   catvalues},
48 >        {"AMBFILE",     3,      0,      NULL,   onevalue},
49 >        {"DETAIL",      3,      0,      NULL,   qualvalue},
50 >        {"EXPOSURE",    3,      0,      NULL,   fltvalue},
51 >        {"EYESEP",      3,      0,      NULL,   fltvalue},
52          {"illum",       3,      0,      NULL,   catvalues},
53 +        {"INDIRECT",    3,      0,      NULL,   intvalue},
54 +        {"materials",   3,      0,      NULL,   catvalues},
55          {"mkillum",     3,      0,      NULL,   catvalues},
56 <        {"render",      3,      0,      NULL,   catvalues},
56 >        {"objects",     3,      0,      NULL,   catvalues},
57          {"oconv",       3,      0,      NULL,   catvalues},
54        {"pfilt",       2,      0,      NULL,   catvalues},
55        {"view",        2,      0,      NULL,   NULL},
56        {"ZONE",        2,      0,      NULL,   onevalue},
57        {"QUALITY",     3,      0,      NULL,   qualvalue},
58          {"OCTREE",      3,      0,      NULL,   onevalue},
59        {"PICTURE",     3,      0,      NULL,   onevalue},
60        {"AMBFILE",     3,      0,      NULL,   onevalue},
59          {"OPTFILE",     3,      0,      NULL,   onevalue},
60 <        {"EXPOSURE",    3,      0,      NULL,   fltvalue},
60 >        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
61 >        {"pfilt",       2,      0,      NULL,   catvalues},
62 >        {"PICTURE",     3,      0,      NULL,   onevalue},
63 >        {"QUALITY",     3,      0,      NULL,   qualvalue},
64 >        {"RAWFILE",     3,      0,      NULL,   onevalue},
65 >        {"render",      3,      0,      NULL,   catvalues},
66 >        {"REPORT",      3,      0,      NULL,   onevalue},
67          {"RESOLUTION",  3,      0,      NULL,   onevalue},
68 +        {"scene",       3,      0,      NULL,   catvalues},
69          {"UP",          2,      0,      NULL,   onevalue},
65        {"INDIRECT",    3,      0,      NULL,   intvalue},
66        {"DETAIL",      3,      0,      NULL,   qualvalue},
67        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
70          {"VARIABILITY", 3,      0,      NULL,   qualvalue},
71 <        {"REPORT",      3,      0,      NULL,   onevalue},
70 <        {"RAWFILE",     3,      0,      NULL,   onevalue},
71 >        {"view",        2,      0,      NULL,   NULL},
72          {"ZFILE",       2,      0,      NULL,   onevalue},
73 +        {"ZONE",        2,      0,      NULL,   onevalue},
74   };
75  
76                                  /* overture calculation file */
# Line 78 | Line 80 | char   overfile[] = "overture.unf";
80   char    overfile[] = "/dev/null";
81   #endif
82  
83 < extern time_t   fdate(), time();
83 > extern time_t   time();
84  
85   time_t  scenedate;              /* date of latest scene or object file */
86   time_t  octreedate;             /* date of octree */
# Line 183 | Line 185 | char   *argv[];
185          quit(0);
186   userr:
187          fprintf(stderr,
188 < "Usage: %s [-s][-n][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
188 > "Usage: %s [-w][-s][-n][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
189                          progname);
190          quit(1);
191   }
# Line 210 | Line 212 | register char  *fnames;
212   {
213          char    thisfile[MAXPATH];
214          time_t  thisdate, lastdate = 0;
213        register char   *cp;
215  
216          if (fnames == NULL)
217                  return(0);
218 <        while (*fnames) {
219 <                while (isspace(*fnames)) fnames++;
220 <                cp = thisfile;
221 <                while (*fnames && !isspace(*fnames))
221 <                        *cp++ = *fnames++;
222 <                *cp = '\0';
218 >        while ((fnames = nextword(thisfile, MAXPATH, fnames)) != NULL) {
219 >                if (thisfile[0] == '!' ||
220 >                                (thisfile[0] == '\\' && thisfile[1] == '!'))
221 >                        continue;
222                  if (!(thisdate = fdate(thisfile)))
223                          syserr(thisfile);
224                  if (thisdate > lastdate)
# Line 264 | Line 263 | checkfiles()                   /* check for existence and modified tim
263                          syserr(progname);
264                  sprintf(vval(OCTREE), "%s.oct", radname);
265                  vdef(OCTREE)++;
266 +        } else if (vval(OCTREE)[0] == '!') {
267 +                fprintf(stderr, "%s: illegal '%s' specification\n",
268 +                                progname, vnam(OCTREE));
269 +                quit(1);
270          }
271          octreedate = fdate(vval(OCTREE));
272          if (vdef(ILLUM)) {              /* illum requires secondary octrees */
# Line 338 | Line 341 | double org[3], *sizp;
341  
342   setdefaults()                   /* set default values for unassigned var's */
343   {
344 <        double  org[3], size;
344 >        double  org[3], lim[3], size;
345          char    buf[128];
346  
347          if (!vdef(ZONE)) {
# Line 348 | Line 351 | setdefaults()                  /* set default values for unassigned v
351                  vval(ZONE) = savqstr(buf);
352                  vdef(ZONE)++;
353          }
354 +        if (!vdef(EYESEP)) {
355 +                if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf",
356 +                                &org[0], &lim[0], &org[1], &lim[1],
357 +                                &org[2], &lim[2]) != 6)
358 +                        badvalue(ZONE);
359 +                sprintf(buf, "%f",
360 +                        0.01*(lim[0]-org[0]+lim[1]-org[1]+lim[2]-org[2]));
361 +                vval(EYESEP) = savqstr(buf);
362 +                vdef(EYESEP)++;
363 +        }
364          if (!vdef(INDIRECT)) {
365                  vval(INDIRECT) = "0";
366                  vdef(INDIRECT)++;
# Line 364 | Line 377 | setdefaults()                  /* set default values for unassigned v
377                  vval(PICTURE) = radname;
378                  vdef(PICTURE)++;
379          }
380 <        if (!vdef(VIEW)) {
381 <                vval(VIEW) = "X";
382 <                vdef(VIEW)++;
380 >        if (!vdef(VIEWS)) {
381 >                vval(VIEWS) = "X";
382 >                vdef(VIEWS)++;
383          }
384          if (!vdef(DETAIL)) {
385                  vval(DETAIL) = "M";
# Line 616 | Line 629 | char   *po;
629                  overture = 0;
630          switch (vscale(VARIABILITY)) {
631          case LOW:
632 <                op = addarg(op, "-aw 128 -aa .4 -ad 64");
632 >                op = addarg(op, "-aa .4 -ad 64");
633                  break;
634          case MEDIUM:
635 <                op = addarg(op, "-aw 1024 -aa .3 -ad 128");
635 >                op = addarg(op, "-aa .3 -ad 128");
636                  break;
637          case HIGH:
638                  op = addarg(op, "-aa .25 -ad 256");
# Line 695 | Line 708 | char   *po;
708                  overture = 0;
709          switch (vscale(VARIABILITY)) {
710          case LOW:
711 <                op = addarg(op, "-aw 128 -aa .25 -ad 196 -as 0");
711 >                op = addarg(op, "-aa .25 -ad 196 -as 0");
712                  break;
713          case MEDIUM:
714 <                op = addarg(op, "-aw 1024 -aa .2 -ad 400 -as 64");
714 >                op = addarg(op, "-aa .2 -ad 400 -as 64");
715                  break;
716          case HIGH:
717                  op = addarg(op, "-aa .15 -ad 768 -as 196");
# Line 771 | Line 784 | char   *po;
784                  overture = 0;
785          switch (vscale(VARIABILITY)) {
786          case LOW:
787 <                op = addarg(op, "-aw 128 -aa .15 -ad 256 -as 0");
787 >                op = addarg(op, "-aa .15 -ad 256 -as 0");
788                  break;
789          case MEDIUM:
790 <                op = addarg(op, "-aw 1024 -aa .125 -ad 512 -as 256");
790 >                op = addarg(op, "-aa .125 -ad 512 -as 256");
791                  break;
792          case HIGH:
793                  op = addarg(op, "-aa .08 -ad 1024 -as 512");
# Line 811 | Line 824 | char   *ro;
824                          syserr(vval(OPTFILE));
825                  sprintf(ro, " @%s", vval(OPTFILE));
826          }
827 < #ifdef MSDOS
827 > #ifdef _WIN32
828          else if (n > 50) {
829                  setenv("ROPT", ro+1);
830                  strcpy(ro, " $ROPT");
# Line 830 | Line 843 | register char  *po;
843          }
844          switch (vscale(QUALITY)) {
845          case MEDIUM:
846 <                po = addarg(po, "-r 1");
846 >                po = addarg(po, "-r .6");
847                  break;
848          case HIGH:
849                  po = addarg(po, "-m .25");
# Line 967 | Line 980 | register char  *vs;
980          if (cp == viewopts)             /* append any additional options */
981                  vs++;           /* skip prefixed space if unneeded */
982          strcpy(cp, vs);
983 < #ifdef MSDOS
983 > #ifdef _WIN32
984          if (strlen(viewopts) > 40) {
985                  setenv("VIEW", viewopts);
986                  return("$VIEW");
# Line 999 | Line 1012 | char   *vn;            /* returned view name */
1012                  }
1013                                                  /* view number? */
1014                  if (isint(viewselect))
1015 <                        return(specview(nvalue(VIEW, atoi(viewselect)-1)));
1015 >                        return(specview(nvalue(VIEWS, atoi(viewselect)-1)));
1016                                                  /* check list */
1017 <                while ((mv = nvalue(VIEW, n++)) != NULL)
1017 >                while ((mv = nvalue(VIEWS, n++)) != NULL)
1018                          if (matchword(viewselect, mv))
1019                                  return(specview(mv));
1020                  return(specview(viewselect));   /* standard view? */
1021          }
1022 <        mv = nvalue(VIEW, n);           /* use view n */
1022 >        mv = nvalue(VIEWS, n);          /* use view n */
1023          if (vn != NULL & mv != NULL) {
1024                  register char   *mv2 = mv;
1025                  if (*mv2 != '-')
# Line 1021 | Line 1034 | char   *vn;            /* returned view name */
1034   printview(vopts)                        /* print out selected view */
1035   register char   *vopts;
1036   {
1037 <        extern char     *atos(), *getenv();
1038 <        char    buf[256];
1026 <        FILE    *fp;
1037 >        VIEW    vwr;
1038 >        char    buf[128];
1039          register char   *cp;
1040 <
1040 > again:
1041          if (vopts == NULL)
1042                  return(-1);
1043 <        fputs("VIEW=", stdout);
1044 <        do {
1045 <                if (matchword(vopts, "-vf")) {          /* expand view file */
1046 <                        vopts = sskip(vopts);
1047 <                        if (!*atos(buf, sizeof(buf), vopts))
1036 <                                return(-1);
1037 <                        if ((fp = fopen(buf, "r")) == NULL)
1038 <                                return(-1);
1039 <                        for (buf[sizeof(buf)-2] = '\n';
1040 <                                        fgets(buf, sizeof(buf), fp) != NULL &&
1041 <                                                buf[0] != '\n';
1042 <                                        buf[sizeof(buf)-2] = '\n') {
1043 <                                if (buf[sizeof(buf)-2] != '\n') {
1044 <                                        ungetc(buf[sizeof(buf)-2], fp);
1045 <                                        buf[sizeof(buf)-2] = '\0';
1046 <                                }
1047 <                                if (matchword(buf, "VIEW=") ||
1048 <                                                matchword(buf, "rview")) {
1049 <                                        for (cp = sskip(buf); *cp && *cp != '\n'; cp++)
1050 <                                                putchar(*cp);
1051 <                                }
1052 <                        }
1053 <                        fclose(fp);
1054 <                        vopts = sskip(vopts);
1055 <                } else {
1056 <                        while (isspace(*vopts))
1057 <                                vopts++;
1058 <                        putchar(' ');
1059 < #ifdef MSDOS
1060 <                        if (*vopts == '$') {            /* expand env. var. */
1061 <                                if (!*atos(buf, sizeof(buf), vopts+1))
1062 <                                        return(-1);
1063 <                                if ((cp = getenv(buf)) == NULL)
1064 <                                        return(-1);
1065 <                                fputs(cp, stdout);
1066 <                                vopts = sskip(vopts);
1067 <                        } else
1043 > #ifdef _WIN32
1044 >        if (vopts[0] == '$') {
1045 >                vopts = getenv(vopts+1);
1046 >                goto again;
1047 >        }
1048   #endif
1049 <                                while (*vopts && !isspace(*vopts))
1050 <                                        putchar(*vopts++);
1051 <                }
1052 <        } while (*vopts++);
1053 <        putchar('\n');
1049 >        copystruct(&vwr, &stdview);
1050 >        sscanview(&vwr, cp=vopts);              /* set initial options */
1051 >        while ((cp = strstr(cp, "-vf ")) != NULL &&
1052 >                        *atos(buf, sizeof(buf), cp += 4)) {
1053 >                viewfile(buf, &vwr, NULL);      /* load -vf file */
1054 >                sscanview(&vwr, cp);            /* reset tail */
1055 >        }
1056 >        fputs(VIEWSTR, stdout);
1057 >        fprintview(&vwr, stdout);               /* print full spec. */
1058 >        fputc('\n', stdout);
1059          return(0);
1060   }
1061  
# Line 1263 | Line 1248 | rmfile(fn)                     /* remove a file */
1248   char    *fn;
1249   {
1250          if (!silent)
1251 < #ifdef MSDOS
1251 > #ifdef _WIN32
1252                  printf("\tdel %s\n", fn);
1253   #else
1254                  printf("\trm -f %s\n", fn);
# Line 1278 | Line 1263 | mvfile(fold, fnew)             /* move a file */
1263   char    *fold, *fnew;
1264   {
1265          if (!silent)
1266 < #ifdef MSDOS
1266 > #ifdef _WIN32
1267                  printf("\trename %s %s\n", fold, fnew);
1268   #else
1269                  printf("\tmv %s %s\n", fold, fnew);
# Line 1289 | Line 1274 | char   *fold, *fnew;
1274   }
1275  
1276  
1277 < #ifdef MSDOS
1277 > #ifdef _WIN32
1278   setenv(vname, value)            /* set an environment variable */
1279   char    *vname, *value;
1280   {
# Line 1326 | Line 1311 | char   *s;
1311   }
1312  
1313  
1314 + void
1315   quit(ec)                        /* exit program */
1316   int     ec;
1317   {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines