ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/rad.c
Revision: 2.127
Committed: Tue Apr 7 00:49:09 2020 UTC (4 years ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad5R3
Changes since 2.126: +6 -2 lines
Log Message:
Disable overture calculation if -aa 0 set in render options

File Contents

# User Rev Content
1 greg 2.1 #ifndef lint
2 greg 2.127 static const char RCSid[] = "$Id: rad.c,v 2.126 2019/02/26 23:31:11 greg Exp $";
3 greg 2.1 #endif
4     /*
5     * Executive program for oconv, rpict and pfilt
6     */
7    
8     #include "standard.h"
9 schorsch 2.64
10     #include <ctype.h>
11 schorsch 2.69 #include <time.h>
12 greg 2.119 #include <signal.h>
13 schorsch 2.64
14     #include "platform.h"
15 schorsch 2.74 #include "rtprocess.h"
16 gregl 2.55 #include "view.h"
17 greg 2.1 #include "paths.h"
18 greg 2.48 #include "vars.h"
19 greg 2.1
20 schorsch 2.124 #if defined(_WIN32) || defined(_WIN64)
21 schorsch 2.69 #define DELCMD "del"
22     #define RENAMECMD "rename"
23     #else
24     #define DELCMD "rm -f"
25     #define RENAMECMD "mv"
26 schorsch 2.76 #include <sys/types.h>
27     #include <sys/wait.h>
28 greg 2.111 #include <signal.h>
29 schorsch 2.69 #endif
30    
31 gwlarson 2.56 /* variables (alphabetical by name) */
32     #define AMBFILE 0 /* ambient file name */
33     #define DETAIL 1 /* level of scene detail */
34     #define EXPOSURE 2 /* picture exposure setting */
35 gwlarson 2.57 #define EYESEP 3 /* interocular distance */
36     #define ILLUM 4 /* mkillum input files */
37     #define INDIRECT 5 /* indirection in lighting */
38     #define MATERIAL 6 /* material files */
39     #define MKILLUM 7 /* mkillum options */
40 greg 2.112 #define MKPMAP 8 /* mkpmap options */
41     #define OBJECT 9 /* object files */
42     #define OCONV 10 /* oconv options */
43     #define OCTREE 11 /* octree file name */
44     #define OPTFILE 12 /* rendering options file */
45     #define PCMAP 13 /* caustic photon map */
46     #define PENUMBRAS 14 /* shadow penumbras are desired */
47     #define PFILT 15 /* pfilt options */
48     #define PGMAP 16 /* global photon map */
49     #define PICTURE 17 /* picture file root name */
50     #define QUALITY 18 /* desired rendering quality */
51     #define RAWFILE 19 /* raw picture file root name */
52     #define RENDER 20 /* rendering options */
53     #define REPORT 21 /* report frequency and errfile */
54     #define RESOLUTION 22 /* maximum picture resolution */
55     #define RPICT 23 /* rpict parameters */
56     #define RVU 24 /* rvu parameters */
57     #define SCENE 25 /* scene files */
58     #define UP 26 /* view up (X, Y or Z) */
59     #define VARIABILITY 27 /* level of light variability */
60     #define VIEWS 28 /* view(s) for picture(s) */
61     #define ZFILE 29 /* distance file root name */
62     #define ZONE 30 /* simulation zone */
63 greg 2.1 /* total number of variables */
64 greg 2.112 int NVARS = 31;
65 greg 2.1
66 greg 2.48 VARIABLE vv[] = { /* variable-value pairs */
67 gwlarson 2.56 {"AMBFILE", 3, 0, NULL, onevalue},
68     {"DETAIL", 3, 0, NULL, qualvalue},
69     {"EXPOSURE", 3, 0, NULL, fltvalue},
70 gwlarson 2.57 {"EYESEP", 3, 0, NULL, fltvalue},
71 gwlarson 2.56 {"illum", 3, 0, NULL, catvalues},
72     {"INDIRECT", 3, 0, NULL, intvalue},
73 greg 2.1 {"materials", 3, 0, NULL, catvalues},
74 greg 2.26 {"mkillum", 3, 0, NULL, catvalues},
75 greg 2.112 {"mkpmap", 3, 0, NULL, catvalues},
76 gwlarson 2.56 {"objects", 3, 0, NULL, catvalues},
77 greg 2.1 {"oconv", 3, 0, NULL, catvalues},
78 gwlarson 2.56 {"OCTREE", 3, 0, NULL, onevalue},
79     {"OPTFILE", 3, 0, NULL, onevalue},
80 greg 2.112 {"PCMAP", 2, 0, NULL, onevalue},
81 gwlarson 2.56 {"PENUMBRAS", 3, 0, NULL, boolvalue},
82 greg 2.1 {"pfilt", 2, 0, NULL, catvalues},
83 greg 2.112 {"PGMAP", 2, 0, NULL, onevalue},
84 gwlarson 2.56 {"PICTURE", 3, 0, NULL, onevalue},
85 greg 2.30 {"QUALITY", 3, 0, NULL, qualvalue},
86 gwlarson 2.56 {"RAWFILE", 3, 0, NULL, onevalue},
87     {"render", 3, 0, NULL, catvalues},
88     {"REPORT", 3, 0, NULL, onevalue},
89 greg 2.1 {"RESOLUTION", 3, 0, NULL, onevalue},
90 greg 2.91 {"rpict", 3, 0, NULL, catvalues},
91     {"rvu", 3, 0, NULL, catvalues},
92 gwlarson 2.56 {"scene", 3, 0, NULL, catvalues},
93 greg 2.1 {"UP", 2, 0, NULL, onevalue},
94 greg 2.30 {"VARIABILITY", 3, 0, NULL, qualvalue},
95 gwlarson 2.56 {"view", 2, 0, NULL, NULL},
96 greg 2.45 {"ZFILE", 2, 0, NULL, onevalue},
97 gwlarson 2.56 {"ZONE", 2, 0, NULL, onevalue},
98 greg 2.1 };
99    
100 greg 2.6 /* overture calculation file */
101 schorsch 2.65 #ifdef NULL_DEVICE
102     char overfile[] = NULL_DEVICE;
103     #else
104 greg 2.45 char overfile[] = "overture.unf";
105 greg 2.6 #endif
106    
107 greg 2.1
108 greg 2.35 time_t scenedate; /* date of latest scene or object file */
109     time_t octreedate; /* date of octree */
110     time_t matdate; /* date of latest material file */
111     time_t illumdate; /* date of last illum file */
112 greg 2.1
113 greg 2.26 char *oct0name; /* name of pre-mkillum octree */
114 greg 2.35 time_t oct0date; /* date of pre-mkillum octree */
115 greg 2.26 char *oct1name; /* name of post-mkillum octree */
116 greg 2.35 time_t oct1date; /* date of post-mkillum octree (>= matdate) */
117 greg 2.26
118 greg 2.112 char *pgmapname; /* name of global photon map */
119     time_t pgmapdate; /* date of global photon map (>= oct1date) */
120     char *pcmapname; /* name of caustic photon map */
121     time_t pcmapdate; /* date of caustic photon map (>= oct1date) */
122    
123 greg 2.37 int nowarn = 0; /* no warnings */
124 greg 2.1 int explicate = 0; /* explicate variables */
125     int silent = 0; /* do work silently */
126 greg 2.41 int touchonly = 0; /* touch files only */
127 greg 2.66 int nprocs = 1; /* maximum executing processes */
128 greg 2.21 int sayview = 0; /* print view out */
129 greg 2.75 char *rvdevice = NULL; /* rvu output device */
130 greg 2.1 char *viewselect = NULL; /* specific view only */
131    
132 greg 2.93 #define DEF_RPICT_PATH "rpict" /* default rpict path */
133    
134 greg 2.91 /* command paths */
135     char c_oconv[256] = "oconv";
136     char c_mkillum[256] = "mkillum";
137 greg 2.112 char c_mkpmap[256] = "mkpmap";
138 greg 2.91 char c_rvu[256] = "rvu";
139 greg 2.93 char c_rpict[256] = DEF_RPICT_PATH;
140     char c_rpiece[] = "rpiece";
141 greg 2.91 char c_pfilt[256] = "pfilt";
142    
143 greg 2.1 int overture = 0; /* overture calculation needed */
144    
145 greg 2.66 int children_running = 0; /* set negative in children */
146    
147 greg 2.1 char *progname; /* global argv[0] */
148 greg 2.22 char *rifname; /* global rad input file name */
149 greg 2.1
150 schorsch 2.65 char radname[PATH_MAX]; /* root Radiance file name */
151 greg 2.1
152 greg 2.67 #define inchild() (children_running < 0)
153    
154 schorsch 2.76 static void rootname(char *rn, char *fn);
155     static time_t checklast(char *fnames);
156     static char * newfname(char *orig, int pred);
157     static void checkfiles(void);
158     static void getoctcube(double org[3], double *sizp);
159     static void setdefaults(void);
160     static void oconv(void);
161 greg 2.112 static void mkpmap(void);
162 schorsch 2.76 static char * addarg(char *op, char *arg);
163     static void oconvopts(char *oo);
164     static void mkillumopts(char *mo);
165 greg 2.112 static void mkpmapopts(char *mo);
166 schorsch 2.76 static void checkambfile(void);
167     static double ambval(void);
168     static void renderopts(char *op, char *po);
169     static void lowqopts(char *op, char *po);
170     static void medqopts(char *op, char *po);
171     static void hiqopts(char *op, char *po);
172     static void xferopts(char *ro);
173     static void pfiltopts(char *po);
174     static int matchword(char *s1, char *s2);
175     static char * specview(char *vs);
176     static char * getview(int n, char *vn);
177     static int myprintview(char *vopts, FILE *fp);
178     static void rvu(char *opts, char *po);
179     static void rpict(char *opts, char *po);
180     static int touch(char *fn);
181     static int runcom(char *cs);
182     static int rmfile(char *fn);
183     static int mvfile(char *fold, char *fnew);
184 greg 2.98 static int next_process(int reserve);
185 schorsch 2.76 static void wait_process(int all);
186     static void finish_process(void);
187     static void badvalue(int vc);
188     static void syserr(char *s);
189 greg 2.1
190 schorsch 2.76
191     int
192     main(
193     int argc,
194     char *argv[]
195     )
196 greg 2.1 {
197     char ropts[512];
198 greg 2.38 char popts[64];
199 greg 2.1 int i;
200    
201     progname = argv[0];
202     /* get options */
203     for (i = 1; i < argc && argv[i][0] == '-'; i++)
204     switch (argv[i][1]) {
205     case 's':
206     silent++;
207     break;
208     case 'n':
209 greg 2.66 nprocs = 0;
210     break;
211     case 'N':
212     nprocs = atoi(argv[++i]);
213     if (nprocs < 0)
214     nprocs = 0;
215 greg 2.1 break;
216 greg 2.41 case 't':
217     touchonly++;
218     break;
219 greg 2.1 case 'e':
220     explicate++;
221     break;
222     case 'o':
223     rvdevice = argv[++i];
224     break;
225 greg 2.20 case 'V':
226 greg 2.21 sayview++;
227     break;
228 greg 2.1 case 'v':
229     viewselect = argv[++i];
230     break;
231 greg 2.37 case 'w':
232     nowarn++;
233     break;
234 greg 2.1 default:
235     goto userr;
236     }
237     if (i >= argc)
238     goto userr;
239 greg 2.22 rifname = argv[i];
240 greg 2.1 /* assign Radiance root file name */
241 greg 2.22 rootname(radname, rifname);
242 greg 2.1 /* load variable values */
243 greg 2.48 loadvars(rifname);
244 greg 2.1 /* get any additional assignments */
245     for (i++; i < argc; i++)
246 greg 2.53 if (setvariable(argv[i], matchvar) < 0) {
247     fprintf(stderr, "%s: unknown variable: %s\n",
248     progname, argv[i]);
249     quit(1);
250     }
251 greg 2.1 /* check assignments */
252     checkvalues();
253     /* check files and dates */
254     checkfiles();
255     /* set default values as necessary */
256     setdefaults();
257     /* print all values if requested */
258     if (explicate)
259 greg 2.48 printvars(stdout);
260 greg 2.26 /* build octree (and run mkillum) */
261 greg 2.7 oconv();
262 greg 2.112 /* run mkpmap if indicated */
263     mkpmap();
264 greg 2.7 /* check date on ambient file */
265     checkambfile();
266 greg 2.1 /* run simulation */
267 greg 2.38 renderopts(ropts, popts);
268 greg 2.1 xferopts(ropts);
269     if (rvdevice != NULL)
270 greg 2.75 rvu(ropts, popts);
271 greg 2.1 else
272 greg 2.38 rpict(ropts, popts);
273 greg 2.53 quit(0);
274 greg 2.1 userr:
275     fprintf(stderr,
276 greg 2.66 "Usage: %s [-w][-s][-n|-N npr][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n",
277 greg 2.1 progname);
278 greg 2.53 quit(1);
279 schorsch 2.76 return 1; /* pro forma return */
280 greg 2.1 }
281    
282    
283 schorsch 2.76 static void
284     rootname( /* remove tail from end of fn */
285 greg 2.109 char *rn,
286     char *fn
287 schorsch 2.76 )
288 greg 2.1 {
289     char *tp, *dp;
290    
291 schorsch 2.71 for (tp = NULL, dp = rn; (*rn = *fn++); rn++)
292 greg 2.1 if (ISDIRSEP(*rn))
293     dp = rn;
294     else if (*rn == '.')
295     tp = rn;
296     if (tp != NULL && tp > dp)
297     *tp = '\0';
298     }
299    
300    
301 schorsch 2.76 static time_t
302     checklast( /* check files and find most recent */
303 greg 2.109 char *fnames
304 schorsch 2.76 )
305 greg 2.1 {
306 schorsch 2.65 char thisfile[PATH_MAX];
307 greg 2.35 time_t thisdate, lastdate = 0;
308 greg 2.1
309 greg 2.26 if (fnames == NULL)
310     return(0);
311 schorsch 2.65 while ((fnames = nextword(thisfile, PATH_MAX, fnames)) != NULL) {
312 gwlarson 2.60 if (thisfile[0] == '!' ||
313 greg 2.77 (thisfile[0] == '\\' && thisfile[1] == '!')) {
314     if (!lastdate)
315     lastdate = 1;
316 gwlarson 2.60 continue;
317 greg 2.77 }
318 greg 2.26 if (!(thisdate = fdate(thisfile)))
319 greg 2.3 syserr(thisfile);
320 greg 2.1 if (thisdate > lastdate)
321     lastdate = thisdate;
322     }
323     return(lastdate);
324     }
325    
326    
327 schorsch 2.76 static char *
328     newfname( /* create modified file name */
329     char *orig,
330     int pred
331     )
332 greg 2.26 {
333 greg 2.109 char *cp;
334     int n;
335 greg 2.26 int suffix;
336    
337 greg 2.27 n = 0; cp = orig; suffix = -1; /* suffix position, length */
338     while (*cp) {
339     if (*cp == '.') suffix = n;
340     else if (ISDIRSEP(*cp)) suffix = -1;
341     cp++; n++;
342     }
343     if (suffix == -1) suffix = n;
344 greg 2.26 if ((cp = bmalloc(n+2)) == NULL)
345     syserr(progname);
346     strncpy(cp, orig, suffix);
347     cp[suffix] = pred; /* root name + pred + suffix */
348     strcpy(cp+suffix+1, orig+suffix);
349     return(cp);
350     }
351    
352    
353 schorsch 2.76 static void
354     checkfiles(void) /* check for existence and modified times */
355 greg 2.1 {
356 greg 2.112 char fntemp[256];
357 greg 2.35 time_t objdate;
358 greg 2.1
359 greg 2.2 if (!vdef(OCTREE)) {
360 greg 2.26 if ((vval(OCTREE) = bmalloc(strlen(radname)+5)) == NULL)
361 greg 2.3 syserr(progname);
362 greg 2.26 sprintf(vval(OCTREE), "%s.oct", radname);
363 greg 2.2 vdef(OCTREE)++;
364 greg 2.61 } else if (vval(OCTREE)[0] == '!') {
365     fprintf(stderr, "%s: illegal '%s' specification\n",
366     progname, vnam(OCTREE));
367     quit(1);
368 greg 2.2 }
369     octreedate = fdate(vval(OCTREE));
370 greg 2.26 if (vdef(ILLUM)) { /* illum requires secondary octrees */
371     oct0name = newfname(vval(OCTREE), '0');
372     oct1name = newfname(vval(OCTREE), '1');
373     oct0date = fdate(oct0name);
374     oct1date = fdate(oct1name);
375     } else
376     oct0name = oct1name = vval(OCTREE);
377     if ((scenedate = checklast(vval(SCENE))) &&
378     (objdate = checklast(vval(OBJECT))) > scenedate)
379     scenedate = objdate;
380     illumdate = checklast(vval(ILLUM));
381     if (!octreedate & !scenedate & !illumdate) {
382     fprintf(stderr, "%s: need '%s' or '%s' or '%s'\n", progname,
383     vnam(OCTREE), vnam(SCENE), vnam(ILLUM));
384 greg 2.53 quit(1);
385 greg 2.1 }
386 greg 2.112 if (vdef(PGMAP)) {
387     if (!*sskip2(vval(PGMAP),1)) {
388     fprintf(stderr, "%s: '%s' missing # photons argument\n",
389     progname, vnam(PGMAP));
390     quit(1);
391     }
392     atos(fntemp, sizeof(fntemp), vval(PGMAP));
393     pgmapname = savqstr(fntemp);
394     pgmapdate = fdate(pgmapname);
395     }
396     if (vdef(PCMAP)) {
397     if (!*sskip2(vval(PCMAP),1)) {
398     fprintf(stderr, "%s: '%s' missing # photons argument\n",
399     progname, vnam(PCMAP));
400     quit(1);
401     }
402     atos(fntemp, sizeof(fntemp), vval(PCMAP));
403     pcmapname = savqstr(fntemp);
404     pcmapdate = fdate(pcmapname);
405     }
406 greg 2.26 matdate = checklast(vval(MATERIAL));
407 greg 2.1 }
408    
409    
410 schorsch 2.76 static void
411     getoctcube( /* get octree bounding cube */
412     double org[3],
413     double *sizp
414     )
415 greg 2.1 {
416 greg 2.2 static double oorg[3], osiz = 0.;
417 greg 2.26 double min[3], max[3];
418 greg 2.46 char buf[1024];
419 greg 2.1 FILE *fp;
420 greg 2.109 int i;
421 greg 2.1
422 schorsch 2.70 if (osiz <= FTINY) {
423 greg 2.66 if (!nprocs && fdate(oct1name) <
424 greg 2.26 (scenedate>illumdate?scenedate:illumdate)) {
425     /* run getbbox */
426     sprintf(buf, "getbbox -w -h %s",
427     vdef(SCENE) ? vval(SCENE) : vval(ILLUM));
428     if ((fp = popen(buf, "r")) == NULL)
429     syserr("getbbox");
430     if (fscanf(fp, "%lf %lf %lf %lf %lf %lf",
431     &min[0], &max[0], &min[1], &max[1],
432     &min[2], &max[2]) != 6) {
433     fprintf(stderr,
434     "%s: error reading bounding box from getbbox\n",
435     progname);
436 greg 2.53 quit(1);
437 greg 2.26 }
438     for (i = 0; i < 3; i++)
439     if (max[i] - min[i] > osiz)
440     osiz = max[i] - min[i];
441     for (i = 0; i < 3; i++)
442     oorg[i] = (max[i]+min[i]-osiz)*.5;
443     pclose(fp);
444     } else { /* from octree */
445     oconv(); /* does nothing if done already */
446     sprintf(buf, "getinfo -d < %s", oct1name);
447     if ((fp = popen(buf, "r")) == NULL)
448     syserr("getinfo");
449     if (fscanf(fp, "%lf %lf %lf %lf", &oorg[0], &oorg[1],
450     &oorg[2], &osiz) != 4) {
451     fprintf(stderr,
452 greg 2.2 "%s: error reading bounding cube from getinfo\n",
453 greg 2.26 progname);
454 greg 2.53 quit(1);
455 greg 2.26 }
456     pclose(fp);
457 greg 2.2 }
458 schorsch 2.70 }
459 greg 2.2 org[0] = oorg[0]; org[1] = oorg[1]; org[2] = oorg[2]; *sizp = osiz;
460     }
461    
462    
463 schorsch 2.76 static void
464     setdefaults(void) /* set default values for unassigned var's */
465 greg 2.2 {
466 gwlarson 2.58 double org[3], lim[3], size;
467 greg 2.2 char buf[128];
468    
469 greg 2.1 if (!vdef(ZONE)) {
470 greg 2.2 getoctcube(org, &size);
471     sprintf(buf, "E %g %g %g %g %g %g", org[0], org[0]+size,
472     org[1], org[1]+size, org[2], org[2]+size);
473 greg 2.1 vval(ZONE) = savqstr(buf);
474     vdef(ZONE)++;
475 gwlarson 2.58 }
476     if (!vdef(EYESEP)) {
477     if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf",
478     &org[0], &lim[0], &org[1], &lim[1],
479     &org[2], &lim[2]) != 6)
480     badvalue(ZONE);
481     sprintf(buf, "%f",
482     0.01*(lim[0]-org[0]+lim[1]-org[1]+lim[2]-org[2]));
483     vval(EYESEP) = savqstr(buf);
484     vdef(EYESEP)++;
485 greg 2.1 }
486     if (!vdef(INDIRECT)) {
487     vval(INDIRECT) = "0";
488     vdef(INDIRECT)++;
489     }
490     if (!vdef(QUALITY)) {
491     vval(QUALITY) = "L";
492     vdef(QUALITY)++;
493     }
494     if (!vdef(RESOLUTION)) {
495     vval(RESOLUTION) = "512";
496     vdef(RESOLUTION)++;
497     }
498     if (!vdef(PICTURE)) {
499     vval(PICTURE) = radname;
500     vdef(PICTURE)++;
501     }
502 gregl 2.55 if (!vdef(VIEWS)) {
503     vval(VIEWS) = "X";
504     vdef(VIEWS)++;
505 greg 2.1 }
506     if (!vdef(DETAIL)) {
507     vval(DETAIL) = "M";
508     vdef(DETAIL)++;
509     }
510     if (!vdef(PENUMBRAS)) {
511     vval(PENUMBRAS) = "F";
512     vdef(PENUMBRAS)++;
513     }
514     if (!vdef(VARIABILITY)) {
515     vval(VARIABILITY) = "L";
516     vdef(VARIABILITY)++;
517     }
518     }
519    
520    
521 schorsch 2.76 static void
522     oconv(void) /* run oconv and mkillum if necessary */
523 greg 2.1 {
524 greg 2.26 static char illumtmp[] = "ilXXXXXX";
525 greg 2.78 char combuf[PATH_MAX], ocopts[64], mkopts[1024];
526 greg 2.1
527 greg 2.26 oconvopts(ocopts); /* get options */
528     if (octreedate < scenedate) { /* check date on original octree */
529 greg 2.41 if (touchonly && octreedate)
530     touch(vval(OCTREE));
531     else { /* build command */
532     if (vdef(MATERIAL))
533 greg 2.91 sprintf(combuf, "%s%s %s %s > %s", c_oconv,
534     ocopts, vval(MATERIAL),
535     vval(SCENE), vval(OCTREE));
536 greg 2.41 else
537 greg 2.91 sprintf(combuf, "%s%s %s > %s", c_oconv, ocopts,
538 greg 2.41 vval(SCENE), vval(OCTREE));
539    
540     if (runcom(combuf)) { /* run it */
541     fprintf(stderr,
542 greg 2.26 "%s: error generating octree\n\t%s removed\n",
543 greg 2.41 progname, vval(OCTREE));
544     unlink(vval(OCTREE));
545 greg 2.53 quit(1);
546 greg 2.41 }
547 greg 2.26 }
548 greg 2.35 octreedate = time((time_t *)NULL);
549 greg 2.40 if (octreedate < scenedate) /* in case clock is off */
550     octreedate = scenedate;
551 greg 2.26 }
552     if (oct1name == vval(OCTREE)) /* no mkillum? */
553     oct1date = octreedate > matdate ? octreedate : matdate;
554 schorsch 2.71 if ((oct1date >= octreedate) & (oct1date >= matdate)
555     & (oct1date >= illumdate)) /* all done */
556 greg 2.1 return;
557 greg 2.26 /* make octree0 */
558 schorsch 2.71 if ((oct0date < scenedate) | (oct0date < illumdate)) {
559 greg 2.126 if (touchonly && (oct0date || oct1date)) {
560     if (oct0date)
561     touch(oct0name);
562     } else { /* build command */
563 greg 2.41 if (octreedate)
564 greg 2.91 sprintf(combuf, "%s%s -i %s %s > %s", c_oconv,
565     ocopts, vval(OCTREE),
566     vval(ILLUM), oct0name);
567 greg 2.41 else if (vdef(MATERIAL))
568 greg 2.91 sprintf(combuf, "%s%s %s %s > %s", c_oconv,
569     ocopts, vval(MATERIAL),
570     vval(ILLUM), oct0name);
571 greg 2.41 else
572 greg 2.91 sprintf(combuf, "%s%s %s > %s", c_oconv,
573     ocopts, vval(ILLUM), oct0name);
574 greg 2.41 if (runcom(combuf)) { /* run it */
575     fprintf(stderr,
576     "%s: error generating octree\n\t%s removed\n",
577     progname, oct0name);
578     unlink(oct0name);
579 greg 2.53 quit(1);
580 greg 2.41 }
581     }
582     oct0date = time((time_t *)NULL);
583     if (oct0date < octreedate) /* in case clock is off */
584     oct0date = octreedate;
585     if (oct0date < illumdate) /* ditto */
586     oct0date = illumdate;
587 greg 2.126 }
588 greg 2.41 if (touchonly && oct1date)
589     touch(oct1name);
590     else {
591     mkillumopts(mkopts); /* build mkillum command */
592     mktemp(illumtmp);
593 greg 2.91 sprintf(combuf, "%s%s %s \"<\" %s > %s", c_mkillum, mkopts,
594 greg 2.41 oct0name, vval(ILLUM), illumtmp);
595     if (runcom(combuf)) { /* run it */
596 greg 2.91 fprintf(stderr, "%s: error running %s\n",
597     progname, c_mkillum);
598 greg 2.41 unlink(illumtmp);
599 greg 2.53 quit(1);
600 greg 2.41 }
601 greg 2.108 rmfile(oct0name);
602 greg 2.41 /* make octree1 (frozen) */
603 greg 2.26 if (octreedate)
604 greg 2.91 sprintf(combuf, "%s%s -f -i %s %s > %s", c_oconv,
605     ocopts, vval(OCTREE), illumtmp, oct1name);
606 greg 2.26 else if (vdef(MATERIAL))
607 greg 2.91 sprintf(combuf, "%s%s -f %s %s > %s", c_oconv,
608     ocopts, vval(MATERIAL), illumtmp, oct1name);
609 greg 2.26 else
610 greg 2.91 sprintf(combuf, "%s%s -f %s > %s", c_oconv, ocopts,
611 greg 2.41 illumtmp, oct1name);
612 greg 2.26 if (runcom(combuf)) { /* run it */
613     fprintf(stderr,
614     "%s: error generating octree\n\t%s removed\n",
615 greg 2.41 progname, oct1name);
616     unlink(oct1name);
617 greg 2.46 unlink(illumtmp);
618 greg 2.53 quit(1);
619 greg 2.26 }
620 greg 2.41 rmfile(illumtmp);
621 greg 2.26 }
622 greg 2.35 oct1date = time((time_t *)NULL);
623 greg 2.40 if (oct1date < oct0date) /* in case clock is off */
624     oct1date = oct0date;
625 greg 2.1 }
626    
627    
628 greg 2.112 static void
629     mkpmap(void) /* run mkpmap if indicated */
630     {
631     char combuf[2048], *cp;
632     time_t tnow;
633     /* nothing to do? */
634     if ((pgmapname == NULL) | (pgmapdate >= oct1date) &&
635     (pcmapname == NULL) | (pcmapdate >= oct1date))
636     return;
637     /* just update existing file dates? */
638     if (touchonly && (pgmapname == NULL) | (pgmapdate > 0) &&
639     (pcmapname == NULL) | (pcmapdate > 0)) {
640     if (pgmapname != NULL)
641     touch(pgmapname);
642     if (pcmapname != NULL)
643     touch(pcmapname);
644     } else { /* else need to (re)run pkpmap */
645     strcpy(combuf, c_mkpmap);
646     for (cp = combuf; *cp; cp++)
647     ;
648     mkpmapopts(cp);
649 greg 2.118 /* force file overwrite */
650     cp = addarg(cp, "-fo+");
651 greg 2.112 if (vdef(REPORT)) {
652     char errfile[256];
653     int n;
654     double minutes;
655     n = sscanf(vval(REPORT), "%lf %s", &minutes, errfile);
656     if (n == 2)
657     sprintf(cp, " -t %d -e %s", (int)(minutes*60), errfile);
658     else if (n == 1)
659     sprintf(cp, " -t %d", (int)(minutes*60));
660     else
661     badvalue(REPORT);
662     }
663 greg 2.113 if (pgmapname != NULL && pgmapdate < oct1date) {
664 greg 2.112 cp = addarg(cp, "-apg");
665     addarg(cp, vval(PGMAP));
666     cp = sskip(sskip(cp)); /* remove any bandwidth */
667     *cp = '\0';
668     }
669 greg 2.113 if (pcmapname != NULL && pcmapdate < oct1date) {
670 greg 2.112 cp = addarg(cp, "-apc");
671     addarg(cp, vval(PCMAP));
672     cp = sskip(sskip(cp)); /* remove any bandwidth */
673     *cp = '\0';
674     }
675     cp = addarg(cp, oct1name);
676     if (runcom(combuf)) {
677     fprintf(stderr, "%s: error running %s\n",
678     progname, c_mkpmap);
679 greg 2.115 if (pgmapname != NULL && pgmapdate < oct1date)
680 greg 2.112 unlink(pgmapname);
681 greg 2.115 if (pcmapname != NULL && pcmapdate < oct1date)
682 greg 2.112 unlink(pcmapname);
683     quit(1);
684     }
685     }
686     tnow = time((time_t *)NULL);
687     if (pgmapname != NULL)
688     pgmapdate = tnow;
689     if (pcmapname != NULL)
690     pcmapdate = tnow;
691     oct1date = tnow; /* trigger ambient file removal if needed */
692     }
693    
694    
695 schorsch 2.76 static char *
696 greg 2.91 addarg( /* append argument and advance pointer */
697 greg 2.109 char *op,
698     char *arg
699 schorsch 2.76 )
700 greg 2.1 {
701 greg 2.91 while (*op)
702     op++;
703 greg 2.1 *op = ' ';
704 schorsch 2.71 while ( (*++op = *arg++) )
705 greg 2.1 ;
706     return(op);
707     }
708    
709    
710 schorsch 2.76 static void
711     oconvopts( /* get oconv options */
712 greg 2.109 char *oo
713 schorsch 2.76 )
714 greg 2.1 {
715 greg 2.2 /* BEWARE: This may be called via setdefaults(), so no assumptions */
716    
717 greg 2.1 *oo = '\0';
718 greg 2.112 if (!vdef(OCONV))
719     return;
720     if (vval(OCONV)[0] != '-') {
721     atos(c_oconv, sizeof(c_oconv), vval(OCONV));
722     oo = addarg(oo, sskip2(vval(OCONV), 1));
723     } else
724     oo = addarg(oo, vval(OCONV));
725 greg 2.1 }
726    
727    
728 schorsch 2.76 static void
729     mkillumopts( /* get mkillum options */
730 greg 2.78 char *mo
731 schorsch 2.76 )
732 greg 2.26 {
733     /* BEWARE: This may be called via setdefaults(), so no assumptions */
734    
735 greg 2.91 if (nprocs > 1)
736 greg 2.78 sprintf(mo, " -n %d", nprocs);
737 greg 2.91 else
738 greg 2.78 *mo = '\0';
739 greg 2.112 if (!vdef(MKILLUM))
740     return;
741     if (vval(MKILLUM)[0] != '-') {
742     atos(c_mkillum, sizeof(c_mkillum), vval(MKILLUM));
743     mo = addarg(mo, sskip2(vval(MKILLUM), 1));
744     } else
745     mo = addarg(mo, vval(MKILLUM));
746     }
747    
748    
749     static void
750     mkpmapopts( /* get mkpmap options */
751     char *mo
752     )
753     {
754     /* BEWARE: This may be called via setdefaults(), so no assumptions */
755    
756 greg 2.125 if (nprocs > 1)
757     sprintf(mo, " -n %d", nprocs);
758     else
759     *mo = '\0';
760 greg 2.112 if (!vdef(MKPMAP))
761     return;
762     if (vval(MKPMAP)[0] != '-') {
763     atos(c_mkpmap, sizeof(c_mkpmap), vval(MKPMAP));
764     mo = addarg(mo, sskip2(vval(MKPMAP), 1));
765     } else
766     mo = addarg(mo, vval(MKPMAP));
767 greg 2.26 }
768    
769    
770 schorsch 2.76 static void
771     checkambfile(void) /* check date on ambient file */
772 greg 2.7 {
773 greg 2.35 time_t afdate;
774 greg 2.7
775 greg 2.11 if (!vdef(AMBFILE))
776     return;
777 greg 2.26 if (!(afdate = fdate(vval(AMBFILE))))
778 greg 2.11 return;
779 schorsch 2.70 if (oct1date > afdate) {
780 greg 2.41 if (touchonly)
781     touch(vval(AMBFILE));
782     else
783     rmfile(vval(AMBFILE));
784 schorsch 2.70 }
785 greg 2.7 }
786    
787    
788 schorsch 2.76 static double
789     ambval(void) /* compute ambient value */
790 greg 2.1 {
791 greg 2.3 if (vdef(EXPOSURE)) {
792 greg 2.2 if (vval(EXPOSURE)[0] == '+' || vval(EXPOSURE)[0] == '-')
793 greg 2.50 return(.5/pow(2.,vflt(EXPOSURE)));
794     return(.5/vflt(EXPOSURE));
795 greg 2.3 }
796 greg 2.2 if (vlet(ZONE) == 'E')
797     return(10.);
798 greg 2.3 if (vlet(ZONE) == 'I')
799 greg 2.2 return(.01);
800 greg 2.3 badvalue(ZONE);
801 schorsch 2.76 return 0; /* pro forma return */
802 greg 2.30 }
803    
804    
805 schorsch 2.76 static void
806     renderopts( /* set rendering options */
807     char *op,
808     char *po
809     )
810 greg 2.30 {
811 greg 2.112 char pmapf[256], *bw;
812    
813 greg 2.121 if (vdef(PGMAP)) {
814 greg 2.122 *op = '\0';
815 greg 2.121 bw = sskip2(vval(PGMAP), 2);
816     atos(pmapf, sizeof(pmapf), vval(PGMAP));
817     op = addarg(addarg(op, "-ap"), pmapf);
818     if (atoi(bw) > 0) op = addarg(op, bw);
819     }
820 greg 2.30 switch(vscale(QUALITY)) {
821     case LOW:
822 greg 2.38 lowqopts(op, po);
823 greg 2.30 break;
824     case MEDIUM:
825 greg 2.38 medqopts(op, po);
826 greg 2.30 break;
827     case HIGH:
828 greg 2.38 hiqopts(op, po);
829 greg 2.30 break;
830     }
831 greg 2.112 if (vdef(PCMAP)) {
832     bw = sskip2(vval(PCMAP), 2);
833     atos(pmapf, sizeof(pmapf), vval(PCMAP));
834     op = addarg(addarg(op, "-ap"), pmapf);
835     if (atoi(bw) > 0) op = addarg(op, bw);
836     }
837 greg 2.127 if (vdef(RENDER)) {
838 greg 2.91 op = addarg(op, vval(RENDER));
839 greg 2.127 bw = strstr(vval(RENDER), "-aa ");
840     if (bw != NULL && atof(bw+4) <= FTINY)
841     overture = 0;
842     }
843 greg 2.91 if (rvdevice != NULL) {
844 greg 2.120 if (vdef(RVU)) {
845 greg 2.91 if (vval(RVU)[0] != '-') {
846     atos(c_rvu, sizeof(c_rvu), vval(RVU));
847     po = addarg(po, sskip2(vval(RVU), 1));
848     } else
849     po = addarg(po, vval(RVU));
850 greg 2.120 }
851 greg 2.91 } else {
852 greg 2.120 if (vdef(RPICT)) {
853 greg 2.91 if (vval(RPICT)[0] != '-') {
854     atos(c_rpict, sizeof(c_rpict), vval(RPICT));
855     po = addarg(po, sskip2(vval(RPICT), 1));
856     } else
857     po = addarg(po, vval(RPICT));
858 greg 2.120 }
859 greg 2.91 }
860 greg 2.2 }
861 greg 2.1
862 greg 2.2
863 schorsch 2.76 static void
864     lowqopts( /* low quality rendering options */
865 greg 2.109 char *op,
866 schorsch 2.76 char *po
867     )
868 greg 2.2 {
869     double d, org[3], siz[3];
870    
871 greg 2.1 *op = '\0';
872 greg 2.38 *po = '\0';
873 greg 2.2 if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf", &org[0],
874 greg 2.3 &siz[0], &org[1], &siz[1], &org[2], &siz[2]) != 6)
875     badvalue(ZONE);
876 greg 2.2 siz[0] -= org[0]; siz[1] -= org[1]; siz[2] -= org[2];
877 schorsch 2.71 if ((siz[0] <= FTINY) | (siz[1] <= FTINY) | (siz[2] <= FTINY))
878 greg 2.39 badvalue(ZONE);
879 greg 2.2 getoctcube(org, &d);
880     d *= 3./(siz[0]+siz[1]+siz[2]);
881     switch (vscale(DETAIL)) {
882     case LOW:
883 greg 2.38 po = addarg(po, "-ps 16");
884     op = addarg(op, "-dp 64");
885 greg 2.72 sprintf(op, " -ar %d", (int)(8*d));
886 greg 2.2 op += strlen(op);
887     break;
888     case MEDIUM:
889 greg 2.38 po = addarg(po, "-ps 8");
890     op = addarg(op, "-dp 128");
891 greg 2.72 sprintf(op, " -ar %d", (int)(16*d));
892 greg 2.2 op += strlen(op);
893     break;
894     case HIGH:
895 greg 2.38 po = addarg(po, "-ps 4");
896     op = addarg(op, "-dp 256");
897 greg 2.72 sprintf(op, " -ar %d", (int)(32*d));
898 greg 2.2 op += strlen(op);
899     break;
900     }
901 greg 2.38 po = addarg(po, "-pt .16");
902 greg 2.2 if (vbool(PENUMBRAS))
903     op = addarg(op, "-ds .4");
904 greg 2.4 else
905     op = addarg(op, "-ds 0");
906 greg 2.99 op = addarg(op, "-dt .2 -dc .25 -dr 0 -ss 0 -st .5");
907 greg 2.2 if (vdef(AMBFILE)) {
908     sprintf(op, " -af %s", vval(AMBFILE));
909     op += strlen(op);
910     } else
911     overture = 0;
912     switch (vscale(VARIABILITY)) {
913     case LOW:
914 greg 2.72 op = addarg(op, "-aa .3 -ad 256");
915 greg 2.2 break;
916     case MEDIUM:
917 greg 2.72 op = addarg(op, "-aa .25 -ad 512");
918 greg 2.2 break;
919     case HIGH:
920 greg 2.72 op = addarg(op, "-aa .2 -ad 1024");
921 greg 2.2 break;
922     }
923     op = addarg(op, "-as 0");
924     d = ambval();
925     sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
926     op += strlen(op);
927 greg 2.105 op = addarg(op, "-lr 6 -lw .003");
928 greg 2.1 }
929    
930    
931 schorsch 2.76 static void
932     medqopts( /* medium quality rendering options */
933 greg 2.109 char *op,
934 schorsch 2.76 char *po
935     )
936 greg 2.1 {
937 greg 2.47 double d, org[3], siz[3], asz;
938 greg 2.1
939     *op = '\0';
940 greg 2.38 *po = '\0';
941 greg 2.2 if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf", &org[0],
942 greg 2.3 &siz[0], &org[1], &siz[1], &org[2], &siz[2]) != 6)
943     badvalue(ZONE);
944 greg 2.2 siz[0] -= org[0]; siz[1] -= org[1]; siz[2] -= org[2];
945 schorsch 2.71 if ((siz[0] <= FTINY) | (siz[1] <= FTINY) | (siz[2] <= FTINY))
946 greg 2.39 badvalue(ZONE);
947 greg 2.2 getoctcube(org, &d);
948 greg 2.47 asz = (siz[0]+siz[1]+siz[2])/3.;
949     d /= asz;
950 greg 2.2 switch (vscale(DETAIL)) {
951     case LOW:
952 greg 2.38 po = addarg(po, vbool(PENUMBRAS) ? "-ps 4" : "-ps 8");
953 greg 2.23 op = addarg(op, "-dp 256");
954 greg 2.72 sprintf(op, " -ar %d", (int)(16*d));
955 greg 2.2 op += strlen(op);
956 greg 2.47 sprintf(op, " -ms %.2g", asz/20.);
957     op += strlen(op);
958 greg 2.2 break;
959     case MEDIUM:
960 greg 2.38 po = addarg(po, vbool(PENUMBRAS) ? "-ps 3" : "-ps 6");
961 greg 2.23 op = addarg(op, "-dp 512");
962 greg 2.72 sprintf(op, " -ar %d", (int)(32*d));
963 greg 2.2 op += strlen(op);
964 greg 2.47 sprintf(op, " -ms %.2g", asz/40.);
965     op += strlen(op);
966 greg 2.2 break;
967     case HIGH:
968 greg 2.38 po = addarg(po, vbool(PENUMBRAS) ? "-ps 2" : "-ps 4");
969 greg 2.23 op = addarg(op, "-dp 1024");
970 greg 2.72 sprintf(op, " -ar %d", (int)(64*d));
971 greg 2.2 op += strlen(op);
972 greg 2.47 sprintf(op, " -ms %.2g", asz/80.);
973     op += strlen(op);
974 greg 2.2 break;
975     }
976 greg 2.38 po = addarg(po, "-pt .08");
977 greg 2.4 if (vbool(PENUMBRAS))
978 greg 2.89 op = addarg(op, "-ds .2 -dj .9");
979 greg 2.4 else
980 greg 2.2 op = addarg(op, "-ds .3");
981 greg 2.100 op = addarg(op, "-dt .1 -dc .5 -dr 1 -ss 1 -st .1");
982 schorsch 2.71 if ( (overture = vint(INDIRECT)) ) {
983 greg 2.5 sprintf(op, " -ab %d", overture);
984     op += strlen(op);
985     }
986 greg 2.2 if (vdef(AMBFILE)) {
987     sprintf(op, " -af %s", vval(AMBFILE));
988     op += strlen(op);
989     } else
990     overture = 0;
991     switch (vscale(VARIABILITY)) {
992     case LOW:
993 greg 2.72 op = addarg(op, "-aa .2 -ad 329 -as 42");
994 greg 2.2 break;
995     case MEDIUM:
996 greg 2.72 op = addarg(op, "-aa .15 -ad 800 -as 128");
997 greg 2.2 break;
998     case HIGH:
999 greg 2.72 op = addarg(op, "-aa .1 -ad 1536 -as 392");
1000 greg 2.2 break;
1001     }
1002     d = ambval();
1003     sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
1004     op += strlen(op);
1005 greg 2.105 op = addarg(op, "-lr 8 -lw 1e-4");
1006 greg 2.1 }
1007    
1008    
1009 schorsch 2.76 static void
1010     hiqopts( /* high quality rendering options */
1011 greg 2.109 char *op,
1012 schorsch 2.76 char *po
1013     )
1014 greg 2.1 {
1015 greg 2.47 double d, org[3], siz[3], asz;
1016 greg 2.1
1017     *op = '\0';
1018 greg 2.38 *po = '\0';
1019 greg 2.2 if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf", &org[0],
1020 greg 2.3 &siz[0], &org[1], &siz[1], &org[2], &siz[2]) != 6)
1021     badvalue(ZONE);
1022 greg 2.2 siz[0] -= org[0]; siz[1] -= org[1]; siz[2] -= org[2];
1023 schorsch 2.71 if ((siz[0] <= FTINY) | (siz[1] <= FTINY) | (siz[2] <= FTINY))
1024 greg 2.39 badvalue(ZONE);
1025 greg 2.2 getoctcube(org, &d);
1026 greg 2.47 asz = (siz[0]+siz[1]+siz[2])/3.;
1027     d /= asz;
1028 greg 2.2 switch (vscale(DETAIL)) {
1029     case LOW:
1030 greg 2.38 po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 8");
1031 greg 2.23 op = addarg(op, "-dp 1024");
1032 greg 2.72 sprintf(op, " -ar %d", (int)(32*d));
1033 greg 2.2 op += strlen(op);
1034 greg 2.47 sprintf(op, " -ms %.2g", asz/40.);
1035     op += strlen(op);
1036 greg 2.2 break;
1037     case MEDIUM:
1038 greg 2.38 po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 5");
1039 greg 2.23 op = addarg(op, "-dp 2048");
1040 greg 2.72 sprintf(op, " -ar %d", (int)(64*d));
1041 greg 2.2 op += strlen(op);
1042 greg 2.47 sprintf(op, " -ms %.2g", asz/80.);
1043     op += strlen(op);
1044 greg 2.2 break;
1045     case HIGH:
1046 greg 2.38 po = addarg(po, vbool(PENUMBRAS) ? "-ps 1" : "-ps 3");
1047 greg 2.23 op = addarg(op, "-dp 4096");
1048 greg 2.72 sprintf(op, " -ar %d", (int)(128*d));
1049 greg 2.47 op += strlen(op);
1050     sprintf(op, " -ms %.2g", asz/160.);
1051 greg 2.2 op += strlen(op);
1052     break;
1053     }
1054 greg 2.38 po = addarg(po, "-pt .04");
1055 greg 2.4 if (vbool(PENUMBRAS))
1056 greg 2.90 op = addarg(op, "-ds .1 -dj .9");
1057 greg 2.4 else
1058 greg 2.2 op = addarg(op, "-ds .2");
1059 greg 2.101 op = addarg(op, "-dt .05 -dc .75 -dr 3 -ss 16 -st .01");
1060 greg 2.2 sprintf(op, " -ab %d", overture=vint(INDIRECT)+1);
1061     op += strlen(op);
1062     if (vdef(AMBFILE)) {
1063     sprintf(op, " -af %s", vval(AMBFILE));
1064     op += strlen(op);
1065     } else
1066     overture = 0;
1067     switch (vscale(VARIABILITY)) {
1068     case LOW:
1069 greg 2.72 op = addarg(op, "-aa .125 -ad 512 -as 64");
1070 greg 2.2 break;
1071     case MEDIUM:
1072 greg 2.72 op = addarg(op, "-aa .1 -ad 1536 -as 768");
1073 greg 2.2 break;
1074     case HIGH:
1075 greg 2.72 op = addarg(op, "-aa .075 -ad 4096 -as 2048");
1076 greg 2.2 break;
1077     }
1078     d = ambval();
1079     sprintf(op, " -av %.2g %.2g %.2g", d, d, d);
1080     op += strlen(op);
1081 greg 2.105 op = addarg(op, "-lr 12 -lw 1e-5");
1082 greg 2.1 }
1083    
1084    
1085 schorsch 2.124 #if defined(_WIN32) || defined(_WIN64)
1086 greg 2.109 static void
1087     setenv( /* set an environment variable */
1088     char *vname,
1089     char *value
1090     )
1091     {
1092     char *evp;
1093    
1094     evp = bmalloc(strlen(vname)+strlen(value)+2);
1095     if (evp == NULL)
1096     syserr(progname);
1097     sprintf(evp, "%s=%s", vname, value);
1098     if (putenv(evp) != 0) {
1099     fprintf(stderr, "%s: out of environment space\n", progname);
1100     quit(1);
1101     }
1102     if (!silent)
1103     printf("set %s\n", evp);
1104     }
1105     #endif
1106    
1107    
1108 schorsch 2.76 static void
1109     xferopts( /* transfer options if indicated */
1110     char *ro
1111     )
1112 greg 2.1 {
1113     int fd, n;
1114 greg 2.109 char *cp;
1115 greg 2.1
1116     n = strlen(ro);
1117     if (n < 2)
1118     return;
1119     if (vdef(OPTFILE)) {
1120 greg 2.10 for (cp = ro; cp[1]; cp++)
1121 greg 2.49 if (isspace(cp[1]) && (cp[2] == '@' ||
1122     (cp[2] == '-' && isalpha(cp[3]))))
1123 greg 2.10 *cp = '\n';
1124     else
1125     *cp = cp[1];
1126     *cp = '\n';
1127     fd = open(vval(OPTFILE), O_WRONLY|O_CREAT|O_TRUNC, 0666);
1128     if (fd < 0 || write(fd, ro, n) != n || close(fd) < 0)
1129 greg 2.3 syserr(vval(OPTFILE));
1130 greg 2.15 sprintf(ro, " @%s", vval(OPTFILE));
1131 greg 2.1 }
1132 schorsch 2.124 #if defined(_WIN32) || defined(_WIN64)
1133 greg 2.1 else if (n > 50) {
1134 greg 2.8 setenv("ROPT", ro+1);
1135 greg 2.1 strcpy(ro, " $ROPT");
1136     }
1137     #endif
1138     }
1139    
1140    
1141 schorsch 2.76 static void
1142     pfiltopts( /* get pfilt options */
1143 greg 2.109 char *po
1144 schorsch 2.76 )
1145 greg 2.1 {
1146     *po = '\0';
1147     if (vdef(EXPOSURE)) {
1148     po = addarg(po, "-1 -e");
1149     po = addarg(po, vval(EXPOSURE));
1150     }
1151 greg 2.12 switch (vscale(QUALITY)) {
1152     case MEDIUM:
1153 greg 2.61 po = addarg(po, "-r .6");
1154 greg 2.12 break;
1155     case HIGH:
1156 greg 2.14 po = addarg(po, "-m .25");
1157 greg 2.12 break;
1158     }
1159 greg 2.120 if (vdef(PFILT)) {
1160 greg 2.91 if (vval(PFILT)[0] != '-') {
1161     atos(c_pfilt, sizeof(c_pfilt), vval(PFILT));
1162     po = addarg(po, sskip2(vval(PFILT), 1));
1163     } else
1164     po = addarg(po, vval(PFILT));
1165 greg 2.120 }
1166 greg 2.1 }
1167    
1168    
1169 schorsch 2.76 static int
1170     matchword( /* match white-delimited words */
1171 greg 2.109 char *s1,
1172     char *s2
1173 schorsch 2.76 )
1174 greg 2.1 {
1175     while (isspace(*s1)) s1++;
1176     while (isspace(*s2)) s2++;
1177     while (*s1 && !isspace(*s1))
1178     if (*s1++ != *s2++)
1179     return(0);
1180     return(!*s2 || isspace(*s2));
1181     }
1182    
1183    
1184 schorsch 2.76 static char *
1185     specview( /* get proper view spec from vs */
1186 greg 2.109 char *vs
1187 schorsch 2.76 )
1188 greg 2.1 {
1189 greg 2.3 static char vup[7][12] = {"-vu 0 0 -1","-vu 0 -1 0","-vu -1 0 0",
1190     "-vu 0 0 1", "-vu 1 0 0","-vu 0 1 0","-vu 0 0 1"};
1191 greg 2.1 static char viewopts[128];
1192 greg 2.109 char *cp;
1193 greg 2.3 int xpos, ypos, zpos, viewtype, upax;
1194 greg 2.109 int i;
1195 greg 2.1 double cent[3], dim[3], mult, d;
1196    
1197 greg 2.9 if (vs == NULL || *vs == '-')
1198 greg 2.1 return(vs);
1199 greg 2.3 upax = 0; /* get the up vector */
1200     if (vdef(UP)) {
1201     if (vval(UP)[0] == '-' || vval(UP)[0] == '+')
1202     upax = 1-'X'+UPPER(vval(UP)[1]);
1203     else
1204     upax = 1-'X'+vlet(UP);
1205 schorsch 2.71 if ((upax < 1) | (upax > 3))
1206 greg 2.3 badvalue(UP);
1207     if (vval(UP)[0] == '-')
1208     upax = -upax;
1209     }
1210 greg 2.1 /* check standard view names */
1211     xpos = ypos = zpos = 0;
1212     if (*vs == 'X') {
1213     xpos = 1; vs++;
1214     } else if (*vs == 'x') {
1215     xpos = -1; vs++;
1216     }
1217     if (*vs == 'Y') {
1218     ypos = 1; vs++;
1219     } else if (*vs == 'y') {
1220     ypos = -1; vs++;
1221     }
1222     if (*vs == 'Z') {
1223     zpos = 1; vs++;
1224     } else if (*vs == 'z') {
1225     zpos = -1; vs++;
1226     }
1227 greg 2.84 switch (*vs) {
1228     case VT_PER:
1229     case VT_PAR:
1230     case VT_ANG:
1231     case VT_HEM:
1232     case VT_PLS:
1233     case VT_CYL:
1234 greg 2.1 viewtype = *vs++;
1235 greg 2.84 break;
1236     default:
1237     viewtype = VT_PER;
1238     break;
1239     }
1240 greg 2.1 cp = viewopts;
1241 greg 2.3 if ((!*vs || isspace(*vs)) && (xpos|ypos|zpos)) { /* got one! */
1242 greg 2.1 *cp++ = '-'; *cp++ = 'v'; *cp++ = 't'; *cp++ = viewtype;
1243     if (sscanf(vval(ZONE), "%*s %lf %lf %lf %lf %lf %lf",
1244     &cent[0], &dim[0], &cent[1], &dim[1],
1245 greg 2.3 &cent[2], &dim[2]) != 6)
1246     badvalue(ZONE);
1247     for (i = 0; i < 3; i++) {
1248     dim[i] -= cent[i];
1249 greg 2.39 if (dim[i] <= FTINY)
1250     badvalue(ZONE);
1251 greg 2.3 cent[i] += .5*dim[i];
1252 greg 2.1 }
1253 greg 2.3 mult = vlet(ZONE)=='E' ? 2. : .45 ;
1254 greg 2.110 sprintf(cp, " -vp %.3g %.3g %.3g -vd %.3g %.3g %.3g",
1255 greg 2.1 cent[0]+xpos*mult*dim[0],
1256     cent[1]+ypos*mult*dim[1],
1257     cent[2]+zpos*mult*dim[2],
1258     -xpos*dim[0], -ypos*dim[1], -zpos*dim[2]);
1259     cp += strlen(cp);
1260 greg 2.3 /* redirect up axis if necessary */
1261     switch (upax) {
1262     case 3: /* plus or minus Z axis */
1263     case -3:
1264     case 0:
1265     if (!(xpos|ypos))
1266     upax = 2;
1267 greg 2.1 break;
1268 greg 2.3 case 2: /* plus or minus Y axis */
1269     case -2:
1270     if (!(xpos|zpos))
1271     upax = 1;
1272     break;
1273     case 1: /* plus or minus X axis */
1274     case -1:
1275     if (!(ypos|zpos))
1276     upax = 3;
1277     break;
1278 greg 2.1 }
1279 greg 2.3 cp = addarg(cp, vup[upax+3]);
1280 greg 2.1 switch (viewtype) {
1281 greg 2.84 case VT_PER:
1282 greg 2.1 cp = addarg(cp, "-vh 45 -vv 45");
1283     break;
1284 greg 2.84 case VT_PAR:
1285 greg 2.1 d = sqrt(dim[0]*dim[0]+dim[1]*dim[1]+dim[2]*dim[2]);
1286 greg 2.110 sprintf(cp, " -vh %.3g -vv %.3g", d, d);
1287 greg 2.1 cp += strlen(cp);
1288     break;
1289 greg 2.84 case VT_ANG:
1290     case VT_HEM:
1291     case VT_PLS:
1292 greg 2.1 cp = addarg(cp, "-vh 180 -vv 180");
1293 greg 2.44 break;
1294 greg 2.84 case VT_CYL:
1295 greg 2.44 cp = addarg(cp, "-vh 180 -vv 90");
1296 greg 2.1 break;
1297     }
1298 greg 2.3 } else {
1299 greg 2.4 while (!isspace(*vs)) /* else skip id */
1300     if (!*vs++)
1301     return(NULL);
1302 greg 2.92 if (upax) { /* prepend up vector */
1303 greg 2.3 strcpy(cp, vup[upax+3]);
1304     cp += strlen(cp);
1305     }
1306     }
1307 greg 2.26 if (cp == viewopts) /* append any additional options */
1308     vs++; /* skip prefixed space if unneeded */
1309     strcpy(cp, vs);
1310 schorsch 2.124 #if defined(_WIN32) || defined(_WIN64)
1311 greg 2.8 if (strlen(viewopts) > 40) {
1312     setenv("VIEW", viewopts);
1313     return("$VIEW");
1314     }
1315     #endif
1316 greg 2.1 return(viewopts);
1317     }
1318    
1319    
1320 schorsch 2.76 static char *
1321     getview( /* get view n, or NULL if none */
1322     int n,
1323     char *vn /* returned view name */
1324     )
1325 greg 2.1 {
1326 greg 2.109 char *mv;
1327 greg 2.1
1328 greg 2.8 if (viewselect != NULL) { /* command-line selected */
1329 greg 2.1 if (n) /* only do one */
1330     return(NULL);
1331 greg 2.92
1332     if (isint(viewselect)) { /* view number? */
1333     n = atoi(viewselect)-1;
1334     goto numview;
1335     }
1336 greg 2.1 if (viewselect[0] == '-') { /* already specified */
1337 greg 2.93 if (vn != NULL)
1338     strcpy(vn, "0");
1339 greg 2.1 return(viewselect);
1340     }
1341     if (vn != NULL) {
1342     for (mv = viewselect; *mv && !isspace(*mv);
1343     *vn++ = *mv++)
1344     ;
1345     *vn = '\0';
1346     }
1347     /* check list */
1348 gregl 2.55 while ((mv = nvalue(VIEWS, n++)) != NULL)
1349 greg 2.1 if (matchword(viewselect, mv))
1350     return(specview(mv));
1351 greg 2.92
1352 greg 2.1 return(specview(viewselect)); /* standard view? */
1353     }
1354 greg 2.92 numview:
1355 gregl 2.55 mv = nvalue(VIEWS, n); /* use view n */
1356 greg 2.123 if ((vn != NULL) & (mv != NULL)) {
1357 greg 2.92 if (*mv != '-') {
1358 greg 2.109 char *mv2 = mv;
1359 greg 2.19 while (*mv2 && !isspace(*mv2))
1360     *vn++ = *mv2++;
1361 greg 2.92 *vn = '\0';
1362     } else
1363     sprintf(vn, "%d", n+1);
1364 greg 2.123 }
1365 greg 2.8 return(specview(mv));
1366 greg 2.20 }
1367    
1368    
1369 schorsch 2.76 static int
1370     myprintview( /* print out selected view */
1371 greg 2.109 char *vopts,
1372 schorsch 2.76 FILE *fp
1373     )
1374 greg 2.20 {
1375 gregl 2.55 VIEW vwr;
1376     char buf[128];
1377 greg 2.109 char *cp;
1378 schorsch 2.124 #if defined(_WIN32) || defined(_WIN64)
1379 schorsch 2.80 /* XXX Should we allow something like this for all platforms? */
1380     /* XXX Or is it still required at all? */
1381     again:
1382     #endif
1383 greg 2.20 if (vopts == NULL)
1384     return(-1);
1385 schorsch 2.124 #if defined(_WIN32) || defined(_WIN64)
1386 gregl 2.55 if (vopts[0] == '$') {
1387     vopts = getenv(vopts+1);
1388     goto again;
1389     }
1390 greg 2.24 #endif
1391 schorsch 2.70 vwr = stdview;
1392 gwlarson 2.59 sscanview(&vwr, cp=vopts); /* set initial options */
1393 gregl 2.55 while ((cp = strstr(cp, "-vf ")) != NULL &&
1394 gwlarson 2.59 *atos(buf, sizeof(buf), cp += 4)) {
1395     viewfile(buf, &vwr, NULL); /* load -vf file */
1396     sscanview(&vwr, cp); /* reset tail */
1397     }
1398 greg 2.67 fputs(VIEWSTR, fp);
1399     fprintview(&vwr, fp); /* print full spec. */
1400     fputc('\n', fp);
1401 greg 2.20 return(0);
1402 greg 2.1 }
1403    
1404    
1405 schorsch 2.76 static void
1406     rvu( /* run rvu with first view */
1407     char *opts,
1408     char *po
1409     )
1410 greg 2.1 {
1411 greg 2.21 char *vw;
1412 schorsch 2.65 char combuf[PATH_MAX];
1413 greg 2.1 /* build command */
1414 greg 2.41 if (touchonly || (vw = getview(0, NULL)) == NULL)
1415 greg 2.21 return;
1416     if (sayview)
1417 greg 2.67 myprintview(vw, stdout);
1418 greg 2.91 sprintf(combuf, "%s %s%s%s -R %s ", c_rvu, vw, opts, po, rifname);
1419 greg 2.86 if (nprocs > 1)
1420     sprintf(combuf+strlen(combuf), "-n %d ", nprocs);
1421 greg 2.1 if (rvdevice != NULL)
1422     sprintf(combuf+strlen(combuf), "-o %s ", rvdevice);
1423 greg 2.29 if (vdef(EXPOSURE))
1424     sprintf(combuf+strlen(combuf), "-pe %s ", vval(EXPOSURE));
1425 greg 2.26 strcat(combuf, oct1name);
1426 greg 2.4 if (runcom(combuf)) { /* run it */
1427 greg 2.91 fprintf(stderr, "%s: error running %s\n", progname, c_rvu);
1428 greg 2.53 quit(1);
1429 greg 2.1 }
1430     }
1431    
1432    
1433 greg 2.106 static int
1434     syncf_done( /* check if an rpiece sync file is complete */
1435     char *sfname
1436     )
1437     {
1438     FILE *fp = fopen(sfname, "r");
1439     int todo = 1;
1440     int x, y;
1441    
1442     if (fp == NULL)
1443     return(0);
1444     if (fscanf(fp, "%d %d", &x, &y) != 2)
1445     goto checked;
1446     todo = x*y; /* total number of tiles */
1447     if (fscanf(fp, "%d %d", &x, &y) != 2 || (x != 0) | (y != 0))
1448     goto checked;
1449     /* XXX assume no redundant tiles */
1450     while (fscanf(fp, "%d %d", &x, &y) == 2)
1451     if (!--todo)
1452     break;
1453     checked:
1454     fclose(fp);
1455     return(!todo);
1456     }
1457    
1458    
1459 schorsch 2.76 static void
1460     rpict( /* run rpict and pfilt for each view */
1461     char *opts,
1462     char *po
1463     )
1464 greg 2.1 {
1465 greg 2.93 #define do_rpiece (sfile[0]!='\0')
1466 greg 2.102 char combuf[5*PATH_MAX+512];
1467 schorsch 2.65 char rawfile[PATH_MAX], picfile[PATH_MAX];
1468     char zopt[PATH_MAX+4], rep[PATH_MAX+16], res[32];
1469 greg 2.102 char rppopt[32], sfile[PATH_MAX], *pfile = NULL;
1470 greg 2.3 char pfopts[128];
1471 greg 2.1 char vs[32], *vw;
1472     int vn, mult;
1473 greg 2.67 FILE *fp;
1474 greg 2.41 time_t rfdt, pfdt;
1475 greg 2.104 int xres, yres;
1476     double aspect;
1477     int n;
1478 greg 2.1 /* get pfilt options */
1479     pfiltopts(pfopts);
1480     /* get resolution, reporting */
1481 greg 2.31 switch (vscale(QUALITY)) {
1482     case LOW:
1483     mult = 1;
1484     break;
1485     case MEDIUM:
1486     mult = 2;
1487     break;
1488     case HIGH:
1489     mult = 3;
1490     break;
1491     }
1492 greg 2.104 n = sscanf(vval(RESOLUTION), "%d %d %lf", &xres, &yres, &aspect);
1493     if (n == 3)
1494     sprintf(res, "-x %d -y %d -pa %.3f",
1495     mult*xres, mult*yres, aspect);
1496     else if (n) {
1497     aspect = 1.;
1498     if (n == 1) yres = xres;
1499     sprintf(res, "-x %d -y %d", mult*xres, mult*yres);
1500     } else
1501     badvalue(RESOLUTION);
1502 greg 2.1 rep[0] = '\0';
1503     if (vdef(REPORT)) {
1504     double minutes;
1505     n = sscanf(vval(REPORT), "%lf %s", &minutes, rawfile);
1506     if (n == 2)
1507     sprintf(rep, " -t %d -e %s", (int)(minutes*60), rawfile);
1508     else if (n == 1)
1509     sprintf(rep, " -t %d", (int)(minutes*60));
1510 greg 2.3 else
1511     badvalue(REPORT);
1512 greg 2.1 }
1513 greg 2.67 /* set up parallel rendering */
1514 greg 2.93 sfile[0] = '\0';
1515     if ((nprocs > 1) & !touchonly & !vdef(ZFILE) &&
1516     getview(0, vs) != NULL) {
1517     if (!strcmp(c_rpict, DEF_RPICT_PATH) &&
1518     getview(1, NULL) == NULL) {
1519 greg 2.102 sprintf(sfile, "%s_%s_rpsync.txt",
1520     vdef(RAWFILE) ? vval(RAWFILE) : vval(PICTURE),
1521     vs);
1522 greg 2.93 strcpy(rppopt, "-PP pfXXXXXX");
1523     } else {
1524     strcpy(rppopt, "-S 1 -PP pfXXXXXX");
1525     }
1526     pfile = rppopt + strlen(rppopt) - 8;
1527 greg 2.94 if (mktemp(pfile) == NULL) {
1528 greg 2.93 if (do_rpiece) {
1529     fprintf(stderr, "%s: cannot create\n", pfile);
1530     quit(1);
1531 greg 2.94 }
1532 greg 2.123 pfile[-5] = '\0';
1533 greg 2.94 pfile = NULL;
1534     }
1535 greg 2.67 }
1536 greg 2.66 vn = 0; /* do each view */
1537 greg 2.1 while ((vw = getview(vn++, vs)) != NULL) {
1538 greg 2.21 if (sayview)
1539 greg 2.67 myprintview(vw, stdout);
1540 greg 2.87 sprintf(picfile, "%s_%s.hdr", vval(PICTURE), vs);
1541 greg 2.45 if (vdef(ZFILE))
1542     sprintf(zopt, " -z %s_%s.zbf", vval(ZFILE), vs);
1543     else
1544     zopt[0] = '\0';
1545 greg 2.1 /* check date on picture */
1546 greg 2.41 pfdt = fdate(picfile);
1547     if (pfdt >= oct1date)
1548 greg 2.1 continue;
1549 greg 2.41 /* get raw file name */
1550 greg 2.45 sprintf(rawfile, "%s_%s.unf",
1551     vdef(RAWFILE) ? vval(RAWFILE) : vval(PICTURE), vs);
1552 greg 2.41 rfdt = fdate(rawfile);
1553     if (touchonly) { /* update times only */
1554     if (rfdt) {
1555     if (rfdt < oct1date)
1556     touch(rawfile);
1557     } else if (pfdt && pfdt < oct1date)
1558     touch(picfile);
1559     continue;
1560     }
1561 greg 2.93 /* parallel running? */
1562     if (do_rpiece) {
1563 greg 2.94 if (rfdt < oct1date || !fdate(sfile)) {
1564 greg 2.95 int xdiv = 8+nprocs/3, ydiv = 8+nprocs/3;
1565 greg 2.102 if (rfdt >= oct1date) {
1566     fprintf(stderr,
1567 greg 2.107 "%s: partial output not created with %s\n", rawfile, c_rpiece);
1568 greg 2.102 quit(1);
1569     }
1570 greg 2.103 if (rfdt) { /* start fresh */
1571     rmfile(rawfile);
1572     rfdt = 0;
1573     }
1574 greg 2.95 if (!silent)
1575 greg 2.96 printf("\techo %d %d > %s\n",
1576 greg 2.95 xdiv, ydiv, sfile);
1577 greg 2.93 if ((fp = fopen(sfile, "w")) == NULL) {
1578     fprintf(stderr, "%s: cannot create\n",
1579     sfile);
1580     quit(1);
1581     }
1582 greg 2.95 fprintf(fp, "%d %d\n", xdiv, ydiv);
1583 greg 2.93 fclose(fp);
1584     }
1585 greg 2.98 } else if (next_process(0)) {
1586 greg 2.67 if (pfile != NULL)
1587 greg 2.93 sleep(10);
1588 greg 2.66 continue;
1589 greg 2.93 } else if (!inchild())
1590     pfile = NULL;
1591 greg 2.66 /* XXX Remember to call finish_process() */
1592 greg 2.1 /* build rpict command */
1593 greg 2.93 if (rfdt >= oct1date) { /* already in progress */
1594     if (do_rpiece) {
1595     sprintf(combuf, "%s -R %s %s%s %s %s%s%s -o %s %s",
1596     c_rpiece, sfile, rppopt, rep, vw,
1597     res, opts, po, rawfile, oct1name);
1598 greg 2.98 while (next_process(1)) {
1599 greg 2.93 sleep(10);
1600     combuf[strlen(c_rpiece)+2] = 'F';
1601     }
1602     } else
1603     sprintf(combuf, "%s%s%s%s%s -ro %s %s", c_rpict,
1604     rep, opts, po, zopt, rawfile, oct1name);
1605     if (runcom(combuf)) /* run rpict/rpiece */
1606 greg 2.67 goto rperror;
1607     } else {
1608 greg 2.1 if (overture) { /* run overture calculation */
1609     sprintf(combuf,
1610 greg 2.101 "%s%s %s%s -x 64 -y 64 -ps 1 %s > %s",
1611 greg 2.91 c_rpict, rep, vw, opts,
1612 greg 2.26 oct1name, overfile);
1613 greg 2.101 if (!do_rpiece || !next_process(0)) {
1614     if (runcom(combuf)) {
1615     fprintf(stderr,
1616 greg 2.6 "%s: error in overture for view %s\n",
1617 greg 2.101 progname, vs);
1618     quit(1);
1619     }
1620 schorsch 2.65 #ifndef NULL_DEVICE
1621 greg 2.101 rmfile(overfile);
1622 greg 2.6 #endif
1623 greg 2.101 } else if (do_rpiece)
1624     sleep(20);
1625 greg 2.1 }
1626 greg 2.93 if (do_rpiece) {
1627     sprintf(combuf, "%s -F %s %s%s %s %s%s%s -o %s %s",
1628     c_rpiece, sfile, rppopt, rep, vw,
1629     res, opts, po, rawfile, oct1name);
1630 greg 2.98 while (next_process(1))
1631 greg 2.93 sleep(10);
1632     } else {
1633     sprintf(combuf, "%s%s %s %s%s%s%s %s > %s",
1634     c_rpict, rep, vw, res, opts, po,
1635     zopt, oct1name, rawfile);
1636     }
1637     if ((pfile != NULL) & !do_rpiece) {
1638 greg 2.82 if (!silent)
1639 greg 2.67 printf("\t%s\n", combuf);
1640 greg 2.82 fflush(stdout);
1641 greg 2.91 sprintf(combuf, "%s%s %s %s%s%s %s > %s",
1642 greg 2.93 c_rpict, rep, rppopt, res,
1643     opts, po, oct1name, rawfile);
1644 greg 2.67 fp = popen(combuf, "w");
1645     if (fp == NULL)
1646     goto rperror;
1647     myprintview(vw, fp);
1648     if (pclose(fp))
1649     goto rperror;
1650 greg 2.93 } else if (runcom(combuf))
1651     goto rperror;
1652     }
1653     if (do_rpiece) { /* need to finish raw, first */
1654     finish_process();
1655     wait_process(1);
1656 greg 2.106 if (!syncf_done(sfile)) {
1657     fprintf(stderr,
1658 greg 2.107 "%s: %s did not complete rendering of view %s\n",
1659     progname, c_rpiece, vs);
1660 greg 2.106 quit(1);
1661     }
1662 greg 2.1 }
1663 greg 2.45 if (!vdef(RAWFILE) || strcmp(vval(RAWFILE),vval(PICTURE))) {
1664 greg 2.1 /* build pfilt command */
1665 greg 2.104 if (do_rpiece)
1666     sprintf(combuf,
1667     "%s%s -x %d -y %d -p %.3f %s > %s",
1668     c_pfilt, pfopts, xres, yres, aspect,
1669     rawfile, picfile);
1670     else if (mult > 1)
1671 greg 2.91 sprintf(combuf, "%s%s -x /%d -y /%d %s > %s",
1672     c_pfilt, pfopts, mult, mult,
1673     rawfile, picfile);
1674 greg 2.45 else
1675 greg 2.91 sprintf(combuf, "%s%s %s > %s", c_pfilt,
1676     pfopts, rawfile, picfile);
1677 greg 2.67 if (runcom(combuf)) { /* run pfilt */
1678 greg 2.45 fprintf(stderr,
1679     "%s: error filtering view %s\n\t%s removed\n",
1680     progname, vs, picfile);
1681     unlink(picfile);
1682 greg 2.53 quit(1);
1683 greg 2.45 }
1684 greg 2.1 }
1685 greg 2.43 /* remove/rename raw file */
1686 greg 2.45 if (vdef(RAWFILE)) {
1687 greg 2.87 sprintf(combuf, "%s_%s.hdr", vval(RAWFILE), vs);
1688 greg 2.43 mvfile(rawfile, combuf);
1689     } else
1690     rmfile(rawfile);
1691 greg 2.93 if (do_rpiece) /* done with sync file */
1692     rmfile(sfile);
1693     else
1694     finish_process(); /* exit if child */
1695 greg 2.4 }
1696 greg 2.66 wait_process(1); /* wait for children to finish */
1697 greg 2.94 if (pfile != NULL) { /* clean up persistent rpict */
1698 schorsch 2.81 RT_PID pid;
1699 greg 2.67 fp = fopen(pfile, "r");
1700     if (fp != NULL) {
1701     if (fscanf(fp, "%*s %d", &pid) != 1 ||
1702 greg 2.73 kill(pid, 1) < 0)
1703 greg 2.67 unlink(pfile);
1704     fclose(fp);
1705     }
1706     }
1707     return;
1708     rperror:
1709     fprintf(stderr, "%s: error rendering view %s\n", progname, vs);
1710     quit(1);
1711 greg 2.93 #undef do_rpiece
1712 greg 2.41 }
1713    
1714    
1715 schorsch 2.76 static int
1716     touch( /* update a file */
1717     char *fn
1718     )
1719 greg 2.41 {
1720     if (!silent)
1721     printf("\ttouch %s\n", fn);
1722 greg 2.66 if (!nprocs)
1723 greg 2.41 return(0);
1724     return(setfdate(fn, time((time_t *)NULL)));
1725 greg 2.4 }
1726    
1727    
1728 schorsch 2.76 static int
1729     runcom( /* run command */
1730     char *cs
1731     )
1732 greg 2.4 {
1733     if (!silent) /* echo it */
1734     printf("\t%s\n", cs);
1735 greg 2.66 if (!nprocs)
1736 greg 2.4 return(0);
1737 greg 2.82 fflush(NULL); /* flush output and pass to shell */
1738 greg 2.4 return(system(cs));
1739     }
1740    
1741    
1742 schorsch 2.76 static int
1743     rmfile( /* remove a file */
1744     char *fn
1745     )
1746 greg 2.4 {
1747     if (!silent)
1748 schorsch 2.69 printf("\t%s %s\n", DELCMD, fn);
1749 greg 2.66 if (!nprocs)
1750 greg 2.4 return(0);
1751     return(unlink(fn));
1752 greg 2.43 }
1753    
1754    
1755 schorsch 2.76 static int
1756     mvfile( /* move a file */
1757     char *fold,
1758     char *fnew
1759     )
1760 greg 2.43 {
1761     if (!silent)
1762 schorsch 2.69 printf("\t%s %s %s\n", RENAMECMD, fold, fnew);
1763 greg 2.66 if (!nprocs)
1764 greg 2.43 return(0);
1765     return(rename(fold, fnew));
1766 greg 2.3 }
1767 greg 2.8
1768 greg 2.66
1769     #ifdef RHAS_FORK_EXEC
1770 schorsch 2.76 static int
1771 greg 2.98 next_process(int reserve) /* fork the next process */
1772 greg 2.66 {
1773 schorsch 2.81 RT_PID child_pid;
1774 greg 2.66
1775     if (nprocs <= 1)
1776     return(0); /* it's us or no one */
1777 greg 2.67 if (inchild()) {
1778 greg 2.73 fprintf(stderr, "%s: internal error 1 in next_process()\n",
1779 greg 2.66 progname);
1780     quit(1);
1781     }
1782 greg 2.98 if (reserve > 0 && children_running >= nprocs-reserve)
1783     return(0); /* caller holding back process(es) */
1784 greg 2.66 if (children_running >= nprocs)
1785     wait_process(0); /* wait for someone to finish */
1786 greg 2.82 fflush(NULL); /* flush output */
1787 greg 2.66 child_pid = fork(); /* split process */
1788     if (child_pid == 0) { /* we're the child */
1789     children_running = -1;
1790 greg 2.101 nprocs = 1;
1791 greg 2.66 return(0);
1792     }
1793     if (child_pid > 0) { /* we're the parent */
1794     ++children_running;
1795     return(1);
1796     }
1797     fprintf(stderr, "%s: warning -- fork() failed\n", progname);
1798     return(0);
1799     }
1800    
1801 schorsch 2.76 static void
1802     wait_process( /* wait for process(es) to finish */
1803     int all
1804     )
1805 greg 2.66 {
1806 schorsch 2.85 int ourstatus = 0, status;
1807     RT_PID pid;
1808 greg 2.66
1809     if (all)
1810     all = children_running;
1811     else if (children_running > 0)
1812     all = 1;
1813     while (all-- > 0) {
1814     pid = wait(&status);
1815     if (pid < 0)
1816     syserr(progname);
1817     status = status>>8 & 0xff;
1818     --children_running;
1819     if (status != 0) { /* child's problem is our problem */
1820 schorsch 2.71 if ((ourstatus == 0) & (children_running > 0))
1821 greg 2.66 fprintf(stderr, "%s: waiting for remaining processes\n",
1822     progname);
1823     ourstatus = status;
1824     all = children_running;
1825     }
1826     }
1827     if (ourstatus != 0)
1828     quit(ourstatus); /* bad status from child */
1829     }
1830     #else /* ! RHAS_FORK_EXEC */
1831 schorsch 2.76 static int
1832 greg 2.98 next_process(int reserve)
1833 greg 2.66 {
1834     return(0); /* cannot start new process */
1835     }
1836 schorsch 2.76 static void
1837 greg 2.66 wait_process(all)
1838     int all;
1839     {
1840     (void)all; /* no one to wait for */
1841 schorsch 2.68 }
1842     int
1843     kill(pid, sig) /* win|unix_process.c should also wait and kill */
1844 schorsch 2.85 RT_PID pid;
1845     int sig;
1846 schorsch 2.68 {
1847     return 0;
1848 greg 2.66 }
1849     #endif /* ! RHAS_FORK_EXEC */
1850    
1851 schorsch 2.76 static void
1852     finish_process(void) /* exit a child process */
1853 greg 2.66 {
1854 greg 2.67 if (!inchild())
1855 greg 2.66 return; /* in parent -- noop */
1856     exit(0);
1857     }
1858 greg 2.8
1859 greg 2.3
1860 schorsch 2.76 static void
1861     badvalue( /* report bad variable value and exit */
1862     int vc
1863     )
1864 greg 2.3 {
1865     fprintf(stderr, "%s: bad value for variable '%s'\n",
1866     progname, vnam(vc));
1867 greg 2.53 quit(1);
1868 greg 2.3 }
1869    
1870    
1871 schorsch 2.76 static void
1872     syserr( /* report a system error and exit */
1873     char *s
1874     )
1875 greg 2.3 {
1876     perror(s);
1877 greg 2.53 quit(1);
1878     }
1879    
1880    
1881 greg 2.61 void
1882 greg 2.53 quit(ec) /* exit program */
1883     int ec;
1884     {
1885     exit(ec);
1886 greg 2.1 }