8 |
|
#include <signal.h> |
9 |
|
#include <ctype.h> |
10 |
|
|
11 |
+ |
#include "paths.h" /* win_popen() */ |
12 |
|
#include "mkillum.h" |
12 |
– |
#include "platform.h" |
13 |
|
|
14 |
|
/* default parameters */ |
15 |
|
#define SAMPDENS 48 /* points per projected steradian */ |
22 |
|
#define S_COMPL 2 /* select all but element */ |
23 |
|
#define S_ALL 3 /* select all */ |
24 |
|
|
25 |
– |
/* rtrace command and defaults */ |
26 |
– |
char *rtargv[64] = { "rtrace", "-dj", ".25", "-dr", "3", "-dv-", |
27 |
– |
"-ab", "2", "-ad", "256", "-as", "128", "-aa", ".15", }; |
28 |
– |
int rtargc = 14; |
29 |
– |
/* overriding rtrace options */ |
30 |
– |
char *myrtopts[] = { "-I-", "-i-", "-ld-", "-ov", "-h-", |
31 |
– |
"-fff", "-y", "0", NULL }; |
32 |
– |
|
33 |
– |
struct rtproc rt; /* our rtrace process */ |
34 |
– |
|
25 |
|
struct illum_args thisillum = { /* our illum and default values */ |
26 |
|
0, |
27 |
|
DFLMAT, |
36 |
|
char matcheck[MAXSTR]; /* current material to include or exclude */ |
37 |
|
int matselect = S_ALL; /* selection criterion */ |
38 |
|
|
49 |
– |
FUN ofun[NUMOTYPE] = INIT_OTYPE; /* object types */ |
50 |
– |
|
39 |
|
int gargc; /* global argc */ |
40 |
|
char **gargv; /* global argv */ |
53 |
– |
#define progname gargv[0] |
41 |
|
|
42 |
|
int doneheader = 0; /* printed header yet? */ |
43 |
|
#define checkhead() if (!doneheader++) printhead(gargc,gargv) |
44 |
|
|
45 |
|
int warnings = 1; /* print warnings? */ |
46 |
|
|
47 |
+ |
void init(char *octnm, int np); |
48 |
+ |
void filter(FILE *infp, char *name); |
49 |
+ |
void xoptions(char *s, char *nm); |
50 |
+ |
void printopts(void); |
51 |
+ |
void printhead(int ac, char **av); |
52 |
+ |
void xobject(FILE *fp, char *nm); |
53 |
|
|
54 |
< |
main(argc, argv) /* compute illum distributions using rtrace */ |
55 |
< |
int argc; |
56 |
< |
char *argv[]; |
54 |
> |
|
55 |
> |
int |
56 |
> |
main( /* compute illum distributions using rtrace */ |
57 |
> |
int argc, |
58 |
> |
char *argv[] |
59 |
> |
) |
60 |
|
{ |
61 |
< |
char *rtpath; |
61 |
> |
int nprocs = 1; |
62 |
|
FILE *fp; |
63 |
< |
register int i; |
63 |
> |
int rval; |
64 |
> |
int i; |
65 |
|
/* set global arguments */ |
66 |
|
gargv = argv; |
67 |
< |
/* set up rtrace command */ |
67 |
> |
progname = gargv[0]; |
68 |
> |
/* set up rendering defaults */ |
69 |
> |
dstrsrc = 0.5; |
70 |
> |
directrelay = 3; |
71 |
> |
ambounce = 2; |
72 |
> |
/* get options from command line */ |
73 |
|
for (i = 1; i < argc; i++) { |
74 |
< |
if (argv[i][0] == '<' && argv[i][1] == '\0') |
74 |
> |
while ((rval = expandarg(&argc, &argv, i)) > 0) |
75 |
> |
; |
76 |
> |
if (rval < 0) { |
77 |
> |
sprintf(errmsg, "cannot expand '%s'", argv[i]); |
78 |
> |
error(SYSTEM, errmsg); |
79 |
> |
} |
80 |
> |
if (argv[i][0] != '-') |
81 |
|
break; |
82 |
< |
rtargv[rtargc++] = argv[i]; |
83 |
< |
if (argv[i][0] == '-' && argv[i][1] == 'w') |
84 |
< |
switch (argv[i][2]) { |
77 |
< |
case '\0': |
78 |
< |
warnings = !warnings; |
79 |
< |
break; |
80 |
< |
case '+': |
81 |
< |
case 'T': case 't': |
82 |
< |
case 'Y': case 'y': |
83 |
< |
case '1': |
84 |
< |
warnings = 1; |
85 |
< |
break; |
86 |
< |
case '-': |
87 |
< |
case 'F': case 'f': |
88 |
< |
case 'N': case 'n': |
89 |
< |
case '0': |
90 |
< |
warnings = 0; |
91 |
< |
break; |
92 |
< |
} |
93 |
< |
} |
94 |
< |
gargc = i; |
95 |
< |
rtargc--; |
96 |
< |
for (i = 0; myrtopts[i] != NULL; i++) |
97 |
< |
rtargv[rtargc++] = myrtopts[i]; |
98 |
< |
rtargv[rtargc++] = argv[gargc-1]; |
99 |
< |
rtargv[rtargc] = NULL; |
100 |
< |
/* just asking for defaults? */ |
101 |
< |
if (!strcmp(argv[gargc-1], "-defaults")) { |
102 |
< |
printopts(); fflush(stdout); |
103 |
< |
rtpath = getpath(rtargv[0], getenv("PATH"), X_OK); |
104 |
< |
if (rtpath == NULL) { |
105 |
< |
eputs(rtargv[0]); |
106 |
< |
eputs(": command not found\n"); |
107 |
< |
exit(1); |
82 |
> |
if (!strcmp(argv[i], "-w")) { |
83 |
> |
warnings = 0; |
84 |
> |
continue; |
85 |
|
} |
86 |
< |
execv(rtpath, rtargv); |
87 |
< |
perror(rtpath); |
88 |
< |
exit(1); |
86 |
> |
if (!strcmp(argv[i], "-n")) { |
87 |
> |
nprocs = atoi(argv[++i]); |
88 |
> |
if (nprocs <= 0) |
89 |
> |
error(USER, "illegal number of processes"); |
90 |
> |
continue; |
91 |
> |
} |
92 |
> |
if (!strcmp(argv[i], "-defaults")) { |
93 |
> |
printopts(); |
94 |
> |
print_rdefaults(); |
95 |
> |
quit(0); |
96 |
> |
} |
97 |
> |
rval = getrenderopt(argc-i, argv+i); |
98 |
> |
if (rval < 0) { |
99 |
> |
sprintf(errmsg, "bad render option at '%s'", argv[i]); |
100 |
> |
error(USER, errmsg); |
101 |
> |
} |
102 |
> |
i += rval; |
103 |
|
} |
104 |
< |
if (gargc < 2 || argv[gargc-1][0] == '-') |
104 |
> |
gargc = ++i; |
105 |
> |
/* add "mandatory" render options */ |
106 |
> |
do_irrad = 0; |
107 |
> |
if (gargc > argc || argv[gargc-1][0] == '-') |
108 |
|
error(USER, "missing octree argument"); |
109 |
|
/* else initialize and run our calculation */ |
110 |
< |
init(); |
111 |
< |
if (gargc+1 < argc) |
110 |
> |
init(argv[gargc-1], nprocs); |
111 |
> |
if (gargc < argc) { |
112 |
> |
if (gargc == argc-1 || argv[gargc][0] != '<' || argv[gargc][1]) |
113 |
> |
error(USER, "use '< file1 file2 ..' for multiple inputs"); |
114 |
|
for (i = gargc+1; i < argc; i++) { |
115 |
|
if ((fp = fopen(argv[i], "r")) == NULL) { |
116 |
|
sprintf(errmsg, |
120 |
|
filter(fp, argv[i]); |
121 |
|
fclose(fp); |
122 |
|
} |
123 |
< |
else |
123 |
> |
} else |
124 |
|
filter(stdin, "standard input"); |
125 |
|
quit(0); |
126 |
+ |
return 0; /* pro forma return */ |
127 |
|
} |
128 |
|
|
129 |
|
|
130 |
|
void |
131 |
< |
quit(status) /* exit with status */ |
135 |
< |
int status; |
131 |
> |
init(char *octnm, int np) /* start rendering process(es) */ |
132 |
|
{ |
137 |
– |
int rtstat; |
138 |
– |
|
139 |
– |
rtstat = close_process(&(rt.pd)); |
140 |
– |
if (status == 0) { |
141 |
– |
if (rtstat < 0) |
142 |
– |
error(WARNING, |
143 |
– |
"unknown return status from rtrace process"); |
144 |
– |
else |
145 |
– |
status = rtstat; |
146 |
– |
} |
147 |
– |
exit(status); |
148 |
– |
} |
149 |
– |
|
150 |
– |
|
151 |
– |
init() /* start rtrace and set up buffers */ |
152 |
– |
{ |
153 |
– |
extern int o_face(), o_sphere(), o_ring(); |
154 |
– |
int maxbytes; |
155 |
– |
/* set up object functions */ |
156 |
– |
ofun[OBJ_FACE].funp = o_face; |
157 |
– |
ofun[OBJ_SPHERE].funp = o_sphere; |
158 |
– |
ofun[OBJ_RING].funp = o_ring; |
133 |
|
/* set up signal handling */ |
134 |
< |
#ifdef SIGPIPE /* not present on Windows */ |
134 |
> |
signal(SIGINT, quit); |
135 |
> |
#ifdef SIGHUP |
136 |
> |
signal(SIGHUP, quit); |
137 |
> |
#endif |
138 |
> |
#ifdef SIGTERM |
139 |
> |
signal(SIGTERM, quit); |
140 |
> |
#endif |
141 |
> |
#ifdef SIGPIPE |
142 |
|
signal(SIGPIPE, quit); |
143 |
|
#endif |
144 |
< |
/* start rtrace process */ |
145 |
< |
errno = 0; |
165 |
< |
maxbytes = open_process(&(rt.pd), rtargv); |
166 |
< |
if (maxbytes == 0) { |
167 |
< |
eputs(rtargv[0]); |
168 |
< |
eputs(": command not found\n"); |
169 |
< |
exit(1); |
170 |
< |
} |
171 |
< |
if (maxbytes < 0) |
172 |
< |
error(SYSTEM, "cannot start rtrace process"); |
173 |
< |
rt.bsiz = maxbytes/(6*sizeof(float)); |
174 |
< |
rt.buf = (float *)malloc(6*sizeof(float)*rt.bsiz--); |
175 |
< |
rt.dest = (float **)malloc(sizeof(float *)*rt.bsiz); |
176 |
< |
if (rt.buf == NULL || rt.dest == NULL) |
177 |
< |
error(SYSTEM, "out of memory in init"); |
178 |
< |
rt.nrays = 0; |
179 |
< |
/* set up urand */ |
180 |
< |
initurand(16384); |
144 |
> |
/* start rendering process(es) */ |
145 |
> |
ray_pinit(octnm, np); |
146 |
|
} |
147 |
|
|
148 |
|
|
149 |
|
void |
150 |
< |
eputs(s) /* put string to stderr */ |
151 |
< |
register char *s; |
150 |
> |
eputs( /* put string to stderr */ |
151 |
> |
char *s |
152 |
> |
) |
153 |
|
{ |
154 |
|
static int midline = 0; |
155 |
|
|
172 |
|
} |
173 |
|
|
174 |
|
|
175 |
< |
filter(infp, name) /* process stream */ |
176 |
< |
register FILE *infp; |
177 |
< |
char *name; |
175 |
> |
void |
176 |
> |
quit(ec) /* make sure exit is called */ |
177 |
> |
int ec; |
178 |
|
{ |
179 |
+ |
if (ray_pnprocs > 0) /* close children if any */ |
180 |
+ |
ray_pclose(0); |
181 |
+ |
else if (ray_pnprocs < 0) |
182 |
+ |
_exit(ec); /* avoid flush() in child */ |
183 |
+ |
exit(ec); |
184 |
+ |
} |
185 |
+ |
|
186 |
+ |
|
187 |
+ |
void |
188 |
+ |
filter( /* process stream */ |
189 |
+ |
FILE *infp, |
190 |
+ |
char *name |
191 |
+ |
) |
192 |
+ |
{ |
193 |
|
char buf[512]; |
194 |
|
FILE *pfp; |
195 |
< |
register int c; |
195 |
> |
int c; |
196 |
|
|
197 |
|
while ((c = getc(infp)) != EOF) { |
198 |
|
if (isspace(c)) |
218 |
|
} |
219 |
|
|
220 |
|
|
221 |
< |
xoptions(s, nm) /* process options in string s */ |
222 |
< |
char *s; |
223 |
< |
char *nm; |
221 |
> |
void |
222 |
> |
xoptions( /* process options in string s */ |
223 |
> |
char *s, |
224 |
> |
char *nm |
225 |
> |
) |
226 |
|
{ |
245 |
– |
extern FILE *freopen(); |
227 |
|
char buf[64]; |
228 |
+ |
int negax; |
229 |
|
int nerrs = 0; |
230 |
< |
register char *cp; |
230 |
> |
char *cp; |
231 |
|
|
232 |
|
if (strncmp(s, "#@mkillum", 9) || !isspace(s[9])) { |
233 |
|
fputs(s, stdout); /* not for us */ |
305 |
|
} |
306 |
|
cp = sskip(cp); |
307 |
|
continue; |
308 |
< |
case 'd': /* point sample density */ |
308 |
> |
case 'd': /* sample density */ |
309 |
|
if (*++cp != '=') |
310 |
|
break; |
311 |
< |
if (!isintd(++cp, " \t\n\r")) |
312 |
< |
break; |
313 |
< |
thisillum.sampdens = atoi(cp); |
311 |
> |
if (!*++cp || isspace(*cp)) |
312 |
> |
continue; |
313 |
> |
if (isintd(cp, " \t\n\r")) { |
314 |
> |
thisillum.sampdens = atoi(cp); |
315 |
> |
} else { |
316 |
> |
error(WARNING, "direct BSDF input unsupported"); |
317 |
> |
goto opterr; |
318 |
> |
} |
319 |
|
cp = sskip(cp); |
320 |
|
continue; |
321 |
< |
case 's': /* point super-samples */ |
321 |
> |
case 's': /* surface super-samples */ |
322 |
|
if (*++cp != '=') |
323 |
|
break; |
324 |
|
if (!isintd(++cp, " \t\n\r")) |
386 |
|
printf("# %s", s+2); |
387 |
|
} |
388 |
|
|
389 |
< |
|
390 |
< |
printopts() /* print out option default values */ |
389 |
> |
void |
390 |
> |
printopts(void) /* print out option default values */ |
391 |
|
{ |
392 |
|
printf("m=%-15s\t\t# material name\n", thisillum.matname); |
393 |
|
printf("f=%-15s\t\t# data file name\n", thisillum.datafile); |
402 |
|
printf("l+\t\t\t\t# light type on\n"); |
403 |
|
else |
404 |
|
printf("l-\t\t\t\t# light type off\n"); |
405 |
< |
printf("d=%d\t\t\t\t# density of points\n", thisillum.sampdens); |
406 |
< |
printf("s=%d\t\t\t\t# samples per point\n", thisillum.nsamps); |
405 |
> |
printf("d=%d\t\t\t\t# density of directions\n", thisillum.sampdens); |
406 |
> |
printf("s=%d\t\t\t\t# samples per direction\n", thisillum.nsamps); |
407 |
|
printf("b=%f\t\t\t# minimum average brightness\n", thisillum.minbrt); |
408 |
|
} |
409 |
|
|
410 |
|
|
411 |
< |
printhead(ac, av) /* print out header */ |
412 |
< |
register int ac; |
413 |
< |
register char **av; |
411 |
> |
void |
412 |
> |
printhead( /* print out header */ |
413 |
> |
int ac, |
414 |
> |
char **av |
415 |
> |
) |
416 |
|
{ |
417 |
|
putchar('#'); |
418 |
|
while (ac-- > 0) { |
423 |
|
} |
424 |
|
|
425 |
|
|
426 |
< |
xobject(fp, nm) /* translate an object from fp */ |
427 |
< |
FILE *fp; |
428 |
< |
char *nm; |
426 |
> |
void |
427 |
> |
xobject( /* translate an object from fp */ |
428 |
> |
FILE *fp, |
429 |
> |
char *nm |
430 |
> |
) |
431 |
|
{ |
432 |
|
OBJREC thisobj; |
433 |
|
char str[MAXSTR]; |
478 |
|
checkhead(); |
479 |
|
/* process object */ |
480 |
|
if (doit) |
481 |
< |
(*ofun[thisobj.otype].funp)(&thisobj, &thisillum, &rt, nm); |
481 |
> |
switch (thisobj.otype) { |
482 |
> |
case OBJ_FACE: |
483 |
> |
my_face(&thisobj, &thisillum, nm); |
484 |
> |
break; |
485 |
> |
case OBJ_SPHERE: |
486 |
> |
my_sphere(&thisobj, &thisillum, nm); |
487 |
> |
break; |
488 |
> |
case OBJ_RING: |
489 |
> |
my_ring(&thisobj, &thisillum, nm); |
490 |
> |
break; |
491 |
> |
default: |
492 |
> |
my_default(&thisobj, &thisillum, nm); |
493 |
> |
break; |
494 |
> |
} |
495 |
|
else |
496 |
|
printobj(thisillum.altmat, &thisobj); |
497 |
|
/* free arguments */ |
498 |
|
freefargs(&thisobj.oargs); |
499 |
|
return; |
500 |
|
readerr: |
501 |
< |
sprintf(errmsg, "(%s): error reading scene", nm); |
501 |
> |
sprintf(errmsg, "(%s): error reading input", nm); |
502 |
|
error(USER, errmsg); |
503 |
|
} |