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.65 by schorsch, Mon Jun 30 14:59:13 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 */
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           23
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},
63        {"pfilt",       2,      0,      NULL,   catvalues},
64        {"view",        2,      0,      NULL,   NULL},
65        {"ZONE",        2,      0,      NULL,   onevalue},
66        {"QUALITY",     3,      0,      NULL,   qualvalue},
58          {"OCTREE",      3,      0,      NULL,   onevalue},
68        {"PICTURE",     3,      0,      NULL,   onevalue},
69        {"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},
74        {"INDIRECT",    3,      0,      NULL,   intvalue},
75        {"DETAIL",      3,      0,      NULL,   qualvalue},
76        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
70          {"VARIABILITY", 3,      0,      NULL,   qualvalue},
71 <        {"REPORT",      3,      0,      NULL,   onevalue},
71 >        {"view",        2,      0,      NULL,   NULL},
72 >        {"ZFILE",       2,      0,      NULL,   onevalue},
73 >        {"ZONE",        2,      0,      NULL,   onevalue},
74   };
75  
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
76                                  /* overture calculation file */
77 < #ifdef NIX
78 < char    overfile[] = "overture.raw";
77 > #ifdef NULL_DEVICE
78 > char    overfile[] = NULL_DEVICE;
79   #else
80 < char    overfile[] = "/dev/null";
80 > char    overfile[] = "overture.unf";
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 128 | Line 106 | int    overture = 0;           /* overture calculation needed */
106   char    *progname;              /* global argv[0] */
107   char    *rifname;               /* global rad input file name */
108  
109 < char    radname[MAXPATH];       /* root Radiance file name */
109 > char    radname[PATH_MAX];      /* root Radiance file name */
110  
111  
112   main(argc, argv)
# Line 176 | 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 188 | 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 200 | 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 224 | Line 206 | register char  *rn, *fn;
206   }
207  
208  
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
209   time_t
210   checklast(fnames)                       /* check files and find most recent */
211   register char   *fnames;
212   {
213 <        char    thisfile[MAXPATH];
213 >        char    thisfile[PATH_MAX];
214          time_t  thisdate, lastdate = 0;
480        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))
488 <                        *cp++ = *fnames++;
489 <                *cp = '\0';
218 >        while ((fnames = nextword(thisfile, PATH_MAX, 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 501 | Line 233 | newfname(orig, pred)           /* create modified file name */
233   char    *orig;
234   int     pred;
235   {
504        extern char     *rindex();
236          register char   *cp;
237          register int    n;
238          int     suffix;
# Line 531 | Line 262 | checkfiles()                   /* check for existence and modified tim
262                          syserr(progname);
263                  sprintf(vval(OCTREE), "%s.oct", radname);
264                  vdef(OCTREE)++;
265 +        } else if (vval(OCTREE)[0] == '!') {
266 +                fprintf(stderr, "%s: illegal '%s' specification\n",
267 +                                progname, vnam(OCTREE));
268 +                quit(1);
269          }
270          octreedate = fdate(vval(OCTREE));
271          if (vdef(ILLUM)) {              /* illum requires secondary octrees */
# Line 547 | Line 282 | checkfiles()                   /* check for existence and modified tim
282          if (!octreedate & !scenedate & !illumdate) {
283                  fprintf(stderr, "%s: need '%s' or '%s' or '%s'\n", progname,
284                                  vnam(OCTREE), vnam(SCENE), vnam(ILLUM));
285 <                exit(1);
285 >                quit(1);
286          }
287          matdate = checklast(vval(MATERIAL));
288   }      
# Line 559 | Line 294 | double org[3], *sizp;
294          extern FILE     *popen();
295          static double   oorg[3], osiz = 0.;
296          double  min[3], max[3];
297 <        char    buf[512];
297 >        char    buf[1024];
298          FILE    *fp;
299          register int    i;
300  
# Line 577 | Line 312 | double org[3], *sizp;
312                                  fprintf(stderr,
313                          "%s: error reading bounding box from getbbox\n",
314                                                  progname);
315 <                                exit(1);
315 >                                quit(1);
316                          }
317                          for (i = 0; i < 3; i++)
318                                  if (max[i] - min[i] > osiz)
# Line 595 | Line 330 | double org[3], *sizp;
330                                  fprintf(stderr,
331                          "%s: error reading bounding cube from getinfo\n",
332                                                  progname);
333 <                                exit(1);
333 >                                quit(1);
334                          }
335                          pclose(fp);
336                  }
# Line 605 | Line 340 | double org[3], *sizp;
340  
341   setdefaults()                   /* set default values for unassigned var's */
342   {
343 <        double  org[3], size;
343 >        double  org[3], lim[3], size;
344          char    buf[128];
345  
346          if (!vdef(ZONE)) {
# Line 615 | Line 350 | setdefaults()                  /* set default values for unassigned v
350                  vval(ZONE) = savqstr(buf);
351                  vdef(ZONE)++;
352          }
353 +        if (!vdef(EYESEP)) {
354 +                if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf",
355 +                                &org[0], &lim[0], &org[1], &lim[1],
356 +                                &org[2], &lim[2]) != 6)
357 +                        badvalue(ZONE);
358 +                sprintf(buf, "%f",
359 +                        0.01*(lim[0]-org[0]+lim[1]-org[1]+lim[2]-org[2]));
360 +                vval(EYESEP) = savqstr(buf);
361 +                vdef(EYESEP)++;
362 +        }
363          if (!vdef(INDIRECT)) {
364                  vval(INDIRECT) = "0";
365                  vdef(INDIRECT)++;
# Line 631 | Line 376 | setdefaults()                  /* set default values for unassigned v
376                  vval(PICTURE) = radname;
377                  vdef(PICTURE)++;
378          }
379 <        if (!vdef(VIEW)) {
380 <                vval(VIEW) = "X";
381 <                vdef(VIEW)++;
379 >        if (!vdef(VIEWS)) {
380 >                vval(VIEWS) = "X";
381 >                vdef(VIEWS)++;
382          }
383          if (!vdef(DETAIL)) {
384                  vval(DETAIL) = "M";
# Line 650 | Line 395 | setdefaults()                  /* set default values for unassigned v
395   }
396  
397  
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
398   oconv()                         /* run oconv and mkillum if necessary */
399   {
400          static char     illumtmp[] = "ilXXXXXX";
401 <        char    combuf[512], ocopts[64], mkopts[64];
401 >        char    combuf[PATH_MAX], ocopts[64], mkopts[64];
402  
403          oconvopts(ocopts);              /* get options */
404          if (octreedate < scenedate) {   /* check date on original octree */
# Line 705 | Line 418 | oconv()                                /* run oconv and mkillum if necessary */
418                                  "%s: error generating octree\n\t%s removed\n",
419                                                  progname, vval(OCTREE));
420                                  unlink(vval(OCTREE));
421 <                                exit(1);
421 >                                quit(1);
422                          }
423                  }
424                  octreedate = time((time_t *)NULL);
# Line 736 | Line 449 | oconv()                                /* run oconv and mkillum if necessary */
449                                  "%s: error generating octree\n\t%s removed\n",
450                                                  progname, oct0name);
451                                  unlink(oct0name);
452 <                                exit(1);
452 >                                quit(1);
453                          }
454                  }
455                  oct0date = time((time_t *)NULL);
# Line 756 | Line 469 | oconv()                                /* run oconv and mkillum if necessary */
469                          fprintf(stderr, "%s: error running mkillum\n",
470                                          progname);
471                          unlink(illumtmp);
472 <                        exit(1);
472 >                        quit(1);
473                  }
474                                                  /* make octree1 (frozen) */
475                  if (octreedate)
# Line 773 | Line 486 | oconv()                                /* run oconv and mkillum if necessary */
486                                  "%s: error generating octree\n\t%s removed\n",
487                                          progname, oct1name);
488                          unlink(oct1name);
489 <                        exit(1);
489 >                        unlink(illumtmp);
490 >                        quit(1);
491                  }
492                  rmfile(illumtmp);
493          }
# Line 837 | Line 551 | ambval()                               /* compute ambient value */
551   {
552          if (vdef(EXPOSURE)) {
553                  if (vval(EXPOSURE)[0] == '+' || vval(EXPOSURE)[0] == '-')
554 <                        return(.5/pow(2.,atof(vval(EXPOSURE))));
555 <                return(.5/atof(vval(EXPOSURE)));
554 >                        return(.5/pow(2.,vflt(EXPOSURE)));
555 >                return(.5/vflt(EXPOSURE));
556          }
557          if (vlet(ZONE) == 'E')
558                  return(10.);
# Line 937 | Line 651 | medqopts(op, po)                       /* medium quality rendering options
651   register char   *op;
652   char    *po;
653   {
654 <        double  d, org[3], siz[3];
654 >        double  d, org[3], siz[3], asz;
655  
656          *op = '\0';
657          *po = '\0';
# Line 948 | Line 662 | char   *po;
662          if (siz[0] <= FTINY | siz[1] <= FTINY | siz[2] <= FTINY)
663                  badvalue(ZONE);
664          getoctcube(org, &d);
665 <        d *= 3./(siz[0]+siz[1]+siz[2]);
665 >        asz = (siz[0]+siz[1]+siz[2])/3.;
666 >        d /= asz;
667          switch (vscale(DETAIL)) {
668          case LOW:
669                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 4" : "-ps 8");
670                  op = addarg(op, "-dp 256");
671                  sprintf(op, " -ar %d", (int)(8*d));
672                  op += strlen(op);
673 +                sprintf(op, " -ms %.2g", asz/20.);
674 +                op += strlen(op);
675                  break;
676          case MEDIUM:
677                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 3" : "-ps 6");
678                  op = addarg(op, "-dp 512");
679                  sprintf(op, " -ar %d", (int)(16*d));
680                  op += strlen(op);
681 +                sprintf(op, " -ms %.2g", asz/40.);
682 +                op += strlen(op);
683                  break;
684          case HIGH:
685                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 2" : "-ps 4");
686                  op = addarg(op, "-dp 1024");
687                  sprintf(op, " -ar %d", (int)(32*d));
688                  op += strlen(op);
689 +                sprintf(op, " -ms %.2g", asz/80.);
690 +                op += strlen(op);
691                  break;
692          }
693          po = addarg(po, "-pt .08");
# Line 1008 | Line 729 | hiqopts(op, po)                                /* high quality rendering options *
729   register char   *op;
730   char    *po;
731   {
732 <        double  d, org[3], siz[3];
732 >        double  d, org[3], siz[3], asz;
733  
734          *op = '\0';
735          *po = '\0';
# Line 1019 | Line 740 | char   *po;
740          if (siz[0] <= FTINY | siz[1] <= FTINY | siz[2] <= FTINY)
741                  badvalue(ZONE);
742          getoctcube(org, &d);
743 <        d *= 3./(siz[0]+siz[1]+siz[2]);
743 >        asz = (siz[0]+siz[1]+siz[2])/3.;
744 >        d /= asz;
745          switch (vscale(DETAIL)) {
746          case LOW:
747                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 8");
748                  op = addarg(op, "-dp 1024");
749                  sprintf(op, " -ar %d", (int)(16*d));
750                  op += strlen(op);
751 +                sprintf(op, " -ms %.2g", asz/40.);
752 +                op += strlen(op);
753                  break;
754          case MEDIUM:
755                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 5");
756                  op = addarg(op, "-dp 2048");
757                  sprintf(op, " -ar %d", (int)(32*d));
758                  op += strlen(op);
759 +                sprintf(op, " -ms %.2g", asz/80.);
760 +                op += strlen(op);
761                  break;
762          case HIGH:
763                  po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 3");
764                  op = addarg(op, "-dp 4096");
765                  sprintf(op, " -ar %d", (int)(64*d));
766                  op += strlen(op);
767 +                sprintf(op, " -ms %.2g", asz/160.);
768 +                op += strlen(op);
769                  break;
770          }
771          po = addarg(po, "-pt .04");
772          if (vbool(PENUMBRAS))
773 <                op = addarg(op, "-ds .1 -dj .7");
773 >                op = addarg(op, "-ds .1 -dj .65");
774          else
775                  op = addarg(op, "-ds .2");
776          op = addarg(op, "-dt .05 -dc .75 -dr 3 -sj 1 -st .01");
# Line 1084 | Line 812 | char   *ro;
812                  return;
813          if (vdef(OPTFILE)) {
814                  for (cp = ro; cp[1]; cp++)
815 <                        if (isspace(cp[1]) && cp[2] == '-' && isalpha(cp[3]))
815 >                        if (isspace(cp[1]) && (cp[2] == '@' ||
816 >                                        (cp[2] == '-' && isalpha(cp[3]))))
817                                  *cp = '\n';
818                          else
819                                  *cp = cp[1];
# Line 1094 | Line 823 | char   *ro;
823                          syserr(vval(OPTFILE));
824                  sprintf(ro, " @%s", vval(OPTFILE));
825          }
826 < #ifdef MSDOS
826 > #ifdef _WIN32
827          else if (n > 50) {
828                  setenv("ROPT", ro+1);
829                  strcpy(ro, " $ROPT");
# Line 1113 | Line 842 | register char  *po;
842          }
843          switch (vscale(QUALITY)) {
844          case MEDIUM:
845 <                po = addarg(po, "-r 1");
845 >                po = addarg(po, "-r .6");
846                  break;
847          case HIGH:
848                  po = addarg(po, "-m .25");
# Line 1179 | Line 908 | register char  *vs;
908                  zpos = -1; vs++;
909          }
910          viewtype = 'v';
911 <        if (*vs == 'v' | *vs == 'l' | *vs == 'a' | *vs == 'h')
911 >        if (*vs == 'v' | *vs == 'l' | *vs == 'a' | *vs == 'h' | *vs == 'c')
912                  viewtype = *vs++;
913          cp = viewopts;
914          if ((!*vs || isspace(*vs)) && (xpos|ypos|zpos)) {       /* got one! */
# Line 1234 | Line 963 | register char  *vs;
963                  case 'h':
964                          cp = addarg(cp, "-vh 180 -vv 180");
965                          break;
966 +                case 'c':
967 +                        cp = addarg(cp, "-vh 180 -vv 90");
968 +                        break;
969                  }
970          } else {
971                  while (!isspace(*vs))           /* else skip id */
# Line 1247 | Line 979 | register char  *vs;
979          if (cp == viewopts)             /* append any additional options */
980                  vs++;           /* skip prefixed space if unneeded */
981          strcpy(cp, vs);
982 < #ifdef MSDOS
982 > #ifdef _WIN32
983          if (strlen(viewopts) > 40) {
984                  setenv("VIEW", viewopts);
985                  return("$VIEW");
# Line 1279 | Line 1011 | char   *vn;            /* returned view name */
1011                  }
1012                                                  /* view number? */
1013                  if (isint(viewselect))
1014 <                        return(specview(nvalue(vv+VIEW, atoi(viewselect)-1)));
1014 >                        return(specview(nvalue(VIEWS, atoi(viewselect)-1)));
1015                                                  /* check list */
1016 <                while ((mv = nvalue(vv+VIEW, n++)) != NULL)
1016 >                while ((mv = nvalue(VIEWS, n++)) != NULL)
1017                          if (matchword(viewselect, mv))
1018                                  return(specview(mv));
1019                  return(specview(viewselect));   /* standard view? */
1020          }
1021 <        mv = nvalue(vv+VIEW, n);                /* use view n */
1021 >        mv = nvalue(VIEWS, n);          /* use view n */
1022          if (vn != NULL & mv != NULL) {
1023                  register char   *mv2 = mv;
1024                  if (*mv2 != '-')
# Line 1301 | Line 1033 | char   *vn;            /* returned view name */
1033   printview(vopts)                        /* print out selected view */
1034   register char   *vopts;
1035   {
1036 <        extern char     *atos(), *getenv();
1037 <        char    buf[256];
1306 <        FILE    *fp;
1036 >        VIEW    vwr;
1037 >        char    buf[128];
1038          register char   *cp;
1039 <
1039 > again:
1040          if (vopts == NULL)
1041                  return(-1);
1042 <        fputs("VIEW=", stdout);
1043 <        do {
1044 <                if (matchword(vopts, "-vf")) {          /* expand view file */
1045 <                        vopts = sskip(vopts);
1046 <                        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(' ');
1339 < #ifdef MSDOS
1340 <                        if (*vopts == '$') {            /* expand env. var. */
1341 <                                if (!*atos(buf, sizeof(buf), vopts+1))
1342 <                                        return(-1);
1343 <                                if ((cp = getenv(buf)) == NULL)
1344 <                                        return(-1);
1345 <                                fputs(cp, stdout);
1346 <                                vopts = sskip(vopts);
1347 <                        } else
1042 > #ifdef _WIN32
1043 >        if (vopts[0] == '$') {
1044 >                vopts = getenv(vopts+1);
1045 >                goto again;
1046 >        }
1047   #endif
1048 <                                while (*vopts && !isspace(*vopts))
1049 <                                        putchar(*vopts++);
1050 <                }
1051 <        } while (*vopts++);
1052 <        putchar('\n');
1048 >        copystruct(&vwr, &stdview);
1049 >        sscanview(&vwr, cp=vopts);              /* set initial options */
1050 >        while ((cp = strstr(cp, "-vf ")) != NULL &&
1051 >                        *atos(buf, sizeof(buf), cp += 4)) {
1052 >                viewfile(buf, &vwr, NULL);      /* load -vf file */
1053 >                sscanview(&vwr, cp);            /* reset tail */
1054 >        }
1055 >        fputs(VIEWSTR, stdout);
1056 >        fprintview(&vwr, stdout);               /* print full spec. */
1057 >        fputc('\n', stdout);
1058          return(0);
1059   }
1060  
# Line 1359 | Line 1063 | rview(opts, po)                                /* run rview with first view */
1063   char    *opts, *po;
1064   {
1065          char    *vw;
1066 <        char    combuf[512];
1066 >        char    combuf[PATH_MAX];
1067                                          /* build command */
1068          if (touchonly || (vw = getview(0, NULL)) == NULL)
1069                  return;
# Line 1373 | Line 1077 | char   *opts, *po;
1077          strcat(combuf, oct1name);
1078          if (runcom(combuf)) {           /* run it */
1079                  fprintf(stderr, "%s: error running rview\n", progname);
1080 <                exit(1);
1080 >                quit(1);
1081          }
1082   }
1083  
# Line 1381 | Line 1085 | char   *opts, *po;
1085   rpict(opts, po)                         /* run rpict and pfilt for each view */
1086   char    *opts, *po;
1087   {
1088 <        char    combuf[1024];
1089 <        char    rawfile[MAXPATH], picfile[MAXPATH], rep[MAXPATH+16], res[32];
1088 >        char    combuf[PATH_MAX];
1089 >        char    rawfile[PATH_MAX], picfile[PATH_MAX];
1090 >        char    zopt[PATH_MAX+4], rep[PATH_MAX+16], res[32];
1091          char    pfopts[128];
1092          char    vs[32], *vw;
1093          int     vn, mult;
# Line 1435 | Line 1140 | char   *opts, *po;
1140                  if (!vs[0])
1141                          sprintf(vs, "%d", vn);
1142                  sprintf(picfile, "%s_%s.pic", vval(PICTURE), vs);
1143 +                if (vdef(ZFILE))
1144 +                        sprintf(zopt, " -z %s_%s.zbf", vval(ZFILE), vs);
1145 +                else
1146 +                        zopt[0] = '\0';
1147                                                  /* check date on picture */
1148                  pfdt = fdate(picfile);
1149                  if (pfdt >= oct1date)
1150                          continue;
1151                                                  /* get raw file name */
1152 <                sprintf(rawfile, "%s_%s.raw", vval(PICTURE), vs);
1152 >                sprintf(rawfile, "%s_%s.unf",
1153 >                        vdef(RAWFILE) ? vval(RAWFILE) : vval(PICTURE), vs);
1154                  rfdt = fdate(rawfile);
1155                  if (touchonly) {                /* update times only */
1156                          if (rfdt) {
# Line 1452 | Line 1162 | char   *opts, *po;
1162                  }
1163                                                  /* build rpict command */
1164                  if (rfdt >= oct1date)           /* recover */
1165 <                        sprintf(combuf, "rpict%s%s%s -ro %s %s",
1166 <                                        rep, po, opts, rawfile, oct1name);
1165 >                        sprintf(combuf, "rpict%s%s%s%s -ro %s %s",
1166 >                                rep, po, opts, zopt, rawfile, oct1name);
1167                  else {
1168                          if (overture) {         /* run overture calculation */
1169                                  sprintf(combuf,
# Line 1464 | Line 1174 | char   *opts, *po;
1174                                          fprintf(stderr,
1175                                          "%s: error in overture for view %s\n",
1176                                                  progname, vs);
1177 <                                        exit(1);
1177 >                                        quit(1);
1178                                  }
1179 < #ifdef NIX
1179 > #ifndef NULL_DEVICE
1180                                  rmfile(overfile);
1181   #endif
1182                          }
1183 <                        sprintf(combuf, "rpict%s %s %s%s%s %s > %s",
1184 <                                        rep, vw, res, po, opts,
1185 <                                oct1name, rawfile);
1183 >                        sprintf(combuf, "rpict%s %s %s%s%s%s %s > %s",
1184 >                                        rep, vw, res, po, opts, zopt,
1185 >                                        oct1name, rawfile);
1186                  }
1187                  if (runcom(combuf)) {           /* run rpict */
1188                          fprintf(stderr, "%s: error rendering view %s\n",
1189                                          progname, vs);
1190 <                        exit(1);
1190 >                        quit(1);
1191                  }
1192 +                if (!vdef(RAWFILE) || strcmp(vval(RAWFILE),vval(PICTURE))) {
1193                                                  /* build pfilt command */
1194 <                if (mult > 1)
1195 <                        sprintf(combuf, "pfilt%s -x /%d -y /%d %s > %s",
1194 >                        if (mult > 1)
1195 >                                sprintf(combuf, "pfilt%s -x /%d -y /%d %s > %s",
1196                                          pfopts, mult, mult, rawfile, picfile);
1197 <                else
1198 <                        sprintf(combuf, "pfilt%s %s > %s", pfopts,
1199 <                                        rawfile, picfile);
1200 <                if (runcom(combuf)) {           /* run pfilt */
1201 <                        fprintf(stderr,
1202 <                        "%s: error filtering view %s\n\t%s removed\n",
1203 <                                        progname, vs, picfile);
1204 <                        unlink(picfile);
1205 <                        exit(1);
1197 >                        else
1198 >                                sprintf(combuf, "pfilt%s %s > %s", pfopts,
1199 >                                                rawfile, picfile);
1200 >                        if (runcom(combuf)) {           /* run pfilt */
1201 >                                fprintf(stderr,
1202 >                                "%s: error filtering view %s\n\t%s removed\n",
1203 >                                                progname, vs, picfile);
1204 >                                unlink(picfile);
1205 >                                quit(1);
1206 >                        }
1207                  }
1208 <                                                /* remove raw file */
1209 <                rmfile(rawfile);
1208 >                                                /* remove/rename raw file */
1209 >                if (vdef(RAWFILE)) {
1210 >                        sprintf(combuf, "%s_%s.pic", vval(RAWFILE), vs);
1211 >                        mvfile(rawfile, combuf);
1212 >                } else
1213 >                        rmfile(rawfile);
1214          }
1215   }
1216  
# Line 1531 | Line 1247 | rmfile(fn)                     /* remove a file */
1247   char    *fn;
1248   {
1249          if (!silent)
1250 < #ifdef MSDOS
1250 > #ifdef _WIN32
1251                  printf("\tdel %s\n", fn);
1252   #else
1253                  printf("\trm -f %s\n", fn);
# Line 1542 | Line 1258 | char   *fn;
1258   }
1259  
1260  
1261 < #ifdef MSDOS
1261 > mvfile(fold, fnew)              /* move a file */
1262 > char    *fold, *fnew;
1263 > {
1264 >        if (!silent)
1265 > #ifdef _WIN32
1266 >                printf("\trename %s %s\n", fold, fnew);
1267 > #else
1268 >                printf("\tmv %s %s\n", fold, fnew);
1269 > #endif
1270 >        if (noaction)
1271 >                return(0);
1272 >        return(rename(fold, fnew));
1273 > }
1274 >
1275 >
1276 > #ifdef _WIN32
1277   setenv(vname, value)            /* set an environment variable */
1278   char    *vname, *value;
1279   {
# Line 1554 | Line 1285 | char   *vname, *value;
1285          sprintf(evp, "%s=%s", vname, value);
1286          if (putenv(evp) != 0) {
1287                  fprintf(stderr, "%s: out of environment space\n", progname);
1288 <                exit(1);
1288 >                quit(1);
1289          }
1290          if (!silent)
1291                  printf("set %s\n", evp);
# Line 1567 | Line 1298 | int    vc;
1298   {
1299          fprintf(stderr, "%s: bad value for variable '%s'\n",
1300                          progname, vnam(vc));
1301 <        exit(1);
1301 >        quit(1);
1302   }
1303  
1304  
# Line 1575 | Line 1306 | syserr(s)                      /* report a system error and exit */
1306   char    *s;
1307   {
1308          perror(s);
1309 <        exit(1);
1309 >        quit(1);
1310 > }
1311 >
1312 >
1313 > void
1314 > quit(ec)                        /* exit program */
1315 > int     ec;
1316 > {
1317 >        exit(ec);
1318   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines