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.64 by schorsch, Thu Jun 26 00:58:11 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 "paths.h"
9 >
10   #include <ctype.h>
14 #include <sys/types.h>
11  
12 + #include "platform.h"
13 + #include "view.h"
14 + #include "paths.h"
15 + #include "vars.h"
16  
17 < typedef struct {
18 <        char    *name;          /* variable name */
19 <        short   nick;           /* # characters required for nickname */
20 <        short   nass;           /* # assignments made */
21 <        char    *value;         /* assigned value(s) */
22 <        int     (*fixval)();    /* assignment checking function */
23 < } VARIABLE;
24 <
25 < int     onevalue(), catvalues(), boolvalue(),
26 <        qualvalue(), fltvalue(), intvalue();
27 <
28 <                                /* variables */
29 < #define OBJECT          0               /* object files */
30 < #define SCENE           1               /* scene files */
31 < #define MATERIAL        2               /* material files */
32 < #define ILLUM           3               /* mkillum input files */
33 < #define MKILLUM         4               /* mkillum options */
34 < #define RENDER          5               /* rendering options */
35 < #define OCONV           6               /* oconv options */
36 < #define PFILT           7               /* pfilt options */
37 < #define VIEW            8               /* view(s) for picture(s) */
38 < #define ZONE            9               /* simulation zone */
39 < #define QUALITY         10              /* desired rendering quality */
40 < #define OCTREE          11              /* octree file name */
41 < #define PICTURE         12              /* picture file name */
42 < #define AMBFILE         13              /* ambient file name */
43 < #define OPTFILE         14              /* rendering options file */
44 < #define EXPOSURE        15              /* picture exposure setting */
45 < #define RESOLUTION      16              /* maximum picture resolution */
46 < #define UP              17              /* view up (X, Y or Z) */
47 < #define INDIRECT        18              /* indirection in lighting */
48 < #define DETAIL          19              /* level of scene detail */
49 < #define PENUMBRAS       20              /* shadow penumbras are desired */
50 < #define VARIABILITY     21              /* level of light variability */
51 < #define REPORT          22              /* report frequency and errfile */
52 < #define RAWSAVE         23              /* save raw picture file */
17 >                                /* variables (alphabetical by name) */
18 > #define AMBFILE         0               /* ambient file name */
19 > #define DETAIL          1               /* level of scene detail */
20 > #define EXPOSURE        2               /* picture exposure setting */
21 > #define EYESEP          3               /* interocular distance */
22 > #define ILLUM           4               /* mkillum input files */
23 > #define INDIRECT        5               /* indirection in lighting */
24 > #define MATERIAL        6               /* material files */
25 > #define MKILLUM         7               /* mkillum options */
26 > #define OBJECT          8               /* object files */
27 > #define OCONV           9               /* oconv options */
28 > #define OCTREE          10              /* octree file name */
29 > #define OPTFILE         11              /* rendering options file */
30 > #define PENUMBRAS       12              /* shadow penumbras are desired */
31 > #define PFILT           13              /* pfilt options */
32 > #define PICTURE         14              /* picture file root name */
33 > #define QUALITY         15              /* desired rendering quality */
34 > #define RAWFILE         16              /* raw picture file root name */
35 > #define RENDER          17              /* rendering options */
36 > #define REPORT          18              /* report frequency and errfile */
37 > #define RESOLUTION      19              /* maximum picture resolution */
38 > #define SCENE           20              /* scene files */
39 > #define UP              21              /* view up (X, Y or Z) */
40 > #define VARIABILITY     22              /* level of light variability */
41 > #define VIEWS           23              /* view(s) for picture(s) */
42 > #define ZFILE           24              /* distance file root name */
43 > #define ZONE            25              /* simulation zone */
44                                  /* total number of variables */
45 < #define NVARS           24
45 > int NVARS = 26;
46  
47 < VARIABLE        vv[NVARS] = {           /* variable-value pairs */
48 <        {"objects",     3,      0,      NULL,   catvalues},
49 <        {"scene",       3,      0,      NULL,   catvalues},
50 <        {"materials",   3,      0,      NULL,   catvalues},
47 > VARIABLE        vv[] = {                /* variable-value pairs */
48 >        {"AMBFILE",     3,      0,      NULL,   onevalue},
49 >        {"DETAIL",      3,      0,      NULL,   qualvalue},
50 >        {"EXPOSURE",    3,      0,      NULL,   fltvalue},
51 >        {"EYESEP",      3,      0,      NULL,   fltvalue},
52          {"illum",       3,      0,      NULL,   catvalues},
53 +        {"INDIRECT",    3,      0,      NULL,   intvalue},
54 +        {"materials",   3,      0,      NULL,   catvalues},
55          {"mkillum",     3,      0,      NULL,   catvalues},
56 <        {"render",      3,      0,      NULL,   catvalues},
56 >        {"objects",     3,      0,      NULL,   catvalues},
57          {"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},
58          {"OCTREE",      3,      0,      NULL,   onevalue},
69        {"PICTURE",     3,      0,      NULL,   onevalue},
70        {"AMBFILE",     3,      0,      NULL,   onevalue},
59          {"OPTFILE",     3,      0,      NULL,   onevalue},
60 <        {"EXPOSURE",    3,      0,      NULL,   fltvalue},
60 >        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
61 >        {"pfilt",       2,      0,      NULL,   catvalues},
62 >        {"PICTURE",     3,      0,      NULL,   onevalue},
63 >        {"QUALITY",     3,      0,      NULL,   qualvalue},
64 >        {"RAWFILE",     3,      0,      NULL,   onevalue},
65 >        {"render",      3,      0,      NULL,   catvalues},
66 >        {"REPORT",      3,      0,      NULL,   onevalue},
67          {"RESOLUTION",  3,      0,      NULL,   onevalue},
68 +        {"scene",       3,      0,      NULL,   catvalues},
69          {"UP",          2,      0,      NULL,   onevalue},
75        {"INDIRECT",    3,      0,      NULL,   intvalue},
76        {"DETAIL",      3,      0,      NULL,   qualvalue},
77        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
70          {"VARIABILITY", 3,      0,      NULL,   qualvalue},
71 <        {"REPORT",      3,      0,      NULL,   onevalue},
72 <        {"RAWSAVE",     3,      0,      NULL,   boolvalue},
71 >        {"view",        2,      0,      NULL,   NULL},
72 >        {"ZFILE",       2,      0,      NULL,   onevalue},
73 >        {"ZONE",        2,      0,      NULL,   onevalue},
74   };
75  
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
76                                  /* overture calculation file */
77   #ifdef NIX
78 < char    overfile[] = "overture.raw";
78 > char    overfile[] = "overture.unf";
79   #else
80   char    overfile[] = "/dev/null";
81   #endif
82  
83 < extern time_t   fdate(), time();
83 > extern time_t   time();
84  
85   time_t  scenedate;              /* date of latest scene or object file */
86   time_t  octreedate;             /* date of octree */
# Line 178 | Line 154 | char   *argv[];
154                                  /* assign Radiance root file name */
155          rootname(radname, rifname);
156                                  /* load variable values */
157 <        load(rifname);
157 >        loadvars(rifname);
158                                  /* get any additional assignments */
159          for (i++; i < argc; i++)
160 <                setvariable(argv[i]);
160 >                if (setvariable(argv[i], matchvar) < 0) {
161 >                        fprintf(stderr, "%s: unknown variable: %s\n",
162 >                                        progname, argv[i]);
163 >                        quit(1);
164 >                }
165                                  /* check assignments */
166          checkvalues();
167                                  /* check files and dates */
# Line 190 | Line 170 | char   *argv[];
170          setdefaults();
171                                  /* print all values if requested */
172          if (explicate)
173 <                printvals();
173 >                printvars(stdout);
174                                  /* build octree (and run mkillum) */
175          oconv();
176                                  /* check date on ambient file */
# Line 202 | Line 182 | char   *argv[];
182                  rview(ropts, popts);
183          else
184                  rpict(ropts, popts);
185 <        exit(0);
185 >        quit(0);
186   userr:
187          fprintf(stderr,
188 < "Usage: %s [-s][-n][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
188 > "Usage: %s [-w][-s][-n][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
189                          progname);
190 <        exit(1);
190 >        quit(1);
191   }
192  
193  
# Line 226 | Line 206 | register char  *rn, *fn;
206   }
207  
208  
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
209   time_t
210   checklast(fnames)                       /* check files and find most recent */
211   register char   *fnames;
212   {
213          char    thisfile[MAXPATH];
214          time_t  thisdate, lastdate = 0;
482        register char   *cp;
215  
216          if (fnames == NULL)
217                  return(0);
218 <        while (*fnames) {
219 <                while (isspace(*fnames)) fnames++;
220 <                cp = thisfile;
221 <                while (*fnames && !isspace(*fnames))
490 <                        *cp++ = *fnames++;
491 <                *cp = '\0';
218 >        while ((fnames = nextword(thisfile, MAXPATH, fnames)) != NULL) {
219 >                if (thisfile[0] == '!' ||
220 >                                (thisfile[0] == '\\' && thisfile[1] == '!'))
221 >                        continue;
222                  if (!(thisdate = fdate(thisfile)))
223                          syserr(thisfile);
224                  if (thisdate > lastdate)
# Line 533 | Line 263 | checkfiles()                   /* check for existence and modified tim
263                          syserr(progname);
264                  sprintf(vval(OCTREE), "%s.oct", radname);
265                  vdef(OCTREE)++;
266 +        } else if (vval(OCTREE)[0] == '!') {
267 +                fprintf(stderr, "%s: illegal '%s' specification\n",
268 +                                progname, vnam(OCTREE));
269 +                quit(1);
270          }
271          octreedate = fdate(vval(OCTREE));
272          if (vdef(ILLUM)) {              /* illum requires secondary octrees */
# 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 607 | Line 341 | double org[3], *sizp;
341  
342   setdefaults()                   /* set default values for unassigned var's */
343   {
344 <        double  org[3], size;
344 >        double  org[3], lim[3], size;
345          char    buf[128];
346  
347          if (!vdef(ZONE)) {
# Line 617 | Line 351 | setdefaults()                  /* set default values for unassigned v
351                  vval(ZONE) = savqstr(buf);
352                  vdef(ZONE)++;
353          }
354 +        if (!vdef(EYESEP)) {
355 +                if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf",
356 +                                &org[0], &lim[0], &org[1], &lim[1],
357 +                                &org[2], &lim[2]) != 6)
358 +                        badvalue(ZONE);
359 +                sprintf(buf, "%f",
360 +                        0.01*(lim[0]-org[0]+lim[1]-org[1]+lim[2]-org[2]));
361 +                vval(EYESEP) = savqstr(buf);
362 +                vdef(EYESEP)++;
363 +        }
364          if (!vdef(INDIRECT)) {
365                  vval(INDIRECT) = "0";
366                  vdef(INDIRECT)++;
# Line 633 | Line 377 | setdefaults()                  /* set default values for unassigned v
377                  vval(PICTURE) = radname;
378                  vdef(PICTURE)++;
379          }
380 <        if (!vdef(VIEW)) {
381 <                vval(VIEW) = "X";
382 <                vdef(VIEW)++;
380 >        if (!vdef(VIEWS)) {
381 >                vval(VIEWS) = "X";
382 >                vdef(VIEWS)++;
383          }
384          if (!vdef(DETAIL)) {
385                  vval(DETAIL) = "M";
# Line 649 | Line 393 | setdefaults()                  /* set default values for unassigned v
393                  vval(VARIABILITY) = "L";
394                  vdef(VARIABILITY)++;
395          }
652        if (!vdef(RAWSAVE)) {
653                vval(RAWSAVE) = "F";
654                vdef(RAWSAVE)++;
655        }
396   }
397  
398  
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
399   oconv()                         /* run oconv and mkillum if necessary */
400   {
401          static char     illumtmp[] = "ilXXXXXX";
402 <        char    combuf[512], ocopts[64], mkopts[64];
402 >        char    combuf[1024], ocopts[64], mkopts[64];
403  
404          oconvopts(ocopts);              /* get options */
405          if (octreedate < scenedate) {   /* check date on original octree */
# Line 711 | Line 419 | oconv()                                /* run oconv and mkillum if necessary */
419                                  "%s: error generating octree\n\t%s removed\n",
420                                                  progname, vval(OCTREE));
421                                  unlink(vval(OCTREE));
422 <                                exit(1);
422 >                                quit(1);
423                          }
424                  }
425                  octreedate = time((time_t *)NULL);
# Line 742 | Line 450 | oconv()                                /* run oconv and mkillum if necessary */
450                                  "%s: error generating octree\n\t%s removed\n",
451                                                  progname, oct0name);
452                                  unlink(oct0name);
453 <                                exit(1);
453 >                                quit(1);
454                          }
455                  }
456                  oct0date = time((time_t *)NULL);
# Line 762 | Line 470 | oconv()                                /* run oconv and mkillum if necessary */
470                          fprintf(stderr, "%s: error running mkillum\n",
471                                          progname);
472                          unlink(illumtmp);
473 <                        exit(1);
473 >                        quit(1);
474                  }
475                                                  /* make octree1 (frozen) */
476                  if (octreedate)
# Line 779 | Line 487 | oconv()                                /* run oconv and mkillum if necessary */
487                                  "%s: error generating octree\n\t%s removed\n",
488                                          progname, oct1name);
489                          unlink(oct1name);
490 <                        exit(1);
490 >                        unlink(illumtmp);
491 >                        quit(1);
492                  }
493                  rmfile(illumtmp);
494          }
# Line 843 | Line 552 | ambval()                               /* compute ambient value */
552   {
553          if (vdef(EXPOSURE)) {
554                  if (vval(EXPOSURE)[0] == '+' || vval(EXPOSURE)[0] == '-')
555 <                        return(.5/pow(2.,atof(vval(EXPOSURE))));
556 <                return(.5/atof(vval(EXPOSURE)));
555 >                        return(.5/pow(2.,vflt(EXPOSURE)));
556 >                return(.5/vflt(EXPOSURE));
557          }
558          if (vlet(ZONE) == 'E')
559                  return(10.);
# Line 943 | Line 652 | medqopts(op, po)                       /* medium quality rendering options
652   register char   *op;
653   char    *po;
654   {
655 <        double  d, org[3], siz[3];
655 >        double  d, org[3], siz[3], asz;
656  
657          *op = '\0';
658          *po = '\0';
# Line 954 | Line 663 | char   *po;
663          if (siz[0] <= FTINY | siz[1] <= FTINY | siz[2] <= FTINY)
664                  badvalue(ZONE);
665          getoctcube(org, &d);
666 <        d *= 3./(siz[0]+siz[1]+siz[2]);
666 >        asz = (siz[0]+siz[1]+siz[2])/3.;
667 >        d /= asz;
668          switch (vscale(DETAIL)) {
669          case LOW:
670                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 4" : "-ps 8");
671                  op = addarg(op, "-dp 256");
672                  sprintf(op, " -ar %d", (int)(8*d));
673                  op += strlen(op);
674 +                sprintf(op, " -ms %.2g", asz/20.);
675 +                op += strlen(op);
676                  break;
677          case MEDIUM:
678                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 3" : "-ps 6");
679                  op = addarg(op, "-dp 512");
680                  sprintf(op, " -ar %d", (int)(16*d));
681                  op += strlen(op);
682 +                sprintf(op, " -ms %.2g", asz/40.);
683 +                op += strlen(op);
684                  break;
685          case HIGH:
686                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 2" : "-ps 4");
687                  op = addarg(op, "-dp 1024");
688                  sprintf(op, " -ar %d", (int)(32*d));
689                  op += strlen(op);
690 +                sprintf(op, " -ms %.2g", asz/80.);
691 +                op += strlen(op);
692                  break;
693          }
694          po = addarg(po, "-pt .08");
# Line 1014 | Line 730 | hiqopts(op, po)                                /* high quality rendering options *
730   register char   *op;
731   char    *po;
732   {
733 <        double  d, org[3], siz[3];
733 >        double  d, org[3], siz[3], asz;
734  
735          *op = '\0';
736          *po = '\0';
# Line 1025 | Line 741 | char   *po;
741          if (siz[0] <= FTINY | siz[1] <= FTINY | siz[2] <= FTINY)
742                  badvalue(ZONE);
743          getoctcube(org, &d);
744 <        d *= 3./(siz[0]+siz[1]+siz[2]);
744 >        asz = (siz[0]+siz[1]+siz[2])/3.;
745 >        d /= asz;
746          switch (vscale(DETAIL)) {
747          case LOW:
748                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 8");
749                  op = addarg(op, "-dp 1024");
750                  sprintf(op, " -ar %d", (int)(16*d));
751                  op += strlen(op);
752 +                sprintf(op, " -ms %.2g", asz/40.);
753 +                op += strlen(op);
754                  break;
755          case MEDIUM:
756                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 5");
757                  op = addarg(op, "-dp 2048");
758                  sprintf(op, " -ar %d", (int)(32*d));
759                  op += strlen(op);
760 +                sprintf(op, " -ms %.2g", asz/80.);
761 +                op += strlen(op);
762                  break;
763          case HIGH:
764                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 3");
765                  op = addarg(op, "-dp 4096");
766                  sprintf(op, " -ar %d", (int)(64*d));
767                  op += strlen(op);
768 +                sprintf(op, " -ms %.2g", asz/160.);
769 +                op += strlen(op);
770                  break;
771          }
772          po = addarg(po, "-pt .04");
# Line 1090 | Line 813 | char   *ro;
813                  return;
814          if (vdef(OPTFILE)) {
815                  for (cp = ro; cp[1]; cp++)
816 <                        if (isspace(cp[1]) && cp[2] == '-' && isalpha(cp[3]))
816 >                        if (isspace(cp[1]) && (cp[2] == '@' ||
817 >                                        (cp[2] == '-' && isalpha(cp[3]))))
818                                  *cp = '\n';
819                          else
820                                  *cp = cp[1];
# Line 1100 | Line 824 | char   *ro;
824                          syserr(vval(OPTFILE));
825                  sprintf(ro, " @%s", vval(OPTFILE));
826          }
827 < #ifdef MSDOS
827 > #ifdef _WIN32
828          else if (n > 50) {
829                  setenv("ROPT", ro+1);
830                  strcpy(ro, " $ROPT");
# Line 1119 | Line 843 | register char  *po;
843          }
844          switch (vscale(QUALITY)) {
845          case MEDIUM:
846 <                po = addarg(po, "-r 1");
846 >                po = addarg(po, "-r .6");
847                  break;
848          case HIGH:
849                  po = addarg(po, "-m .25");
# Line 1256 | Line 980 | register char  *vs;
980          if (cp == viewopts)             /* append any additional options */
981                  vs++;           /* skip prefixed space if unneeded */
982          strcpy(cp, vs);
983 < #ifdef MSDOS
983 > #ifdef _WIN32
984          if (strlen(viewopts) > 40) {
985                  setenv("VIEW", viewopts);
986                  return("$VIEW");
# Line 1288 | Line 1012 | char   *vn;            /* returned view name */
1012                  }
1013                                                  /* view number? */
1014                  if (isint(viewselect))
1015 <                        return(specview(nvalue(vv+VIEW, atoi(viewselect)-1)));
1015 >                        return(specview(nvalue(VIEWS, atoi(viewselect)-1)));
1016                                                  /* check list */
1017 <                while ((mv = nvalue(vv+VIEW, n++)) != NULL)
1017 >                while ((mv = nvalue(VIEWS, n++)) != NULL)
1018                          if (matchword(viewselect, mv))
1019                                  return(specview(mv));
1020                  return(specview(viewselect));   /* standard view? */
1021          }
1022 <        mv = nvalue(vv+VIEW, n);                /* use view n */
1022 >        mv = nvalue(VIEWS, n);          /* use view n */
1023          if (vn != NULL & mv != NULL) {
1024                  register char   *mv2 = mv;
1025                  if (*mv2 != '-')
# Line 1310 | Line 1034 | char   *vn;            /* returned view name */
1034   printview(vopts)                        /* print out selected view */
1035   register char   *vopts;
1036   {
1037 <        extern char     *atos(), *getenv();
1038 <        char    buf[256];
1315 <        FILE    *fp;
1037 >        VIEW    vwr;
1038 >        char    buf[128];
1039          register char   *cp;
1040 <
1040 > again:
1041          if (vopts == NULL)
1042                  return(-1);
1043 <        fputs("VIEW=", stdout);
1044 <        do {
1045 <                if (matchword(vopts, "-vf")) {          /* expand view file */
1046 <                        vopts = sskip(vopts);
1047 <                        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
1043 > #ifdef _WIN32
1044 >        if (vopts[0] == '$') {
1045 >                vopts = getenv(vopts+1);
1046 >                goto again;
1047 >        }
1048   #endif
1049 <                                while (*vopts && !isspace(*vopts))
1050 <                                        putchar(*vopts++);
1051 <                }
1052 <        } while (*vopts++);
1053 <        putchar('\n');
1049 >        copystruct(&vwr, &stdview);
1050 >        sscanview(&vwr, cp=vopts);              /* set initial options */
1051 >        while ((cp = strstr(cp, "-vf ")) != NULL &&
1052 >                        *atos(buf, sizeof(buf), cp += 4)) {
1053 >                viewfile(buf, &vwr, NULL);      /* load -vf file */
1054 >                sscanview(&vwr, cp);            /* reset tail */
1055 >        }
1056 >        fputs(VIEWSTR, stdout);
1057 >        fprintview(&vwr, stdout);               /* print full spec. */
1058 >        fputc('\n', stdout);
1059          return(0);
1060   }
1061  
# Line 1382 | Line 1078 | char   *opts, *po;
1078          strcat(combuf, oct1name);
1079          if (runcom(combuf)) {           /* run it */
1080                  fprintf(stderr, "%s: error running rview\n", progname);
1081 <                exit(1);
1081 >                quit(1);
1082          }
1083   }
1084  
# Line 1391 | Line 1087 | rpict(opts, po)                                /* run rpict and pfilt for each vie
1087   char    *opts, *po;
1088   {
1089          char    combuf[1024];
1090 <        char    rawfile[MAXPATH], picfile[MAXPATH], rep[MAXPATH+16], res[32];
1090 >        char    rawfile[MAXPATH], picfile[MAXPATH];
1091 >        char    zopt[MAXPATH+4], rep[MAXPATH+16], res[32];
1092          char    pfopts[128];
1093          char    vs[32], *vw;
1094          int     vn, mult;
# Line 1444 | Line 1141 | char   *opts, *po;
1141                  if (!vs[0])
1142                          sprintf(vs, "%d", vn);
1143                  sprintf(picfile, "%s_%s.pic", vval(PICTURE), vs);
1144 +                if (vdef(ZFILE))
1145 +                        sprintf(zopt, " -z %s_%s.zbf", vval(ZFILE), vs);
1146 +                else
1147 +                        zopt[0] = '\0';
1148                                                  /* check date on picture */
1149                  pfdt = fdate(picfile);
1150                  if (pfdt >= oct1date)
1151                          continue;
1152                                                  /* get raw file name */
1153 <                sprintf(rawfile, "%s_%s.raw", vval(PICTURE), vs);
1153 >                sprintf(rawfile, "%s_%s.unf",
1154 >                        vdef(RAWFILE) ? vval(RAWFILE) : vval(PICTURE), vs);
1155                  rfdt = fdate(rawfile);
1156                  if (touchonly) {                /* update times only */
1157                          if (rfdt) {
# Line 1461 | Line 1163 | char   *opts, *po;
1163                  }
1164                                                  /* build rpict command */
1165                  if (rfdt >= oct1date)           /* recover */
1166 <                        sprintf(combuf, "rpict%s%s%s -ro %s %s",
1167 <                                        rep, po, opts, rawfile, oct1name);
1166 >                        sprintf(combuf, "rpict%s%s%s%s -ro %s %s",
1167 >                                rep, po, opts, zopt, rawfile, oct1name);
1168                  else {
1169                          if (overture) {         /* run overture calculation */
1170                                  sprintf(combuf,
# Line 1473 | Line 1175 | char   *opts, *po;
1175                                          fprintf(stderr,
1176                                          "%s: error in overture for view %s\n",
1177                                                  progname, vs);
1178 <                                        exit(1);
1178 >                                        quit(1);
1179                                  }
1180   #ifdef NIX
1181                                  rmfile(overfile);
1182   #endif
1183                          }
1184 <                        sprintf(combuf, "rpict%s %s %s%s%s %s > %s",
1185 <                                        rep, vw, res, po, opts,
1186 <                                oct1name, rawfile);
1184 >                        sprintf(combuf, "rpict%s %s %s%s%s%s %s > %s",
1185 >                                        rep, vw, res, po, opts, zopt,
1186 >                                        oct1name, rawfile);
1187                  }
1188                  if (runcom(combuf)) {           /* run rpict */
1189                          fprintf(stderr, "%s: error rendering view %s\n",
1190                                          progname, vs);
1191 <                        exit(1);
1191 >                        quit(1);
1192                  }
1193 +                if (!vdef(RAWFILE) || strcmp(vval(RAWFILE),vval(PICTURE))) {
1194                                                  /* build pfilt command */
1195 <                if (mult > 1)
1196 <                        sprintf(combuf, "pfilt%s -x /%d -y /%d %s > %s",
1195 >                        if (mult > 1)
1196 >                                sprintf(combuf, "pfilt%s -x /%d -y /%d %s > %s",
1197                                          pfopts, mult, mult, rawfile, picfile);
1198 <                else
1199 <                        sprintf(combuf, "pfilt%s %s > %s", pfopts,
1200 <                                        rawfile, picfile);
1201 <                if (runcom(combuf)) {           /* run pfilt */
1202 <                        fprintf(stderr,
1203 <                        "%s: error filtering view %s\n\t%s removed\n",
1204 <                                        progname, vs, picfile);
1205 <                        unlink(picfile);
1206 <                        exit(1);
1198 >                        else
1199 >                                sprintf(combuf, "pfilt%s %s > %s", pfopts,
1200 >                                                rawfile, picfile);
1201 >                        if (runcom(combuf)) {           /* run pfilt */
1202 >                                fprintf(stderr,
1203 >                                "%s: error filtering view %s\n\t%s removed\n",
1204 >                                                progname, vs, picfile);
1205 >                                unlink(picfile);
1206 >                                quit(1);
1207 >                        }
1208                  }
1209                                                  /* remove/rename raw file */
1210 <                if (vbool(RAWSAVE)) {
1211 <                        sprintf(combuf, "%s_%s.rwp", vval(PICTURE), vs);
1210 >                if (vdef(RAWFILE)) {
1211 >                        sprintf(combuf, "%s_%s.pic", vval(RAWFILE), vs);
1212                          mvfile(rawfile, combuf);
1213                  } else
1214                          rmfile(rawfile);
# Line 1544 | Line 1248 | rmfile(fn)                     /* remove a file */
1248   char    *fn;
1249   {
1250          if (!silent)
1251 < #ifdef MSDOS
1251 > #ifdef _WIN32
1252                  printf("\tdel %s\n", fn);
1253   #else
1254                  printf("\trm -f %s\n", fn);
# Line 1559 | Line 1263 | mvfile(fold, fnew)             /* move a file */
1263   char    *fold, *fnew;
1264   {
1265          if (!silent)
1266 < #ifdef MSDOS
1266 > #ifdef _WIN32
1267                  printf("\trename %s %s\n", fold, fnew);
1268   #else
1269                  printf("\tmv %s %s\n", fold, fnew);
# Line 1570 | Line 1274 | char   *fold, *fnew;
1274   }
1275  
1276  
1277 < #ifdef MSDOS
1277 > #ifdef _WIN32
1278   setenv(vname, value)            /* set an environment variable */
1279   char    *vname, *value;
1280   {
# Line 1582 | Line 1286 | char   *vname, *value;
1286          sprintf(evp, "%s=%s", vname, value);
1287          if (putenv(evp) != 0) {
1288                  fprintf(stderr, "%s: out of environment space\n", progname);
1289 <                exit(1);
1289 >                quit(1);
1290          }
1291          if (!silent)
1292                  printf("set %s\n", evp);
# Line 1595 | Line 1299 | int    vc;
1299   {
1300          fprintf(stderr, "%s: bad value for variable '%s'\n",
1301                          progname, vnam(vc));
1302 <        exit(1);
1302 >        quit(1);
1303   }
1304  
1305  
# Line 1603 | Line 1307 | syserr(s)                      /* report a system error and exit */
1307   char    *s;
1308   {
1309          perror(s);
1310 <        exit(1);
1310 >        quit(1);
1311 > }
1312 >
1313 >
1314 > void
1315 > quit(ec)                        /* exit program */
1316 > int     ec;
1317 > {
1318 >        exit(ec);
1319   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines