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.57 by gwlarson, Wed Jun 10 17:51:06 1998 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1995 Regents of the University of California */
1 > /* Copyright (c) 1998 Silicon Graphics, Inc. */
2  
3   #ifndef lint
4 < static char SCCSid[] = "$SunId$ LBL";
4 > static char SCCSid[] = "$SunId$ SGI";
5   #endif
6  
7   /*
# Line 9 | Line 9 | static char SCCSid[] = "$SunId$ LBL";
9   */
10  
11   #include "standard.h"
12 + #include "view.h"
13   #include "paths.h"
14   #include "vars.h"
15   #include <ctype.h>
16   #include <sys/types.h>
17  
18 <                                /* variables */
19 < #define OBJECT          0               /* object files */
20 < #define SCENE           1               /* scene files */
21 < #define MATERIAL        2               /* material files */
22 < #define ILLUM           3               /* mkillum input files */
23 < #define MKILLUM         4               /* mkillum options */
24 < #define RENDER          5               /* rendering options */
25 < #define OCONV           6               /* oconv options */
26 < #define PFILT           7               /* pfilt options */
27 < #define VIEW            8               /* view(s) for picture(s) */
28 < #define ZONE            9               /* simulation zone */
29 < #define QUALITY         10              /* desired rendering quality */
30 < #define OCTREE          11              /* octree file name */
31 < #define PICTURE         12              /* picture file root name */
32 < #define AMBFILE         13              /* ambient file name */
33 < #define OPTFILE         14              /* rendering options file */
34 < #define EXPOSURE        15              /* picture exposure setting */
35 < #define RESOLUTION      16              /* maximum picture resolution */
36 < #define UP              17              /* view up (X, Y or Z) */
37 < #define INDIRECT        18              /* indirection in lighting */
38 < #define DETAIL          19              /* level of scene detail */
39 < #define PENUMBRAS       20              /* shadow penumbras are desired */
40 < #define VARIABILITY     21              /* level of light variability */
41 < #define REPORT          22              /* report frequency and errfile */
42 < #define RAWFILE         23              /* raw picture file root name */
18 >                                /* variables (alphabetical by name) */
19 > #define AMBFILE         0               /* ambient file name */
20 > #define DETAIL          1               /* level of scene detail */
21 > #define EXPOSURE        2               /* picture exposure setting */
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 <        {"objects",     3,      0,      NULL,   catvalues},
50 <        {"scene",       3,      0,      NULL,   catvalues},
51 <        {"materials",   3,      0,      NULL,   catvalues},
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},
56          {"mkillum",     3,      0,      NULL,   catvalues},
57 <        {"render",      3,      0,      NULL,   catvalues},
57 >        {"objects",     3,      0,      NULL,   catvalues},
58          {"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},
59          {"OCTREE",      3,      0,      NULL,   onevalue},
59        {"PICTURE",     3,      0,      NULL,   onevalue},
60        {"AMBFILE",     3,      0,      NULL,   onevalue},
60          {"OPTFILE",     3,      0,      NULL,   onevalue},
61 <        {"EXPOSURE",    3,      0,      NULL,   fltvalue},
61 >        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
62 >        {"pfilt",       2,      0,      NULL,   catvalues},
63 >        {"PICTURE",     3,      0,      NULL,   onevalue},
64 >        {"QUALITY",     3,      0,      NULL,   qualvalue},
65 >        {"RAWFILE",     3,      0,      NULL,   onevalue},
66 >        {"render",      3,      0,      NULL,   catvalues},
67 >        {"REPORT",      3,      0,      NULL,   onevalue},
68          {"RESOLUTION",  3,      0,      NULL,   onevalue},
69 +        {"scene",       3,      0,      NULL,   catvalues},
70          {"UP",          2,      0,      NULL,   onevalue},
65        {"INDIRECT",    3,      0,      NULL,   intvalue},
66        {"DETAIL",      3,      0,      NULL,   qualvalue},
67        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
71          {"VARIABILITY", 3,      0,      NULL,   qualvalue},
72 <        {"REPORT",      3,      0,      NULL,   onevalue},
70 <        {"RAWFILE",     3,      0,      NULL,   onevalue},
72 >        {"view",        2,      0,      NULL,   NULL},
73          {"ZFILE",       2,      0,      NULL,   onevalue},
74 +        {"ZONE",        2,      0,      NULL,   onevalue},
75   };
76  
77                                  /* overture calculation file */
# Line 183 | 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 364 | Line 367 | setdefaults()                  /* set default values for unassigned v
367                  vval(PICTURE) = radname;
368                  vdef(PICTURE)++;
369          }
370 <        if (!vdef(VIEW)) {
371 <                vval(VIEW) = "X";
372 <                vdef(VIEW)++;
370 >        if (!vdef(VIEWS)) {
371 >                vval(VIEWS) = "X";
372 >                vdef(VIEWS)++;
373          }
374          if (!vdef(DETAIL)) {
375                  vval(DETAIL) = "M";
# Line 616 | Line 619 | char   *po;
619                  overture = 0;
620          switch (vscale(VARIABILITY)) {
621          case LOW:
622 <                op = addarg(op, "-aw 128 -aa .4 -ad 64");
622 >                op = addarg(op, "-aa .4 -ad 64");
623                  break;
624          case MEDIUM:
625 <                op = addarg(op, "-aw 1024 -aa .3 -ad 128");
625 >                op = addarg(op, "-aa .3 -ad 128");
626                  break;
627          case HIGH:
628                  op = addarg(op, "-aa .25 -ad 256");
# Line 695 | Line 698 | char   *po;
698                  overture = 0;
699          switch (vscale(VARIABILITY)) {
700          case LOW:
701 <                op = addarg(op, "-aw 128 -aa .25 -ad 196 -as 0");
701 >                op = addarg(op, "-aa .25 -ad 196 -as 0");
702                  break;
703          case MEDIUM:
704 <                op = addarg(op, "-aw 1024 -aa .2 -ad 400 -as 64");
704 >                op = addarg(op, "-aa .2 -ad 400 -as 64");
705                  break;
706          case HIGH:
707                  op = addarg(op, "-aa .15 -ad 768 -as 196");
# Line 771 | Line 774 | char   *po;
774                  overture = 0;
775          switch (vscale(VARIABILITY)) {
776          case LOW:
777 <                op = addarg(op, "-aw 128 -aa .15 -ad 256 -as 0");
777 >                op = addarg(op, "-aa .15 -ad 256 -as 0");
778                  break;
779          case MEDIUM:
780 <                op = addarg(op, "-aw 1024 -aa .125 -ad 512 -as 256");
780 >                op = addarg(op, "-aa .125 -ad 512 -as 256");
781                  break;
782          case HIGH:
783                  op = addarg(op, "-aa .08 -ad 1024 -as 512");
# Line 999 | Line 1002 | char   *vn;            /* returned view name */
1002                  }
1003                                                  /* view number? */
1004                  if (isint(viewselect))
1005 <                        return(specview(nvalue(VIEW, atoi(viewselect)-1)));
1005 >                        return(specview(nvalue(VIEWS, atoi(viewselect)-1)));
1006                                                  /* check list */
1007 <                while ((mv = nvalue(VIEW, n++)) != NULL)
1007 >                while ((mv = nvalue(VIEWS, n++)) != NULL)
1008                          if (matchword(viewselect, mv))
1009                                  return(specview(mv));
1010                  return(specview(viewselect));   /* standard view? */
1011          }
1012 <        mv = nvalue(VIEW, n);           /* use view n */
1012 >        mv = nvalue(VIEWS, n);          /* use view n */
1013          if (vn != NULL & mv != NULL) {
1014                  register char   *mv2 = mv;
1015                  if (*mv2 != '-')
# Line 1021 | Line 1024 | char   *vn;            /* returned view name */
1024   printview(vopts)                        /* print out selected view */
1025   register char   *vopts;
1026   {
1027 <        extern char     *atos(), *getenv();
1028 <        char    buf[256];
1029 <        FILE    *fp;
1027 >        extern char     *strstr(), *atos(), *getenv();
1028 >        VIEW    vwr;
1029 >        char    buf[128];
1030          register char   *cp;
1031 <
1031 > again:
1032          if (vopts == NULL)
1033                  return(-1);
1031        fputs("VIEW=", stdout);
1032        do {
1033                if (matchword(vopts, "-vf")) {          /* expand view file */
1034                        vopts = sskip(vopts);
1035                        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(' ');
1034   #ifdef MSDOS
1035 <                        if (*vopts == '$') {            /* expand env. var. */
1036 <                                if (!*atos(buf, sizeof(buf), vopts+1))
1037 <                                        return(-1);
1038 <                                if ((cp = getenv(buf)) == NULL)
1064 <                                        return(-1);
1065 <                                fputs(cp, stdout);
1066 <                                vopts = sskip(vopts);
1067 <                        } else
1035 >        if (vopts[0] == '$') {
1036 >                vopts = getenv(vopts+1);
1037 >                goto again;
1038 >        }
1039   #endif
1040 <                                while (*vopts && !isspace(*vopts))
1041 <                                        putchar(*vopts++);
1042 <                }
1043 <        } while (*vopts++);
1044 <        putchar('\n');
1040 >        copystruct(&vwr, &stdview);
1041 >        cp = vopts;                             /* get -vf files first */
1042 >        while ((cp = strstr(cp, "-vf ")) != NULL &&
1043 >                        *atos(buf, sizeof(buf), cp += 4))
1044 >                viewfile(buf, &vwr, NULL);
1045 >        sscanview(&vwr, vopts);                 /* get the rest */
1046 >        fputs(VIEWSTR, stdout);
1047 >        fprintview(&vwr, stdout);               /* print full spec. */
1048 >        fputc('\n', stdout);
1049          return(0);
1050   }
1051  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines