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.4 by greg, Fri Mar 12 13:37:03 1993 UTC vs.
Revision 2.39 by greg, Thu Mar 24 12:28:22 1994 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1993 Regents of the University of California */
1 > /* Copyright (c) 1994 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 11 | Line 11 | static char SCCSid[] = "$SunId$ LBL";
11   #include "standard.h"
12   #include "paths.h"
13   #include <ctype.h>
14 + #include <sys/types.h>
15  
16  
17   typedef struct {
# Line 21 | Line 22 | typedef struct {
22          int     (*fixval)();    /* assignment checking function */
23   } VARIABLE;
24  
25 < int     onevalue(), catvalues();
25 > int     onevalue(), catvalues(), boolvalue(),
26 >        qualvalue(), fltvalue(), intvalue();
27  
28                                  /* variables */
29   #define OBJECT          0               /* object files */
30   #define SCENE           1               /* scene files */
31   #define MATERIAL        2               /* material files */
32 < #define RENDER          3               /* rendering options */
33 < #define OCONV           4               /* oconv options */
34 < #define PFILT           5               /* pfilt options */
35 < #define VIEW            6               /* view(s) for picture(s) */
36 < #define ZONE            7               /* simulation zone */
37 < #define QUALITY         8               /* desired rendering quality */
38 < #define OCTREE          9               /* octree file name */
39 < #define PICTURE         10              /* picture file name */
40 < #define AMBFILE         11              /* ambient file name */
41 < #define OPTFILE         12              /* rendering options file */
42 < #define EXPOSURE        13              /* picture exposure setting */
43 < #define RESOLUTION      14              /* maximum picture resolution */
44 < #define UP              15              /* view up (X, Y or Z) */
45 < #define INDIRECT        16              /* indirection in lighting */
46 < #define DETAIL          17              /* level of scene detail */
47 < #define PENUMBRAS       18              /* shadow penumbras are desired */
48 < #define VARIABILITY     19              /* level of light variability */
49 < #define REPORT          20              /* report frequency and errfile */
32 > #define ILLUM           3               /* mkillum input files */
33 > #define MKILLUM         4               /* mkillum options */
34 > #define RENDER          5               /* rendering options */
35 > #define OCONV           6               /* oconv options */
36 > #define PFILT           7               /* pfilt options */
37 > #define VIEW            8               /* view(s) for picture(s) */
38 > #define ZONE            9               /* simulation zone */
39 > #define QUALITY         10              /* desired rendering quality */
40 > #define OCTREE          11              /* octree file name */
41 > #define PICTURE         12              /* picture file name */
42 > #define AMBFILE         13              /* ambient file name */
43 > #define OPTFILE         14              /* rendering options file */
44 > #define EXPOSURE        15              /* picture exposure setting */
45 > #define RESOLUTION      16              /* maximum picture resolution */
46 > #define UP              17              /* view up (X, Y or Z) */
47 > #define INDIRECT        18              /* indirection in lighting */
48 > #define DETAIL          19              /* level of scene detail */
49 > #define PENUMBRAS       20              /* shadow penumbras are desired */
50 > #define VARIABILITY     21              /* level of light variability */
51 > #define REPORT          22              /* report frequency and errfile */
52                                  /* total number of variables */
53 < #define NVARS           21
53 > #define NVARS           23
54  
55   VARIABLE        vv[NVARS] = {           /* variable-value pairs */
56          {"objects",     3,      0,      NULL,   catvalues},
57          {"scene",       3,      0,      NULL,   catvalues},
58          {"materials",   3,      0,      NULL,   catvalues},
59 +        {"illum",       3,      0,      NULL,   catvalues},
60 +        {"mkillum",     3,      0,      NULL,   catvalues},
61          {"render",      3,      0,      NULL,   catvalues},
62          {"oconv",       3,      0,      NULL,   catvalues},
63          {"pfilt",       2,      0,      NULL,   catvalues},
64          {"view",        2,      0,      NULL,   NULL},
65          {"ZONE",        2,      0,      NULL,   onevalue},
66 <        {"QUALITY",     3,      0,      NULL,   onevalue},
66 >        {"QUALITY",     3,      0,      NULL,   qualvalue},
67          {"OCTREE",      3,      0,      NULL,   onevalue},
68          {"PICTURE",     3,      0,      NULL,   onevalue},
69          {"AMBFILE",     3,      0,      NULL,   onevalue},
70          {"OPTFILE",     3,      0,      NULL,   onevalue},
71 <        {"EXPOSURE",    3,      0,      NULL,   onevalue},
71 >        {"EXPOSURE",    3,      0,      NULL,   fltvalue},
72          {"RESOLUTION",  3,      0,      NULL,   onevalue},
73          {"UP",          2,      0,      NULL,   onevalue},
74 <        {"INDIRECT",    3,      0,      NULL,   onevalue},
75 <        {"DETAIL",      3,      0,      NULL,   onevalue},
76 <        {"PENUMBRAS",   3,      0,      NULL,   onevalue},
77 <        {"VARIABILITY", 3,      0,      NULL,   onevalue},
74 >        {"INDIRECT",    3,      0,      NULL,   intvalue},
75 >        {"DETAIL",      3,      0,      NULL,   qualvalue},
76 >        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
77 >        {"VARIABILITY", 3,      0,      NULL,   qualvalue},
78          {"REPORT",      3,      0,      NULL,   onevalue},
79   };
80  
81   VARIABLE        *matchvar();
82   char    *nvalue();
77 int     vscale();
83  
84   #define UPPER(c)        ((c)&~0x20)     /* ASCII trick */
85  
# Line 83 | Line 88 | int    vscale();
88   #define vval(vc)        (vv[vc].value)
89   #define vint(vc)        atoi(vval(vc))
90   #define vlet(vc)        UPPER(vval(vc)[0])
91 + #define vscale          vlet
92   #define vbool(vc)       (vlet(vc)=='T')
93  
94 < #define HIGH            2
95 < #define MEDIUM          1
96 < #define LOW             0
94 > #define HIGH            'H'
95 > #define MEDIUM          'M'
96 > #define LOW             'L'
97  
98 < int     lowqopts(), medqopts(), hiqopts();
99 < int     (*setqopts[3])() = {lowqopts, medqopts, hiqopts};
98 >                                /* overture calculation file */
99 > #ifdef NIX
100 > char    overfile[] = "overture.raw";
101 > #else
102 > char    overfile[] = "/dev/null";
103 > #endif
104  
105 < #define renderopts      (*setqopts[vscale(QUALITY)])
105 > extern time_t   fdate(), time();
106  
107 < extern long     fdate(), time();
107 > time_t  scenedate;              /* date of latest scene or object file */
108 > time_t  octreedate;             /* date of octree */
109 > time_t  matdate;                /* date of latest material file */
110 > time_t  illumdate;              /* date of last illum file */
111  
112 < long    scenedate;              /* date of latest scene or object file */
113 < long    octreedate;             /* date of octree */
112 > char    *oct0name;              /* name of pre-mkillum octree */
113 > time_t  oct0date;               /* date of pre-mkillum octree */
114 > char    *oct1name;              /* name of post-mkillum octree */
115 > time_t  oct1date;               /* date of post-mkillum octree (>= matdate) */
116  
117 + int     nowarn = 0;             /* no warnings */
118   int     explicate = 0;          /* explicate variables */
119   int     silent = 0;             /* do work silently */
120   int     noaction = 0;           /* don't do anything */
121 + int     sayview = 0;            /* print view out */
122   char    *rvdevice = NULL;       /* rview output device */
123   char    *viewselect = NULL;     /* specific view only */
124  
125   int     overture = 0;           /* overture calculation needed */
126  
127   char    *progname;              /* global argv[0] */
128 + char    *rifname;               /* global rad input file name */
129  
130   char    radname[MAXPATH];       /* root Radiance file name */
131  
# Line 117 | Line 135 | int    argc;
135   char    *argv[];
136   {
137          char    ropts[512];
138 +        char    popts[64];
139          int     i;
140  
141          progname = argv[0];
# Line 135 | Line 154 | char   *argv[];
154                  case 'o':
155                          rvdevice = argv[++i];
156                          break;
157 +                case 'V':
158 +                        sayview++;
159 +                        break;
160                  case 'v':
161                          viewselect = argv[++i];
162                          break;
163 +                case 'w':
164 +                        nowarn++;
165 +                        break;
166                  default:
167                          goto userr;
168                  }
169          if (i >= argc)
170                  goto userr;
171 +        rifname = argv[i];
172                                  /* assign Radiance root file name */
173 <        rootname(radname, argv[i]);
173 >        rootname(radname, rifname);
174                                  /* load variable values */
175 <        load(argv[i]);
175 >        load(rifname);
176                                  /* get any additional assignments */
177          for (i++; i < argc; i++)
178                  setvariable(argv[i]);
# Line 159 | Line 185 | char   *argv[];
185                                  /* print all values if requested */
186          if (explicate)
187                  printvals();
188 <                                /* run simulation */
188 >                                /* build octree (and run mkillum) */
189          oconv();
190 <        renderopts(ropts);
190 >                                /* check date on ambient file */
191 >        checkambfile();
192 >                                /* run simulation */
193 >        renderopts(ropts, popts);
194          xferopts(ropts);
195          if (rvdevice != NULL)
196 <                rview(ropts);
196 >                rview(ropts, popts);
197          else
198 <                rpict(ropts);
198 >                rpict(ropts, popts);
199          exit(0);
200   userr:
201          fprintf(stderr,
202 <        "Usage: %s [-s][-n][-e][-v view][-o dev] rfile [VAR=value ..]\n",
202 >        "Usage: %s [-s][-n][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
203                          progname);
204          exit(1);
205   }
# Line 191 | Line 220 | register char  *rn, *fn;
220   }
221  
222  
223 + #define NOCHAR  127             /* constant for character to delete */
224 +
225 +
226   load(rfname)                    /* load Radiance simulation file */
227   char    *rfname;
228   {
# Line 206 | Line 238 | char   *rfname;
238                  for (cp = buf; *cp; cp++) {
239                          switch (*cp) {
240                          case '\\':
241 <                        case '\n':
210 <                                *cp = ' ';
241 >                                *cp++ = NOCHAR;
242                                  continue;
243                          case '#':
244                                  *cp = '\0';
# Line 227 | Line 258 | setvariable(ass)               /* assign variable according to stri
258   register char   *ass;
259   {
260          char    varname[32];
261 +        int     n;
262          register char   *cp;
263          register VARIABLE       *vp;
264          register int    i;
233        int     n;
265  
266          while (isspace(*ass))           /* skip leading space */
267                  ass++;
# Line 244 | Line 275 | register char  *ass;
275                                          /* trim value */
276          while (isspace(*ass) || *ass == '=')
277                  ass++;
278 <        cp = ass + strlen(ass);
279 <        do
280 <                *cp-- = '\0';
281 <        while (cp >= ass && isspace(*cp));
251 <        n = cp - ass + 1;
252 <        if (!n) {
278 >        for (n = strlen(ass); n > 0; n--)
279 >                if (!isspace(ass[n-1]))
280 >                        break;
281 >        if (!n && !nowarn) {
282                  fprintf(stderr, "%s: warning - missing value for variable '%s'\n",
283                                  progname, varname);
284                  return;
# Line 273 | Line 302 | register char  *ass;
302                  vp->value = malloc(n+1);
303          if (vp->value == NULL)
304                  syserr(progname);
305 <        strcpy(vp->value+i, ass);
305 >        cp = vp->value+i;               /* copy value, squeezing spaces */
306 >        *cp = *ass;
307 >        for (i = 1; i <= n; i++) {
308 >                if (ass[i] == NOCHAR)
309 >                        continue;
310 >                if (isspace(*cp))
311 >                        while (isspace(ass[i]))
312 >                                i++;
313 >                *++cp = ass[i];
314 >        }
315 >        if (isspace(*cp))               /* remove trailing space */
316 >                *cp = '\0';
317          vp->nass++;
318   }
319  
# Line 299 | Line 339 | register int   n;
339   {
340          register char   *cp;
341  
342 <        if (vp == NULL || n < 0 || n >= vp->nass)
342 >        if (vp == NULL | n < 0 | n >= vp->nass)
343                  return(NULL);
344          cp = vp->value;
345          while (n--)
# Line 309 | Line 349 | register int   n;
349   }
350  
351  
312 int
313 vscale(vc)                      /* return scale for variable vc */
314 int     vc;
315 {
316        switch(vlet(vc)) {
317        case 'H':
318                return(HIGH);
319        case 'M':
320                return(MEDIUM);
321        case 'L':
322                return(LOW);
323        }
324        badvalue(vc);
325 }
326
327
352   checkvalues()                   /* check assignments */
353   {
354          register int    i;
# Line 340 | Line 364 | register VARIABLE      *vp;
364   {
365          if (vp->nass < 2)
366                  return;
367 <        fprintf(stderr, "%s: warning - multiple assignment of variable '%s'\n",
367 >        if (!nowarn)
368 >                fprintf(stderr,
369 >                "%s: warning - multiple assignment of variable '%s'\n",
370                          progname, vp->name);
371          do
372                  vp->value += strlen(vp->value)+1;
# Line 363 | Line 389 | register VARIABLE      *vp;
389   }
390  
391  
392 < long
392 > int
393 > badmatch(tv, cv)                /* case insensitive truncated comparison */
394 > register char   *tv, *cv;
395 > {
396 >        if (!*tv) return(1);            /* null string cannot match */
397 >        do
398 >                if (UPPER(*tv) != *cv++)
399 >                        return(1);
400 >        while (*++tv);
401 >        return(0);              /* OK */
402 > }
403 >
404 >
405 > boolvalue(vp)                   /* check boolean for legal values */
406 > register VARIABLE       *vp;
407 > {
408 >        if (!vp->nass) return;
409 >        onevalue(vp);
410 >        switch (UPPER(vp->value[0])) {
411 >        case 'T':
412 >                if (badmatch(vp->value, "TRUE")) break;
413 >                return;
414 >        case 'F':
415 >                if (badmatch(vp->value, "FALSE")) break;
416 >                return;
417 >        }
418 >        fprintf(stderr, "%s: illegal value for boolean variable '%s'\n",
419 >                        progname, vp->name);
420 >        exit(1);
421 > }
422 >
423 >
424 > qualvalue(vp)                   /* check qualitative var. for legal values */
425 > register VARIABLE       *vp;
426 > {
427 >        if (!vp->nass) return;
428 >        onevalue(vp);
429 >        switch (UPPER(vp->value[0])) {
430 >        case 'L':
431 >                if (badmatch(vp->value, "LOW")) break;
432 >                return;
433 >        case 'M':
434 >                if (badmatch(vp->value, "MEDIUM")) break;
435 >                return;
436 >        case 'H':
437 >                if (badmatch(vp->value, "HIGH")) break;
438 >                return;
439 >        }
440 >        fprintf(stderr, "%s: illegal value for qualitative variable '%s'\n",
441 >                        progname, vp->name);
442 >        exit(1);
443 > }
444 >
445 >
446 > intvalue(vp)                    /* check integer variable for legal values */
447 > register VARIABLE       *vp;
448 > {
449 >        if (!vp->nass) return;
450 >        onevalue(vp);
451 >        if (isint(vp->value)) return;
452 >        fprintf(stderr, "%s: illegal value for integer variable '%s'\n",
453 >                        progname, vp->name);
454 >        exit(1);
455 > }
456 >
457 >
458 > fltvalue(vp)                    /* check float variable for legal values */
459 > register VARIABLE       *vp;
460 > {
461 >        if (!vp->nass) return;
462 >        onevalue(vp);
463 >        if (isflt(vp->value)) return;
464 >        fprintf(stderr, "%s: illegal value for real variable '%s'\n",
465 >                        progname, vp->name);
466 >        exit(1);
467 > }
468 >
469 >
470 > time_t
471   checklast(fnames)                       /* check files and find most recent */
472   register char   *fnames;
473   {
474          char    thisfile[MAXPATH];
475 <        long    thisdate, lastdate = -1;
475 >        time_t  thisdate, lastdate = 0;
476          register char   *cp;
477  
478 +        if (fnames == NULL)
479 +                return(0);
480          while (*fnames) {
481                  while (isspace(*fnames)) fnames++;
482                  cp = thisfile;
483                  while (*fnames && !isspace(*fnames))
484                          *cp++ = *fnames++;
485                  *cp = '\0';
486 <                if ((thisdate = fdate(thisfile)) < 0)
486 >                if (!(thisdate = fdate(thisfile)))
487                          syserr(thisfile);
488                  if (thisdate > lastdate)
489                          lastdate = thisdate;
# Line 386 | Line 492 | register char  *fnames;
492   }
493  
494  
495 + char *
496 + newfname(orig, pred)            /* create modified file name */
497 + char    *orig;
498 + int     pred;
499 + {
500 +        extern char     *rindex();
501 +        register char   *cp;
502 +        register int    n;
503 +        int     suffix;
504 +
505 +        n = 0; cp = orig; suffix = -1;          /* suffix position, length */
506 +        while (*cp) {
507 +                if (*cp == '.') suffix = n;
508 +                else if (ISDIRSEP(*cp)) suffix = -1;
509 +                cp++; n++;
510 +        }
511 +        if (suffix == -1) suffix = n;
512 +        if ((cp = bmalloc(n+2)) == NULL)
513 +                syserr(progname);
514 +        strncpy(cp, orig, suffix);
515 +        cp[suffix] = pred;                      /* root name + pred + suffix */
516 +        strcpy(cp+suffix+1, orig+suffix);
517 +        return(cp);
518 + }
519 +
520 +
521   checkfiles()                    /* check for existence and modified times */
522   {
523 <        char    *cp;
392 <        long    objdate;
523 >        time_t  objdate;
524  
525          if (!vdef(OCTREE)) {
526 <                if ((cp = bmalloc(strlen(radname)+5)) == NULL)
526 >                if ((vval(OCTREE) = bmalloc(strlen(radname)+5)) == NULL)
527                          syserr(progname);
528 <                sprintf(cp, "%s.oct", radname);
398 <                vval(OCTREE) = cp;
528 >                sprintf(vval(OCTREE), "%s.oct", radname);
529                  vdef(OCTREE)++;
530          }
531          octreedate = fdate(vval(OCTREE));
532 <        scenedate = -1;
533 <        if (vdef(SCENE)) {
534 <                scenedate = checklast(vval(SCENE));
535 <                if (vdef(OBJECT)) {
536 <                        objdate = checklast(vval(OBJECT));
537 <                        if (objdate > scenedate)
538 <                                scenedate = objdate;
539 <                }
540 <        }
541 <        if (octreedate < 0 & scenedate < 0) {
542 <                fprintf(stderr, "%s: need '%s' or '%s'\n", progname,
543 <                                vnam(OCTREE), vnam(SCENE));
532 >        if (vdef(ILLUM)) {              /* illum requires secondary octrees */
533 >                oct0name = newfname(vval(OCTREE), '0');
534 >                oct1name = newfname(vval(OCTREE), '1');
535 >                oct0date = fdate(oct0name);
536 >                oct1date = fdate(oct1name);
537 >        } else
538 >                oct0name = oct1name = vval(OCTREE);
539 >        if ((scenedate = checklast(vval(SCENE))) &&
540 >                        (objdate = checklast(vval(OBJECT))) > scenedate)
541 >                scenedate = objdate;
542 >        illumdate = checklast(vval(ILLUM));
543 >        if (!octreedate & !scenedate & !illumdate) {
544 >                fprintf(stderr, "%s: need '%s' or '%s' or '%s'\n", progname,
545 >                                vnam(OCTREE), vnam(SCENE), vnam(ILLUM));
546                  exit(1);
547          }
548 +        matdate = checklast(vval(MATERIAL));
549   }      
550  
551  
# Line 421 | Line 554 | double org[3], *sizp;
554   {
555          extern FILE     *popen();
556          static double   oorg[3], osiz = 0.;
557 <        char    buf[MAXPATH+16];
557 >        double  min[3], max[3];
558 >        char    buf[512];
559          FILE    *fp;
560 +        register int    i;
561  
562 <        if (osiz <= FTINY) {
563 <                oconv();                /* does nothing if done already */
564 <                sprintf(buf, "getinfo -d < %s", vval(OCTREE));
565 <                if ((fp = popen(buf, "r")) == NULL)
566 <                        syserr("getinfo");
567 <                if (fscanf(fp, "%lf %lf %lf %lf", &oorg[0], &oorg[1],
568 <                                &oorg[2], &osiz) != 4) {
569 <                        fprintf(stderr,
562 >        if (osiz <= FTINY)
563 >                if (noaction && fdate(oct1name) <
564 >                                (scenedate>illumdate?scenedate:illumdate)) {
565 >                                                        /* run getbbox */
566 >                        sprintf(buf, "getbbox -w -h %s",
567 >                                vdef(SCENE) ? vval(SCENE) : vval(ILLUM));
568 >                        if ((fp = popen(buf, "r")) == NULL)
569 >                                syserr("getbbox");
570 >                        if (fscanf(fp, "%lf %lf %lf %lf %lf %lf",
571 >                                        &min[0], &max[0], &min[1], &max[1],
572 >                                        &min[2], &max[2]) != 6) {
573 >                                fprintf(stderr,
574 >                        "%s: error reading bounding box from getbbox\n",
575 >                                                progname);
576 >                                exit(1);
577 >                        }
578 >                        for (i = 0; i < 3; i++)
579 >                                if (max[i] - min[i] > osiz)
580 >                                        osiz = max[i] - min[i];
581 >                        for (i = 0; i < 3; i++)
582 >                                oorg[i] = (max[i]+min[i]-osiz)*.5;
583 >                        pclose(fp);
584 >                } else {                                /* from octree */
585 >                        oconv();        /* does nothing if done already */
586 >                        sprintf(buf, "getinfo -d < %s", oct1name);
587 >                        if ((fp = popen(buf, "r")) == NULL)
588 >                                syserr("getinfo");
589 >                        if (fscanf(fp, "%lf %lf %lf %lf", &oorg[0], &oorg[1],
590 >                                        &oorg[2], &osiz) != 4) {
591 >                                fprintf(stderr,
592                          "%s: error reading bounding cube from getinfo\n",
593 <                                        progname);
594 <                        exit(1);
593 >                                                progname);
594 >                                exit(1);
595 >                        }
596 >                        pclose(fp);
597                  }
439                pclose(fp);
440        }
598          org[0] = oorg[0]; org[1] = oorg[1]; org[2] = oorg[2]; *sizp = osiz;
599   }
600  
# Line 491 | Line 648 | setdefaults()                  /* set default values for unassigned v
648  
649   printvals()                     /* print variable values */
650   {
651 <        register int    i, j;
651 >        int     i, j, clipline;
652 >        register char   *cp;
653 >        register int    k;
654  
655 <        for (i = 0; i < NVARS; i++)
656 <                for (j = 0; j < vdef(i); j++)
657 <                        printf("%s= %s\n", vnam(i), nvalue(vv+i, j));
655 >        for (i = 0; i < NVARS; i++)             /* print each variable */
656 >            for (j = 0; j < vdef(i); j++) {     /* print each assignment */
657 >                fputs(vnam(i), stdout);
658 >                fputs("= ", stdout);
659 >                k = clipline = ( vv[i].fixval == catvalues ? 64 : 320 )
660 >                                - strlen(vnam(i)) ;
661 >                cp = nvalue(vv+i, j);
662 >                while (*cp) {
663 >                    putchar(*cp++);
664 >                    if (--k <= 0) {             /* line too long */
665 >                        while (*cp && !isspace(*cp))
666 >                            putchar(*cp++);     /* finish this word */
667 >                        if (*cp) {              /* start new line */
668 >                            putchar('\n');
669 >                            fputs(vnam(i), stdout);
670 >                            putchar('=');
671 >                            k = clipline;
672 >                        }
673 >                    }
674 >                }
675 >                putchar('\n');
676 >            }
677          fflush(stdout);
678   }
679  
680  
681 < oconv()                         /* run oconv if necessary */
681 > oconv()                         /* run oconv and mkillum if necessary */
682   {
683 <        char    combuf[512], ocopts[64];
683 >        static char     illumtmp[] = "ilXXXXXX";
684 >        char    combuf[512], ocopts[64], mkopts[64];
685  
686 <        if (octreedate >= scenedate)    /* check dates */
687 <                return;
688 <                                        /* build command */
689 <        oconvopts(ocopts);
690 <        if (vdef(MATERIAL))
512 <                sprintf(combuf, "oconv%s %s %s > %s", ocopts,
686 >        oconvopts(ocopts);              /* get options */
687 >        if (octreedate < scenedate) {   /* check date on original octree */
688 >                                                /* build command */
689 >                if (vdef(MATERIAL))
690 >                        sprintf(combuf, "oconv%s %s %s > %s", ocopts,
691                                  vval(MATERIAL), vval(SCENE), vval(OCTREE));
692 +                else
693 +                        sprintf(combuf, "oconv%s %s > %s", ocopts,
694 +                                        vval(SCENE), vval(OCTREE));
695 +                
696 +                if (runcom(combuf)) {           /* run it */
697 +                        fprintf(stderr,
698 +                                "%s: error generating octree\n\t%s removed\n",
699 +                                        progname, vval(OCTREE));
700 +                        unlink(vval(OCTREE));
701 +                        exit(1);
702 +                }
703 +                octreedate = time((time_t *)NULL);
704 +        }
705 +        if (oct1name == vval(OCTREE))           /* no mkillum? */
706 +                oct1date = octreedate > matdate ? octreedate : matdate;
707 +        if (oct1date >= octreedate & oct1date >= matdate
708 +                        & oct1date >= illumdate)        /* all done */
709 +                return;
710 +                                                /* make octree0 */
711 +        if (oct0date < scenedate | oct0date < illumdate) {
712 +                                                /* build command */
713 +                if (octreedate)
714 +                        sprintf(combuf, "oconv%s -i %s %s > %s", ocopts,
715 +                                vval(OCTREE), vval(ILLUM), oct0name);
716 +                else if (vdef(MATERIAL))
717 +                        sprintf(combuf, "oconv%s %s %s > %s", ocopts,
718 +                                vval(MATERIAL), vval(ILLUM), oct0name);
719 +                else
720 +                        sprintf(combuf, "oconv%s %s > %s", ocopts,
721 +                                vval(ILLUM), oct0name);
722 +                if (runcom(combuf)) {           /* run it */
723 +                        fprintf(stderr,
724 +                                "%s: error generating octree\n\t%s removed\n",
725 +                                        progname, oct0name);
726 +                        unlink(oct0name);
727 +                        exit(1);
728 +                }
729 +                oct0date = time((time_t *)NULL);
730 +        }
731 +        mkillumopts(mkopts);                    /* build mkillum command */
732 +        mktemp(illumtmp);
733 +        sprintf(combuf, "mkillum%s %s \"<\" %s > %s", mkopts,
734 +                        oct0name, vval(ILLUM), illumtmp);
735 +        if (runcom(combuf)) {                   /* run it */
736 +                fprintf(stderr, "%s: error running mkillum\n", progname);
737 +                unlink(illumtmp);
738 +                exit(1);
739 +        }
740 +                                                /* make octree1 (frozen) */
741 +        if (octreedate)
742 +                sprintf(combuf, "oconv%s -f -i %s %s > %s", ocopts,
743 +                        vval(OCTREE), illumtmp, oct1name);
744 +        else if (vdef(MATERIAL))
745 +                sprintf(combuf, "oconv%s -f %s %s > %s", ocopts,
746 +                        vval(MATERIAL), illumtmp, oct1name);
747          else
748 <                sprintf(combuf, "oconv%s %s > %s", ocopts,
749 <                                vval(SCENE), vval(OCTREE));
517 <        
748 >                sprintf(combuf, "oconv%s -f %s > %s", ocopts,
749 >                        illumtmp, oct1name);
750          if (runcom(combuf)) {           /* run it */
751 <                fprintf(stderr, "%s: error generating octree\n\t%s removed\n",
752 <                                progname, vval(OCTREE));
753 <                unlink(vval(OCTREE));
751 >                fprintf(stderr,
752 >                        "%s: error generating octree\n\t%s removed\n",
753 >                                progname, oct1name);
754 >                unlink(oct1name);
755                  exit(1);
756          }
757 <        octreedate = time(0);
757 >        oct1date = time((time_t *)NULL);
758 >        rmfile(illumtmp);
759   }
760  
761  
# Line 547 | Line 781 | register char  *oo;
781   }
782  
783  
784 + mkillumopts(mo)                         /* get mkillum options */
785 + register char   *mo;
786 + {
787 +        /* BEWARE:  This may be called via setdefaults(), so no assumptions */
788 +
789 +        *mo = '\0';
790 +        if (vdef(MKILLUM))
791 +                addarg(mo, vval(MKILLUM));
792 + }
793 +
794 +
795 + checkambfile()                  /* check date on ambient file */
796 + {
797 +        time_t  afdate;
798 +
799 +        if (!vdef(AMBFILE))
800 +                return;
801 +        if (!(afdate = fdate(vval(AMBFILE))))
802 +                return;
803 +        if (oct1date > afdate)
804 +                rmfile(vval(AMBFILE));
805 + }
806 +
807 +
808   double
809   ambval()                                /* compute ambient value */
810   {
811          if (vdef(EXPOSURE)) {
812                  if (vval(EXPOSURE)[0] == '+' || vval(EXPOSURE)[0] == '-')
813                          return(.5/pow(2.,atof(vval(EXPOSURE))));
814 <                if (isdigit(vval(EXPOSURE)[0]) || vval(EXPOSURE)[0] == '.')
557 <                        return(.5/atof(vval(EXPOSURE)));
558 <                badvalue(EXPOSURE);
814 >                return(.5/atof(vval(EXPOSURE)));
815          }
816          if (vlet(ZONE) == 'E')
817                  return(10.);
# Line 565 | Line 821 | ambval()                               /* compute ambient value */
821   }
822  
823  
824 < lowqopts(op)                            /* low quality rendering options */
824 > renderopts(op, po)                      /* set rendering options */
825 > char    *op, *po;
826 > {
827 >        switch(vscale(QUALITY)) {
828 >        case LOW:
829 >                lowqopts(op, po);
830 >                break;
831 >        case MEDIUM:
832 >                medqopts(op, po);
833 >                break;
834 >        case HIGH:
835 >                hiqopts(op, po);
836 >                break;
837 >        }
838 > }
839 >
840 >
841 > lowqopts(op, po)                        /* low quality rendering options */
842   register char   *op;
843 + char    *po;
844   {
845          double  d, org[3], siz[3];
846  
847          *op = '\0';
848 +        *po = '\0';
849          if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf", &org[0],
850                          &siz[0], &org[1], &siz[1], &org[2], &siz[2]) != 6)
851                  badvalue(ZONE);
852          siz[0] -= org[0]; siz[1] -= org[1]; siz[2] -= org[2];
853 +        if (siz[0] <= FTINY | siz[1] <= FTINY | siz[2] <= FTINY)
854 +                badvalue(ZONE);
855          getoctcube(org, &d);
856          d *= 3./(siz[0]+siz[1]+siz[2]);
857          switch (vscale(DETAIL)) {
858          case LOW:
859 <                op = addarg(op, "-ps 16 -dp 16");
859 >                po = addarg(po, "-ps 16");
860 >                op = addarg(op, "-dp 64");
861                  sprintf(op, " -ar %d", (int)(4*d));
862                  op += strlen(op);
863                  break;
864          case MEDIUM:
865 <                op = addarg(op, "-ps 8 -dp 32");
865 >                po = addarg(po, "-ps 8");
866 >                op = addarg(op, "-dp 128");
867                  sprintf(op, " -ar %d", (int)(8*d));
868                  op += strlen(op);
869                  break;
870          case HIGH:
871 <                op = addarg(op, "-ps 4 -dp 64");
871 >                po = addarg(po, "-ps 4");
872 >                op = addarg(op, "-dp 256");
873                  sprintf(op, " -ar %d", (int)(16*d));
874                  op += strlen(op);
875                  break;
876          }
877 <        op = addarg(op, "-pt .16");
877 >        po = addarg(po, "-pt .16");
878          if (vbool(PENUMBRAS))
879                  op = addarg(op, "-ds .4");
880          else
881                  op = addarg(op, "-ds 0");
882 <        op = addarg(op, "-dt .2 -dc .25 -dr 0 -sj 0 -st .7");
882 >        op = addarg(op, "-dt .2 -dc .25 -dr 0 -sj 0 -st .5");
883          if (vdef(AMBFILE)) {
884                  sprintf(op, " -af %s", vval(AMBFILE));
885                  op += strlen(op);
# Line 607 | Line 887 | register char  *op;
887                  overture = 0;
888          switch (vscale(VARIABILITY)) {
889          case LOW:
890 <                op = addarg(op, "-aa .4 -ad 32");
890 >                op = addarg(op, "-aa .4 -ad 64");
891                  break;
892          case MEDIUM:
893 <                op = addarg(op, "-aa .3 -ad 64");
893 >                op = addarg(op, "-aa .3 -ad 128");
894                  break;
895          case HIGH:
896 <                op = addarg(op, "-aa .25 -ad 128");
896 >                op = addarg(op, "-aa .25 -ad 256");
897                  break;
898          }
899          op = addarg(op, "-as 0");
# Line 626 | Line 906 | register char  *op;
906   }
907  
908  
909 < medqopts(op)                            /* medium quality rendering options */
909 > medqopts(op, po)                        /* medium quality rendering options */
910   register char   *op;
911 + char    *po;
912   {
913          double  d, org[3], siz[3];
914  
915          *op = '\0';
916 +        *po = '\0';
917          if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf", &org[0],
918                          &siz[0], &org[1], &siz[1], &org[2], &siz[2]) != 6)
919                  badvalue(ZONE);
920          siz[0] -= org[0]; siz[1] -= org[1]; siz[2] -= org[2];
921 +        if (siz[0] <= FTINY | siz[1] <= FTINY | siz[2] <= FTINY)
922 +                badvalue(ZONE);
923          getoctcube(org, &d);
924          d *= 3./(siz[0]+siz[1]+siz[2]);
925          switch (vscale(DETAIL)) {
926          case LOW:
927 <                op = addarg(op, vbool(PENUMBRAS) ? "-ps 4" : "-ps 8");
928 <                op = addarg(op, "-dp 64");
927 >                po = addarg(po, vbool(PENUMBRAS) ? "-ps 4" : "-ps 8");
928 >                op = addarg(op, "-dp 256");
929                  sprintf(op, " -ar %d", (int)(8*d));
930                  op += strlen(op);
931                  break;
932          case MEDIUM:
933 <                op = addarg(op, vbool(PENUMBRAS) ? "-ps 3" : "-ps 6");
934 <                op = addarg(op, "-dp 128");
933 >                po = addarg(po, vbool(PENUMBRAS) ? "-ps 3" : "-ps 6");
934 >                op = addarg(op, "-dp 512");
935                  sprintf(op, " -ar %d", (int)(16*d));
936                  op += strlen(op);
937                  break;
938          case HIGH:
939 <                op = addarg(op, vbool(PENUMBRAS) ? "-ps 2" : "-ps 4");
940 <                op = addarg(op, "-dp 256");
939 >                po = addarg(po, vbool(PENUMBRAS) ? "-ps 2" : "-ps 4");
940 >                op = addarg(op, "-dp 1024");
941                  sprintf(op, " -ar %d", (int)(32*d));
942                  op += strlen(op);
943                  break;
944          }
945 <        op = addarg(op, "-pt .08");
945 >        po = addarg(po, "-pt .08");
946          if (vbool(PENUMBRAS))
947 <                op = addarg(op, "-ds .2 -dj .35");
947 >                op = addarg(op, "-ds .2 -dj .5");
948          else
949                  op = addarg(op, "-ds .3");
950 <        op = addarg(op, "-dt .1 -dc .5 -dr 1 -sj .7 -st .15");
951 <        sprintf(op, " -ab %d", overture=vint(INDIRECT));
952 <        op += strlen(op);
950 >        op = addarg(op, "-dt .1 -dc .5 -dr 1 -sj .7 -st .1");
951 >        if (overture = vint(INDIRECT)) {
952 >                sprintf(op, " -ab %d", overture);
953 >                op += strlen(op);
954 >        }
955          if (vdef(AMBFILE)) {
956                  sprintf(op, " -af %s", vval(AMBFILE));
957                  op += strlen(op);
# Line 673 | Line 959 | register char  *op;
959                  overture = 0;
960          switch (vscale(VARIABILITY)) {
961          case LOW:
962 <                op = addarg(op, "-aa .25 -ad 128 -as 0");
962 >                op = addarg(op, "-aa .25 -ad 196 -as 0");
963                  break;
964          case MEDIUM:
965 <                op = addarg(op, "-aa .2 -ad 300 -as 64");
965 >                op = addarg(op, "-aa .2 -ad 400 -as 64");
966                  break;
967          case HIGH:
968 <                op = addarg(op, "-aa .15 -ad 500 -as 128");
968 >                op = addarg(op, "-aa .15 -ad 768 -as 196");
969                  break;
970          }
971          d = ambval();
# Line 691 | Line 977 | register char  *op;
977   }
978  
979  
980 < hiqopts(op)                             /* high quality rendering options */
980 > hiqopts(op, po)                         /* high quality rendering options */
981   register char   *op;
982 + char    *po;
983   {
984          double  d, org[3], siz[3];
985  
986          *op = '\0';
987 +        *po = '\0';
988          if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf", &org[0],
989                          &siz[0], &org[1], &siz[1], &org[2], &siz[2]) != 6)
990                  badvalue(ZONE);
991          siz[0] -= org[0]; siz[1] -= org[1]; siz[2] -= org[2];
992 +        if (siz[0] <= FTINY | siz[1] <= FTINY | siz[2] <= FTINY)
993 +                badvalue(ZONE);
994          getoctcube(org, &d);
995          d *= 3./(siz[0]+siz[1]+siz[2]);
996          switch (vscale(DETAIL)) {
997          case LOW:
998 <                op = addarg(op, vbool(PENUMBRAS) ? "-ps 1" : "-ps 8");
999 <                op = addarg(op, "-dp 256");
998 >                po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 8");
999 >                op = addarg(op, "-dp 1024");
1000                  sprintf(op, " -ar %d", (int)(16*d));
1001                  op += strlen(op);
1002                  break;
1003          case MEDIUM:
1004 <                op = addarg(op, vbool(PENUMBRAS) ? "-ps 1" : "-ps 5");
1005 <                op = addarg(op, "-dp 512");
1004 >                po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 5");
1005 >                op = addarg(op, "-dp 2048");
1006                  sprintf(op, " -ar %d", (int)(32*d));
1007                  op += strlen(op);
1008                  break;
1009          case HIGH:
1010 <                op = addarg(op, vbool(PENUMBRAS) ? "-ps 1" : "-ps 3");
1011 <                op = addarg(op, "-dp 1024");
1010 >                po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 3");
1011 >                op = addarg(op, "-dp 4096");
1012                  sprintf(op, " -ar %d", (int)(64*d));
1013                  op += strlen(op);
1014                  break;
1015          }
1016 <        op = addarg(op, "-pt .04");
1016 >        po = addarg(po, "-pt .04");
1017          if (vbool(PENUMBRAS))
1018                  op = addarg(op, "-ds .1 -dj .7");
1019          else
1020                  op = addarg(op, "-ds .2");
1021 <        op = addarg(op, "-dt .05 -dc .75 -dr 3 -sj 1 -st .03");
1021 >        op = addarg(op, "-dt .05 -dc .75 -dr 3 -sj 1 -st .01");
1022          sprintf(op, " -ab %d", overture=vint(INDIRECT)+1);
1023          op += strlen(op);
1024          if (vdef(AMBFILE)) {
# Line 738 | Line 1028 | register char  *op;
1028                  overture = 0;
1029          switch (vscale(VARIABILITY)) {
1030          case LOW:
1031 <                op = addarg(op, "-aa .15 -ad 200 -as 0");
1031 >                op = addarg(op, "-aa .15 -ad 256 -as 0");
1032                  break;
1033          case MEDIUM:
1034 <                op = addarg(op, "-aa .125 -ad 512 -as 128");
1034 >                op = addarg(op, "-aa .125 -ad 512 -as 256");
1035                  break;
1036          case HIGH:
1037 <                op = addarg(op, "-aa .08 -ad 850 -as 256");
1037 >                op = addarg(op, "-aa .08 -ad 1024 -as 512");
1038                  break;
1039          }
1040          d = ambval();
# Line 760 | Line 1050 | xferopts(ro)                           /* transfer options if indicated */
1050   char    *ro;
1051   {
1052          int     fd, n;
1053 +        register char   *cp;
1054          
1055          n = strlen(ro);
1056          if (n < 2)
1057                  return;
1058          if (vdef(OPTFILE)) {
1059 <                if ((fd = open(vval(OPTFILE), O_WRONLY|O_CREAT|O_TRUNC, 0666)) == -1)
1059 >                for (cp = ro; cp[1]; cp++)
1060 >                        if (isspace(cp[1]) && cp[2] == '-' && isalpha(cp[3]))
1061 >                                *cp = '\n';
1062 >                        else
1063 >                                *cp = cp[1];
1064 >                *cp = '\n';
1065 >                fd = open(vval(OPTFILE), O_WRONLY|O_CREAT|O_TRUNC, 0666);
1066 >                if (fd < 0 || write(fd, ro, n) != n || close(fd) < 0)
1067                          syserr(vval(OPTFILE));
1068 <                if (write(fd, ro+1, n-1) != n-1)
771 <                        syserr(vval(OPTFILE));
772 <                write(fd, "\n", 1);
773 <                close(fd);
774 <                sprintf(ro, " \"^%s\"", vval(OPTFILE));
1068 >                sprintf(ro, " @%s", vval(OPTFILE));
1069          }
1070   #ifdef MSDOS
1071          else if (n > 50) {
1072 <                register char   *evp = bmalloc(n+6);
779 <                if (evp == NULL)
780 <                        syserr(progname);
781 <                strcpy(evp, "ROPT=");
782 <                strcat(evp, ro);
783 <                if (putenv(evp) != 0) {
784 <                        fprintf(stderr, "%s: out of environment space\n",
785 <                                        progname);
786 <                        exit(1);
787 <                }
1072 >                setenv("ROPT", ro+1);
1073                  strcpy(ro, " $ROPT");
1074          }
1075   #endif
# Line 799 | Line 1084 | register char  *po;
1084                  po = addarg(po, "-1 -e");
1085                  po = addarg(po, vval(EXPOSURE));
1086          }
1087 <        if (vscale(QUALITY) == HIGH)
1088 <                po = addarg(po, "-r .65");
1087 >        switch (vscale(QUALITY)) {
1088 >        case MEDIUM:
1089 >                po = addarg(po, "-r 1");
1090 >                break;
1091 >        case HIGH:
1092 >                po = addarg(po, "-m .25");
1093 >                break;
1094 >        }
1095          if (vdef(PFILT))
1096                  po = addarg(po, vval(PFILT));
1097   }
# Line 872 | Line 1163 | register char  *vs;
1163                          badvalue(ZONE);
1164                  for (i = 0; i < 3; i++) {
1165                          dim[i] -= cent[i];
1166 +                        if (dim[i] <= FTINY)
1167 +                                badvalue(ZONE);
1168                          cent[i] += .5*dim[i];
1169                  }
1170                  mult = vlet(ZONE)=='E' ? 2. : .45 ;
# Line 924 | Line 1217 | register char  *vs;
1217                          cp += strlen(cp);
1218                  }
1219          }
1220 <                                        /* append any additional options */
1220 >        if (cp == viewopts)             /* append any additional options */
1221 >                vs++;           /* skip prefixed space if unneeded */
1222          strcpy(cp, vs);
1223 + #ifdef MSDOS
1224 +        if (strlen(viewopts) > 40) {
1225 +                setenv("VIEW", viewopts);
1226 +                return("$VIEW");
1227 +        }
1228 + #endif
1229          return(viewopts);
1230   }
1231  
# Line 933 | Line 1233 | register char  *vs;
1233   char *
1234   getview(n, vn)                          /* get view n, or NULL if none */
1235   int     n;
1236 < char    *vn;
1236 > char    *vn;            /* returned view name */
1237   {
1238          register char   *mv;
1239  
1240 <        if (viewselect != NULL) {
1240 >        if (viewselect != NULL) {               /* command-line selected */
1241                  if (n)                          /* only do one */
1242                          return(NULL);
1243                  if (viewselect[0] == '-') {     /* already specified */
# Line 950 | Line 1250 | char   *vn;
1250                                  ;
1251                          *vn = '\0';
1252                  }
1253 +                                                /* view number? */
1254 +                if (isint(viewselect))
1255 +                        return(specview(nvalue(vv+VIEW, atoi(viewselect)-1)));
1256                                                  /* check list */
1257                  while ((mv = nvalue(vv+VIEW, n++)) != NULL)
1258                          if (matchword(viewselect, mv))
1259                                  return(specview(mv));
1260                  return(specview(viewselect));   /* standard view? */
1261          }
1262 <        if (vn != NULL && (mv = nvalue(vv+VIEW, n)) != NULL) {
1263 <                if (*mv != '-')
1264 <                        while (*mv && !isspace(*mv))
1265 <                                *vn++ = *mv++;
1262 >        mv = nvalue(vv+VIEW, n);                /* use view n */
1263 >        if (vn != NULL & mv != NULL) {
1264 >                register char   *mv2 = mv;
1265 >                if (*mv2 != '-')
1266 >                        while (*mv2 && !isspace(*mv2))
1267 >                                *vn++ = *mv2++;
1268                  *vn = '\0';
1269          }
1270 <        return(specview(nvalue(vv+VIEW, n)));   /* use view n */
1270 >        return(specview(mv));
1271   }
1272  
1273  
1274 < rview(opts)                             /* run rview with first view */
1275 < char    *opts;
1274 > printview(vopts)                        /* print out selected view */
1275 > register char   *vopts;
1276   {
1277 +        extern char     *atos(), *getenv();
1278 +        char    buf[256];
1279 +        FILE    *fp;
1280 +        register char   *cp;
1281 +
1282 +        if (vopts == NULL)
1283 +                return(-1);
1284 +        fputs("VIEW=", stdout);
1285 +        do {
1286 +                if (matchword(vopts, "-vf")) {          /* expand view file */
1287 +                        vopts = sskip(vopts);
1288 +                        if (!*atos(buf, sizeof(buf), vopts))
1289 +                                return(-1);
1290 +                        if ((fp = fopen(buf, "r")) == NULL)
1291 +                                return(-1);
1292 +                        for (buf[sizeof(buf)-2] = '\n';
1293 +                                        fgets(buf, sizeof(buf), fp) != NULL &&
1294 +                                                buf[0] != '\n';
1295 +                                        buf[sizeof(buf)-2] = '\n') {
1296 +                                if (buf[sizeof(buf)-2] != '\n') {
1297 +                                        ungetc(buf[sizeof(buf)-2], fp);
1298 +                                        buf[sizeof(buf)-2] = '\0';
1299 +                                }
1300 +                                if (matchword(buf, "VIEW=") ||
1301 +                                                matchword(buf, "rview")) {
1302 +                                        for (cp = sskip(buf); *cp && *cp != '\n'; cp++)
1303 +                                                putchar(*cp);
1304 +                                }
1305 +                        }
1306 +                        fclose(fp);
1307 +                        vopts = sskip(vopts);
1308 +                } else {
1309 +                        while (isspace(*vopts))
1310 +                                vopts++;
1311 +                        putchar(' ');
1312 + #ifdef MSDOS
1313 +                        if (*vopts == '$') {            /* expand env. var. */
1314 +                                if (!*atos(buf, sizeof(buf), vopts+1))
1315 +                                        return(-1);
1316 +                                if ((cp = getenv(buf)) == NULL)
1317 +                                        return(-1);
1318 +                                fputs(cp, stdout);
1319 +                                vopts = sskip(vopts);
1320 +                        } else
1321 + #endif
1322 +                                while (*vopts && !isspace(*vopts))
1323 +                                        putchar(*vopts++);
1324 +                }
1325 +        } while (*vopts++);
1326 +        putchar('\n');
1327 +        return(0);
1328 + }
1329 +
1330 +
1331 + rview(opts, po)                         /* run rview with first view */
1332 + char    *opts, *po;
1333 + {
1334 +        char    *vw;
1335          char    combuf[512];
1336                                          /* build command */
1337 <        sprintf(combuf, "rview %s%s ", getview(0, NULL), opts);
1337 >        if ((vw = getview(0, NULL)) == NULL)
1338 >                return;
1339 >        if (sayview)
1340 >                printview(vw);
1341 >        sprintf(combuf, "rview %s%s%s -R %s ", vw, po, opts, rifname);
1342          if (rvdevice != NULL)
1343                  sprintf(combuf+strlen(combuf), "-o %s ", rvdevice);
1344 <        strcat(combuf, vval(OCTREE));
1344 >        if (vdef(EXPOSURE))
1345 >                sprintf(combuf+strlen(combuf), "-pe %s ", vval(EXPOSURE));
1346 >        strcat(combuf, oct1name);
1347          if (runcom(combuf)) {           /* run it */
1348                  fprintf(stderr, "%s: error running rview\n", progname);
1349                  exit(1);
# Line 982 | Line 1351 | char   *opts;
1351   }
1352  
1353  
1354 < rpict(opts)                             /* run rpict and pfilt for each view */
1355 < char    *opts;
1354 > rpict(opts, po)                         /* run rpict and pfilt for each view */
1355 > char    *opts, *po;
1356   {
1357          char    combuf[1024];
1358          char    rawfile[MAXPATH], picfile[MAXPATH], rep[MAXPATH+16], res[32];
# Line 993 | Line 1362 | char   *opts;
1362                                          /* get pfilt options */
1363          pfiltopts(pfopts);
1364                                          /* get resolution, reporting */
1365 <        mult = vscale(QUALITY)+1;
1365 >        switch (vscale(QUALITY)) {
1366 >        case LOW:
1367 >                mult = 1;
1368 >                break;
1369 >        case MEDIUM:
1370 >                mult = 2;
1371 >                break;
1372 >        case HIGH:
1373 >                mult = 3;
1374 >                break;
1375 >        }
1376          {
1377                  int     xres, yres;
1378                  double  aspect;
# Line 1020 | Line 1399 | char   *opts;
1399                  else
1400                          badvalue(REPORT);
1401          }
1023                                        /* check date on ambient file */
1024        if (vdef(AMBFILE)) {
1025                long    afdate = fdate(vval(AMBFILE));
1026                if (afdate >= 0 & octreedate > afdate)
1027                        rmfile(vval(AMBFILE));
1028        }
1402                                          /* do each view */
1403          vn = 0;
1404          while ((vw = getview(vn++, vs)) != NULL) {
1405 +                if (sayview)
1406 +                        printview(vw);
1407                  if (!vs[0])
1408                          sprintf(vs, "%d", vn);
1409                  sprintf(picfile, "%s_%s.pic", vval(PICTURE), vs);
1410                                                  /* check date on picture */
1411 <                if (fdate(picfile) > octreedate)
1411 >                if (fdate(picfile) >= oct1date)
1412                          continue;
1413                                                  /* build rpict command */
1414                  sprintf(rawfile, "%s_%s.raw", vval(PICTURE), vs);
1415 <                if (fdate(rawfile) > octreedate)        /* recover */
1416 <                        sprintf(combuf, "rpict%s%s -ro %s %s",
1417 <                                        rep, opts, rawfile, vval(OCTREE));
1415 >                if (fdate(rawfile) >= oct1date)         /* recover */
1416 >                        sprintf(combuf, "rpict%s%s%s -ro %s %s",
1417 >                                        rep, po, opts, rawfile, oct1name);
1418                  else {
1419                          if (overture) {         /* run overture calculation */
1420                                  sprintf(combuf,
1421                                  "rpict%s %s%s -x 64 -y 64 -ps 1 %s > %s",
1422                                                  rep, vw, opts,
1423 <                                                vval(OCTREE), rawfile);
1423 >                                                oct1name, overfile);
1424                                  if (runcom(combuf)) {
1425                                          fprintf(stderr,
1426 <                        "%s: error in overture for view %s\n\t%s removed\n",
1427 <                                                progname, vs, rawfile);
1053 <                                        unlink(rawfile);
1426 >                                        "%s: error in overture for view %s\n",
1427 >                                                progname, vs);
1428                                          exit(1);
1429                                  }
1430 + #ifdef NIX
1431 +                                rmfile(overfile);
1432 + #endif
1433                          }
1434 <                        sprintf(combuf, "rpict%s %s %s%s %s > %s",
1435 <                                        rep, vw, res, opts,
1436 <                                        vval(OCTREE), rawfile);
1434 >                        sprintf(combuf, "rpict%s %s %s%s%s %s > %s",
1435 >                                        rep, vw, res, po, opts,
1436 >                                oct1name, rawfile);
1437                  }
1438                  if (runcom(combuf)) {           /* run rpict */
1439                          fprintf(stderr, "%s: error rendering view %s\n",
# Line 1108 | Line 1485 | char   *fn;
1485                  return(0);
1486          return(unlink(fn));
1487   }
1488 +
1489 +
1490 + #ifdef MSDOS
1491 + setenv(vname, value)            /* set an environment variable */
1492 + char    *vname, *value;
1493 + {
1494 +        register char   *evp;
1495 +
1496 +        evp = bmalloc(strlen(vname)+strlen(value)+2);
1497 +        if (evp == NULL)
1498 +                syserr(progname);
1499 +        sprintf(evp, "%s=%s", vname, value);
1500 +        if (putenv(evp) != 0) {
1501 +                fprintf(stderr, "%s: out of environment space\n", progname);
1502 +                exit(1);
1503 +        }
1504 +        if (!silent)
1505 +                printf("set %s\n", evp);
1506 + }
1507 + #endif
1508  
1509  
1510   badvalue(vc)                    /* report bad variable value and exit */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines