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.44 by greg, Fri Aug 18 10:39:56 1995 UTC vs.
Revision 2.63 by schorsch, Thu Jun 5 19:29:35 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1994 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Executive program for oconv, rpict and pfilt
6   */
7  
8   #include "standard.h"
9 + #include "view.h"
10   #include "paths.h"
11 + #include "vars.h"
12   #include <ctype.h>
14 #include <sys/types.h>
13  
14 <
15 < typedef struct {
16 <        char    *name;          /* variable name */
17 <        short   nick;           /* # characters required for nickname */
18 <        short   nass;           /* # assignments made */
19 <        char    *value;         /* assigned value(s) */
20 <        int     (*fixval)();    /* assignment checking function */
21 < } VARIABLE;
22 <
23 < int     onevalue(), catvalues(), boolvalue(),
24 <        qualvalue(), fltvalue(), intvalue();
25 <
26 <                                /* variables */
27 < #define OBJECT          0               /* object files */
28 < #define SCENE           1               /* scene files */
29 < #define MATERIAL        2               /* material files */
30 < #define ILLUM           3               /* mkillum input files */
31 < #define MKILLUM         4               /* mkillum options */
32 < #define RENDER          5               /* rendering options */
33 < #define OCONV           6               /* oconv options */
34 < #define PFILT           7               /* pfilt options */
35 < #define VIEW            8               /* view(s) for picture(s) */
36 < #define ZONE            9               /* simulation zone */
37 < #define QUALITY         10              /* desired rendering quality */
38 < #define OCTREE          11              /* octree file name */
39 < #define PICTURE         12              /* picture file name */
40 < #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 */
14 >                                /* variables (alphabetical by name) */
15 > #define AMBFILE         0               /* ambient file name */
16 > #define DETAIL          1               /* level of scene detail */
17 > #define EXPOSURE        2               /* picture exposure setting */
18 > #define EYESEP          3               /* interocular distance */
19 > #define ILLUM           4               /* mkillum input files */
20 > #define INDIRECT        5               /* indirection in lighting */
21 > #define MATERIAL        6               /* material files */
22 > #define MKILLUM         7               /* mkillum options */
23 > #define OBJECT          8               /* object files */
24 > #define OCONV           9               /* oconv options */
25 > #define OCTREE          10              /* octree file name */
26 > #define OPTFILE         11              /* rendering options file */
27 > #define PENUMBRAS       12              /* shadow penumbras are desired */
28 > #define PFILT           13              /* pfilt options */
29 > #define PICTURE         14              /* picture file root name */
30 > #define QUALITY         15              /* desired rendering quality */
31 > #define RAWFILE         16              /* raw picture file root name */
32 > #define RENDER          17              /* rendering options */
33 > #define REPORT          18              /* report frequency and errfile */
34 > #define RESOLUTION      19              /* maximum picture resolution */
35 > #define SCENE           20              /* scene files */
36 > #define UP              21              /* view up (X, Y or Z) */
37 > #define VARIABILITY     22              /* level of light variability */
38 > #define VIEWS           23              /* view(s) for picture(s) */
39 > #define ZFILE           24              /* distance file root name */
40 > #define ZONE            25              /* simulation zone */
41                                  /* total number of variables */
42 < #define NVARS           24
42 > int NVARS = 26;
43  
44 < VARIABLE        vv[NVARS] = {           /* variable-value pairs */
45 <        {"objects",     3,      0,      NULL,   catvalues},
46 <        {"scene",       3,      0,      NULL,   catvalues},
47 <        {"materials",   3,      0,      NULL,   catvalues},
44 > VARIABLE        vv[] = {                /* variable-value pairs */
45 >        {"AMBFILE",     3,      0,      NULL,   onevalue},
46 >        {"DETAIL",      3,      0,      NULL,   qualvalue},
47 >        {"EXPOSURE",    3,      0,      NULL,   fltvalue},
48 >        {"EYESEP",      3,      0,      NULL,   fltvalue},
49          {"illum",       3,      0,      NULL,   catvalues},
50 +        {"INDIRECT",    3,      0,      NULL,   intvalue},
51 +        {"materials",   3,      0,      NULL,   catvalues},
52          {"mkillum",     3,      0,      NULL,   catvalues},
53 <        {"render",      3,      0,      NULL,   catvalues},
53 >        {"objects",     3,      0,      NULL,   catvalues},
54          {"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},
55          {"OCTREE",      3,      0,      NULL,   onevalue},
69        {"PICTURE",     3,      0,      NULL,   onevalue},
70        {"AMBFILE",     3,      0,      NULL,   onevalue},
56          {"OPTFILE",     3,      0,      NULL,   onevalue},
57 <        {"EXPOSURE",    3,      0,      NULL,   fltvalue},
57 >        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
58 >        {"pfilt",       2,      0,      NULL,   catvalues},
59 >        {"PICTURE",     3,      0,      NULL,   onevalue},
60 >        {"QUALITY",     3,      0,      NULL,   qualvalue},
61 >        {"RAWFILE",     3,      0,      NULL,   onevalue},
62 >        {"render",      3,      0,      NULL,   catvalues},
63 >        {"REPORT",      3,      0,      NULL,   onevalue},
64          {"RESOLUTION",  3,      0,      NULL,   onevalue},
65 +        {"scene",       3,      0,      NULL,   catvalues},
66          {"UP",          2,      0,      NULL,   onevalue},
75        {"INDIRECT",    3,      0,      NULL,   intvalue},
76        {"DETAIL",      3,      0,      NULL,   qualvalue},
77        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
67          {"VARIABILITY", 3,      0,      NULL,   qualvalue},
68 <        {"REPORT",      3,      0,      NULL,   onevalue},
69 <        {"RAWSAVE",     3,      0,      NULL,   boolvalue},
68 >        {"view",        2,      0,      NULL,   NULL},
69 >        {"ZFILE",       2,      0,      NULL,   onevalue},
70 >        {"ZONE",        2,      0,      NULL,   onevalue},
71   };
72  
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
73                                  /* overture calculation file */
74   #ifdef NIX
75 < char    overfile[] = "overture.raw";
75 > char    overfile[] = "overture.unf";
76   #else
77   char    overfile[] = "/dev/null";
78   #endif
79  
80 < extern time_t   fdate(), time();
80 > extern time_t   time();
81  
82   time_t  scenedate;              /* date of latest scene or object file */
83   time_t  octreedate;             /* date of octree */
# Line 178 | Line 151 | char   *argv[];
151                                  /* assign Radiance root file name */
152          rootname(radname, rifname);
153                                  /* load variable values */
154 <        load(rifname);
154 >        loadvars(rifname);
155                                  /* get any additional assignments */
156          for (i++; i < argc; i++)
157 <                setvariable(argv[i]);
157 >                if (setvariable(argv[i], matchvar) < 0) {
158 >                        fprintf(stderr, "%s: unknown variable: %s\n",
159 >                                        progname, argv[i]);
160 >                        quit(1);
161 >                }
162                                  /* check assignments */
163          checkvalues();
164                                  /* check files and dates */
# Line 190 | Line 167 | char   *argv[];
167          setdefaults();
168                                  /* print all values if requested */
169          if (explicate)
170 <                printvals();
170 >                printvars(stdout);
171                                  /* build octree (and run mkillum) */
172          oconv();
173                                  /* check date on ambient file */
# Line 202 | Line 179 | char   *argv[];
179                  rview(ropts, popts);
180          else
181                  rpict(ropts, popts);
182 <        exit(0);
182 >        quit(0);
183   userr:
184          fprintf(stderr,
185 < "Usage: %s [-s][-n][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
185 > "Usage: %s [-w][-s][-n][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
186                          progname);
187 <        exit(1);
187 >        quit(1);
188   }
189  
190  
# Line 226 | Line 203 | register char  *rn, *fn;
203   }
204  
205  
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
206   time_t
207   checklast(fnames)                       /* check files and find most recent */
208   register char   *fnames;
209   {
210          char    thisfile[MAXPATH];
211          time_t  thisdate, lastdate = 0;
482        register char   *cp;
212  
213          if (fnames == NULL)
214                  return(0);
215 <        while (*fnames) {
216 <                while (isspace(*fnames)) fnames++;
217 <                cp = thisfile;
218 <                while (*fnames && !isspace(*fnames))
490 <                        *cp++ = *fnames++;
491 <                *cp = '\0';
215 >        while ((fnames = nextword(thisfile, MAXPATH, fnames)) != NULL) {
216 >                if (thisfile[0] == '!' ||
217 >                                (thisfile[0] == '\\' && thisfile[1] == '!'))
218 >                        continue;
219                  if (!(thisdate = fdate(thisfile)))
220                          syserr(thisfile);
221                  if (thisdate > lastdate)
# Line 533 | Line 260 | checkfiles()                   /* check for existence and modified tim
260                          syserr(progname);
261                  sprintf(vval(OCTREE), "%s.oct", radname);
262                  vdef(OCTREE)++;
263 +        } else if (vval(OCTREE)[0] == '!') {
264 +                fprintf(stderr, "%s: illegal '%s' specification\n",
265 +                                progname, vnam(OCTREE));
266 +                quit(1);
267          }
268          octreedate = fdate(vval(OCTREE));
269          if (vdef(ILLUM)) {              /* illum requires secondary octrees */
# Line 549 | 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 561 | 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 579 | 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 597 | 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 607 | 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 617 | 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 633 | 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 649 | Line 390 | setdefaults()                  /* set default values for unassigned v
390                  vval(VARIABILITY) = "L";
391                  vdef(VARIABILITY)++;
392          }
652        if (!vdef(RAWSAVE)) {
653                vval(RAWSAVE) = "F";
654                vdef(RAWSAVE)++;
655        }
393   }
394  
395  
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
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 711 | 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 742 | 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 762 | 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 779 | 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 843 | 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 943 | 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 954 | 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 1014 | 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 1025 | 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");
# Line 1090 | 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 1100 | Line 821 | char   *ro;
821                          syserr(vval(OPTFILE));
822                  sprintf(ro, " @%s", vval(OPTFILE));
823          }
824 < #ifdef MSDOS
824 > #ifdef _WIN32
825          else if (n > 50) {
826                  setenv("ROPT", ro+1);
827                  strcpy(ro, " $ROPT");
# Line 1119 | Line 840 | register char  *po;
840          }
841          switch (vscale(QUALITY)) {
842          case MEDIUM:
843 <                po = addarg(po, "-r 1");
843 >                po = addarg(po, "-r .6");
844                  break;
845          case HIGH:
846                  po = addarg(po, "-m .25");
# Line 1256 | Line 977 | register char  *vs;
977          if (cp == viewopts)             /* append any additional options */
978                  vs++;           /* skip prefixed space if unneeded */
979          strcpy(cp, vs);
980 < #ifdef MSDOS
980 > #ifdef _WIN32
981          if (strlen(viewopts) > 40) {
982                  setenv("VIEW", viewopts);
983                  return("$VIEW");
# Line 1288 | 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 1310 | 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];
1315 <        FILE    *fp;
1034 >        VIEW    vwr;
1035 >        char    buf[128];
1036          register char   *cp;
1037 <
1037 > again:
1038          if (vopts == NULL)
1039                  return(-1);
1040 <        fputs("VIEW=", stdout);
1041 <        do {
1042 <                if (matchword(vopts, "-vf")) {          /* expand view file */
1043 <                        vopts = sskip(vopts);
1044 <                        if (!*atos(buf, sizeof(buf), vopts))
1325 <                                return(-1);
1326 <                        if ((fp = fopen(buf, "r")) == NULL)
1327 <                                return(-1);
1328 <                        for (buf[sizeof(buf)-2] = '\n';
1329 <                                        fgets(buf, sizeof(buf), fp) != NULL &&
1330 <                                                buf[0] != '\n';
1331 <                                        buf[sizeof(buf)-2] = '\n') {
1332 <                                if (buf[sizeof(buf)-2] != '\n') {
1333 <                                        ungetc(buf[sizeof(buf)-2], fp);
1334 <                                        buf[sizeof(buf)-2] = '\0';
1335 <                                }
1336 <                                if (matchword(buf, "VIEW=") ||
1337 <                                                matchword(buf, "rview")) {
1338 <                                        for (cp = sskip(buf); *cp && *cp != '\n'; cp++)
1339 <                                                putchar(*cp);
1340 <                                }
1341 <                        }
1342 <                        fclose(fp);
1343 <                        vopts = sskip(vopts);
1344 <                } else {
1345 <                        while (isspace(*vopts))
1346 <                                vopts++;
1347 <                        putchar(' ');
1348 < #ifdef MSDOS
1349 <                        if (*vopts == '$') {            /* expand env. var. */
1350 <                                if (!*atos(buf, sizeof(buf), vopts+1))
1351 <                                        return(-1);
1352 <                                if ((cp = getenv(buf)) == NULL)
1353 <                                        return(-1);
1354 <                                fputs(cp, stdout);
1355 <                                vopts = sskip(vopts);
1356 <                        } else
1040 > #ifdef _WIN32
1041 >        if (vopts[0] == '$') {
1042 >                vopts = getenv(vopts+1);
1043 >                goto again;
1044 >        }
1045   #endif
1046 <                                while (*vopts && !isspace(*vopts))
1047 <                                        putchar(*vopts++);
1048 <                }
1049 <        } while (*vopts++);
1050 <        putchar('\n');
1046 >        copystruct(&vwr, &stdview);
1047 >        sscanview(&vwr, cp=vopts);              /* set initial options */
1048 >        while ((cp = strstr(cp, "-vf ")) != NULL &&
1049 >                        *atos(buf, sizeof(buf), cp += 4)) {
1050 >                viewfile(buf, &vwr, NULL);      /* load -vf file */
1051 >                sscanview(&vwr, cp);            /* reset tail */
1052 >        }
1053 >        fputs(VIEWSTR, stdout);
1054 >        fprintview(&vwr, stdout);               /* print full spec. */
1055 >        fputc('\n', stdout);
1056          return(0);
1057   }
1058  
# Line 1382 | Line 1075 | char   *opts, *po;
1075          strcat(combuf, oct1name);
1076          if (runcom(combuf)) {           /* run it */
1077                  fprintf(stderr, "%s: error running rview\n", progname);
1078 <                exit(1);
1078 >                quit(1);
1079          }
1080   }
1081  
# Line 1391 | Line 1084 | rpict(opts, po)                                /* run rpict and pfilt for each vie
1084   char    *opts, *po;
1085   {
1086          char    combuf[1024];
1087 <        char    rawfile[MAXPATH], picfile[MAXPATH], rep[MAXPATH+16], res[32];
1087 >        char    rawfile[MAXPATH], picfile[MAXPATH];
1088 >        char    zopt[MAXPATH+4], rep[MAXPATH+16], res[32];
1089          char    pfopts[128];
1090          char    vs[32], *vw;
1091          int     vn, mult;
# Line 1444 | Line 1138 | char   *opts, *po;
1138                  if (!vs[0])
1139                          sprintf(vs, "%d", vn);
1140                  sprintf(picfile, "%s_%s.pic", vval(PICTURE), vs);
1141 +                if (vdef(ZFILE))
1142 +                        sprintf(zopt, " -z %s_%s.zbf", vval(ZFILE), vs);
1143 +                else
1144 +                        zopt[0] = '\0';
1145                                                  /* check date on picture */
1146                  pfdt = fdate(picfile);
1147                  if (pfdt >= oct1date)
1148                          continue;
1149                                                  /* get raw file name */
1150 <                sprintf(rawfile, "%s_%s.raw", vval(PICTURE), vs);
1150 >                sprintf(rawfile, "%s_%s.unf",
1151 >                        vdef(RAWFILE) ? vval(RAWFILE) : vval(PICTURE), vs);
1152                  rfdt = fdate(rawfile);
1153                  if (touchonly) {                /* update times only */
1154                          if (rfdt) {
# Line 1461 | Line 1160 | char   *opts, *po;
1160                  }
1161                                                  /* build rpict command */
1162                  if (rfdt >= oct1date)           /* recover */
1163 <                        sprintf(combuf, "rpict%s%s%s -ro %s %s",
1164 <                                        rep, po, opts, rawfile, oct1name);
1163 >                        sprintf(combuf, "rpict%s%s%s%s -ro %s %s",
1164 >                                rep, po, opts, zopt, rawfile, oct1name);
1165                  else {
1166                          if (overture) {         /* run overture calculation */
1167                                  sprintf(combuf,
# Line 1473 | Line 1172 | char   *opts, *po;
1172                                          fprintf(stderr,
1173                                          "%s: error in overture for view %s\n",
1174                                                  progname, vs);
1175 <                                        exit(1);
1175 >                                        quit(1);
1176                                  }
1177   #ifdef NIX
1178                                  rmfile(overfile);
1179   #endif
1180                          }
1181 <                        sprintf(combuf, "rpict%s %s %s%s%s %s > %s",
1182 <                                        rep, vw, res, po, opts,
1183 <                                oct1name, rawfile);
1181 >                        sprintf(combuf, "rpict%s %s %s%s%s%s %s > %s",
1182 >                                        rep, vw, res, po, opts, zopt,
1183 >                                        oct1name, rawfile);
1184                  }
1185                  if (runcom(combuf)) {           /* run rpict */
1186                          fprintf(stderr, "%s: error rendering view %s\n",
1187                                          progname, vs);
1188 <                        exit(1);
1188 >                        quit(1);
1189                  }
1190 +                if (!vdef(RAWFILE) || strcmp(vval(RAWFILE),vval(PICTURE))) {
1191                                                  /* build pfilt command */
1192 <                if (mult > 1)
1193 <                        sprintf(combuf, "pfilt%s -x /%d -y /%d %s > %s",
1192 >                        if (mult > 1)
1193 >                                sprintf(combuf, "pfilt%s -x /%d -y /%d %s > %s",
1194                                          pfopts, mult, mult, rawfile, picfile);
1195 <                else
1196 <                        sprintf(combuf, "pfilt%s %s > %s", pfopts,
1197 <                                        rawfile, picfile);
1198 <                if (runcom(combuf)) {           /* run pfilt */
1199 <                        fprintf(stderr,
1200 <                        "%s: error filtering view %s\n\t%s removed\n",
1201 <                                        progname, vs, picfile);
1202 <                        unlink(picfile);
1203 <                        exit(1);
1195 >                        else
1196 >                                sprintf(combuf, "pfilt%s %s > %s", pfopts,
1197 >                                                rawfile, picfile);
1198 >                        if (runcom(combuf)) {           /* run pfilt */
1199 >                                fprintf(stderr,
1200 >                                "%s: error filtering view %s\n\t%s removed\n",
1201 >                                                progname, vs, picfile);
1202 >                                unlink(picfile);
1203 >                                quit(1);
1204 >                        }
1205                  }
1206                                                  /* remove/rename raw file */
1207 <                if (vbool(RAWSAVE)) {
1208 <                        sprintf(combuf, "%s_%s.rwp", vval(PICTURE), vs);
1207 >                if (vdef(RAWFILE)) {
1208 >                        sprintf(combuf, "%s_%s.pic", vval(RAWFILE), vs);
1209                          mvfile(rawfile, combuf);
1210                  } else
1211                          rmfile(rawfile);
# Line 1544 | Line 1245 | rmfile(fn)                     /* remove a file */
1245   char    *fn;
1246   {
1247          if (!silent)
1248 < #ifdef MSDOS
1248 > #ifdef _WIN32
1249                  printf("\tdel %s\n", fn);
1250   #else
1251                  printf("\trm -f %s\n", fn);
# Line 1559 | Line 1260 | mvfile(fold, fnew)             /* move a file */
1260   char    *fold, *fnew;
1261   {
1262          if (!silent)
1263 < #ifdef MSDOS
1263 > #ifdef _WIN32
1264                  printf("\trename %s %s\n", fold, fnew);
1265   #else
1266                  printf("\tmv %s %s\n", fold, fnew);
# Line 1570 | Line 1271 | char   *fold, *fnew;
1271   }
1272  
1273  
1274 < #ifdef MSDOS
1274 > #ifdef _WIN32
1275   setenv(vname, value)            /* set an environment variable */
1276   char    *vname, *value;
1277   {
# Line 1582 | Line 1283 | char   *vname, *value;
1283          sprintf(evp, "%s=%s", vname, value);
1284          if (putenv(evp) != 0) {
1285                  fprintf(stderr, "%s: out of environment space\n", progname);
1286 <                exit(1);
1286 >                quit(1);
1287          }
1288          if (!silent)
1289                  printf("set %s\n", evp);
# Line 1595 | Line 1296 | int    vc;
1296   {
1297          fprintf(stderr, "%s: bad value for variable '%s'\n",
1298                          progname, vnam(vc));
1299 <        exit(1);
1299 >        quit(1);
1300   }
1301  
1302  
# Line 1603 | Line 1304 | syserr(s)                      /* report a system error and exit */
1304   char    *s;
1305   {
1306          perror(s);
1307 <        exit(1);
1307 >        quit(1);
1308 > }
1309 >
1310 >
1311 > void
1312 > quit(ec)                        /* exit program */
1313 > int     ec;
1314 > {
1315 >        exit(ec);
1316   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines