| 22 |
|
#else |
| 23 |
|
#define DELCMD "rm -f" |
| 24 |
|
#define RENAMECMD "mv" |
| 25 |
+ |
#include <sys/types.h> |
| 26 |
+ |
#include <sys/wait.h> |
| 27 |
|
#endif |
| 28 |
|
|
| 29 |
|
/* variables (alphabetical by name) */ |
| 123 |
|
|
| 124 |
|
#define inchild() (children_running < 0) |
| 125 |
|
|
| 126 |
+ |
static void rootname(char *rn, char *fn); |
| 127 |
+ |
static time_t checklast(char *fnames); |
| 128 |
+ |
static char * newfname(char *orig, int pred); |
| 129 |
+ |
static void checkfiles(void); |
| 130 |
+ |
static void getoctcube(double org[3], double *sizp); |
| 131 |
+ |
static void setdefaults(void); |
| 132 |
+ |
static void oconv(void); |
| 133 |
+ |
static char * addarg(char *op, char *arg); |
| 134 |
+ |
static void oconvopts(char *oo); |
| 135 |
+ |
static void mkillumopts(char *mo); |
| 136 |
+ |
static void checkambfile(void); |
| 137 |
+ |
static double ambval(void); |
| 138 |
+ |
static void renderopts(char *op, char *po); |
| 139 |
+ |
static void lowqopts(char *op, char *po); |
| 140 |
+ |
static void medqopts(char *op, char *po); |
| 141 |
+ |
static void hiqopts(char *op, char *po); |
| 142 |
+ |
static void xferopts(char *ro); |
| 143 |
+ |
static void pfiltopts(char *po); |
| 144 |
+ |
static int matchword(char *s1, char *s2); |
| 145 |
+ |
static char * specview(char *vs); |
| 146 |
+ |
static char * getview(int n, char *vn); |
| 147 |
+ |
static int myprintview(char *vopts, FILE *fp); |
| 148 |
+ |
static void rvu(char *opts, char *po); |
| 149 |
+ |
static void rpict(char *opts, char *po); |
| 150 |
+ |
static int touch(char *fn); |
| 151 |
+ |
static int runcom(char *cs); |
| 152 |
+ |
static int rmfile(char *fn); |
| 153 |
+ |
static int mvfile(char *fold, char *fnew); |
| 154 |
+ |
static int next_process(void); |
| 155 |
+ |
static void wait_process(int all); |
| 156 |
+ |
static void finish_process(void); |
| 157 |
+ |
static void badvalue(int vc); |
| 158 |
+ |
static void syserr(char *s); |
| 159 |
|
|
| 160 |
< |
main(argc, argv) |
| 161 |
< |
int argc; |
| 162 |
< |
char *argv[]; |
| 160 |
> |
|
| 161 |
> |
int |
| 162 |
> |
main( |
| 163 |
> |
int argc, |
| 164 |
> |
char *argv[] |
| 165 |
> |
) |
| 166 |
|
{ |
| 167 |
|
char ropts[512]; |
| 168 |
|
char popts[64]; |
| 247 |
|
"Usage: %s [-w][-s][-n|-N npr][-t][-e][-V][-v view][-o dev] rfile [VAR=value ..]\n", |
| 248 |
|
progname); |
| 249 |
|
quit(1); |
| 250 |
+ |
return 1; /* pro forma return */ |
| 251 |
|
} |
| 252 |
|
|
| 253 |
|
|
| 254 |
< |
rootname(rn, fn) /* remove tail from end of fn */ |
| 255 |
< |
register char *rn, *fn; |
| 254 |
> |
static void |
| 255 |
> |
rootname( /* remove tail from end of fn */ |
| 256 |
> |
register char *rn, |
| 257 |
> |
register char *fn |
| 258 |
> |
) |
| 259 |
|
{ |
| 260 |
|
char *tp, *dp; |
| 261 |
|
|
| 269 |
|
} |
| 270 |
|
|
| 271 |
|
|
| 272 |
< |
time_t |
| 273 |
< |
checklast(fnames) /* check files and find most recent */ |
| 274 |
< |
register char *fnames; |
| 272 |
> |
static time_t |
| 273 |
> |
checklast( /* check files and find most recent */ |
| 274 |
> |
register char *fnames |
| 275 |
> |
) |
| 276 |
|
{ |
| 277 |
|
char thisfile[PATH_MAX]; |
| 278 |
|
time_t thisdate, lastdate = 0; |
| 281 |
|
return(0); |
| 282 |
|
while ((fnames = nextword(thisfile, PATH_MAX, fnames)) != NULL) { |
| 283 |
|
if (thisfile[0] == '!' || |
| 284 |
< |
(thisfile[0] == '\\' && thisfile[1] == '!')) |
| 284 |
> |
(thisfile[0] == '\\' && thisfile[1] == '!')) { |
| 285 |
> |
if (!lastdate) |
| 286 |
> |
lastdate = 1; |
| 287 |
|
continue; |
| 288 |
+ |
} |
| 289 |
|
if (!(thisdate = fdate(thisfile))) |
| 290 |
|
syserr(thisfile); |
| 291 |
|
if (thisdate > lastdate) |
| 295 |
|
} |
| 296 |
|
|
| 297 |
|
|
| 298 |
< |
char * |
| 299 |
< |
newfname(orig, pred) /* create modified file name */ |
| 300 |
< |
char *orig; |
| 301 |
< |
int pred; |
| 298 |
> |
static char * |
| 299 |
> |
newfname( /* create modified file name */ |
| 300 |
> |
char *orig, |
| 301 |
> |
int pred |
| 302 |
> |
) |
| 303 |
|
{ |
| 304 |
|
register char *cp; |
| 305 |
|
register int n; |
| 321 |
|
} |
| 322 |
|
|
| 323 |
|
|
| 324 |
< |
checkfiles() /* check for existence and modified times */ |
| 324 |
> |
static void |
| 325 |
> |
checkfiles(void) /* check for existence and modified times */ |
| 326 |
|
{ |
| 327 |
|
time_t objdate; |
| 328 |
|
|
| 357 |
|
} |
| 358 |
|
|
| 359 |
|
|
| 360 |
< |
getoctcube(org, sizp) /* get octree bounding cube */ |
| 361 |
< |
double org[3], *sizp; |
| 360 |
> |
static void |
| 361 |
> |
getoctcube( /* get octree bounding cube */ |
| 362 |
> |
double org[3], |
| 363 |
> |
double *sizp |
| 364 |
> |
) |
| 365 |
|
{ |
| 366 |
|
static double oorg[3], osiz = 0.; |
| 367 |
|
double min[3], max[3]; |
| 410 |
|
} |
| 411 |
|
|
| 412 |
|
|
| 413 |
< |
setdefaults() /* set default values for unassigned var's */ |
| 413 |
> |
static void |
| 414 |
> |
setdefaults(void) /* set default values for unassigned var's */ |
| 415 |
|
{ |
| 416 |
|
double org[3], lim[3], size; |
| 417 |
|
char buf[128]; |
| 468 |
|
} |
| 469 |
|
|
| 470 |
|
|
| 471 |
< |
oconv() /* run oconv and mkillum if necessary */ |
| 471 |
> |
static void |
| 472 |
> |
oconv(void) /* run oconv and mkillum if necessary */ |
| 473 |
|
{ |
| 474 |
|
static char illumtmp[] = "ilXXXXXX"; |
| 475 |
< |
char combuf[PATH_MAX], ocopts[64], mkopts[64]; |
| 475 |
> |
char combuf[PATH_MAX], ocopts[64], mkopts[1024]; |
| 476 |
|
|
| 477 |
|
oconvopts(ocopts); /* get options */ |
| 478 |
|
if (octreedate < scenedate) { /* check date on original octree */ |
| 571 |
|
} |
| 572 |
|
|
| 573 |
|
|
| 574 |
< |
char * |
| 575 |
< |
addarg(op, arg) /* add argument and advance pointer */ |
| 576 |
< |
register char *op, *arg; |
| 574 |
> |
static char * |
| 575 |
> |
addarg( /* add argument and advance pointer */ |
| 576 |
> |
register char *op, |
| 577 |
> |
register char *arg |
| 578 |
> |
) |
| 579 |
|
{ |
| 580 |
|
*op = ' '; |
| 581 |
|
while ( (*++op = *arg++) ) |
| 584 |
|
} |
| 585 |
|
|
| 586 |
|
|
| 587 |
< |
oconvopts(oo) /* get oconv options */ |
| 588 |
< |
register char *oo; |
| 587 |
> |
static void |
| 588 |
> |
oconvopts( /* get oconv options */ |
| 589 |
> |
register char *oo |
| 590 |
> |
) |
| 591 |
|
{ |
| 592 |
|
/* BEWARE: This may be called via setdefaults(), so no assumptions */ |
| 593 |
|
|
| 597 |
|
} |
| 598 |
|
|
| 599 |
|
|
| 600 |
< |
mkillumopts(mo) /* get mkillum options */ |
| 601 |
< |
register char *mo; |
| 600 |
> |
static void |
| 601 |
> |
mkillumopts( /* get mkillum options */ |
| 602 |
> |
char *mo |
| 603 |
> |
) |
| 604 |
|
{ |
| 605 |
|
/* BEWARE: This may be called via setdefaults(), so no assumptions */ |
| 606 |
|
|
| 607 |
< |
*mo = '\0'; |
| 607 |
> |
if (nprocs > 1) { |
| 608 |
> |
sprintf(mo, " -n %d", nprocs); |
| 609 |
> |
while (*mo) |
| 610 |
> |
mo++; |
| 611 |
> |
} else |
| 612 |
> |
*mo = '\0'; |
| 613 |
|
if (vdef(MKILLUM)) |
| 614 |
|
addarg(mo, vval(MKILLUM)); |
| 615 |
|
} |
| 616 |
|
|
| 617 |
|
|
| 618 |
< |
checkambfile() /* check date on ambient file */ |
| 618 |
> |
static void |
| 619 |
> |
checkambfile(void) /* check date on ambient file */ |
| 620 |
|
{ |
| 621 |
|
time_t afdate; |
| 622 |
|
|
| 633 |
|
} |
| 634 |
|
|
| 635 |
|
|
| 636 |
< |
double |
| 637 |
< |
ambval() /* compute ambient value */ |
| 636 |
> |
static double |
| 637 |
> |
ambval(void) /* compute ambient value */ |
| 638 |
|
{ |
| 639 |
|
if (vdef(EXPOSURE)) { |
| 640 |
|
if (vval(EXPOSURE)[0] == '+' || vval(EXPOSURE)[0] == '-') |
| 646 |
|
if (vlet(ZONE) == 'I') |
| 647 |
|
return(.01); |
| 648 |
|
badvalue(ZONE); |
| 649 |
+ |
return 0; /* pro forma return */ |
| 650 |
|
} |
| 651 |
|
|
| 652 |
|
|
| 653 |
< |
renderopts(op, po) /* set rendering options */ |
| 654 |
< |
char *op, *po; |
| 653 |
> |
static void |
| 654 |
> |
renderopts( /* set rendering options */ |
| 655 |
> |
char *op, |
| 656 |
> |
char *po |
| 657 |
> |
) |
| 658 |
|
{ |
| 659 |
|
switch(vscale(QUALITY)) { |
| 660 |
|
case LOW: |
| 670 |
|
} |
| 671 |
|
|
| 672 |
|
|
| 673 |
< |
lowqopts(op, po) /* low quality rendering options */ |
| 674 |
< |
register char *op; |
| 675 |
< |
char *po; |
| 673 |
> |
static void |
| 674 |
> |
lowqopts( /* low quality rendering options */ |
| 675 |
> |
register char *op, |
| 676 |
> |
char *po |
| 677 |
> |
) |
| 678 |
|
{ |
| 679 |
|
double d, org[3], siz[3]; |
| 680 |
|
|
| 740 |
|
} |
| 741 |
|
|
| 742 |
|
|
| 743 |
< |
medqopts(op, po) /* medium quality rendering options */ |
| 744 |
< |
register char *op; |
| 745 |
< |
char *po; |
| 743 |
> |
static void |
| 744 |
> |
medqopts( /* medium quality rendering options */ |
| 745 |
> |
register char *op, |
| 746 |
> |
char *po |
| 747 |
> |
) |
| 748 |
|
{ |
| 749 |
|
double d, org[3], siz[3], asz; |
| 750 |
|
|
| 820 |
|
} |
| 821 |
|
|
| 822 |
|
|
| 823 |
< |
hiqopts(op, po) /* high quality rendering options */ |
| 824 |
< |
register char *op; |
| 825 |
< |
char *po; |
| 823 |
> |
static void |
| 824 |
> |
hiqopts( /* high quality rendering options */ |
| 825 |
> |
register char *op, |
| 826 |
> |
char *po |
| 827 |
> |
) |
| 828 |
|
{ |
| 829 |
|
double d, org[3], siz[3], asz; |
| 830 |
|
|
| 898 |
|
} |
| 899 |
|
|
| 900 |
|
|
| 901 |
< |
xferopts(ro) /* transfer options if indicated */ |
| 902 |
< |
char *ro; |
| 901 |
> |
static void |
| 902 |
> |
xferopts( /* transfer options if indicated */ |
| 903 |
> |
char *ro |
| 904 |
> |
) |
| 905 |
|
{ |
| 906 |
|
int fd, n; |
| 907 |
|
register char *cp; |
| 931 |
|
} |
| 932 |
|
|
| 933 |
|
|
| 934 |
< |
pfiltopts(po) /* get pfilt options */ |
| 935 |
< |
register char *po; |
| 934 |
> |
static void |
| 935 |
> |
pfiltopts( /* get pfilt options */ |
| 936 |
> |
register char *po |
| 937 |
> |
) |
| 938 |
|
{ |
| 939 |
|
*po = '\0'; |
| 940 |
|
if (vdef(EXPOSURE)) { |
| 954 |
|
} |
| 955 |
|
|
| 956 |
|
|
| 957 |
< |
matchword(s1, s2) /* match white-delimited words */ |
| 958 |
< |
register char *s1, *s2; |
| 957 |
> |
static int |
| 958 |
> |
matchword( /* match white-delimited words */ |
| 959 |
> |
register char *s1, |
| 960 |
> |
register char *s2 |
| 961 |
> |
) |
| 962 |
|
{ |
| 963 |
|
while (isspace(*s1)) s1++; |
| 964 |
|
while (isspace(*s2)) s2++; |
| 969 |
|
} |
| 970 |
|
|
| 971 |
|
|
| 972 |
< |
char * |
| 973 |
< |
specview(vs) /* get proper view spec from vs */ |
| 974 |
< |
register char *vs; |
| 972 |
> |
static char * |
| 973 |
> |
specview( /* get proper view spec from vs */ |
| 974 |
> |
register char *vs |
| 975 |
> |
) |
| 976 |
|
{ |
| 977 |
|
static char vup[7][12] = {"-vu 0 0 -1","-vu 0 -1 0","-vu -1 0 0", |
| 978 |
|
"-vu 0 0 1", "-vu 1 0 0","-vu 0 1 0","-vu 0 0 1"}; |
| 1094 |
|
} |
| 1095 |
|
|
| 1096 |
|
|
| 1097 |
< |
char * |
| 1098 |
< |
getview(n, vn) /* get view n, or NULL if none */ |
| 1099 |
< |
int n; |
| 1100 |
< |
char *vn; /* returned view name */ |
| 1097 |
> |
static char * |
| 1098 |
> |
getview( /* get view n, or NULL if none */ |
| 1099 |
> |
int n, |
| 1100 |
> |
char *vn /* returned view name */ |
| 1101 |
> |
) |
| 1102 |
|
{ |
| 1103 |
|
register char *mv; |
| 1104 |
|
|
| 1136 |
|
} |
| 1137 |
|
|
| 1138 |
|
|
| 1139 |
< |
int |
| 1140 |
< |
myprintview(vopts, fp) /* print out selected view */ |
| 1141 |
< |
register char *vopts; |
| 1142 |
< |
FILE *fp; |
| 1139 |
> |
static int |
| 1140 |
> |
myprintview( /* print out selected view */ |
| 1141 |
> |
register char *vopts, |
| 1142 |
> |
FILE *fp |
| 1143 |
> |
) |
| 1144 |
|
{ |
| 1145 |
|
VIEW vwr; |
| 1146 |
|
char buf[128]; |
| 1147 |
|
register char *cp; |
| 1063 |
– |
again: |
| 1148 |
|
if (vopts == NULL) |
| 1149 |
|
return(-1); |
| 1150 |
|
#ifdef _WIN32 |
| 1167 |
|
} |
| 1168 |
|
|
| 1169 |
|
|
| 1170 |
< |
rvu(opts, po) /* run rvu with first view */ |
| 1171 |
< |
char *opts, *po; |
| 1170 |
> |
static void |
| 1171 |
> |
rvu( /* run rvu with first view */ |
| 1172 |
> |
char *opts, |
| 1173 |
> |
char *po |
| 1174 |
> |
) |
| 1175 |
|
{ |
| 1176 |
|
char *vw; |
| 1177 |
|
char combuf[PATH_MAX]; |
| 1193 |
|
} |
| 1194 |
|
|
| 1195 |
|
|
| 1196 |
< |
rpict(opts, po) /* run rpict and pfilt for each view */ |
| 1197 |
< |
char *opts, *po; |
| 1196 |
> |
static void |
| 1197 |
> |
rpict( /* run rpict and pfilt for each view */ |
| 1198 |
> |
char *opts, |
| 1199 |
> |
char *po |
| 1200 |
> |
) |
| 1201 |
|
{ |
| 1202 |
|
char combuf[PATH_MAX]; |
| 1203 |
|
char rawfile[PATH_MAX], picfile[PATH_MAX]; |
| 1374 |
|
} |
| 1375 |
|
|
| 1376 |
|
|
| 1377 |
< |
touch(fn) /* update a file */ |
| 1378 |
< |
char *fn; |
| 1377 |
> |
static int |
| 1378 |
> |
touch( /* update a file */ |
| 1379 |
> |
char *fn |
| 1380 |
> |
) |
| 1381 |
|
{ |
| 1382 |
|
if (!silent) |
| 1383 |
|
printf("\ttouch %s\n", fn); |
| 1392 |
|
} |
| 1393 |
|
|
| 1394 |
|
|
| 1395 |
< |
runcom(cs) /* run command */ |
| 1396 |
< |
char *cs; |
| 1395 |
> |
static int |
| 1396 |
> |
runcom( /* run command */ |
| 1397 |
> |
char *cs |
| 1398 |
> |
) |
| 1399 |
|
{ |
| 1400 |
|
if (!silent) /* echo it */ |
| 1401 |
|
printf("\t%s\n", cs); |
| 1406 |
|
} |
| 1407 |
|
|
| 1408 |
|
|
| 1409 |
< |
rmfile(fn) /* remove a file */ |
| 1410 |
< |
char *fn; |
| 1409 |
> |
static int |
| 1410 |
> |
rmfile( /* remove a file */ |
| 1411 |
> |
char *fn |
| 1412 |
> |
) |
| 1413 |
|
{ |
| 1414 |
|
if (!silent) |
| 1415 |
|
printf("\t%s %s\n", DELCMD, fn); |
| 1419 |
|
} |
| 1420 |
|
|
| 1421 |
|
|
| 1422 |
< |
mvfile(fold, fnew) /* move a file */ |
| 1423 |
< |
char *fold, *fnew; |
| 1422 |
> |
static int |
| 1423 |
> |
mvfile( /* move a file */ |
| 1424 |
> |
char *fold, |
| 1425 |
> |
char *fnew |
| 1426 |
> |
) |
| 1427 |
|
{ |
| 1428 |
|
if (!silent) |
| 1429 |
|
printf("\t%s %s %s\n", RENAMECMD, fold, fnew); |
| 1434 |
|
|
| 1435 |
|
|
| 1436 |
|
#ifdef RHAS_FORK_EXEC |
| 1437 |
< |
int |
| 1438 |
< |
next_process() /* fork the next process (max. nprocs) */ |
| 1437 |
> |
static int |
| 1438 |
> |
next_process(void) /* fork the next process (max. nprocs) */ |
| 1439 |
|
{ |
| 1440 |
|
int child_pid; |
| 1441 |
|
|
| 1462 |
|
return(0); |
| 1463 |
|
} |
| 1464 |
|
|
| 1465 |
< |
wait_process(all) /* wait for process(es) to finish */ |
| 1466 |
< |
int all; |
| 1465 |
> |
static void |
| 1466 |
> |
wait_process( /* wait for process(es) to finish */ |
| 1467 |
> |
int all |
| 1468 |
> |
) |
| 1469 |
|
{ |
| 1470 |
|
int ourstatus = 0; |
| 1471 |
|
int pid, status; |
| 1492 |
|
quit(ourstatus); /* bad status from child */ |
| 1493 |
|
} |
| 1494 |
|
#else /* ! RHAS_FORK_EXEC */ |
| 1495 |
< |
int |
| 1496 |
< |
next_process() |
| 1495 |
> |
static int |
| 1496 |
> |
next_process(void) |
| 1497 |
|
{ |
| 1498 |
|
return(0); /* cannot start new process */ |
| 1499 |
|
} |
| 1500 |
+ |
static void |
| 1501 |
|
wait_process(all) |
| 1502 |
|
int all; |
| 1503 |
|
{ |
| 1511 |
|
} |
| 1512 |
|
#endif /* ! RHAS_FORK_EXEC */ |
| 1513 |
|
|
| 1514 |
< |
finish_process() /* exit a child process */ |
| 1514 |
> |
static void |
| 1515 |
> |
finish_process(void) /* exit a child process */ |
| 1516 |
|
{ |
| 1517 |
|
if (!inchild()) |
| 1518 |
|
return; /* in parent -- noop */ |
| 1539 |
|
#endif |
| 1540 |
|
|
| 1541 |
|
|
| 1542 |
< |
badvalue(vc) /* report bad variable value and exit */ |
| 1543 |
< |
int vc; |
| 1542 |
> |
static void |
| 1543 |
> |
badvalue( /* report bad variable value and exit */ |
| 1544 |
> |
int vc |
| 1545 |
> |
) |
| 1546 |
|
{ |
| 1547 |
|
fprintf(stderr, "%s: bad value for variable '%s'\n", |
| 1548 |
|
progname, vnam(vc)); |
| 1550 |
|
} |
| 1551 |
|
|
| 1552 |
|
|
| 1553 |
< |
syserr(s) /* report a system error and exit */ |
| 1554 |
< |
char *s; |
| 1553 |
> |
static void |
| 1554 |
> |
syserr( /* report a system error and exit */ |
| 1555 |
> |
char *s |
| 1556 |
> |
) |
| 1557 |
|
{ |
| 1558 |
|
perror(s); |
| 1559 |
|
quit(1); |