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.47 by greg, Fri Dec 8 19:55:50 1995 UTC vs.
Revision 2.61 by greg, Sat Feb 22 02:07:30 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1995 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Executive program for oconv, rpict and pfilt
6   */
7  
8   #include "standard.h"
9 + #include "view.h"
10   #include "paths.h"
11 + #include "vars.h"
12   #include <ctype.h>
14 #include <sys/types.h>
13  
14 <
15 < typedef struct {
16 <        char    *name;          /* variable name */
17 <        short   nick;           /* # characters required for nickname */
18 <        short   nass;           /* # assignments made */
19 <        char    *value;         /* assigned value(s) */
20 <        int     (*fixval)();    /* assignment checking function */
21 < } VARIABLE;
22 <
23 < int     onevalue(), catvalues(), boolvalue(),
24 <        qualvalue(), fltvalue(), intvalue();
25 <
26 <                                /* variables */
27 < #define OBJECT          0               /* object files */
28 < #define SCENE           1               /* scene files */
29 < #define MATERIAL        2               /* material files */
30 < #define ILLUM           3               /* mkillum input files */
31 < #define MKILLUM         4               /* mkillum options */
32 < #define RENDER          5               /* rendering options */
33 < #define OCONV           6               /* oconv options */
34 < #define PFILT           7               /* pfilt options */
35 < #define VIEW            8               /* view(s) for picture(s) */
36 < #define ZONE            9               /* simulation zone */
37 < #define QUALITY         10              /* desired rendering quality */
38 < #define OCTREE          11              /* octree file name */
41 < #define PICTURE         12              /* picture file root 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 RAWFILE         23              /* raw picture file root name */
14 >                                /* variables (alphabetical by name) */
15 > #define AMBFILE         0               /* ambient file name */
16 > #define DETAIL          1               /* level of scene detail */
17 > #define EXPOSURE        2               /* picture exposure setting */
18 > #define EYESEP          3               /* interocular distance */
19 > #define ILLUM           4               /* mkillum input files */
20 > #define INDIRECT        5               /* indirection in lighting */
21 > #define MATERIAL        6               /* material files */
22 > #define MKILLUM         7               /* mkillum options */
23 > #define OBJECT          8               /* object files */
24 > #define OCONV           9               /* oconv options */
25 > #define OCTREE          10              /* octree file name */
26 > #define OPTFILE         11              /* rendering options file */
27 > #define PENUMBRAS       12              /* shadow penumbras are desired */
28 > #define PFILT           13              /* pfilt options */
29 > #define PICTURE         14              /* picture file root name */
30 > #define QUALITY         15              /* desired rendering quality */
31 > #define RAWFILE         16              /* raw picture file root name */
32 > #define RENDER          17              /* rendering options */
33 > #define REPORT          18              /* report frequency and errfile */
34 > #define RESOLUTION      19              /* maximum picture resolution */
35 > #define SCENE           20              /* scene files */
36 > #define UP              21              /* view up (X, Y or Z) */
37 > #define VARIABILITY     22              /* level of light variability */
38 > #define VIEWS           23              /* view(s) for picture(s) */
39   #define ZFILE           24              /* distance file root name */
40 + #define ZONE            25              /* simulation zone */
41                                  /* total number of variables */
42 < #define NVARS           25
42 > int NVARS = 26;
43  
44 < VARIABLE        vv[NVARS] = {           /* variable-value pairs */
45 <        {"objects",     3,      0,      NULL,   catvalues},
46 <        {"scene",       3,      0,      NULL,   catvalues},
47 <        {"materials",   3,      0,      NULL,   catvalues},
44 > VARIABLE        vv[] = {                /* variable-value pairs */
45 >        {"AMBFILE",     3,      0,      NULL,   onevalue},
46 >        {"DETAIL",      3,      0,      NULL,   qualvalue},
47 >        {"EXPOSURE",    3,      0,      NULL,   fltvalue},
48 >        {"EYESEP",      3,      0,      NULL,   fltvalue},
49          {"illum",       3,      0,      NULL,   catvalues},
50 +        {"INDIRECT",    3,      0,      NULL,   intvalue},
51 +        {"materials",   3,      0,      NULL,   catvalues},
52          {"mkillum",     3,      0,      NULL,   catvalues},
53 <        {"render",      3,      0,      NULL,   catvalues},
53 >        {"objects",     3,      0,      NULL,   catvalues},
54          {"oconv",       3,      0,      NULL,   catvalues},
65        {"pfilt",       2,      0,      NULL,   catvalues},
66        {"view",        2,      0,      NULL,   NULL},
67        {"ZONE",        2,      0,      NULL,   onevalue},
68        {"QUALITY",     3,      0,      NULL,   qualvalue},
55          {"OCTREE",      3,      0,      NULL,   onevalue},
70        {"PICTURE",     3,      0,      NULL,   onevalue},
71        {"AMBFILE",     3,      0,      NULL,   onevalue},
56          {"OPTFILE",     3,      0,      NULL,   onevalue},
57 <        {"EXPOSURE",    3,      0,      NULL,   fltvalue},
57 >        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
58 >        {"pfilt",       2,      0,      NULL,   catvalues},
59 >        {"PICTURE",     3,      0,      NULL,   onevalue},
60 >        {"QUALITY",     3,      0,      NULL,   qualvalue},
61 >        {"RAWFILE",     3,      0,      NULL,   onevalue},
62 >        {"render",      3,      0,      NULL,   catvalues},
63 >        {"REPORT",      3,      0,      NULL,   onevalue},
64          {"RESOLUTION",  3,      0,      NULL,   onevalue},
65 +        {"scene",       3,      0,      NULL,   catvalues},
66          {"UP",          2,      0,      NULL,   onevalue},
76        {"INDIRECT",    3,      0,      NULL,   intvalue},
77        {"DETAIL",      3,      0,      NULL,   qualvalue},
78        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
67          {"VARIABILITY", 3,      0,      NULL,   qualvalue},
68 <        {"REPORT",      3,      0,      NULL,   onevalue},
81 <        {"RAWFILE",     3,      0,      NULL,   onevalue},
68 >        {"view",        2,      0,      NULL,   NULL},
69          {"ZFILE",       2,      0,      NULL,   onevalue},
70 +        {"ZONE",        2,      0,      NULL,   onevalue},
71   };
72  
85 VARIABLE        *matchvar();
86 char    *nvalue();
87
88 #define UPPER(c)        ((c)&~0x20)     /* ASCII trick */
89
90 #define vnam(vc)        (vv[vc].name)
91 #define vdef(vc)        (vv[vc].nass)
92 #define vval(vc)        (vv[vc].value)
93 #define vint(vc)        atoi(vval(vc))
94 #define vlet(vc)        UPPER(vval(vc)[0])
95 #define vscale          vlet
96 #define vbool(vc)       (vlet(vc)=='T')
97
98 #define HIGH            'H'
99 #define MEDIUM          'M'
100 #define LOW             'L'
101
73                                  /* overture calculation file */
74   #ifdef NIX
75   char    overfile[] = "overture.unf";
# Line 106 | Line 77 | char   overfile[] = "overture.unf";
77   char    overfile[] = "/dev/null";
78   #endif
79  
80 < extern time_t   fdate(), time();
80 > extern time_t   time();
81  
82   time_t  scenedate;              /* date of latest scene or object file */
83   time_t  octreedate;             /* date of octree */
# Line 180 | Line 151 | char   *argv[];
151                                  /* assign Radiance root file name */
152          rootname(radname, rifname);
153                                  /* load variable values */
154 <        load(rifname);
154 >        loadvars(rifname);
155                                  /* get any additional assignments */
156          for (i++; i < argc; i++)
157 <                setvariable(argv[i]);
157 >                if (setvariable(argv[i], matchvar) < 0) {
158 >                        fprintf(stderr, "%s: unknown variable: %s\n",
159 >                                        progname, argv[i]);
160 >                        quit(1);
161 >                }
162                                  /* check assignments */
163          checkvalues();
164                                  /* check files and dates */
# Line 192 | Line 167 | char   *argv[];
167          setdefaults();
168                                  /* print all values if requested */
169          if (explicate)
170 <                printvals();
170 >                printvars(stdout);
171                                  /* build octree (and run mkillum) */
172          oconv();
173                                  /* check date on ambient file */
# Line 204 | Line 179 | char   *argv[];
179                  rview(ropts, popts);
180          else
181                  rpict(ropts, popts);
182 <        exit(0);
182 >        quit(0);
183   userr:
184          fprintf(stderr,
185 < "Usage: %s [-s][-n][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
185 > "Usage: %s [-w][-s][-n][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
186                          progname);
187 <        exit(1);
187 >        quit(1);
188   }
189  
190  
# Line 228 | Line 203 | register char  *rn, *fn;
203   }
204  
205  
231 #define NOCHAR  127             /* constant for character to delete */
232
233
234 load(rfname)                    /* load Radiance simulation file */
235 char    *rfname;
236 {
237        FILE    *fp;
238        char    buf[512];
239        register char   *cp;
240
241        if (rfname == NULL)
242                fp = stdin;
243        else if ((fp = fopen(rfname, "r")) == NULL)
244                syserr(rfname);
245        while (fgetline(buf, sizeof(buf), fp) != NULL) {
246                for (cp = buf; *cp; cp++) {
247                        switch (*cp) {
248                        case '\\':
249                                *cp++ = NOCHAR;
250                                continue;
251                        case '#':
252                                *cp = '\0';
253                                break;
254                        default:
255                                continue;
256                        }
257                        break;
258                }
259                setvariable(buf);
260        }
261        fclose(fp);
262 }
263
264
265 setvariable(ass)                /* assign variable according to string */
266 register char   *ass;
267 {
268        char    varname[32];
269        int     n;
270        register char   *cp;
271        register VARIABLE       *vp;
272        register int    i;
273
274        while (isspace(*ass))           /* skip leading space */
275                ass++;
276        cp = varname;                   /* extract name */
277        while (cp < varname+sizeof(varname)-1
278                        && *ass && !isspace(*ass) && *ass != '=')
279                *cp++ = *ass++;
280        *cp = '\0';
281        if (!varname[0])
282                return;         /* no variable name! */
283                                        /* trim value */
284        while (isspace(*ass) || *ass == '=')
285                ass++;
286        for (n = strlen(ass); n > 0; n--)
287                if (!isspace(ass[n-1]))
288                        break;
289        if (!n && !nowarn) {
290                fprintf(stderr, "%s: warning - missing value for variable '%s'\n",
291                                progname, varname);
292                return;
293        }
294                                        /* match variable from list */
295        vp = matchvar(varname);
296        if (vp == NULL) {
297                fprintf(stderr, "%s: unknown variable '%s'\n",
298                                progname, varname);
299                exit(1);
300        }
301                                        /* assign new value */
302        if (i = vp->nass) {
303                cp = vp->value;
304                while (i--)
305                        while (*cp++)
306                                ;
307                i = cp - vp->value;
308                vp->value = realloc(vp->value, i+n+1);
309        } else
310                vp->value = malloc(n+1);
311        if (vp->value == NULL)
312                syserr(progname);
313        cp = vp->value+i;               /* copy value, squeezing spaces */
314        *cp = *ass;
315        for (i = 1; i <= n; i++) {
316                if (ass[i] == NOCHAR)
317                        continue;
318                if (isspace(*cp))
319                        while (isspace(ass[i]))
320                                i++;
321                *++cp = ass[i];
322        }
323        if (isspace(*cp))               /* remove trailing space */
324                *cp = '\0';
325        vp->nass++;
326 }
327
328
329 VARIABLE *
330 matchvar(nam)                   /* match a variable by its name */
331 char    *nam;
332 {
333        int     n = strlen(nam);
334        register int    i;
335
336        for (i = 0; i < NVARS; i++)
337                if (n >= vv[i].nick && !strncmp(nam, vv[i].name, n))
338                        return(vv+i);
339        return(NULL);
340 }
341
342
343 char *
344 nvalue(vp, n)                   /* return nth variable value */
345 VARIABLE        *vp;
346 register int    n;
347 {
348        register char   *cp;
349
350        if (vp == NULL | n < 0 | n >= vp->nass)
351                return(NULL);
352        cp = vp->value;
353        while (n--)
354                while (*cp++)
355                        ;
356        return(cp);
357 }
358
359
360 checkvalues()                   /* check assignments */
361 {
362        register int    i;
363
364        for (i = 0; i < NVARS; i++)
365                if (vv[i].fixval != NULL)
366                        (*vv[i].fixval)(vv+i);
367 }
368
369
370 onevalue(vp)                    /* only one assignment for this variable */
371 register VARIABLE       *vp;
372 {
373        if (vp->nass < 2)
374                return;
375        if (!nowarn)
376                fprintf(stderr,
377                "%s: warning - multiple assignment of variable '%s'\n",
378                        progname, vp->name);
379        do
380                vp->value += strlen(vp->value)+1;
381        while (--vp->nass > 1);
382 }
383
384
385 catvalues(vp)                   /* concatenate variable values */
386 register VARIABLE       *vp;
387 {
388        register char   *cp;
389
390        if (vp->nass < 2)
391                return;
392        for (cp = vp->value; vp->nass > 1; vp->nass--) {
393                while (*cp)
394                        cp++;
395                *cp++ = ' ';
396        }
397 }
398
399
400 int
401 badmatch(tv, cv)                /* case insensitive truncated comparison */
402 register char   *tv, *cv;
403 {
404        if (!*tv) return(1);            /* null string cannot match */
405        do
406                if (UPPER(*tv) != *cv++)
407                        return(1);
408        while (*++tv);
409        return(0);              /* OK */
410 }
411
412
413 boolvalue(vp)                   /* check boolean for legal values */
414 register VARIABLE       *vp;
415 {
416        if (!vp->nass) return;
417        onevalue(vp);
418        switch (UPPER(vp->value[0])) {
419        case 'T':
420                if (badmatch(vp->value, "TRUE")) break;
421                return;
422        case 'F':
423                if (badmatch(vp->value, "FALSE")) break;
424                return;
425        }
426        fprintf(stderr, "%s: illegal value for boolean variable '%s'\n",
427                        progname, vp->name);
428        exit(1);
429 }
430
431
432 qualvalue(vp)                   /* check qualitative var. for legal values */
433 register VARIABLE       *vp;
434 {
435        if (!vp->nass) return;
436        onevalue(vp);
437        switch (UPPER(vp->value[0])) {
438        case 'L':
439                if (badmatch(vp->value, "LOW")) break;
440                return;
441        case 'M':
442                if (badmatch(vp->value, "MEDIUM")) break;
443                return;
444        case 'H':
445                if (badmatch(vp->value, "HIGH")) break;
446                return;
447        }
448        fprintf(stderr, "%s: illegal value for qualitative variable '%s'\n",
449                        progname, vp->name);
450        exit(1);
451 }
452
453
454 intvalue(vp)                    /* check integer variable for legal values */
455 register VARIABLE       *vp;
456 {
457        if (!vp->nass) return;
458        onevalue(vp);
459        if (isint(vp->value)) return;
460        fprintf(stderr, "%s: illegal value for integer variable '%s'\n",
461                        progname, vp->name);
462        exit(1);
463 }
464
465
466 fltvalue(vp)                    /* check float variable for legal values */
467 register VARIABLE       *vp;
468 {
469        if (!vp->nass) return;
470        onevalue(vp);
471        if (isflt(vp->value)) return;
472        fprintf(stderr, "%s: illegal value for real variable '%s'\n",
473                        progname, vp->name);
474        exit(1);
475 }
476
477
206   time_t
207   checklast(fnames)                       /* check files and find most recent */
208   register char   *fnames;
209   {
210          char    thisfile[MAXPATH];
211          time_t  thisdate, lastdate = 0;
484        register char   *cp;
212  
213          if (fnames == NULL)
214                  return(0);
215 <        while (*fnames) {
216 <                while (isspace(*fnames)) fnames++;
217 <                cp = thisfile;
218 <                while (*fnames && !isspace(*fnames))
492 <                        *cp++ = *fnames++;
493 <                *cp = '\0';
215 >        while ((fnames = nextword(thisfile, MAXPATH, fnames)) != NULL) {
216 >                if (thisfile[0] == '!' ||
217 >                                (thisfile[0] == '\\' && thisfile[1] == '!'))
218 >                        continue;
219                  if (!(thisdate = fdate(thisfile)))
220                          syserr(thisfile);
221                  if (thisdate > lastdate)
# Line 535 | Line 260 | checkfiles()                   /* check for existence and modified tim
260                          syserr(progname);
261                  sprintf(vval(OCTREE), "%s.oct", radname);
262                  vdef(OCTREE)++;
263 +        } else if (vval(OCTREE)[0] == '!') {
264 +                fprintf(stderr, "%s: illegal '%s' specification\n",
265 +                                progname, vnam(OCTREE));
266 +                quit(1);
267          }
268          octreedate = fdate(vval(OCTREE));
269          if (vdef(ILLUM)) {              /* illum requires secondary octrees */
# Line 551 | Line 280 | checkfiles()                   /* check for existence and modified tim
280          if (!octreedate & !scenedate & !illumdate) {
281                  fprintf(stderr, "%s: need '%s' or '%s' or '%s'\n", progname,
282                                  vnam(OCTREE), vnam(SCENE), vnam(ILLUM));
283 <                exit(1);
283 >                quit(1);
284          }
285          matdate = checklast(vval(MATERIAL));
286   }      
# Line 581 | Line 310 | double org[3], *sizp;
310                                  fprintf(stderr,
311                          "%s: error reading bounding box from getbbox\n",
312                                                  progname);
313 <                                exit(1);
313 >                                quit(1);
314                          }
315                          for (i = 0; i < 3; i++)
316                                  if (max[i] - min[i] > osiz)
# Line 599 | Line 328 | double org[3], *sizp;
328                                  fprintf(stderr,
329                          "%s: error reading bounding cube from getinfo\n",
330                                                  progname);
331 <                                exit(1);
331 >                                quit(1);
332                          }
333                          pclose(fp);
334                  }
# Line 609 | Line 338 | double org[3], *sizp;
338  
339   setdefaults()                   /* set default values for unassigned var's */
340   {
341 <        double  org[3], size;
341 >        double  org[3], lim[3], size;
342          char    buf[128];
343  
344          if (!vdef(ZONE)) {
# Line 619 | Line 348 | setdefaults()                  /* set default values for unassigned v
348                  vval(ZONE) = savqstr(buf);
349                  vdef(ZONE)++;
350          }
351 +        if (!vdef(EYESEP)) {
352 +                if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf",
353 +                                &org[0], &lim[0], &org[1], &lim[1],
354 +                                &org[2], &lim[2]) != 6)
355 +                        badvalue(ZONE);
356 +                sprintf(buf, "%f",
357 +                        0.01*(lim[0]-org[0]+lim[1]-org[1]+lim[2]-org[2]));
358 +                vval(EYESEP) = savqstr(buf);
359 +                vdef(EYESEP)++;
360 +        }
361          if (!vdef(INDIRECT)) {
362                  vval(INDIRECT) = "0";
363                  vdef(INDIRECT)++;
# Line 635 | Line 374 | setdefaults()                  /* set default values for unassigned v
374                  vval(PICTURE) = radname;
375                  vdef(PICTURE)++;
376          }
377 <        if (!vdef(VIEW)) {
378 <                vval(VIEW) = "X";
379 <                vdef(VIEW)++;
377 >        if (!vdef(VIEWS)) {
378 >                vval(VIEWS) = "X";
379 >                vdef(VIEWS)++;
380          }
381          if (!vdef(DETAIL)) {
382                  vval(DETAIL) = "M";
# Line 654 | Line 393 | setdefaults()                  /* set default values for unassigned v
393   }
394  
395  
657 printvals()                     /* print variable values */
658 {
659        int     i, j, clipline;
660        register char   *cp;
661        register int    k;
662
663        for (i = 0; i < NVARS; i++)             /* print each variable */
664            for (j = 0; j < vdef(i); j++) {     /* print each assignment */
665                fputs(vnam(i), stdout);
666                fputs("= ", stdout);
667                k = clipline = ( vv[i].fixval == catvalues ? 64 : 320 )
668                                - strlen(vnam(i)) ;
669                cp = nvalue(vv+i, j);
670                while (*cp) {
671                    putchar(*cp++);
672                    if (--k <= 0) {             /* line too long */
673                        while (*cp && !isspace(*cp))
674                            putchar(*cp++);     /* finish this word */
675                        if (*cp) {              /* start new line */
676                            putchar('\n');
677                            fputs(vnam(i), stdout);
678                            putchar('=');
679                            k = clipline;
680                        }
681                    }
682                }
683                putchar('\n');
684            }
685        fflush(stdout);
686 }
687
688
396   oconv()                         /* run oconv and mkillum if necessary */
397   {
398          static char     illumtmp[] = "ilXXXXXX";
# Line 709 | Line 416 | oconv()                                /* run oconv and mkillum if necessary */
416                                  "%s: error generating octree\n\t%s removed\n",
417                                                  progname, vval(OCTREE));
418                                  unlink(vval(OCTREE));
419 <                                exit(1);
419 >                                quit(1);
420                          }
421                  }
422                  octreedate = time((time_t *)NULL);
# Line 740 | Line 447 | oconv()                                /* run oconv and mkillum if necessary */
447                                  "%s: error generating octree\n\t%s removed\n",
448                                                  progname, oct0name);
449                                  unlink(oct0name);
450 <                                exit(1);
450 >                                quit(1);
451                          }
452                  }
453                  oct0date = time((time_t *)NULL);
# Line 760 | Line 467 | oconv()                                /* run oconv and mkillum if necessary */
467                          fprintf(stderr, "%s: error running mkillum\n",
468                                          progname);
469                          unlink(illumtmp);
470 <                        exit(1);
470 >                        quit(1);
471                  }
472                                                  /* make octree1 (frozen) */
473                  if (octreedate)
# Line 778 | Line 485 | oconv()                                /* run oconv and mkillum if necessary */
485                                          progname, oct1name);
486                          unlink(oct1name);
487                          unlink(illumtmp);
488 <                        exit(1);
488 >                        quit(1);
489                  }
490                  rmfile(illumtmp);
491          }
# Line 842 | Line 549 | ambval()                               /* compute ambient value */
549   {
550          if (vdef(EXPOSURE)) {
551                  if (vval(EXPOSURE)[0] == '+' || vval(EXPOSURE)[0] == '-')
552 <                        return(.5/pow(2.,atof(vval(EXPOSURE))));
553 <                return(.5/atof(vval(EXPOSURE)));
552 >                        return(.5/pow(2.,vflt(EXPOSURE)));
553 >                return(.5/vflt(EXPOSURE));
554          }
555          if (vlet(ZONE) == 'E')
556                  return(10.);
# Line 1103 | Line 810 | char   *ro;
810                  return;
811          if (vdef(OPTFILE)) {
812                  for (cp = ro; cp[1]; cp++)
813 <                        if (isspace(cp[1]) && cp[2] == '-' && isalpha(cp[3]))
813 >                        if (isspace(cp[1]) && (cp[2] == '@' ||
814 >                                        (cp[2] == '-' && isalpha(cp[3]))))
815                                  *cp = '\n';
816                          else
817                                  *cp = cp[1];
# Line 1132 | Line 840 | register char  *po;
840          }
841          switch (vscale(QUALITY)) {
842          case MEDIUM:
843 <                po = addarg(po, "-r 1");
843 >                po = addarg(po, "-r .6");
844                  break;
845          case HIGH:
846                  po = addarg(po, "-m .25");
# Line 1301 | Line 1009 | char   *vn;            /* returned view name */
1009                  }
1010                                                  /* view number? */
1011                  if (isint(viewselect))
1012 <                        return(specview(nvalue(vv+VIEW, atoi(viewselect)-1)));
1012 >                        return(specview(nvalue(VIEWS, atoi(viewselect)-1)));
1013                                                  /* check list */
1014 <                while ((mv = nvalue(vv+VIEW, n++)) != NULL)
1014 >                while ((mv = nvalue(VIEWS, n++)) != NULL)
1015                          if (matchword(viewselect, mv))
1016                                  return(specview(mv));
1017                  return(specview(viewselect));   /* standard view? */
1018          }
1019 <        mv = nvalue(vv+VIEW, n);                /* use view n */
1019 >        mv = nvalue(VIEWS, n);          /* use view n */
1020          if (vn != NULL & mv != NULL) {
1021                  register char   *mv2 = mv;
1022                  if (*mv2 != '-')
# Line 1323 | Line 1031 | char   *vn;            /* returned view name */
1031   printview(vopts)                        /* print out selected view */
1032   register char   *vopts;
1033   {
1034 <        extern char     *atos(), *getenv();
1035 <        char    buf[256];
1036 <        FILE    *fp;
1034 >        extern char     *strstr(), *atos(), *getenv();
1035 >        VIEW    vwr;
1036 >        char    buf[128];
1037          register char   *cp;
1038 <
1038 > again:
1039          if (vopts == NULL)
1040                  return(-1);
1333        fputs("VIEW=", stdout);
1334        do {
1335                if (matchword(vopts, "-vf")) {          /* expand view file */
1336                        vopts = sskip(vopts);
1337                        if (!*atos(buf, sizeof(buf), vopts))
1338                                return(-1);
1339                        if ((fp = fopen(buf, "r")) == NULL)
1340                                return(-1);
1341                        for (buf[sizeof(buf)-2] = '\n';
1342                                        fgets(buf, sizeof(buf), fp) != NULL &&
1343                                                buf[0] != '\n';
1344                                        buf[sizeof(buf)-2] = '\n') {
1345                                if (buf[sizeof(buf)-2] != '\n') {
1346                                        ungetc(buf[sizeof(buf)-2], fp);
1347                                        buf[sizeof(buf)-2] = '\0';
1348                                }
1349                                if (matchword(buf, "VIEW=") ||
1350                                                matchword(buf, "rview")) {
1351                                        for (cp = sskip(buf); *cp && *cp != '\n'; cp++)
1352                                                putchar(*cp);
1353                                }
1354                        }
1355                        fclose(fp);
1356                        vopts = sskip(vopts);
1357                } else {
1358                        while (isspace(*vopts))
1359                                vopts++;
1360                        putchar(' ');
1041   #ifdef MSDOS
1042 <                        if (*vopts == '$') {            /* expand env. var. */
1043 <                                if (!*atos(buf, sizeof(buf), vopts+1))
1044 <                                        return(-1);
1045 <                                if ((cp = getenv(buf)) == NULL)
1366 <                                        return(-1);
1367 <                                fputs(cp, stdout);
1368 <                                vopts = sskip(vopts);
1369 <                        } else
1042 >        if (vopts[0] == '$') {
1043 >                vopts = getenv(vopts+1);
1044 >                goto again;
1045 >        }
1046   #endif
1047 <                                while (*vopts && !isspace(*vopts))
1048 <                                        putchar(*vopts++);
1049 <                }
1050 <        } while (*vopts++);
1051 <        putchar('\n');
1047 >        copystruct(&vwr, &stdview);
1048 >        sscanview(&vwr, cp=vopts);              /* set initial options */
1049 >        while ((cp = strstr(cp, "-vf ")) != NULL &&
1050 >                        *atos(buf, sizeof(buf), cp += 4)) {
1051 >                viewfile(buf, &vwr, NULL);      /* load -vf file */
1052 >                sscanview(&vwr, cp);            /* reset tail */
1053 >        }
1054 >        fputs(VIEWSTR, stdout);
1055 >        fprintview(&vwr, stdout);               /* print full spec. */
1056 >        fputc('\n', stdout);
1057          return(0);
1058   }
1059  
# Line 1395 | Line 1076 | char   *opts, *po;
1076          strcat(combuf, oct1name);
1077          if (runcom(combuf)) {           /* run it */
1078                  fprintf(stderr, "%s: error running rview\n", progname);
1079 <                exit(1);
1079 >                quit(1);
1080          }
1081   }
1082  
# Line 1492 | Line 1173 | char   *opts, *po;
1173                                          fprintf(stderr,
1174                                          "%s: error in overture for view %s\n",
1175                                                  progname, vs);
1176 <                                        exit(1);
1176 >                                        quit(1);
1177                                  }
1178   #ifdef NIX
1179                                  rmfile(overfile);
# Line 1505 | Line 1186 | char   *opts, *po;
1186                  if (runcom(combuf)) {           /* run rpict */
1187                          fprintf(stderr, "%s: error rendering view %s\n",
1188                                          progname, vs);
1189 <                        exit(1);
1189 >                        quit(1);
1190                  }
1191                  if (!vdef(RAWFILE) || strcmp(vval(RAWFILE),vval(PICTURE))) {
1192                                                  /* build pfilt command */
# Line 1520 | Line 1201 | char   *opts, *po;
1201                                  "%s: error filtering view %s\n\t%s removed\n",
1202                                                  progname, vs, picfile);
1203                                  unlink(picfile);
1204 <                                exit(1);
1204 >                                quit(1);
1205                          }
1206                  }
1207                                                  /* remove/rename raw file */
# Line 1603 | Line 1284 | char   *vname, *value;
1284          sprintf(evp, "%s=%s", vname, value);
1285          if (putenv(evp) != 0) {
1286                  fprintf(stderr, "%s: out of environment space\n", progname);
1287 <                exit(1);
1287 >                quit(1);
1288          }
1289          if (!silent)
1290                  printf("set %s\n", evp);
# Line 1616 | Line 1297 | int    vc;
1297   {
1298          fprintf(stderr, "%s: bad value for variable '%s'\n",
1299                          progname, vnam(vc));
1300 <        exit(1);
1300 >        quit(1);
1301   }
1302  
1303  
# Line 1624 | Line 1305 | syserr(s)                      /* report a system error and exit */
1305   char    *s;
1306   {
1307          perror(s);
1308 <        exit(1);
1308 >        quit(1);
1309 > }
1310 >
1311 >
1312 > void
1313 > quit(ec)                        /* exit program */
1314 > int     ec;
1315 > {
1316 >        exit(ec);
1317   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines