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.41 by greg, Mon Oct 24 13:49:16 1994 UTC vs.
Revision 2.60 by gwlarson, Tue Feb 2 08:57:56 1999 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1994 Regents of the University of California */
1 > /* Copyright (c) 1999 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 */
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           23
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},
63        {"pfilt",       2,      0,      NULL,   catvalues},
64        {"view",        2,      0,      NULL,   NULL},
65        {"ZONE",        2,      0,      NULL,   onevalue},
66        {"QUALITY",     3,      0,      NULL,   qualvalue},
59          {"OCTREE",      3,      0,      NULL,   onevalue},
68        {"PICTURE",     3,      0,      NULL,   onevalue},
69        {"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},
74        {"INDIRECT",    3,      0,      NULL,   intvalue},
75        {"DETAIL",      3,      0,      NULL,   qualvalue},
76        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
71          {"VARIABILITY", 3,      0,      NULL,   qualvalue},
72 <        {"REPORT",      3,      0,      NULL,   onevalue},
72 >        {"view",        2,      0,      NULL,   NULL},
73 >        {"ZFILE",       2,      0,      NULL,   onevalue},
74 >        {"ZONE",        2,      0,      NULL,   onevalue},
75   };
76  
81 VARIABLE        *matchvar();
82 char    *nvalue();
83
84 #define UPPER(c)        ((c)&~0x20)     /* ASCII trick */
85
86 #define vnam(vc)        (vv[vc].name)
87 #define vdef(vc)        (vv[vc].nass)
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            'H'
95 #define MEDIUM          'M'
96 #define LOW             'L'
97
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 176 | 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 188 | 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 200 | 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 224 | Line 207 | register char  *rn, *fn;
207   }
208  
209  
227 #define NOCHAR  127             /* constant for character to delete */
228
229
230 load(rfname)                    /* load Radiance simulation file */
231 char    *rfname;
232 {
233        FILE    *fp;
234        char    buf[512];
235        register char   *cp;
236
237        if (rfname == NULL)
238                fp = stdin;
239        else if ((fp = fopen(rfname, "r")) == NULL)
240                syserr(rfname);
241        while (fgetline(buf, sizeof(buf), fp) != NULL) {
242                for (cp = buf; *cp; cp++) {
243                        switch (*cp) {
244                        case '\\':
245                                *cp++ = NOCHAR;
246                                continue;
247                        case '#':
248                                *cp = '\0';
249                                break;
250                        default:
251                                continue;
252                        }
253                        break;
254                }
255                setvariable(buf);
256        }
257        fclose(fp);
258 }
259
260
261 setvariable(ass)                /* assign variable according to string */
262 register char   *ass;
263 {
264        char    varname[32];
265        int     n;
266        register char   *cp;
267        register VARIABLE       *vp;
268        register int    i;
269
270        while (isspace(*ass))           /* skip leading space */
271                ass++;
272        cp = varname;                   /* extract name */
273        while (cp < varname+sizeof(varname)-1
274                        && *ass && !isspace(*ass) && *ass != '=')
275                *cp++ = *ass++;
276        *cp = '\0';
277        if (!varname[0])
278                return;         /* no variable name! */
279                                        /* trim value */
280        while (isspace(*ass) || *ass == '=')
281                ass++;
282        for (n = strlen(ass); n > 0; n--)
283                if (!isspace(ass[n-1]))
284                        break;
285        if (!n && !nowarn) {
286                fprintf(stderr, "%s: warning - missing value for variable '%s'\n",
287                                progname, varname);
288                return;
289        }
290                                        /* match variable from list */
291        vp = matchvar(varname);
292        if (vp == NULL) {
293                fprintf(stderr, "%s: unknown variable '%s'\n",
294                                progname, varname);
295                exit(1);
296        }
297                                        /* assign new value */
298        if (i = vp->nass) {
299                cp = vp->value;
300                while (i--)
301                        while (*cp++)
302                                ;
303                i = cp - vp->value;
304                vp->value = realloc(vp->value, i+n+1);
305        } else
306                vp->value = malloc(n+1);
307        if (vp->value == NULL)
308                syserr(progname);
309        cp = vp->value+i;               /* copy value, squeezing spaces */
310        *cp = *ass;
311        for (i = 1; i <= n; i++) {
312                if (ass[i] == NOCHAR)
313                        continue;
314                if (isspace(*cp))
315                        while (isspace(ass[i]))
316                                i++;
317                *++cp = ass[i];
318        }
319        if (isspace(*cp))               /* remove trailing space */
320                *cp = '\0';
321        vp->nass++;
322 }
323
324
325 VARIABLE *
326 matchvar(nam)                   /* match a variable by its name */
327 char    *nam;
328 {
329        int     n = strlen(nam);
330        register int    i;
331
332        for (i = 0; i < NVARS; i++)
333                if (n >= vv[i].nick && !strncmp(nam, vv[i].name, n))
334                        return(vv+i);
335        return(NULL);
336 }
337
338
339 char *
340 nvalue(vp, n)                   /* return nth variable value */
341 VARIABLE        *vp;
342 register int    n;
343 {
344        register char   *cp;
345
346        if (vp == NULL | n < 0 | n >= vp->nass)
347                return(NULL);
348        cp = vp->value;
349        while (n--)
350                while (*cp++)
351                        ;
352        return(cp);
353 }
354
355
356 checkvalues()                   /* check assignments */
357 {
358        register int    i;
359
360        for (i = 0; i < NVARS; i++)
361                if (vv[i].fixval != NULL)
362                        (*vv[i].fixval)(vv+i);
363 }
364
365
366 onevalue(vp)                    /* only one assignment for this variable */
367 register VARIABLE       *vp;
368 {
369        if (vp->nass < 2)
370                return;
371        if (!nowarn)
372                fprintf(stderr,
373                "%s: warning - multiple assignment of variable '%s'\n",
374                        progname, vp->name);
375        do
376                vp->value += strlen(vp->value)+1;
377        while (--vp->nass > 1);
378 }
379
380
381 catvalues(vp)                   /* concatenate variable values */
382 register VARIABLE       *vp;
383 {
384        register char   *cp;
385
386        if (vp->nass < 2)
387                return;
388        for (cp = vp->value; vp->nass > 1; vp->nass--) {
389                while (*cp)
390                        cp++;
391                *cp++ = ' ';
392        }
393 }
394
395
396 int
397 badmatch(tv, cv)                /* case insensitive truncated comparison */
398 register char   *tv, *cv;
399 {
400        if (!*tv) return(1);            /* null string cannot match */
401        do
402                if (UPPER(*tv) != *cv++)
403                        return(1);
404        while (*++tv);
405        return(0);              /* OK */
406 }
407
408
409 boolvalue(vp)                   /* check boolean for legal values */
410 register VARIABLE       *vp;
411 {
412        if (!vp->nass) return;
413        onevalue(vp);
414        switch (UPPER(vp->value[0])) {
415        case 'T':
416                if (badmatch(vp->value, "TRUE")) break;
417                return;
418        case 'F':
419                if (badmatch(vp->value, "FALSE")) break;
420                return;
421        }
422        fprintf(stderr, "%s: illegal value for boolean variable '%s'\n",
423                        progname, vp->name);
424        exit(1);
425 }
426
427
428 qualvalue(vp)                   /* check qualitative var. for legal values */
429 register VARIABLE       *vp;
430 {
431        if (!vp->nass) return;
432        onevalue(vp);
433        switch (UPPER(vp->value[0])) {
434        case 'L':
435                if (badmatch(vp->value, "LOW")) break;
436                return;
437        case 'M':
438                if (badmatch(vp->value, "MEDIUM")) break;
439                return;
440        case 'H':
441                if (badmatch(vp->value, "HIGH")) break;
442                return;
443        }
444        fprintf(stderr, "%s: illegal value for qualitative variable '%s'\n",
445                        progname, vp->name);
446        exit(1);
447 }
448
449
450 intvalue(vp)                    /* check integer variable for legal values */
451 register VARIABLE       *vp;
452 {
453        if (!vp->nass) return;
454        onevalue(vp);
455        if (isint(vp->value)) return;
456        fprintf(stderr, "%s: illegal value for integer variable '%s'\n",
457                        progname, vp->name);
458        exit(1);
459 }
460
461
462 fltvalue(vp)                    /* check float variable for legal values */
463 register VARIABLE       *vp;
464 {
465        if (!vp->nass) return;
466        onevalue(vp);
467        if (isflt(vp->value)) return;
468        fprintf(stderr, "%s: illegal value for real variable '%s'\n",
469                        progname, vp->name);
470        exit(1);
471 }
472
473
210   time_t
211   checklast(fnames)                       /* check files and find most recent */
212   register char   *fnames;
213   {
214          char    thisfile[MAXPATH];
215          time_t  thisdate, lastdate = 0;
480        register char   *cp;
216  
217          if (fnames == NULL)
218                  return(0);
219 <        while (*fnames) {
220 <                while (isspace(*fnames)) fnames++;
221 <                cp = thisfile;
222 <                while (*fnames && !isspace(*fnames))
488 <                        *cp++ = *fnames++;
489 <                *cp = '\0';
219 >        while ((fnames = nextword(thisfile, MAXPATH, fnames)) != NULL) {
220 >                if (thisfile[0] == '!' ||
221 >                                (thisfile[0] == '\\' && thisfile[1] == '!'))
222 >                        continue;
223                  if (!(thisdate = fdate(thisfile)))
224                          syserr(thisfile);
225                  if (thisdate > lastdate)
# Line 547 | Line 280 | checkfiles()                   /* check for existence and modified tim
280          if (!octreedate & !scenedate & !illumdate) {
281                  fprintf(stderr, "%s: need '%s' or '%s' or '%s'\n", progname,
282                                  vnam(OCTREE), vnam(SCENE), vnam(ILLUM));
283 <                exit(1);
283 >                quit(1);
284          }
285          matdate = checklast(vval(MATERIAL));
286   }      
# Line 559 | Line 292 | double org[3], *sizp;
292          extern FILE     *popen();
293          static double   oorg[3], osiz = 0.;
294          double  min[3], max[3];
295 <        char    buf[512];
295 >        char    buf[1024];
296          FILE    *fp;
297          register int    i;
298  
# Line 577 | Line 310 | double org[3], *sizp;
310                                  fprintf(stderr,
311                          "%s: error reading bounding box from getbbox\n",
312                                                  progname);
313 <                                exit(1);
313 >                                quit(1);
314                          }
315                          for (i = 0; i < 3; i++)
316                                  if (max[i] - min[i] > osiz)
# Line 595 | Line 328 | double org[3], *sizp;
328                                  fprintf(stderr,
329                          "%s: error reading bounding cube from getinfo\n",
330                                                  progname);
331 <                                exit(1);
331 >                                quit(1);
332                          }
333                          pclose(fp);
334                  }
# Line 605 | Line 338 | double org[3], *sizp;
338  
339   setdefaults()                   /* set default values for unassigned var's */
340   {
341 <        double  org[3], size;
341 >        double  org[3], lim[3], size;
342          char    buf[128];
343  
344          if (!vdef(ZONE)) {
# Line 615 | Line 348 | setdefaults()                  /* set default values for unassigned v
348                  vval(ZONE) = savqstr(buf);
349                  vdef(ZONE)++;
350          }
351 +        if (!vdef(EYESEP)) {
352 +                if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf",
353 +                                &org[0], &lim[0], &org[1], &lim[1],
354 +                                &org[2], &lim[2]) != 6)
355 +                        badvalue(ZONE);
356 +                sprintf(buf, "%f",
357 +                        0.01*(lim[0]-org[0]+lim[1]-org[1]+lim[2]-org[2]));
358 +                vval(EYESEP) = savqstr(buf);
359 +                vdef(EYESEP)++;
360 +        }
361          if (!vdef(INDIRECT)) {
362                  vval(INDIRECT) = "0";
363                  vdef(INDIRECT)++;
# Line 631 | Line 374 | setdefaults()                  /* set default values for unassigned v
374                  vval(PICTURE) = radname;
375                  vdef(PICTURE)++;
376          }
377 <        if (!vdef(VIEW)) {
378 <                vval(VIEW) = "X";
379 <                vdef(VIEW)++;
377 >        if (!vdef(VIEWS)) {
378 >                vval(VIEWS) = "X";
379 >                vdef(VIEWS)++;
380          }
381          if (!vdef(DETAIL)) {
382                  vval(DETAIL) = "M";
# Line 650 | Line 393 | setdefaults()                  /* set default values for unassigned v
393   }
394  
395  
653 printvals()                     /* print variable values */
654 {
655        int     i, j, clipline;
656        register char   *cp;
657        register int    k;
658
659        for (i = 0; i < NVARS; i++)             /* print each variable */
660            for (j = 0; j < vdef(i); j++) {     /* print each assignment */
661                fputs(vnam(i), stdout);
662                fputs("= ", stdout);
663                k = clipline = ( vv[i].fixval == catvalues ? 64 : 320 )
664                                - strlen(vnam(i)) ;
665                cp = nvalue(vv+i, j);
666                while (*cp) {
667                    putchar(*cp++);
668                    if (--k <= 0) {             /* line too long */
669                        while (*cp && !isspace(*cp))
670                            putchar(*cp++);     /* finish this word */
671                        if (*cp) {              /* start new line */
672                            putchar('\n');
673                            fputs(vnam(i), stdout);
674                            putchar('=');
675                            k = clipline;
676                        }
677                    }
678                }
679                putchar('\n');
680            }
681        fflush(stdout);
682 }
683
684
396   oconv()                         /* run oconv and mkillum if necessary */
397   {
398          static char     illumtmp[] = "ilXXXXXX";
399 <        char    combuf[512], ocopts[64], mkopts[64];
399 >        char    combuf[1024], ocopts[64], mkopts[64];
400  
401          oconvopts(ocopts);              /* get options */
402          if (octreedate < scenedate) {   /* check date on original octree */
# Line 705 | Line 416 | oconv()                                /* run oconv and mkillum if necessary */
416                                  "%s: error generating octree\n\t%s removed\n",
417                                                  progname, vval(OCTREE));
418                                  unlink(vval(OCTREE));
419 <                                exit(1);
419 >                                quit(1);
420                          }
421                  }
422                  octreedate = time((time_t *)NULL);
# Line 736 | Line 447 | oconv()                                /* run oconv and mkillum if necessary */
447                                  "%s: error generating octree\n\t%s removed\n",
448                                                  progname, oct0name);
449                                  unlink(oct0name);
450 <                                exit(1);
450 >                                quit(1);
451                          }
452                  }
453                  oct0date = time((time_t *)NULL);
# Line 756 | Line 467 | oconv()                                /* run oconv and mkillum if necessary */
467                          fprintf(stderr, "%s: error running mkillum\n",
468                                          progname);
469                          unlink(illumtmp);
470 <                        exit(1);
470 >                        quit(1);
471                  }
472                                                  /* make octree1 (frozen) */
473                  if (octreedate)
# Line 773 | Line 484 | oconv()                                /* run oconv and mkillum if necessary */
484                                  "%s: error generating octree\n\t%s removed\n",
485                                          progname, oct1name);
486                          unlink(oct1name);
487 <                        exit(1);
487 >                        unlink(illumtmp);
488 >                        quit(1);
489                  }
490                  rmfile(illumtmp);
491          }
# Line 837 | Line 549 | ambval()                               /* compute ambient value */
549   {
550          if (vdef(EXPOSURE)) {
551                  if (vval(EXPOSURE)[0] == '+' || vval(EXPOSURE)[0] == '-')
552 <                        return(.5/pow(2.,atof(vval(EXPOSURE))));
553 <                return(.5/atof(vval(EXPOSURE)));
552 >                        return(.5/pow(2.,vflt(EXPOSURE)));
553 >                return(.5/vflt(EXPOSURE));
554          }
555          if (vlet(ZONE) == 'E')
556                  return(10.);
# Line 937 | Line 649 | medqopts(op, po)                       /* medium quality rendering options
649   register char   *op;
650   char    *po;
651   {
652 <        double  d, org[3], siz[3];
652 >        double  d, org[3], siz[3], asz;
653  
654          *op = '\0';
655          *po = '\0';
# Line 948 | Line 660 | char   *po;
660          if (siz[0] <= FTINY | siz[1] <= FTINY | siz[2] <= FTINY)
661                  badvalue(ZONE);
662          getoctcube(org, &d);
663 <        d *= 3./(siz[0]+siz[1]+siz[2]);
663 >        asz = (siz[0]+siz[1]+siz[2])/3.;
664 >        d /= asz;
665          switch (vscale(DETAIL)) {
666          case LOW:
667                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 4" : "-ps 8");
668                  op = addarg(op, "-dp 256");
669                  sprintf(op, " -ar %d", (int)(8*d));
670                  op += strlen(op);
671 +                sprintf(op, " -ms %.2g", asz/20.);
672 +                op += strlen(op);
673                  break;
674          case MEDIUM:
675                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 3" : "-ps 6");
676                  op = addarg(op, "-dp 512");
677                  sprintf(op, " -ar %d", (int)(16*d));
678                  op += strlen(op);
679 +                sprintf(op, " -ms %.2g", asz/40.);
680 +                op += strlen(op);
681                  break;
682          case HIGH:
683                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 2" : "-ps 4");
684                  op = addarg(op, "-dp 1024");
685                  sprintf(op, " -ar %d", (int)(32*d));
686                  op += strlen(op);
687 +                sprintf(op, " -ms %.2g", asz/80.);
688 +                op += strlen(op);
689                  break;
690          }
691          po = addarg(po, "-pt .08");
# Line 1008 | Line 727 | hiqopts(op, po)                                /* high quality rendering options *
727   register char   *op;
728   char    *po;
729   {
730 <        double  d, org[3], siz[3];
730 >        double  d, org[3], siz[3], asz;
731  
732          *op = '\0';
733          *po = '\0';
# Line 1019 | Line 738 | char   *po;
738          if (siz[0] <= FTINY | siz[1] <= FTINY | siz[2] <= FTINY)
739                  badvalue(ZONE);
740          getoctcube(org, &d);
741 <        d *= 3./(siz[0]+siz[1]+siz[2]);
741 >        asz = (siz[0]+siz[1]+siz[2])/3.;
742 >        d /= asz;
743          switch (vscale(DETAIL)) {
744          case LOW:
745                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 8");
746                  op = addarg(op, "-dp 1024");
747                  sprintf(op, " -ar %d", (int)(16*d));
748                  op += strlen(op);
749 +                sprintf(op, " -ms %.2g", asz/40.);
750 +                op += strlen(op);
751                  break;
752          case MEDIUM:
753                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 5");
754                  op = addarg(op, "-dp 2048");
755                  sprintf(op, " -ar %d", (int)(32*d));
756                  op += strlen(op);
757 +                sprintf(op, " -ms %.2g", asz/80.);
758 +                op += strlen(op);
759                  break;
760          case HIGH:
761                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 3");
762                  op = addarg(op, "-dp 4096");
763                  sprintf(op, " -ar %d", (int)(64*d));
764                  op += strlen(op);
765 +                sprintf(op, " -ms %.2g", asz/160.);
766 +                op += strlen(op);
767                  break;
768          }
769          po = addarg(po, "-pt .04");
770          if (vbool(PENUMBRAS))
771 <                op = addarg(op, "-ds .1 -dj .7");
771 >                op = addarg(op, "-ds .1 -dj .65");
772          else
773                  op = addarg(op, "-ds .2");
774          op = addarg(op, "-dt .05 -dc .75 -dr 3 -sj 1 -st .01");
# Line 1084 | Line 810 | char   *ro;
810                  return;
811          if (vdef(OPTFILE)) {
812                  for (cp = ro; cp[1]; cp++)
813 <                        if (isspace(cp[1]) && cp[2] == '-' && isalpha(cp[3]))
813 >                        if (isspace(cp[1]) && (cp[2] == '@' ||
814 >                                        (cp[2] == '-' && isalpha(cp[3]))))
815                                  *cp = '\n';
816                          else
817                                  *cp = cp[1];
# Line 1179 | Line 906 | register char  *vs;
906                  zpos = -1; vs++;
907          }
908          viewtype = 'v';
909 <        if (*vs == 'v' | *vs == 'l' | *vs == 'a' | *vs == 'h')
909 >        if (*vs == 'v' | *vs == 'l' | *vs == 'a' | *vs == 'h' | *vs == 'c')
910                  viewtype = *vs++;
911          cp = viewopts;
912          if ((!*vs || isspace(*vs)) && (xpos|ypos|zpos)) {       /* got one! */
# Line 1234 | Line 961 | register char  *vs;
961                  case 'h':
962                          cp = addarg(cp, "-vh 180 -vv 180");
963                          break;
964 +                case 'c':
965 +                        cp = addarg(cp, "-vh 180 -vv 90");
966 +                        break;
967                  }
968          } else {
969                  while (!isspace(*vs))           /* else skip id */
# Line 1279 | Line 1009 | char   *vn;            /* returned view name */
1009                  }
1010                                                  /* view number? */
1011                  if (isint(viewselect))
1012 <                        return(specview(nvalue(vv+VIEW, atoi(viewselect)-1)));
1012 >                        return(specview(nvalue(VIEWS, atoi(viewselect)-1)));
1013                                                  /* check list */
1014 <                while ((mv = nvalue(vv+VIEW, n++)) != NULL)
1014 >                while ((mv = nvalue(VIEWS, n++)) != NULL)
1015                          if (matchword(viewselect, mv))
1016                                  return(specview(mv));
1017                  return(specview(viewselect));   /* standard view? */
1018          }
1019 <        mv = nvalue(vv+VIEW, n);                /* use view n */
1019 >        mv = nvalue(VIEWS, n);          /* use view n */
1020          if (vn != NULL & mv != NULL) {
1021                  register char   *mv2 = mv;
1022                  if (*mv2 != '-')
# Line 1301 | Line 1031 | char   *vn;            /* returned view name */
1031   printview(vopts)                        /* print out selected view */
1032   register char   *vopts;
1033   {
1034 <        extern char     *atos(), *getenv();
1035 <        char    buf[256];
1036 <        FILE    *fp;
1034 >        extern char     *strstr(), *atos(), *getenv();
1035 >        VIEW    vwr;
1036 >        char    buf[128];
1037          register char   *cp;
1038 <
1038 > again:
1039          if (vopts == NULL)
1040                  return(-1);
1311        fputs("VIEW=", stdout);
1312        do {
1313                if (matchword(vopts, "-vf")) {          /* expand view file */
1314                        vopts = sskip(vopts);
1315                        if (!*atos(buf, sizeof(buf), vopts))
1316                                return(-1);
1317                        if ((fp = fopen(buf, "r")) == NULL)
1318                                return(-1);
1319                        for (buf[sizeof(buf)-2] = '\n';
1320                                        fgets(buf, sizeof(buf), fp) != NULL &&
1321                                                buf[0] != '\n';
1322                                        buf[sizeof(buf)-2] = '\n') {
1323                                if (buf[sizeof(buf)-2] != '\n') {
1324                                        ungetc(buf[sizeof(buf)-2], fp);
1325                                        buf[sizeof(buf)-2] = '\0';
1326                                }
1327                                if (matchword(buf, "VIEW=") ||
1328                                                matchword(buf, "rview")) {
1329                                        for (cp = sskip(buf); *cp && *cp != '\n'; cp++)
1330                                                putchar(*cp);
1331                                }
1332                        }
1333                        fclose(fp);
1334                        vopts = sskip(vopts);
1335                } else {
1336                        while (isspace(*vopts))
1337                                vopts++;
1338                        putchar(' ');
1041   #ifdef MSDOS
1042 <                        if (*vopts == '$') {            /* expand env. var. */
1043 <                                if (!*atos(buf, sizeof(buf), vopts+1))
1044 <                                        return(-1);
1045 <                                if ((cp = getenv(buf)) == NULL)
1344 <                                        return(-1);
1345 <                                fputs(cp, stdout);
1346 <                                vopts = sskip(vopts);
1347 <                        } else
1042 >        if (vopts[0] == '$') {
1043 >                vopts = getenv(vopts+1);
1044 >                goto again;
1045 >        }
1046   #endif
1047 <                                while (*vopts && !isspace(*vopts))
1048 <                                        putchar(*vopts++);
1049 <                }
1050 <        } while (*vopts++);
1051 <        putchar('\n');
1047 >        copystruct(&vwr, &stdview);
1048 >        sscanview(&vwr, cp=vopts);              /* set initial options */
1049 >        while ((cp = strstr(cp, "-vf ")) != NULL &&
1050 >                        *atos(buf, sizeof(buf), cp += 4)) {
1051 >                viewfile(buf, &vwr, NULL);      /* load -vf file */
1052 >                sscanview(&vwr, cp);            /* reset tail */
1053 >        }
1054 >        fputs(VIEWSTR, stdout);
1055 >        fprintview(&vwr, stdout);               /* print full spec. */
1056 >        fputc('\n', stdout);
1057          return(0);
1058   }
1059  
# Line 1373 | Line 1076 | char   *opts, *po;
1076          strcat(combuf, oct1name);
1077          if (runcom(combuf)) {           /* run it */
1078                  fprintf(stderr, "%s: error running rview\n", progname);
1079 <                exit(1);
1079 >                quit(1);
1080          }
1081   }
1082  
# Line 1382 | Line 1085 | rpict(opts, po)                                /* run rpict and pfilt for each vie
1085   char    *opts, *po;
1086   {
1087          char    combuf[1024];
1088 <        char    rawfile[MAXPATH], picfile[MAXPATH], rep[MAXPATH+16], res[32];
1088 >        char    rawfile[MAXPATH], picfile[MAXPATH];
1089 >        char    zopt[MAXPATH+4], rep[MAXPATH+16], res[32];
1090          char    pfopts[128];
1091          char    vs[32], *vw;
1092          int     vn, mult;
# Line 1435 | Line 1139 | char   *opts, *po;
1139                  if (!vs[0])
1140                          sprintf(vs, "%d", vn);
1141                  sprintf(picfile, "%s_%s.pic", vval(PICTURE), vs);
1142 +                if (vdef(ZFILE))
1143 +                        sprintf(zopt, " -z %s_%s.zbf", vval(ZFILE), vs);
1144 +                else
1145 +                        zopt[0] = '\0';
1146                                                  /* check date on picture */
1147                  pfdt = fdate(picfile);
1148                  if (pfdt >= oct1date)
1149                          continue;
1150                                                  /* get raw file name */
1151 <                sprintf(rawfile, "%s_%s.raw", vval(PICTURE), vs);
1151 >                sprintf(rawfile, "%s_%s.unf",
1152 >                        vdef(RAWFILE) ? vval(RAWFILE) : vval(PICTURE), vs);
1153                  rfdt = fdate(rawfile);
1154                  if (touchonly) {                /* update times only */
1155                          if (rfdt) {
# Line 1452 | Line 1161 | char   *opts, *po;
1161                  }
1162                                                  /* build rpict command */
1163                  if (rfdt >= oct1date)           /* recover */
1164 <                        sprintf(combuf, "rpict%s%s%s -ro %s %s",
1165 <                                        rep, po, opts, rawfile, oct1name);
1164 >                        sprintf(combuf, "rpict%s%s%s%s -ro %s %s",
1165 >                                rep, po, opts, zopt, rawfile, oct1name);
1166                  else {
1167                          if (overture) {         /* run overture calculation */
1168                                  sprintf(combuf,
# Line 1464 | Line 1173 | char   *opts, *po;
1173                                          fprintf(stderr,
1174                                          "%s: error in overture for view %s\n",
1175                                                  progname, vs);
1176 <                                        exit(1);
1176 >                                        quit(1);
1177                                  }
1178   #ifdef NIX
1179                                  rmfile(overfile);
1180   #endif
1181                          }
1182 <                        sprintf(combuf, "rpict%s %s %s%s%s %s > %s",
1183 <                                        rep, vw, res, po, opts,
1184 <                                oct1name, rawfile);
1182 >                        sprintf(combuf, "rpict%s %s %s%s%s%s %s > %s",
1183 >                                        rep, vw, res, po, opts, zopt,
1184 >                                        oct1name, rawfile);
1185                  }
1186                  if (runcom(combuf)) {           /* run rpict */
1187                          fprintf(stderr, "%s: error rendering view %s\n",
1188                                          progname, vs);
1189 <                        exit(1);
1189 >                        quit(1);
1190                  }
1191 +                if (!vdef(RAWFILE) || strcmp(vval(RAWFILE),vval(PICTURE))) {
1192                                                  /* build pfilt command */
1193 <                if (mult > 1)
1194 <                        sprintf(combuf, "pfilt%s -x /%d -y /%d %s > %s",
1193 >                        if (mult > 1)
1194 >                                sprintf(combuf, "pfilt%s -x /%d -y /%d %s > %s",
1195                                          pfopts, mult, mult, rawfile, picfile);
1196 <                else
1197 <                        sprintf(combuf, "pfilt%s %s > %s", pfopts,
1198 <                                        rawfile, picfile);
1199 <                if (runcom(combuf)) {           /* run pfilt */
1200 <                        fprintf(stderr,
1201 <                        "%s: error filtering view %s\n\t%s removed\n",
1202 <                                        progname, vs, picfile);
1203 <                        unlink(picfile);
1204 <                        exit(1);
1196 >                        else
1197 >                                sprintf(combuf, "pfilt%s %s > %s", pfopts,
1198 >                                                rawfile, picfile);
1199 >                        if (runcom(combuf)) {           /* run pfilt */
1200 >                                fprintf(stderr,
1201 >                                "%s: error filtering view %s\n\t%s removed\n",
1202 >                                                progname, vs, picfile);
1203 >                                unlink(picfile);
1204 >                                quit(1);
1205 >                        }
1206                  }
1207 <                                                /* remove raw file */
1208 <                rmfile(rawfile);
1207 >                                                /* remove/rename raw file */
1208 >                if (vdef(RAWFILE)) {
1209 >                        sprintf(combuf, "%s_%s.pic", vval(RAWFILE), vs);
1210 >                        mvfile(rawfile, combuf);
1211 >                } else
1212 >                        rmfile(rawfile);
1213          }
1214   }
1215  
# Line 1542 | Line 1257 | char   *fn;
1257   }
1258  
1259  
1260 + mvfile(fold, fnew)              /* move a file */
1261 + char    *fold, *fnew;
1262 + {
1263 +        if (!silent)
1264   #ifdef MSDOS
1265 +                printf("\trename %s %s\n", fold, fnew);
1266 + #else
1267 +                printf("\tmv %s %s\n", fold, fnew);
1268 + #endif
1269 +        if (noaction)
1270 +                return(0);
1271 +        return(rename(fold, fnew));
1272 + }
1273 +
1274 +
1275 + #ifdef MSDOS
1276   setenv(vname, value)            /* set an environment variable */
1277   char    *vname, *value;
1278   {
# Line 1554 | Line 1284 | char   *vname, *value;
1284          sprintf(evp, "%s=%s", vname, value);
1285          if (putenv(evp) != 0) {
1286                  fprintf(stderr, "%s: out of environment space\n", progname);
1287 <                exit(1);
1287 >                quit(1);
1288          }
1289          if (!silent)
1290                  printf("set %s\n", evp);
# Line 1567 | Line 1297 | int    vc;
1297   {
1298          fprintf(stderr, "%s: bad value for variable '%s'\n",
1299                          progname, vnam(vc));
1300 <        exit(1);
1300 >        quit(1);
1301   }
1302  
1303  
# Line 1575 | Line 1305 | syserr(s)                      /* report a system error and exit */
1305   char    *s;
1306   {
1307          perror(s);
1308 <        exit(1);
1308 >        quit(1);
1309 > }
1310 >
1311 >
1312 > quit(ec)                        /* exit program */
1313 > int     ec;
1314 > {
1315 >        exit(ec);
1316   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines