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.27 by greg, Sat Sep 25 13:21:35 1993 UTC vs.
Revision 2.57 by gwlarson, Wed Jun 10 17:51:06 1998 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1993 Regents of the University of California */
1 > /* Copyright (c) 1998 Silicon Graphics, Inc. */
2  
3   #ifndef lint
4 < static char SCCSid[] = "$SunId$ LBL";
4 > static char SCCSid[] = "$SunId$ SGI";
5   #endif
6  
7   /*
# Line 9 | Line 9 | static char SCCSid[] = "$SunId$ LBL";
9   */
10  
11   #include "standard.h"
12 + #include "view.h"
13   #include "paths.h"
14 + #include "vars.h"
15   #include <ctype.h>
16 + #include <sys/types.h>
17  
18 <
19 < typedef struct {
20 <        char    *name;          /* variable name */
21 <        short   nick;           /* # characters required for nickname */
22 <        short   nass;           /* # assignments made */
23 <        char    *value;         /* assigned value(s) */
24 <        int     (*fixval)();    /* assignment checking function */
25 < } VARIABLE;
26 <
27 < int     onevalue(), catvalues();
28 <
29 <                                /* variables */
30 < #define OBJECT          0               /* object files */
31 < #define SCENE           1               /* scene files */
32 < #define MATERIAL        2               /* material files */
33 < #define ILLUM           3               /* mkillum input files */
34 < #define MKILLUM         4               /* mkillum options */
35 < #define RENDER          5               /* rendering options */
36 < #define OCONV           6               /* oconv options */
37 < #define PFILT           7               /* pfilt options */
38 < #define VIEW            8               /* view(s) for picture(s) */
39 < #define ZONE            9               /* simulation zone */
40 < #define QUALITY         10              /* desired rendering quality */
41 < #define OCTREE          11              /* octree file name */
42 < #define PICTURE         12              /* picture file name */
43 < #define AMBFILE         13              /* ambient file name */
44 < #define OPTFILE         14              /* rendering options file */
42 < #define EXPOSURE        15              /* picture exposure setting */
43 < #define RESOLUTION      16              /* maximum picture resolution */
44 < #define UP              17              /* view up (X, Y or Z) */
45 < #define INDIRECT        18              /* indirection in lighting */
46 < #define DETAIL          19              /* level of scene detail */
47 < #define PENUMBRAS       20              /* shadow penumbras are desired */
48 < #define VARIABILITY     21              /* level of light variability */
49 < #define REPORT          22              /* report frequency and errfile */
18 >                                /* variables (alphabetical by name) */
19 > #define AMBFILE         0               /* ambient file name */
20 > #define DETAIL          1               /* level of scene detail */
21 > #define EXPOSURE        2               /* picture exposure setting */
22 > #define EYESEP          3               /* interocular distance */
23 > #define ILLUM           4               /* mkillum input files */
24 > #define INDIRECT        5               /* indirection in lighting */
25 > #define MATERIAL        6               /* material files */
26 > #define MKILLUM         7               /* mkillum options */
27 > #define OBJECT          8               /* object files */
28 > #define OCONV           9               /* oconv options */
29 > #define OCTREE          10              /* octree file name */
30 > #define OPTFILE         11              /* rendering options file */
31 > #define PENUMBRAS       12              /* shadow penumbras are desired */
32 > #define PFILT           13              /* pfilt options */
33 > #define PICTURE         14              /* picture file root name */
34 > #define QUALITY         15              /* desired rendering quality */
35 > #define RAWFILE         16              /* raw picture file root name */
36 > #define RENDER          17              /* rendering options */
37 > #define REPORT          18              /* report frequency and errfile */
38 > #define RESOLUTION      19              /* maximum picture resolution */
39 > #define SCENE           20              /* scene files */
40 > #define UP              21              /* view up (X, Y or Z) */
41 > #define VARIABILITY     22              /* level of light variability */
42 > #define VIEWS           23              /* view(s) for picture(s) */
43 > #define ZFILE           24              /* distance file root name */
44 > #define ZONE            25              /* simulation zone */
45                                  /* total number of variables */
46 < #define NVARS           23
46 > int NVARS = 26;
47  
48 < VARIABLE        vv[NVARS] = {           /* variable-value pairs */
49 <        {"objects",     3,      0,      NULL,   catvalues},
50 <        {"scene",       3,      0,      NULL,   catvalues},
51 <        {"materials",   3,      0,      NULL,   catvalues},
48 > VARIABLE        vv[] = {                /* variable-value pairs */
49 >        {"AMBFILE",     3,      0,      NULL,   onevalue},
50 >        {"DETAIL",      3,      0,      NULL,   qualvalue},
51 >        {"EXPOSURE",    3,      0,      NULL,   fltvalue},
52 >        {"EYESEP",      3,      0,      NULL,   fltvalue},
53          {"illum",       3,      0,      NULL,   catvalues},
54 +        {"INDIRECT",    3,      0,      NULL,   intvalue},
55 +        {"materials",   3,      0,      NULL,   catvalues},
56          {"mkillum",     3,      0,      NULL,   catvalues},
57 <        {"render",      3,      0,      NULL,   catvalues},
57 >        {"objects",     3,      0,      NULL,   catvalues},
58          {"oconv",       3,      0,      NULL,   catvalues},
61        {"pfilt",       2,      0,      NULL,   catvalues},
62        {"view",        2,      0,      NULL,   NULL},
63        {"ZONE",        2,      0,      NULL,   onevalue},
64        {"QUALITY",     3,      0,      NULL,   onevalue},
59          {"OCTREE",      3,      0,      NULL,   onevalue},
66        {"PICTURE",     3,      0,      NULL,   onevalue},
67        {"AMBFILE",     3,      0,      NULL,   onevalue},
60          {"OPTFILE",     3,      0,      NULL,   onevalue},
61 <        {"EXPOSURE",    3,      0,      NULL,   onevalue},
61 >        {"PENUMBRAS",   3,      0,      NULL,   boolvalue},
62 >        {"pfilt",       2,      0,      NULL,   catvalues},
63 >        {"PICTURE",     3,      0,      NULL,   onevalue},
64 >        {"QUALITY",     3,      0,      NULL,   qualvalue},
65 >        {"RAWFILE",     3,      0,      NULL,   onevalue},
66 >        {"render",      3,      0,      NULL,   catvalues},
67 >        {"REPORT",      3,      0,      NULL,   onevalue},
68          {"RESOLUTION",  3,      0,      NULL,   onevalue},
69 +        {"scene",       3,      0,      NULL,   catvalues},
70          {"UP",          2,      0,      NULL,   onevalue},
71 <        {"INDIRECT",    3,      0,      NULL,   onevalue},
72 <        {"DETAIL",      3,      0,      NULL,   onevalue},
73 <        {"PENUMBRAS",   3,      0,      NULL,   onevalue},
74 <        {"VARIABILITY", 3,      0,      NULL,   onevalue},
76 <        {"REPORT",      3,      0,      NULL,   onevalue},
71 >        {"VARIABILITY", 3,      0,      NULL,   qualvalue},
72 >        {"view",        2,      0,      NULL,   NULL},
73 >        {"ZFILE",       2,      0,      NULL,   onevalue},
74 >        {"ZONE",        2,      0,      NULL,   onevalue},
75   };
76  
79 VARIABLE        *matchvar();
80 char    *nvalue();
81 int     vscale();
82
83 #define UPPER(c)        ((c)&~0x20)     /* ASCII trick */
84
85 #define vnam(vc)        (vv[vc].name)
86 #define vdef(vc)        (vv[vc].nass)
87 #define vval(vc)        (vv[vc].value)
88 #define vint(vc)        atoi(vval(vc))
89 #define vlet(vc)        UPPER(vval(vc)[0])
90 #define vbool(vc)       (vlet(vc)=='T')
91
92 #define HIGH            2
93 #define MEDIUM          1
94 #define LOW             0
95
96 int     lowqopts(), medqopts(), hiqopts();
97 int     (*setqopts[3])() = {lowqopts, medqopts, hiqopts};
98
99 #define renderopts      (*setqopts[vscale(QUALITY)])
100
77                                  /* overture calculation file */
78   #ifdef NIX
79 < char    overfile[] = "overture.raw";
79 > char    overfile[] = "overture.unf";
80   #else
81   char    overfile[] = "/dev/null";
82   #endif
83  
84 < extern unsigned long    fdate(), time();
84 > extern time_t   fdate(), time();
85  
86 < unsigned long   scenedate;      /* date of latest scene or object file */
87 < unsigned long   octreedate;     /* date of octree */
88 < unsigned long   matdate;        /* date of latest material file */
89 < unsigned long   illumdate;      /* date of last illum file */
86 > time_t  scenedate;              /* date of latest scene or object file */
87 > time_t  octreedate;             /* date of octree */
88 > time_t  matdate;                /* date of latest material file */
89 > time_t  illumdate;              /* date of last illum file */
90  
91   char    *oct0name;              /* name of pre-mkillum octree */
92 < unsigned long   oct0date;       /* date of pre-mkillum octree */
92 > time_t  oct0date;               /* date of pre-mkillum octree */
93   char    *oct1name;              /* name of post-mkillum octree */
94 < unsigned long   oct1date;       /* date of post-mkillum octree (>= matdate) */
94 > time_t  oct1date;               /* date of post-mkillum octree (>= matdate) */
95  
96 + int     nowarn = 0;             /* no warnings */
97   int     explicate = 0;          /* explicate variables */
98   int     silent = 0;             /* do work silently */
99 + int     touchonly = 0;          /* touch files only */
100   int     noaction = 0;           /* don't do anything */
101   int     sayview = 0;            /* print view out */
102   char    *rvdevice = NULL;       /* rview output device */
# Line 137 | Line 115 | int    argc;
115   char    *argv[];
116   {
117          char    ropts[512];
118 +        char    popts[64];
119          int     i;
120  
121          progname = argv[0];
# Line 149 | Line 128 | char   *argv[];
128                  case 'n':
129                          noaction++;
130                          break;
131 +                case 't':
132 +                        touchonly++;
133 +                        break;
134                  case 'e':
135                          explicate++;
136                          break;
# Line 161 | Line 143 | char   *argv[];
143                  case 'v':
144                          viewselect = argv[++i];
145                          break;
146 +                case 'w':
147 +                        nowarn++;
148 +                        break;
149                  default:
150                          goto userr;
151                  }
# Line 170 | Line 155 | char   *argv[];
155                                  /* assign Radiance root file name */
156          rootname(radname, rifname);
157                                  /* load variable values */
158 <        load(rifname);
158 >        loadvars(rifname);
159                                  /* get any additional assignments */
160          for (i++; i < argc; i++)
161 <                setvariable(argv[i]);
161 >                if (setvariable(argv[i], matchvar) < 0) {
162 >                        fprintf(stderr, "%s: unknown variable: %s\n",
163 >                                        progname, argv[i]);
164 >                        quit(1);
165 >                }
166                                  /* check assignments */
167          checkvalues();
168                                  /* check files and dates */
# Line 182 | Line 171 | char   *argv[];
171          setdefaults();
172                                  /* print all values if requested */
173          if (explicate)
174 <                printvals();
174 >                printvars(stdout);
175                                  /* build octree (and run mkillum) */
176          oconv();
177                                  /* check date on ambient file */
178          checkambfile();
179                                  /* run simulation */
180 <        renderopts(ropts);
180 >        renderopts(ropts, popts);
181          xferopts(ropts);
182          if (rvdevice != NULL)
183 <                rview(ropts);
183 >                rview(ropts, popts);
184          else
185 <                rpict(ropts);
186 <        exit(0);
185 >                rpict(ropts, popts);
186 >        quit(0);
187   userr:
188          fprintf(stderr,
189 <        "Usage: %s [-s][-n][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
189 > "Usage: %s [-w][-s][-n][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
190                          progname);
191 <        exit(1);
191 >        quit(1);
192   }
193  
194  
# Line 218 | Line 207 | register char  *rn, *fn;
207   }
208  
209  
210 < #define NOCHAR  127             /* constant for character to delete */
222 <
223 <
224 < load(rfname)                    /* load Radiance simulation file */
225 < char    *rfname;
226 < {
227 <        FILE    *fp;
228 <        char    buf[512];
229 <        register char   *cp;
230 <
231 <        if (rfname == NULL)
232 <                fp = stdin;
233 <        else if ((fp = fopen(rfname, "r")) == NULL)
234 <                syserr(rfname);
235 <        while (fgetline(buf, sizeof(buf), fp) != NULL) {
236 <                for (cp = buf; *cp; cp++) {
237 <                        switch (*cp) {
238 <                        case '\\':
239 <                                *cp++ = NOCHAR;
240 <                                continue;
241 <                        case '#':
242 <                                *cp = '\0';
243 <                                break;
244 <                        default:
245 <                                continue;
246 <                        }
247 <                        break;
248 <                }
249 <                setvariable(buf);
250 <        }
251 <        fclose(fp);
252 < }
253 <
254 <
255 < setvariable(ass)                /* assign variable according to string */
256 < register char   *ass;
257 < {
258 <        char    varname[32];
259 <        char    varval[512];
260 <        int     n;
261 <        register char   *cp;
262 <        register VARIABLE       *vp;
263 <        register int    i;
264 <
265 <        while (isspace(*ass))           /* skip leading space */
266 <                ass++;
267 <        cp = varname;                   /* extract name */
268 <        while (cp < varname+sizeof(varname)-1
269 <                        && *ass && !isspace(*ass) && *ass != '=')
270 <                *cp++ = *ass++;
271 <        *cp = '\0';
272 <        if (!varname[0])
273 <                return;         /* no variable name! */
274 <                                        /* trim value */
275 <        while (isspace(*ass) || *ass == '=')
276 <                ass++;
277 <        for (n = strlen(ass); n > 0; n--)
278 <                if (!isspace(ass[n-1]))
279 <                        break;
280 <        if (!n) {
281 <                fprintf(stderr, "%s: warning - missing value for variable '%s'\n",
282 <                                progname, varname);
283 <                return;
284 <        }
285 <                                        /* match variable from list */
286 <        vp = matchvar(varname);
287 <        if (vp == NULL) {
288 <                fprintf(stderr, "%s: unknown variable '%s'\n",
289 <                                progname, varname);
290 <                exit(1);
291 <        }
292 <                                        /* assign new value */
293 <        if (i = vp->nass) {
294 <                cp = vp->value;
295 <                while (i--)
296 <                        while (*cp++)
297 <                                ;
298 <                i = cp - vp->value;
299 <                vp->value = realloc(vp->value, i+n+1);
300 <        } else
301 <                vp->value = malloc(n+1);
302 <        if (vp->value == NULL)
303 <                syserr(progname);
304 <        cp = vp->value+i;               /* copy value, squeezing spaces */
305 <        *cp = *ass;
306 <        for (i = 1; i <= n; i++) {
307 <                if (ass[i] == NOCHAR)
308 <                        continue;
309 <                if (isspace(*cp))
310 <                        while (isspace(ass[i]))
311 <                                i++;
312 <                *++cp = ass[i];
313 <        }
314 <        if (isspace(*cp))               /* remove trailing space */
315 <                *cp = '\0';
316 <        vp->nass++;
317 < }
318 <
319 <
320 < VARIABLE *
321 < matchvar(nam)                   /* match a variable by its name */
322 < char    *nam;
323 < {
324 <        int     n = strlen(nam);
325 <        register int    i;
326 <
327 <        for (i = 0; i < NVARS; i++)
328 <                if (n >= vv[i].nick && !strncmp(nam, vv[i].name, n))
329 <                        return(vv+i);
330 <        return(NULL);
331 < }
332 <
333 <
334 < char *
335 < nvalue(vp, n)                   /* return nth variable value */
336 < VARIABLE        *vp;
337 < register int    n;
338 < {
339 <        register char   *cp;
340 <
341 <        if (vp == NULL | n < 0 | n >= vp->nass)
342 <                return(NULL);
343 <        cp = vp->value;
344 <        while (n--)
345 <                while (*cp++)
346 <                        ;
347 <        return(cp);
348 < }
349 <
350 <
351 < int
352 < vscale(vc)                      /* return scale for variable vc */
353 < int     vc;
354 < {
355 <        switch(vlet(vc)) {
356 <        case 'H':
357 <                return(HIGH);
358 <        case 'M':
359 <                return(MEDIUM);
360 <        case 'L':
361 <                return(LOW);
362 <        }
363 <        badvalue(vc);
364 < }
365 <
366 <
367 < checkvalues()                   /* check assignments */
368 < {
369 <        register int    i;
370 <
371 <        for (i = 0; i < NVARS; i++)
372 <                if (vv[i].fixval != NULL)
373 <                        (*vv[i].fixval)(vv+i);
374 < }
375 <
376 <
377 < onevalue(vp)                    /* only one assignment for this variable */
378 < register VARIABLE       *vp;
379 < {
380 <        if (vp->nass < 2)
381 <                return;
382 <        fprintf(stderr, "%s: warning - multiple assignment of variable '%s'\n",
383 <                        progname, vp->name);
384 <        do
385 <                vp->value += strlen(vp->value)+1;
386 <        while (--vp->nass > 1);
387 < }
388 <
389 <
390 < catvalues(vp)                   /* concatenate variable values */
391 < register VARIABLE       *vp;
392 < {
393 <        register char   *cp;
394 <
395 <        if (vp->nass < 2)
396 <                return;
397 <        for (cp = vp->value; vp->nass > 1; vp->nass--) {
398 <                while (*cp)
399 <                        cp++;
400 <                *cp++ = ' ';
401 <        }
402 < }
403 <
404 <
405 < unsigned long
210 > time_t
211   checklast(fnames)                       /* check files and find most recent */
212   register char   *fnames;
213   {
214          char    thisfile[MAXPATH];
215 <        unsigned long   thisdate, lastdate = 0;
215 >        time_t  thisdate, lastdate = 0;
216          register char   *cp;
217  
218          if (fnames == NULL)
# Line 455 | Line 260 | int    pred;
260  
261   checkfiles()                    /* check for existence and modified times */
262   {
263 <        unsigned long   objdate;
263 >        time_t  objdate;
264  
265          if (!vdef(OCTREE)) {
266                  if ((vval(OCTREE) = bmalloc(strlen(radname)+5)) == NULL)
# Line 478 | 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 490 | 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 508 | 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 526 | 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 562 | Line 367 | setdefaults()                  /* set default values for unassigned v
367                  vval(PICTURE) = radname;
368                  vdef(PICTURE)++;
369          }
370 <        if (!vdef(VIEW)) {
371 <                vval(VIEW) = "X";
372 <                vdef(VIEW)++;
370 >        if (!vdef(VIEWS)) {
371 >                vval(VIEWS) = "X";
372 >                vdef(VIEWS)++;
373          }
374          if (!vdef(DETAIL)) {
375                  vval(DETAIL) = "M";
# Line 581 | Line 386 | setdefaults()                  /* set default values for unassigned v
386   }
387  
388  
584 printvals()                     /* print variable values */
585 {
586        register int    i, j;
587
588        for (i = 0; i < NVARS; i++)
589                for (j = 0; j < vdef(i); j++)
590                        printf("%s= %s\n", vnam(i), nvalue(vv+i, j));
591        fflush(stdout);
592 }
593
594
389   oconv()                         /* run oconv and mkillum if necessary */
390   {
391          static char     illumtmp[] = "ilXXXXXX";
392 <        char    combuf[512], ocopts[64], mkopts[64];
392 >        char    combuf[1024], ocopts[64], mkopts[64];
393  
394          oconvopts(ocopts);              /* get options */
395          if (octreedate < scenedate) {   /* check date on original octree */
396 <                                                /* build command */
397 <                if (vdef(MATERIAL))
398 <                        sprintf(combuf, "oconv%s %s %s > %s", ocopts,
399 <                                vval(MATERIAL), vval(SCENE), vval(OCTREE));
400 <                else
401 <                        sprintf(combuf, "oconv%s %s > %s", ocopts,
402 <                                        vval(SCENE), vval(OCTREE));
403 <                
404 <                if (runcom(combuf)) {           /* run it */
405 <                        fprintf(stderr,
396 >                if (touchonly && octreedate)
397 >                        touch(vval(OCTREE));
398 >                else {                          /* build command */
399 >                        if (vdef(MATERIAL))
400 >                                sprintf(combuf, "oconv%s %s %s > %s", ocopts,
401 >                                                vval(MATERIAL), vval(SCENE),
402 >                                                vval(OCTREE));
403 >                        else
404 >                                sprintf(combuf, "oconv%s %s > %s", ocopts,
405 >                                                vval(SCENE), vval(OCTREE));
406 >                        
407 >                        if (runcom(combuf)) {           /* run it */
408 >                                fprintf(stderr,
409                                  "%s: error generating octree\n\t%s removed\n",
410 <                                        progname, vval(OCTREE));
411 <                        unlink(vval(OCTREE));
412 <                        exit(1);
410 >                                                progname, vval(OCTREE));
411 >                                unlink(vval(OCTREE));
412 >                                quit(1);
413 >                        }
414                  }
415 <                octreedate = time(0);
415 >                octreedate = time((time_t *)NULL);
416 >                if (octreedate < scenedate)     /* in case clock is off */
417 >                        octreedate = scenedate;
418          }
419          if (oct1name == vval(OCTREE))           /* no mkillum? */
420                  oct1date = octreedate > matdate ? octreedate : matdate;
# Line 623 | Line 423 | oconv()                                /* run oconv and mkillum if necessary */
423                  return;
424                                                  /* make octree0 */
425          if (oct0date < scenedate | oct0date < illumdate) {
426 <                                                /* build command */
426 >                if (touchonly && oct0date)
427 >                        touch(oct0name);
428 >                else {                          /* build command */
429 >                        if (octreedate)
430 >                                sprintf(combuf, "oconv%s -i %s %s > %s", ocopts,
431 >                                        vval(OCTREE), vval(ILLUM), oct0name);
432 >                        else if (vdef(MATERIAL))
433 >                                sprintf(combuf, "oconv%s %s %s > %s", ocopts,
434 >                                        vval(MATERIAL), vval(ILLUM), oct0name);
435 >                        else
436 >                                sprintf(combuf, "oconv%s %s > %s", ocopts,
437 >                                        vval(ILLUM), oct0name);
438 >                        if (runcom(combuf)) {           /* run it */
439 >                                fprintf(stderr,
440 >                                "%s: error generating octree\n\t%s removed\n",
441 >                                                progname, oct0name);
442 >                                unlink(oct0name);
443 >                                quit(1);
444 >                        }
445 >                }
446 >                oct0date = time((time_t *)NULL);
447 >                if (oct0date < octreedate)      /* in case clock is off */
448 >                        oct0date = octreedate;
449 >                if (oct0date < illumdate)       /* ditto */
450 >                        oct0date = illumdate;
451 >                }
452 >        if (touchonly && oct1date)
453 >                touch(oct1name);
454 >        else {
455 >                mkillumopts(mkopts);            /* build mkillum command */
456 >                mktemp(illumtmp);
457 >                sprintf(combuf, "mkillum%s %s \"<\" %s > %s", mkopts,
458 >                                oct0name, vval(ILLUM), illumtmp);
459 >                if (runcom(combuf)) {                   /* run it */
460 >                        fprintf(stderr, "%s: error running mkillum\n",
461 >                                        progname);
462 >                        unlink(illumtmp);
463 >                        quit(1);
464 >                }
465 >                                                /* make octree1 (frozen) */
466                  if (octreedate)
467 <                        sprintf(combuf, "oconv%s -i %s %s > %s", ocopts,
468 <                                vval(OCTREE), vval(ILLUM), oct0name);
467 >                        sprintf(combuf, "oconv%s -f -i %s %s > %s", ocopts,
468 >                                vval(OCTREE), illumtmp, oct1name);
469                  else if (vdef(MATERIAL))
470 <                        sprintf(combuf, "oconv%s %s %s > %s", ocopts,
471 <                                vval(MATERIAL), vval(ILLUM), oct0name);
470 >                        sprintf(combuf, "oconv%s -f %s %s > %s", ocopts,
471 >                                vval(MATERIAL), illumtmp, oct1name);
472                  else
473 <                        sprintf(combuf, "oconv%s %s > %s", ocopts,
474 <                                vval(ILLUM), oct0name);
473 >                        sprintf(combuf, "oconv%s -f %s > %s", ocopts,
474 >                                illumtmp, oct1name);
475                  if (runcom(combuf)) {           /* run it */
476                          fprintf(stderr,
477                                  "%s: error generating octree\n\t%s removed\n",
478 <                                        progname, oct0name);
479 <                        unlink(oct0name);
480 <                        exit(1);
478 >                                        progname, oct1name);
479 >                        unlink(oct1name);
480 >                        unlink(illumtmp);
481 >                        quit(1);
482                  }
483 <                oct0date = time(0);
483 >                rmfile(illumtmp);
484          }
485 <        mkillumopts(mkopts);                    /* build mkillum command */
486 <        mktemp(illumtmp);
487 <        sprintf(combuf, "mkillum%s %s \"<\" %s > %s", mkopts,
648 <                        oct0name, vval(ILLUM), illumtmp);
649 <        if (runcom(combuf)) {                   /* run it */
650 <                fprintf(stderr, "%s: error running mkillum\n", progname);
651 <                unlink(illumtmp);
652 <                exit(1);
653 <        }
654 <                                                /* make octree1 (frozen) */
655 <        if (octreedate)
656 <                sprintf(combuf, "oconv%s -f -i %s %s > %s", ocopts,
657 <                        vval(OCTREE), illumtmp, oct1name);
658 <        else if (vdef(MATERIAL))
659 <                sprintf(combuf, "oconv%s -f %s %s > %s", ocopts,
660 <                        vval(MATERIAL), illumtmp, oct1name);
661 <        else
662 <                sprintf(combuf, "oconv%s -f %s > %s", ocopts,
663 <                        illumtmp, oct1name);
664 <        if (runcom(combuf)) {           /* run it */
665 <                fprintf(stderr,
666 <                        "%s: error generating octree\n\t%s removed\n",
667 <                                progname, oct1name);
668 <                unlink(oct1name);
669 <                exit(1);
670 <        }
671 <        oct1date = time(0);
672 <        rmfile(illumtmp);
485 >        oct1date = time((time_t *)NULL);
486 >        if (oct1date < oct0date)        /* in case clock is off */
487 >                oct1date = oct0date;
488   }
489  
490  
# Line 708 | Line 523 | register char  *mo;
523  
524   checkambfile()                  /* check date on ambient file */
525   {
526 <        unsigned long   afdate;
526 >        time_t  afdate;
527  
528          if (!vdef(AMBFILE))
529                  return;
530          if (!(afdate = fdate(vval(AMBFILE))))
531                  return;
532          if (oct1date > afdate)
533 <                rmfile(vval(AMBFILE));
533 >                if (touchonly)
534 >                        touch(vval(AMBFILE));
535 >                else
536 >                        rmfile(vval(AMBFILE));
537   }
538  
539  
# Line 723 | Line 541 | double
541   ambval()                                /* compute ambient value */
542   {
543          if (vdef(EXPOSURE)) {
726                if (!isflt(vval(EXPOSURE)))
727                        badvalue(EXPOSURE);
544                  if (vval(EXPOSURE)[0] == '+' || vval(EXPOSURE)[0] == '-')
545 <                        return(.5/pow(2.,atof(vval(EXPOSURE))));
546 <                return(.5/atof(vval(EXPOSURE)));
545 >                        return(.5/pow(2.,vflt(EXPOSURE)));
546 >                return(.5/vflt(EXPOSURE));
547          }
548          if (vlet(ZONE) == 'E')
549                  return(10.);
# Line 737 | Line 553 | ambval()                               /* compute ambient value */
553   }
554  
555  
556 < lowqopts(op)                            /* low quality rendering options */
556 > renderopts(op, po)                      /* set rendering options */
557 > char    *op, *po;
558 > {
559 >        switch(vscale(QUALITY)) {
560 >        case LOW:
561 >                lowqopts(op, po);
562 >                break;
563 >        case MEDIUM:
564 >                medqopts(op, po);
565 >                break;
566 >        case HIGH:
567 >                hiqopts(op, po);
568 >                break;
569 >        }
570 > }
571 >
572 >
573 > lowqopts(op, po)                        /* low quality rendering options */
574   register char   *op;
575 + char    *po;
576   {
577          double  d, org[3], siz[3];
578  
579          *op = '\0';
580 +        *po = '\0';
581          if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf", &org[0],
582                          &siz[0], &org[1], &siz[1], &org[2], &siz[2]) != 6)
583                  badvalue(ZONE);
584          siz[0] -= org[0]; siz[1] -= org[1]; siz[2] -= org[2];
585 +        if (siz[0] <= FTINY | siz[1] <= FTINY | siz[2] <= FTINY)
586 +                badvalue(ZONE);
587          getoctcube(org, &d);
588          d *= 3./(siz[0]+siz[1]+siz[2]);
589          switch (vscale(DETAIL)) {
590          case LOW:
591 <                op = addarg(op, "-ps 16 -dp 64");
591 >                po = addarg(po, "-ps 16");
592 >                op = addarg(op, "-dp 64");
593                  sprintf(op, " -ar %d", (int)(4*d));
594                  op += strlen(op);
595                  break;
596          case MEDIUM:
597 <                op = addarg(op, "-ps 8 -dp 128");
597 >                po = addarg(po, "-ps 8");
598 >                op = addarg(op, "-dp 128");
599                  sprintf(op, " -ar %d", (int)(8*d));
600                  op += strlen(op);
601                  break;
602          case HIGH:
603 <                op = addarg(op, "-ps 4 -dp 256");
603 >                po = addarg(po, "-ps 4");
604 >                op = addarg(op, "-dp 256");
605                  sprintf(op, " -ar %d", (int)(16*d));
606                  op += strlen(op);
607                  break;
608          }
609 <        op = addarg(op, "-pt .16");
609 >        po = addarg(po, "-pt .16");
610          if (vbool(PENUMBRAS))
611                  op = addarg(op, "-ds .4");
612          else
# Line 798 | Line 638 | register char  *op;
638   }
639  
640  
641 < medqopts(op)                            /* medium quality rendering options */
641 > medqopts(op, po)                        /* medium quality rendering options */
642   register char   *op;
643 + char    *po;
644   {
645 <        double  d, org[3], siz[3];
645 >        double  d, org[3], siz[3], asz;
646  
647          *op = '\0';
648 +        *po = '\0';
649          if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf", &org[0],
650                          &siz[0], &org[1], &siz[1], &org[2], &siz[2]) != 6)
651                  badvalue(ZONE);
652          siz[0] -= org[0]; siz[1] -= org[1]; siz[2] -= org[2];
653 +        if (siz[0] <= FTINY | siz[1] <= FTINY | siz[2] <= FTINY)
654 +                badvalue(ZONE);
655          getoctcube(org, &d);
656 <        d *= 3./(siz[0]+siz[1]+siz[2]);
656 >        asz = (siz[0]+siz[1]+siz[2])/3.;
657 >        d /= asz;
658          switch (vscale(DETAIL)) {
659          case LOW:
660 <                op = addarg(op, vbool(PENUMBRAS) ? "-ps 4" : "-ps 8");
660 >                po = addarg(po, vbool(PENUMBRAS) ? "-ps 4" : "-ps 8");
661                  op = addarg(op, "-dp 256");
662                  sprintf(op, " -ar %d", (int)(8*d));
663                  op += strlen(op);
664 +                sprintf(op, " -ms %.2g", asz/20.);
665 +                op += strlen(op);
666                  break;
667          case MEDIUM:
668 <                op = addarg(op, vbool(PENUMBRAS) ? "-ps 3" : "-ps 6");
668 >                po = addarg(po, vbool(PENUMBRAS) ? "-ps 3" : "-ps 6");
669                  op = addarg(op, "-dp 512");
670                  sprintf(op, " -ar %d", (int)(16*d));
671                  op += strlen(op);
672 +                sprintf(op, " -ms %.2g", asz/40.);
673 +                op += strlen(op);
674                  break;
675          case HIGH:
676 <                op = addarg(op, vbool(PENUMBRAS) ? "-ps 2" : "-ps 4");
676 >                po = addarg(po, vbool(PENUMBRAS) ? "-ps 2" : "-ps 4");
677                  op = addarg(op, "-dp 1024");
678                  sprintf(op, " -ar %d", (int)(32*d));
679                  op += strlen(op);
680 +                sprintf(op, " -ms %.2g", asz/80.);
681 +                op += strlen(op);
682                  break;
683          }
684 <        op = addarg(op, "-pt .08");
684 >        po = addarg(po, "-pt .08");
685          if (vbool(PENUMBRAS))
686 <                op = addarg(op, "-ds .2 -dj .35");
686 >                op = addarg(op, "-ds .2 -dj .5");
687          else
688                  op = addarg(op, "-ds .3");
689          op = addarg(op, "-dt .1 -dc .5 -dr 1 -sj .7 -st .1");
# Line 865 | Line 716 | register char  *op;
716   }
717  
718  
719 < hiqopts(op)                             /* high quality rendering options */
719 > hiqopts(op, po)                         /* high quality rendering options */
720   register char   *op;
721 + char    *po;
722   {
723 <        double  d, org[3], siz[3];
723 >        double  d, org[3], siz[3], asz;
724  
725          *op = '\0';
726 +        *po = '\0';
727          if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf", &org[0],
728                          &siz[0], &org[1], &siz[1], &org[2], &siz[2]) != 6)
729                  badvalue(ZONE);
730          siz[0] -= org[0]; siz[1] -= org[1]; siz[2] -= org[2];
731 +        if (siz[0] <= FTINY | siz[1] <= FTINY | siz[2] <= FTINY)
732 +                badvalue(ZONE);
733          getoctcube(org, &d);
734 <        d *= 3./(siz[0]+siz[1]+siz[2]);
734 >        asz = (siz[0]+siz[1]+siz[2])/3.;
735 >        d /= asz;
736          switch (vscale(DETAIL)) {
737          case LOW:
738 <                op = addarg(op, vbool(PENUMBRAS) ? "-ps 1" : "-ps 8");
738 >                po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 8");
739                  op = addarg(op, "-dp 1024");
740                  sprintf(op, " -ar %d", (int)(16*d));
741                  op += strlen(op);
742 +                sprintf(op, " -ms %.2g", asz/40.);
743 +                op += strlen(op);
744                  break;
745          case MEDIUM:
746 <                op = addarg(op, vbool(PENUMBRAS) ? "-ps 1" : "-ps 5");
746 >                po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 5");
747                  op = addarg(op, "-dp 2048");
748                  sprintf(op, " -ar %d", (int)(32*d));
749                  op += strlen(op);
750 +                sprintf(op, " -ms %.2g", asz/80.);
751 +                op += strlen(op);
752                  break;
753          case HIGH:
754 <                op = addarg(op, vbool(PENUMBRAS) ? "-ps 1" : "-ps 3");
754 >                po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 3");
755                  op = addarg(op, "-dp 4096");
756                  sprintf(op, " -ar %d", (int)(64*d));
757                  op += strlen(op);
758 +                sprintf(op, " -ms %.2g", asz/160.);
759 +                op += strlen(op);
760                  break;
761          }
762 <        op = addarg(op, "-pt .04");
762 >        po = addarg(po, "-pt .04");
763          if (vbool(PENUMBRAS))
764 <                op = addarg(op, "-ds .1 -dj .7");
764 >                op = addarg(op, "-ds .1 -dj .65");
765          else
766                  op = addarg(op, "-ds .2");
767          op = addarg(op, "-dt .05 -dc .75 -dr 3 -sj 1 -st .01");
# Line 941 | Line 803 | char   *ro;
803                  return;
804          if (vdef(OPTFILE)) {
805                  for (cp = ro; cp[1]; cp++)
806 <                        if (isspace(cp[1]) && cp[2] == '-' && isalpha(cp[3]))
806 >                        if (isspace(cp[1]) && (cp[2] == '@' ||
807 >                                        (cp[2] == '-' && isalpha(cp[3]))))
808                                  *cp = '\n';
809                          else
810                                  *cp = cp[1];
# Line 1036 | Line 899 | register char  *vs;
899                  zpos = -1; vs++;
900          }
901          viewtype = 'v';
902 <        if (*vs == 'v' | *vs == 'l' | *vs == 'a' | *vs == 'h')
902 >        if (*vs == 'v' | *vs == 'l' | *vs == 'a' | *vs == 'h' | *vs == 'c')
903                  viewtype = *vs++;
904          cp = viewopts;
905          if ((!*vs || isspace(*vs)) && (xpos|ypos|zpos)) {       /* got one! */
# Line 1047 | Line 910 | register char  *vs;
910                          badvalue(ZONE);
911                  for (i = 0; i < 3; i++) {
912                          dim[i] -= cent[i];
913 +                        if (dim[i] <= FTINY)
914 +                                badvalue(ZONE);
915                          cent[i] += .5*dim[i];
916                  }
917                  mult = vlet(ZONE)=='E' ? 2. : .45 ;
# Line 1089 | Line 954 | register char  *vs;
954                  case 'h':
955                          cp = addarg(cp, "-vh 180 -vv 180");
956                          break;
957 +                case 'c':
958 +                        cp = addarg(cp, "-vh 180 -vv 90");
959 +                        break;
960                  }
961          } else {
962                  while (!isspace(*vs))           /* else skip id */
# Line 1134 | Line 1002 | char   *vn;            /* returned view name */
1002                  }
1003                                                  /* view number? */
1004                  if (isint(viewselect))
1005 <                        return(specview(nvalue(vv+VIEW, atoi(viewselect)-1)));
1005 >                        return(specview(nvalue(VIEWS, atoi(viewselect)-1)));
1006                                                  /* check list */
1007 <                while ((mv = nvalue(vv+VIEW, n++)) != NULL)
1007 >                while ((mv = nvalue(VIEWS, n++)) != NULL)
1008                          if (matchword(viewselect, mv))
1009                                  return(specview(mv));
1010                  return(specview(viewselect));   /* standard view? */
1011          }
1012 <        mv = nvalue(vv+VIEW, n);                /* use view n */
1012 >        mv = nvalue(VIEWS, n);          /* use view n */
1013          if (vn != NULL & mv != NULL) {
1014                  register char   *mv2 = mv;
1015                  if (*mv2 != '-')
# Line 1156 | Line 1024 | char   *vn;            /* returned view name */
1024   printview(vopts)                        /* print out selected view */
1025   register char   *vopts;
1026   {
1027 <        extern char     *atos(), *getenv();
1028 <        char    buf[256];
1029 <        FILE    *fp;
1027 >        extern char     *strstr(), *atos(), *getenv();
1028 >        VIEW    vwr;
1029 >        char    buf[128];
1030          register char   *cp;
1031 <
1031 > again:
1032          if (vopts == NULL)
1033                  return(-1);
1166        fputs("VIEW=", stdout);
1167        do {
1168                if (matchword(vopts, "-vf")) {          /* expand view file */
1169                        vopts = sskip(vopts);
1170                        if (!*atos(buf, sizeof(buf), vopts))
1171                                return(-1);
1172                        if ((fp = fopen(buf, "r")) == NULL)
1173                                return(-1);
1174                        for (buf[sizeof(buf)-2] = '\n';
1175                                        fgets(buf, sizeof(buf), fp) != NULL &&
1176                                                buf[0] != '\n';
1177                                        buf[sizeof(buf)-2] = '\n') {
1178                                if (buf[sizeof(buf)-2] != '\n') {
1179                                        ungetc(buf[sizeof(buf)-2], fp);
1180                                        buf[sizeof(buf)-2] = '\0';
1181                                }
1182                                if (matchword(buf, "VIEW=") ||
1183                                                matchword(buf, "rview")) {
1184                                        for (cp = sskip(buf); *cp && *cp != '\n'; cp++)
1185                                                putchar(*cp);
1186                                }
1187                        }
1188                        fclose(fp);
1189                        vopts = sskip(vopts);
1190                } else {
1191                        while (isspace(*vopts))
1192                                vopts++;
1193                        putchar(' ');
1034   #ifdef MSDOS
1035 <                        if (*vopts == '$') {            /* expand env. var. */
1036 <                                if (!*atos(buf, sizeof(buf), vopts+1))
1037 <                                        return(-1);
1038 <                                if ((cp = getenv(buf)) == NULL)
1199 <                                        return(-1);
1200 <                                fputs(cp, stdout);
1201 <                                vopts = sskip(vopts);
1202 <                        } else
1035 >        if (vopts[0] == '$') {
1036 >                vopts = getenv(vopts+1);
1037 >                goto again;
1038 >        }
1039   #endif
1040 <                                while (*vopts && !isspace(*vopts))
1041 <                                        putchar(*vopts++);
1042 <                }
1043 <        } while (*vopts++);
1044 <        putchar('\n');
1040 >        copystruct(&vwr, &stdview);
1041 >        cp = vopts;                             /* get -vf files first */
1042 >        while ((cp = strstr(cp, "-vf ")) != NULL &&
1043 >                        *atos(buf, sizeof(buf), cp += 4))
1044 >                viewfile(buf, &vwr, NULL);
1045 >        sscanview(&vwr, vopts);                 /* get the rest */
1046 >        fputs(VIEWSTR, stdout);
1047 >        fprintview(&vwr, stdout);               /* print full spec. */
1048 >        fputc('\n', stdout);
1049          return(0);
1050   }
1051  
1052  
1053 < rview(opts)                             /* run rview with first view */
1054 < char    *opts;
1053 > rview(opts, po)                         /* run rview with first view */
1054 > char    *opts, *po;
1055   {
1056          char    *vw;
1057          char    combuf[512];
1058                                          /* build command */
1059 <        if ((vw = getview(0, NULL)) == NULL)
1059 >        if (touchonly || (vw = getview(0, NULL)) == NULL)
1060                  return;
1061          if (sayview)
1062                  printview(vw);
1063 <        sprintf(combuf, "rview %s%s -R %s ", vw, opts, rifname);
1063 >        sprintf(combuf, "rview %s%s%s -R %s ", vw, po, opts, rifname);
1064          if (rvdevice != NULL)
1065                  sprintf(combuf+strlen(combuf), "-o %s ", rvdevice);
1066 +        if (vdef(EXPOSURE))
1067 +                sprintf(combuf+strlen(combuf), "-pe %s ", vval(EXPOSURE));
1068          strcat(combuf, oct1name);
1069          if (runcom(combuf)) {           /* run it */
1070                  fprintf(stderr, "%s: error running rview\n", progname);
1071 <                exit(1);
1071 >                quit(1);
1072          }
1073   }
1074  
1075  
1076 < rpict(opts)                             /* run rpict and pfilt for each view */
1077 < char    *opts;
1076 > rpict(opts, po)                         /* run rpict and pfilt for each view */
1077 > char    *opts, *po;
1078   {
1079          char    combuf[1024];
1080 <        char    rawfile[MAXPATH], picfile[MAXPATH], rep[MAXPATH+16], res[32];
1080 >        char    rawfile[MAXPATH], picfile[MAXPATH];
1081 >        char    zopt[MAXPATH+4], rep[MAXPATH+16], res[32];
1082          char    pfopts[128];
1083          char    vs[32], *vw;
1084          int     vn, mult;
1085 +        time_t  rfdt, pfdt;
1086                                          /* get pfilt options */
1087          pfiltopts(pfopts);
1088                                          /* get resolution, reporting */
1089 <        mult = vscale(QUALITY)+1;
1089 >        switch (vscale(QUALITY)) {
1090 >        case LOW:
1091 >                mult = 1;
1092 >                break;
1093 >        case MEDIUM:
1094 >                mult = 2;
1095 >                break;
1096 >        case HIGH:
1097 >                mult = 3;
1098 >                break;
1099 >        }
1100          {
1101                  int     xres, yres;
1102                  double  aspect;
# Line 1277 | Line 1131 | char   *opts;
1131                  if (!vs[0])
1132                          sprintf(vs, "%d", vn);
1133                  sprintf(picfile, "%s_%s.pic", vval(PICTURE), vs);
1134 +                if (vdef(ZFILE))
1135 +                        sprintf(zopt, " -z %s_%s.zbf", vval(ZFILE), vs);
1136 +                else
1137 +                        zopt[0] = '\0';
1138                                                  /* check date on picture */
1139 <                if (fdate(picfile) >= oct1date)
1139 >                pfdt = fdate(picfile);
1140 >                if (pfdt >= oct1date)
1141                          continue;
1142 +                                                /* get raw file name */
1143 +                sprintf(rawfile, "%s_%s.unf",
1144 +                        vdef(RAWFILE) ? vval(RAWFILE) : vval(PICTURE), vs);
1145 +                rfdt = fdate(rawfile);
1146 +                if (touchonly) {                /* update times only */
1147 +                        if (rfdt) {
1148 +                                if (rfdt < oct1date)
1149 +                                        touch(rawfile);
1150 +                        } else if (pfdt && pfdt < oct1date)
1151 +                                touch(picfile);
1152 +                        continue;
1153 +                }
1154                                                  /* build rpict command */
1155 <                sprintf(rawfile, "%s_%s.raw", vval(PICTURE), vs);
1156 <                if (fdate(rawfile) >= oct1date)         /* recover */
1157 <                        sprintf(combuf, "rpict%s%s -ro %s %s",
1287 <                                        rep, opts, rawfile, oct1name);
1155 >                if (rfdt >= oct1date)           /* recover */
1156 >                        sprintf(combuf, "rpict%s%s%s%s -ro %s %s",
1157 >                                rep, po, opts, zopt, rawfile, oct1name);
1158                  else {
1159                          if (overture) {         /* run overture calculation */
1160                                  sprintf(combuf,
# Line 1295 | Line 1165 | char   *opts;
1165                                          fprintf(stderr,
1166                                          "%s: error in overture for view %s\n",
1167                                                  progname, vs);
1168 <                                        exit(1);
1168 >                                        quit(1);
1169                                  }
1170   #ifdef NIX
1171                                  rmfile(overfile);
1172   #endif
1173                          }
1174 <                        sprintf(combuf, "rpict%s %s %s%s %s > %s",
1175 <                                        rep, vw, res, opts,
1174 >                        sprintf(combuf, "rpict%s %s %s%s%s%s %s > %s",
1175 >                                        rep, vw, res, po, opts, zopt,
1176                                          oct1name, rawfile);
1177                  }
1178                  if (runcom(combuf)) {           /* run rpict */
1179                          fprintf(stderr, "%s: error rendering view %s\n",
1180                                          progname, vs);
1181 <                        exit(1);
1181 >                        quit(1);
1182                  }
1183 +                if (!vdef(RAWFILE) || strcmp(vval(RAWFILE),vval(PICTURE))) {
1184                                                  /* build pfilt command */
1185 <                if (mult > 1)
1186 <                        sprintf(combuf, "pfilt%s -x /%d -y /%d %s > %s",
1185 >                        if (mult > 1)
1186 >                                sprintf(combuf, "pfilt%s -x /%d -y /%d %s > %s",
1187                                          pfopts, mult, mult, rawfile, picfile);
1188 <                else
1189 <                        sprintf(combuf, "pfilt%s %s > %s", pfopts,
1190 <                                        rawfile, picfile);
1191 <                if (runcom(combuf)) {           /* run pfilt */
1192 <                        fprintf(stderr,
1193 <                        "%s: error filtering view %s\n\t%s removed\n",
1194 <                                        progname, vs, picfile);
1195 <                        unlink(picfile);
1196 <                        exit(1);
1188 >                        else
1189 >                                sprintf(combuf, "pfilt%s %s > %s", pfopts,
1190 >                                                rawfile, picfile);
1191 >                        if (runcom(combuf)) {           /* run pfilt */
1192 >                                fprintf(stderr,
1193 >                                "%s: error filtering view %s\n\t%s removed\n",
1194 >                                                progname, vs, picfile);
1195 >                                unlink(picfile);
1196 >                                quit(1);
1197 >                        }
1198                  }
1199 <                                                /* remove raw file */
1200 <                rmfile(rawfile);
1199 >                                                /* remove/rename raw file */
1200 >                if (vdef(RAWFILE)) {
1201 >                        sprintf(combuf, "%s_%s.pic", vval(RAWFILE), vs);
1202 >                        mvfile(rawfile, combuf);
1203 >                } else
1204 >                        rmfile(rawfile);
1205          }
1206   }
1207  
1208  
1209 + touch(fn)                       /* update a file */
1210 + char    *fn;
1211 + {
1212 +        if (!silent)
1213 +                printf("\ttouch %s\n", fn);
1214 +        if (noaction)
1215 +                return(0);
1216 + #ifdef notused
1217 +        if (access(fn, F_OK) == -1)             /* create it */
1218 +                if (close(open(fn, O_WRONLY|O_CREAT, 0666)) == -1)
1219 +                        return(-1);
1220 + #endif
1221 +        return(setfdate(fn, time((time_t *)NULL)));
1222 + }
1223 +
1224 +
1225   runcom(cs)                      /* run command */
1226   char    *cs;
1227   {
# Line 1357 | Line 1249 | char   *fn;
1249   }
1250  
1251  
1252 + mvfile(fold, fnew)              /* move a file */
1253 + char    *fold, *fnew;
1254 + {
1255 +        if (!silent)
1256   #ifdef MSDOS
1257 +                printf("\trename %s %s\n", fold, fnew);
1258 + #else
1259 +                printf("\tmv %s %s\n", fold, fnew);
1260 + #endif
1261 +        if (noaction)
1262 +                return(0);
1263 +        return(rename(fold, fnew));
1264 + }
1265 +
1266 +
1267 + #ifdef MSDOS
1268   setenv(vname, value)            /* set an environment variable */
1269   char    *vname, *value;
1270   {
# Line 1369 | Line 1276 | char   *vname, *value;
1276          sprintf(evp, "%s=%s", vname, value);
1277          if (putenv(evp) != 0) {
1278                  fprintf(stderr, "%s: out of environment space\n", progname);
1279 <                exit(1);
1279 >                quit(1);
1280          }
1281          if (!silent)
1282                  printf("set %s\n", evp);
# Line 1382 | Line 1289 | int    vc;
1289   {
1290          fprintf(stderr, "%s: bad value for variable '%s'\n",
1291                          progname, vnam(vc));
1292 <        exit(1);
1292 >        quit(1);
1293   }
1294  
1295  
# Line 1390 | Line 1297 | syserr(s)                      /* report a system error and exit */
1297   char    *s;
1298   {
1299          perror(s);
1300 <        exit(1);
1300 >        quit(1);
1301 > }
1302 >
1303 >
1304 > quit(ec)                        /* exit program */
1305 > int     ec;
1306 > {
1307 >        exit(ec);
1308   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines