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.43 by greg, Thu Jul 6 12:15:40 1995 UTC vs.
Revision 2.57 by gwlarson, Wed Jun 10 17:51:06 1998 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1994 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 <
19 < typedef struct {
20 <        char    *name;          /* variable name */
21 <        short   nick;           /* # characters required for nickname */
22 <        short   nass;           /* # assignments made */
23 <        char    *value;         /* assigned value(s) */
24 <        int     (*fixval)();    /* assignment checking function */
25 < } VARIABLE;
26 <
27 < int     onevalue(), catvalues(), boolvalue(),
28 <        qualvalue(), fltvalue(), intvalue();
29 <
30 <                                /* variables */
31 < #define OBJECT          0               /* object files */
32 < #define SCENE           1               /* scene files */
33 < #define MATERIAL        2               /* material files */
34 < #define ILLUM           3               /* mkillum input files */
35 < #define MKILLUM         4               /* mkillum options */
36 < #define RENDER          5               /* rendering options */
37 < #define OCONV           6               /* oconv options */
38 < #define PFILT           7               /* pfilt options */
39 < #define VIEW            8               /* view(s) for picture(s) */
40 < #define ZONE            9               /* simulation zone */
41 < #define QUALITY         10              /* desired rendering quality */
42 < #define OCTREE          11              /* octree file name */
43 < #define PICTURE         12              /* picture file name */
44 < #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 < #define RAWSAVE         23              /* save raw picture file */
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 < #define NVARS           24
46 > int NVARS = 26;
47  
48 < VARIABLE        vv[NVARS] = {           /* variable-value pairs */
49 <        {"objects",     3,      0,      NULL,   catvalues},
50 <        {"scene",       3,      0,      NULL,   catvalues},
51 <        {"materials",   3,      0,      NULL,   catvalues},
48 > VARIABLE        vv[] = {                /* variable-value pairs */
49 >        {"AMBFILE",     3,      0,      NULL,   onevalue},
50 >        {"DETAIL",      3,      0,      NULL,   qualvalue},
51 >        {"EXPOSURE",    3,      0,      NULL,   fltvalue},
52 >        {"EYESEP",      3,      0,      NULL,   fltvalue},
53          {"illum",       3,      0,      NULL,   catvalues},
54 +        {"INDIRECT",    3,      0,      NULL,   intvalue},
55 +        {"materials",   3,      0,      NULL,   catvalues},
56          {"mkillum",     3,      0,      NULL,   catvalues},
57 <        {"render",      3,      0,      NULL,   catvalues},
57 >        {"objects",     3,      0,      NULL,   catvalues},
58          {"oconv",       3,      0,      NULL,   catvalues},
64        {"pfilt",       2,      0,      NULL,   catvalues},
65        {"view",        2,      0,      NULL,   NULL},
66        {"ZONE",        2,      0,      NULL,   onevalue},
67        {"QUALITY",     3,      0,      NULL,   qualvalue},
59          {"OCTREE",      3,      0,      NULL,   onevalue},
69        {"PICTURE",     3,      0,      NULL,   onevalue},
70        {"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},
75        {"INDIRECT",    3,      0,      NULL,   intvalue},
76        {"DETAIL",      3,      0,      NULL,   qualvalue},
77        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
71          {"VARIABILITY", 3,      0,      NULL,   qualvalue},
72 <        {"REPORT",      3,      0,      NULL,   onevalue},
73 <        {"RAWSAVE",     3,      0,      NULL,   boolvalue},
72 >        {"view",        2,      0,      NULL,   NULL},
73 >        {"ZFILE",       2,      0,      NULL,   onevalue},
74 >        {"ZONE",        2,      0,      NULL,   onevalue},
75   };
76  
83 VARIABLE        *matchvar();
84 char    *nvalue();
85
86 #define UPPER(c)        ((c)&~0x20)     /* ASCII trick */
87
88 #define vnam(vc)        (vv[vc].name)
89 #define vdef(vc)        (vv[vc].nass)
90 #define vval(vc)        (vv[vc].value)
91 #define vint(vc)        atoi(vval(vc))
92 #define vlet(vc)        UPPER(vval(vc)[0])
93 #define vscale          vlet
94 #define vbool(vc)       (vlet(vc)=='T')
95
96 #define HIGH            'H'
97 #define MEDIUM          'M'
98 #define LOW             'L'
99
77                                  /* overture calculation file */
78   #ifdef NIX
79 < char    overfile[] = "overture.raw";
79 > char    overfile[] = "overture.unf";
80   #else
81   char    overfile[] = "/dev/null";
82   #endif
# Line 178 | Line 155 | char   *argv[];
155                                  /* assign Radiance root file name */
156          rootname(radname, rifname);
157                                  /* load variable values */
158 <        load(rifname);
158 >        loadvars(rifname);
159                                  /* get any additional assignments */
160          for (i++; i < argc; i++)
161 <                setvariable(argv[i]);
161 >                if (setvariable(argv[i], matchvar) < 0) {
162 >                        fprintf(stderr, "%s: unknown variable: %s\n",
163 >                                        progname, argv[i]);
164 >                        quit(1);
165 >                }
166                                  /* check assignments */
167          checkvalues();
168                                  /* check files and dates */
# Line 190 | Line 171 | char   *argv[];
171          setdefaults();
172                                  /* print all values if requested */
173          if (explicate)
174 <                printvals();
174 >                printvars(stdout);
175                                  /* build octree (and run mkillum) */
176          oconv();
177                                  /* check date on ambient file */
# Line 202 | Line 183 | char   *argv[];
183                  rview(ropts, popts);
184          else
185                  rpict(ropts, popts);
186 <        exit(0);
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 <        exit(1);
191 >        quit(1);
192   }
193  
194  
# Line 226 | Line 207 | register char  *rn, *fn;
207   }
208  
209  
229 #define NOCHAR  127             /* constant for character to delete */
230
231
232 load(rfname)                    /* load Radiance simulation file */
233 char    *rfname;
234 {
235        FILE    *fp;
236        char    buf[512];
237        register char   *cp;
238
239        if (rfname == NULL)
240                fp = stdin;
241        else if ((fp = fopen(rfname, "r")) == NULL)
242                syserr(rfname);
243        while (fgetline(buf, sizeof(buf), fp) != NULL) {
244                for (cp = buf; *cp; cp++) {
245                        switch (*cp) {
246                        case '\\':
247                                *cp++ = NOCHAR;
248                                continue;
249                        case '#':
250                                *cp = '\0';
251                                break;
252                        default:
253                                continue;
254                        }
255                        break;
256                }
257                setvariable(buf);
258        }
259        fclose(fp);
260 }
261
262
263 setvariable(ass)                /* assign variable according to string */
264 register char   *ass;
265 {
266        char    varname[32];
267        int     n;
268        register char   *cp;
269        register VARIABLE       *vp;
270        register int    i;
271
272        while (isspace(*ass))           /* skip leading space */
273                ass++;
274        cp = varname;                   /* extract name */
275        while (cp < varname+sizeof(varname)-1
276                        && *ass && !isspace(*ass) && *ass != '=')
277                *cp++ = *ass++;
278        *cp = '\0';
279        if (!varname[0])
280                return;         /* no variable name! */
281                                        /* trim value */
282        while (isspace(*ass) || *ass == '=')
283                ass++;
284        for (n = strlen(ass); n > 0; n--)
285                if (!isspace(ass[n-1]))
286                        break;
287        if (!n && !nowarn) {
288                fprintf(stderr, "%s: warning - missing value for variable '%s'\n",
289                                progname, varname);
290                return;
291        }
292                                        /* match variable from list */
293        vp = matchvar(varname);
294        if (vp == NULL) {
295                fprintf(stderr, "%s: unknown variable '%s'\n",
296                                progname, varname);
297                exit(1);
298        }
299                                        /* assign new value */
300        if (i = vp->nass) {
301                cp = vp->value;
302                while (i--)
303                        while (*cp++)
304                                ;
305                i = cp - vp->value;
306                vp->value = realloc(vp->value, i+n+1);
307        } else
308                vp->value = malloc(n+1);
309        if (vp->value == NULL)
310                syserr(progname);
311        cp = vp->value+i;               /* copy value, squeezing spaces */
312        *cp = *ass;
313        for (i = 1; i <= n; i++) {
314                if (ass[i] == NOCHAR)
315                        continue;
316                if (isspace(*cp))
317                        while (isspace(ass[i]))
318                                i++;
319                *++cp = ass[i];
320        }
321        if (isspace(*cp))               /* remove trailing space */
322                *cp = '\0';
323        vp->nass++;
324 }
325
326
327 VARIABLE *
328 matchvar(nam)                   /* match a variable by its name */
329 char    *nam;
330 {
331        int     n = strlen(nam);
332        register int    i;
333
334        for (i = 0; i < NVARS; i++)
335                if (n >= vv[i].nick && !strncmp(nam, vv[i].name, n))
336                        return(vv+i);
337        return(NULL);
338 }
339
340
341 char *
342 nvalue(vp, n)                   /* return nth variable value */
343 VARIABLE        *vp;
344 register int    n;
345 {
346        register char   *cp;
347
348        if (vp == NULL | n < 0 | n >= vp->nass)
349                return(NULL);
350        cp = vp->value;
351        while (n--)
352                while (*cp++)
353                        ;
354        return(cp);
355 }
356
357
358 checkvalues()                   /* check assignments */
359 {
360        register int    i;
361
362        for (i = 0; i < NVARS; i++)
363                if (vv[i].fixval != NULL)
364                        (*vv[i].fixval)(vv+i);
365 }
366
367
368 onevalue(vp)                    /* only one assignment for this variable */
369 register VARIABLE       *vp;
370 {
371        if (vp->nass < 2)
372                return;
373        if (!nowarn)
374                fprintf(stderr,
375                "%s: warning - multiple assignment of variable '%s'\n",
376                        progname, vp->name);
377        do
378                vp->value += strlen(vp->value)+1;
379        while (--vp->nass > 1);
380 }
381
382
383 catvalues(vp)                   /* concatenate variable values */
384 register VARIABLE       *vp;
385 {
386        register char   *cp;
387
388        if (vp->nass < 2)
389                return;
390        for (cp = vp->value; vp->nass > 1; vp->nass--) {
391                while (*cp)
392                        cp++;
393                *cp++ = ' ';
394        }
395 }
396
397
398 int
399 badmatch(tv, cv)                /* case insensitive truncated comparison */
400 register char   *tv, *cv;
401 {
402        if (!*tv) return(1);            /* null string cannot match */
403        do
404                if (UPPER(*tv) != *cv++)
405                        return(1);
406        while (*++tv);
407        return(0);              /* OK */
408 }
409
410
411 boolvalue(vp)                   /* check boolean for legal values */
412 register VARIABLE       *vp;
413 {
414        if (!vp->nass) return;
415        onevalue(vp);
416        switch (UPPER(vp->value[0])) {
417        case 'T':
418                if (badmatch(vp->value, "TRUE")) break;
419                return;
420        case 'F':
421                if (badmatch(vp->value, "FALSE")) break;
422                return;
423        }
424        fprintf(stderr, "%s: illegal value for boolean variable '%s'\n",
425                        progname, vp->name);
426        exit(1);
427 }
428
429
430 qualvalue(vp)                   /* check qualitative var. for legal values */
431 register VARIABLE       *vp;
432 {
433        if (!vp->nass) return;
434        onevalue(vp);
435        switch (UPPER(vp->value[0])) {
436        case 'L':
437                if (badmatch(vp->value, "LOW")) break;
438                return;
439        case 'M':
440                if (badmatch(vp->value, "MEDIUM")) break;
441                return;
442        case 'H':
443                if (badmatch(vp->value, "HIGH")) break;
444                return;
445        }
446        fprintf(stderr, "%s: illegal value for qualitative variable '%s'\n",
447                        progname, vp->name);
448        exit(1);
449 }
450
451
452 intvalue(vp)                    /* check integer variable for legal values */
453 register VARIABLE       *vp;
454 {
455        if (!vp->nass) return;
456        onevalue(vp);
457        if (isint(vp->value)) return;
458        fprintf(stderr, "%s: illegal value for integer variable '%s'\n",
459                        progname, vp->name);
460        exit(1);
461 }
462
463
464 fltvalue(vp)                    /* check float variable for legal values */
465 register VARIABLE       *vp;
466 {
467        if (!vp->nass) return;
468        onevalue(vp);
469        if (isflt(vp->value)) return;
470        fprintf(stderr, "%s: illegal value for real variable '%s'\n",
471                        progname, vp->name);
472        exit(1);
473 }
474
475
210   time_t
211   checklast(fnames)                       /* check files and find most recent */
212   register char   *fnames;
# Line 549 | Line 283 | checkfiles()                   /* check for existence and modified tim
283          if (!octreedate & !scenedate & !illumdate) {
284                  fprintf(stderr, "%s: need '%s' or '%s' or '%s'\n", progname,
285                                  vnam(OCTREE), vnam(SCENE), vnam(ILLUM));
286 <                exit(1);
286 >                quit(1);
287          }
288          matdate = checklast(vval(MATERIAL));
289   }      
# Line 561 | Line 295 | double org[3], *sizp;
295          extern FILE     *popen();
296          static double   oorg[3], osiz = 0.;
297          double  min[3], max[3];
298 <        char    buf[512];
298 >        char    buf[1024];
299          FILE    *fp;
300          register int    i;
301  
# Line 579 | Line 313 | double org[3], *sizp;
313                                  fprintf(stderr,
314                          "%s: error reading bounding box from getbbox\n",
315                                                  progname);
316 <                                exit(1);
316 >                                quit(1);
317                          }
318                          for (i = 0; i < 3; i++)
319                                  if (max[i] - min[i] > osiz)
# Line 597 | Line 331 | double org[3], *sizp;
331                                  fprintf(stderr,
332                          "%s: error reading bounding cube from getinfo\n",
333                                                  progname);
334 <                                exit(1);
334 >                                quit(1);
335                          }
336                          pclose(fp);
337                  }
# Line 633 | 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 649 | Line 383 | setdefaults()                  /* set default values for unassigned v
383                  vval(VARIABILITY) = "L";
384                  vdef(VARIABILITY)++;
385          }
652        if (!vdef(RAWSAVE)) {
653                vval(RAWSAVE) = "F";
654                vdef(RAWSAVE)++;
655        }
386   }
387  
388  
659 printvals()                     /* print variable values */
660 {
661        int     i, j, clipline;
662        register char   *cp;
663        register int    k;
664
665        for (i = 0; i < NVARS; i++)             /* print each variable */
666            for (j = 0; j < vdef(i); j++) {     /* print each assignment */
667                fputs(vnam(i), stdout);
668                fputs("= ", stdout);
669                k = clipline = ( vv[i].fixval == catvalues ? 64 : 320 )
670                                - strlen(vnam(i)) ;
671                cp = nvalue(vv+i, j);
672                while (*cp) {
673                    putchar(*cp++);
674                    if (--k <= 0) {             /* line too long */
675                        while (*cp && !isspace(*cp))
676                            putchar(*cp++);     /* finish this word */
677                        if (*cp) {              /* start new line */
678                            putchar('\n');
679                            fputs(vnam(i), stdout);
680                            putchar('=');
681                            k = clipline;
682                        }
683                    }
684                }
685                putchar('\n');
686            }
687        fflush(stdout);
688 }
689
690
389   oconv()                         /* run oconv and mkillum if necessary */
390   {
391          static char     illumtmp[] = "ilXXXXXX";
392 <        char    combuf[512], ocopts[64], mkopts[64];
392 >        char    combuf[1024], ocopts[64], mkopts[64];
393  
394          oconvopts(ocopts);              /* get options */
395          if (octreedate < scenedate) {   /* check date on original octree */
# Line 711 | Line 409 | oconv()                                /* run oconv and mkillum if necessary */
409                                  "%s: error generating octree\n\t%s removed\n",
410                                                  progname, vval(OCTREE));
411                                  unlink(vval(OCTREE));
412 <                                exit(1);
412 >                                quit(1);
413                          }
414                  }
415                  octreedate = time((time_t *)NULL);
# Line 742 | Line 440 | oconv()                                /* run oconv and mkillum if necessary */
440                                  "%s: error generating octree\n\t%s removed\n",
441                                                  progname, oct0name);
442                                  unlink(oct0name);
443 <                                exit(1);
443 >                                quit(1);
444                          }
445                  }
446                  oct0date = time((time_t *)NULL);
# Line 762 | Line 460 | oconv()                                /* run oconv and mkillum if necessary */
460                          fprintf(stderr, "%s: error running mkillum\n",
461                                          progname);
462                          unlink(illumtmp);
463 <                        exit(1);
463 >                        quit(1);
464                  }
465                                                  /* make octree1 (frozen) */
466                  if (octreedate)
# Line 779 | Line 477 | oconv()                                /* run oconv and mkillum if necessary */
477                                  "%s: error generating octree\n\t%s removed\n",
478                                          progname, oct1name);
479                          unlink(oct1name);
480 <                        exit(1);
480 >                        unlink(illumtmp);
481 >                        quit(1);
482                  }
483                  rmfile(illumtmp);
484          }
# Line 843 | Line 542 | ambval()                               /* compute ambient value */
542   {
543          if (vdef(EXPOSURE)) {
544                  if (vval(EXPOSURE)[0] == '+' || vval(EXPOSURE)[0] == '-')
545 <                        return(.5/pow(2.,atof(vval(EXPOSURE))));
546 <                return(.5/atof(vval(EXPOSURE)));
545 >                        return(.5/pow(2.,vflt(EXPOSURE)));
546 >                return(.5/vflt(EXPOSURE));
547          }
548          if (vlet(ZONE) == 'E')
549                  return(10.);
# Line 943 | Line 642 | medqopts(op, po)                       /* medium quality rendering options
642   register char   *op;
643   char    *po;
644   {
645 <        double  d, org[3], siz[3];
645 >        double  d, org[3], siz[3], asz;
646  
647          *op = '\0';
648          *po = '\0';
# Line 954 | Line 653 | char   *po;
653          if (siz[0] <= FTINY | siz[1] <= FTINY | siz[2] <= FTINY)
654                  badvalue(ZONE);
655          getoctcube(org, &d);
656 <        d *= 3./(siz[0]+siz[1]+siz[2]);
656 >        asz = (siz[0]+siz[1]+siz[2])/3.;
657 >        d /= asz;
658          switch (vscale(DETAIL)) {
659          case LOW:
660                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 4" : "-ps 8");
661                  op = addarg(op, "-dp 256");
662                  sprintf(op, " -ar %d", (int)(8*d));
663                  op += strlen(op);
664 +                sprintf(op, " -ms %.2g", asz/20.);
665 +                op += strlen(op);
666                  break;
667          case MEDIUM:
668                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 3" : "-ps 6");
669                  op = addarg(op, "-dp 512");
670                  sprintf(op, " -ar %d", (int)(16*d));
671                  op += strlen(op);
672 +                sprintf(op, " -ms %.2g", asz/40.);
673 +                op += strlen(op);
674                  break;
675          case HIGH:
676                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 2" : "-ps 4");
677                  op = addarg(op, "-dp 1024");
678                  sprintf(op, " -ar %d", (int)(32*d));
679                  op += strlen(op);
680 +                sprintf(op, " -ms %.2g", asz/80.);
681 +                op += strlen(op);
682                  break;
683          }
684          po = addarg(po, "-pt .08");
# Line 1014 | Line 720 | hiqopts(op, po)                                /* high quality rendering options *
720   register char   *op;
721   char    *po;
722   {
723 <        double  d, org[3], siz[3];
723 >        double  d, org[3], siz[3], asz;
724  
725          *op = '\0';
726          *po = '\0';
# Line 1025 | Line 731 | char   *po;
731          if (siz[0] <= FTINY | siz[1] <= FTINY | siz[2] <= FTINY)
732                  badvalue(ZONE);
733          getoctcube(org, &d);
734 <        d *= 3./(siz[0]+siz[1]+siz[2]);
734 >        asz = (siz[0]+siz[1]+siz[2])/3.;
735 >        d /= asz;
736          switch (vscale(DETAIL)) {
737          case LOW:
738                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 8");
739                  op = addarg(op, "-dp 1024");
740                  sprintf(op, " -ar %d", (int)(16*d));
741                  op += strlen(op);
742 +                sprintf(op, " -ms %.2g", asz/40.);
743 +                op += strlen(op);
744                  break;
745          case MEDIUM:
746                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 5");
747                  op = addarg(op, "-dp 2048");
748                  sprintf(op, " -ar %d", (int)(32*d));
749                  op += strlen(op);
750 +                sprintf(op, " -ms %.2g", asz/80.);
751 +                op += strlen(op);
752                  break;
753          case HIGH:
754                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 3");
755                  op = addarg(op, "-dp 4096");
756                  sprintf(op, " -ar %d", (int)(64*d));
757                  op += strlen(op);
758 +                sprintf(op, " -ms %.2g", asz/160.);
759 +                op += strlen(op);
760                  break;
761          }
762          po = addarg(po, "-pt .04");
# Line 1090 | Line 803 | char   *ro;
803                  return;
804          if (vdef(OPTFILE)) {
805                  for (cp = ro; cp[1]; cp++)
806 <                        if (isspace(cp[1]) && cp[2] == '-' && isalpha(cp[3]))
806 >                        if (isspace(cp[1]) && (cp[2] == '@' ||
807 >                                        (cp[2] == '-' && isalpha(cp[3]))))
808                                  *cp = '\n';
809                          else
810                                  *cp = cp[1];
# Line 1185 | Line 899 | register char  *vs;
899                  zpos = -1; vs++;
900          }
901          viewtype = 'v';
902 <        if (*vs == 'v' | *vs == 'l' | *vs == 'a' | *vs == 'h')
902 >        if (*vs == 'v' | *vs == 'l' | *vs == 'a' | *vs == 'h' | *vs == 'c')
903                  viewtype = *vs++;
904          cp = viewopts;
905          if ((!*vs || isspace(*vs)) && (xpos|ypos|zpos)) {       /* got one! */
# Line 1240 | Line 954 | register char  *vs;
954                  case 'h':
955                          cp = addarg(cp, "-vh 180 -vv 180");
956                          break;
957 +                case 'c':
958 +                        cp = addarg(cp, "-vh 180 -vv 90");
959 +                        break;
960                  }
961          } else {
962                  while (!isspace(*vs))           /* else skip id */
# Line 1285 | Line 1002 | char   *vn;            /* returned view name */
1002                  }
1003                                                  /* view number? */
1004                  if (isint(viewselect))
1005 <                        return(specview(nvalue(vv+VIEW, atoi(viewselect)-1)));
1005 >                        return(specview(nvalue(VIEWS, atoi(viewselect)-1)));
1006                                                  /* check list */
1007 <                while ((mv = nvalue(vv+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(vv+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 1307 | 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);
1317        fputs("VIEW=", stdout);
1318        do {
1319                if (matchword(vopts, "-vf")) {          /* expand view file */
1320                        vopts = sskip(vopts);
1321                        if (!*atos(buf, sizeof(buf), vopts))
1322                                return(-1);
1323                        if ((fp = fopen(buf, "r")) == NULL)
1324                                return(-1);
1325                        for (buf[sizeof(buf)-2] = '\n';
1326                                        fgets(buf, sizeof(buf), fp) != NULL &&
1327                                                buf[0] != '\n';
1328                                        buf[sizeof(buf)-2] = '\n') {
1329                                if (buf[sizeof(buf)-2] != '\n') {
1330                                        ungetc(buf[sizeof(buf)-2], fp);
1331                                        buf[sizeof(buf)-2] = '\0';
1332                                }
1333                                if (matchword(buf, "VIEW=") ||
1334                                                matchword(buf, "rview")) {
1335                                        for (cp = sskip(buf); *cp && *cp != '\n'; cp++)
1336                                                putchar(*cp);
1337                                }
1338                        }
1339                        fclose(fp);
1340                        vopts = sskip(vopts);
1341                } else {
1342                        while (isspace(*vopts))
1343                                vopts++;
1344                        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)
1350 <                                        return(-1);
1351 <                                fputs(cp, stdout);
1352 <                                vopts = sskip(vopts);
1353 <                        } 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  
# Line 1379 | Line 1068 | char   *opts, *po;
1068          strcat(combuf, oct1name);
1069          if (runcom(combuf)) {           /* run it */
1070                  fprintf(stderr, "%s: error running rview\n", progname);
1071 <                exit(1);
1071 >                quit(1);
1072          }
1073   }
1074  
# Line 1388 | Line 1077 | rpict(opts, po)                                /* run rpict and pfilt for each vie
1077   char    *opts, *po;
1078   {
1079          char    combuf[1024];
1080 <        char    rawfile[MAXPATH], picfile[MAXPATH], rep[MAXPATH+16], res[32];
1080 >        char    rawfile[MAXPATH], picfile[MAXPATH];
1081 >        char    zopt[MAXPATH+4], rep[MAXPATH+16], res[32];
1082          char    pfopts[128];
1083          char    vs[32], *vw;
1084          int     vn, mult;
# Line 1441 | Line 1131 | char   *opts, *po;
1131                  if (!vs[0])
1132                          sprintf(vs, "%d", vn);
1133                  sprintf(picfile, "%s_%s.pic", vval(PICTURE), vs);
1134 +                if (vdef(ZFILE))
1135 +                        sprintf(zopt, " -z %s_%s.zbf", vval(ZFILE), vs);
1136 +                else
1137 +                        zopt[0] = '\0';
1138                                                  /* check date on picture */
1139                  pfdt = fdate(picfile);
1140                  if (pfdt >= oct1date)
1141                          continue;
1142                                                  /* get raw file name */
1143 <                sprintf(rawfile, "%s_%s.raw", vval(PICTURE), vs);
1143 >                sprintf(rawfile, "%s_%s.unf",
1144 >                        vdef(RAWFILE) ? vval(RAWFILE) : vval(PICTURE), vs);
1145                  rfdt = fdate(rawfile);
1146                  if (touchonly) {                /* update times only */
1147                          if (rfdt) {
# Line 1458 | Line 1153 | char   *opts, *po;
1153                  }
1154                                                  /* build rpict command */
1155                  if (rfdt >= oct1date)           /* recover */
1156 <                        sprintf(combuf, "rpict%s%s%s -ro %s %s",
1157 <                                        rep, po, opts, rawfile, oct1name);
1156 >                        sprintf(combuf, "rpict%s%s%s%s -ro %s %s",
1157 >                                rep, po, opts, zopt, rawfile, oct1name);
1158                  else {
1159                          if (overture) {         /* run overture calculation */
1160                                  sprintf(combuf,
# Line 1470 | Line 1165 | char   *opts, *po;
1165                                          fprintf(stderr,
1166                                          "%s: error in overture for view %s\n",
1167                                                  progname, vs);
1168 <                                        exit(1);
1168 >                                        quit(1);
1169                                  }
1170   #ifdef NIX
1171                                  rmfile(overfile);
1172   #endif
1173                          }
1174 <                        sprintf(combuf, "rpict%s %s %s%s%s %s > %s",
1175 <                                        rep, vw, res, po, opts,
1176 <                                oct1name, rawfile);
1174 >                        sprintf(combuf, "rpict%s %s %s%s%s%s %s > %s",
1175 >                                        rep, vw, res, po, opts, zopt,
1176 >                                        oct1name, rawfile);
1177                  }
1178                  if (runcom(combuf)) {           /* run rpict */
1179                          fprintf(stderr, "%s: error rendering view %s\n",
1180                                          progname, vs);
1181 <                        exit(1);
1181 >                        quit(1);
1182                  }
1183 +                if (!vdef(RAWFILE) || strcmp(vval(RAWFILE),vval(PICTURE))) {
1184                                                  /* build pfilt command */
1185 <                if (mult > 1)
1186 <                        sprintf(combuf, "pfilt%s -x /%d -y /%d %s > %s",
1185 >                        if (mult > 1)
1186 >                                sprintf(combuf, "pfilt%s -x /%d -y /%d %s > %s",
1187                                          pfopts, mult, mult, rawfile, picfile);
1188 <                else
1189 <                        sprintf(combuf, "pfilt%s %s > %s", pfopts,
1190 <                                        rawfile, picfile);
1191 <                if (runcom(combuf)) {           /* run pfilt */
1192 <                        fprintf(stderr,
1193 <                        "%s: error filtering view %s\n\t%s removed\n",
1194 <                                        progname, vs, picfile);
1195 <                        unlink(picfile);
1196 <                        exit(1);
1188 >                        else
1189 >                                sprintf(combuf, "pfilt%s %s > %s", pfopts,
1190 >                                                rawfile, picfile);
1191 >                        if (runcom(combuf)) {           /* run pfilt */
1192 >                                fprintf(stderr,
1193 >                                "%s: error filtering view %s\n\t%s removed\n",
1194 >                                                progname, vs, picfile);
1195 >                                unlink(picfile);
1196 >                                quit(1);
1197 >                        }
1198                  }
1199                                                  /* remove/rename raw file */
1200 <                if (vbool(RAWSAVE)) {
1201 <                        sprintf(combuf, "%s_%s.rwp", vval(PICTURE), vs);
1200 >                if (vdef(RAWFILE)) {
1201 >                        sprintf(combuf, "%s_%s.pic", vval(RAWFILE), vs);
1202                          mvfile(rawfile, combuf);
1203                  } else
1204                          rmfile(rawfile);
# Line 1579 | Line 1276 | char   *vname, *value;
1276          sprintf(evp, "%s=%s", vname, value);
1277          if (putenv(evp) != 0) {
1278                  fprintf(stderr, "%s: out of environment space\n", progname);
1279 <                exit(1);
1279 >                quit(1);
1280          }
1281          if (!silent)
1282                  printf("set %s\n", evp);
# Line 1592 | Line 1289 | int    vc;
1289   {
1290          fprintf(stderr, "%s: bad value for variable '%s'\n",
1291                          progname, vnam(vc));
1292 <        exit(1);
1292 >        quit(1);
1293   }
1294  
1295  
# Line 1600 | Line 1297 | syserr(s)                      /* report a system error and exit */
1297   char    *s;
1298   {
1299          perror(s);
1300 <        exit(1);
1300 >        quit(1);
1301 > }
1302 >
1303 >
1304 > quit(ec)                        /* exit program */
1305 > int     ec;
1306 > {
1307 >        exit(ec);
1308   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines