28 |
|
#include "ambient.h" |
29 |
|
#include "source.h" |
30 |
|
#include "otypes.h" |
31 |
+ |
#include "otspecial.h" |
32 |
|
#include "resolu.h" |
33 |
|
#include "random.h" |
34 |
|
|
35 |
< |
CUBE thescene; /* our scene */ |
36 |
< |
OBJECT nsceneobjs; /* number of objects in our scene */ |
35 |
> |
extern int inform; /* input format */ |
36 |
> |
extern int outform; /* output format */ |
37 |
> |
extern char *outvals; /* output values */ |
38 |
|
|
39 |
< |
int dimlist[MAXDIM]; /* sampling dimensions */ |
40 |
< |
int ndims = 0; /* number of sampling dimensions */ |
39 |
< |
int samplendx = 0; /* index for this sample */ |
39 |
> |
extern int imm_irrad; /* compute immediate irradiance? */ |
40 |
> |
extern int lim_dist; /* limit distance? */ |
41 |
|
|
42 |
< |
int imm_irrad = 0; /* compute immediate irradiance? */ |
43 |
< |
int lim_dist = 0; /* limit distance? */ |
42 |
> |
extern char *tralist[]; /* list of modifers to trace (or no) */ |
43 |
> |
extern int traincl; /* include == 1, exclude == 0 */ |
44 |
|
|
45 |
< |
int inform = 'a'; /* input format */ |
46 |
< |
int outform = 'a'; /* output format */ |
46 |
< |
char *outvals = "v"; /* output specification */ |
45 |
> |
extern int hresolu; /* horizontal resolution */ |
46 |
> |
extern int vresolu; /* vertical resolution */ |
47 |
|
|
48 |
< |
int do_irrad = 0; /* compute irradiance? */ |
48 |
> |
int castonly = 0; /* only doing ray-casting? */ |
49 |
|
|
50 |
– |
int rand_samp = 0; /* pure Monte Carlo sampling? */ |
51 |
– |
|
52 |
– |
void (*trace)() = NULL; /* trace call */ |
53 |
– |
|
54 |
– |
char *tralist[128]; /* list of modifers to trace (or no) */ |
55 |
– |
int traincl = -1; /* include == 1, exclude == 0 */ |
50 |
|
#ifndef MAXTSET |
51 |
< |
#define MAXTSET 1024 /* maximum number in trace set */ |
51 |
> |
#define MAXTSET 8191 /* maximum number in trace set */ |
52 |
|
#endif |
53 |
|
OBJECT traset[MAXTSET+1]={0}; /* trace include/exclude set */ |
54 |
|
|
55 |
< |
int hresolu = 0; /* horizontal (scan) size */ |
62 |
< |
int vresolu = 0; /* vertical resolution */ |
55 |
> |
static RAY thisray; /* for our convenience */ |
56 |
|
|
57 |
< |
double dstrsrc = 0.0; /* square source distribution */ |
65 |
< |
double shadthresh = .03; /* shadow threshold */ |
66 |
< |
double shadcert = .75; /* shadow certainty */ |
67 |
< |
int directrelay = 2; /* number of source relays */ |
68 |
< |
int vspretest = 512; /* virtual source pretest density */ |
69 |
< |
int directvis = 1; /* sources visible? */ |
70 |
< |
double srcsizerat = .2; /* maximum ratio source size/dist. */ |
57 |
> |
static FILE *inpfp = NULL; /* input stream pointer */ |
58 |
|
|
59 |
< |
COLOR cextinction = BLKCOLOR; /* global extinction coefficient */ |
60 |
< |
COLOR salbedo = BLKCOLOR; /* global scattering albedo */ |
61 |
< |
double seccg = 0.; /* global scattering eccentricity */ |
75 |
< |
double ssampdist = 0.; /* scatter sampling distance */ |
59 |
> |
static FVECT *inp_queue = NULL; /* ray input queue if flushing */ |
60 |
> |
static int inp_qpos = 0; /* next ray to return */ |
61 |
> |
static int inp_qend = 0; /* number of rays in this work group */ |
62 |
|
|
63 |
< |
double specthresh = .15; /* specular sampling threshold */ |
64 |
< |
double specjitter = 1.; /* specular sampling jitter */ |
63 |
> |
typedef void putf_t(RREAL *v, int n); |
64 |
> |
static putf_t puta, putd, putf, putrgbe; |
65 |
|
|
80 |
– |
int backvis = 1; /* back face visibility */ |
81 |
– |
|
82 |
– |
int maxdepth = -10; /* maximum recursion depth */ |
83 |
– |
double minweight = 2e-3; /* minimum ray weight */ |
84 |
– |
|
85 |
– |
char *ambfile = NULL; /* ambient file name */ |
86 |
– |
COLOR ambval = BLKCOLOR; /* ambient value */ |
87 |
– |
int ambvwt = 0; /* initial weight for ambient value */ |
88 |
– |
double ambacc = 0.15; /* ambient accuracy */ |
89 |
– |
int ambres = 256; /* ambient resolution */ |
90 |
– |
int ambdiv = 1024; /* ambient divisions */ |
91 |
– |
int ambssamp = 512; /* ambient super-samples */ |
92 |
– |
int ambounce = 0; /* ambient bounces */ |
93 |
– |
char *amblist[AMBLLEN]; /* ambient include/exclude list */ |
94 |
– |
int ambincl = -1; /* include == 1, exclude == 0 */ |
95 |
– |
|
96 |
– |
static int castonly = 0; |
97 |
– |
|
98 |
– |
static RAY thisray; /* for our convenience */ |
99 |
– |
|
100 |
– |
typedef void putf_t(double v); |
101 |
– |
static putf_t puta, putd, putf; |
102 |
– |
|
66 |
|
typedef void oputf_t(RAY *r); |
67 |
|
static oputf_t oputo, oputd, oputv, oputV, oputl, oputL, oputc, oputp, |
68 |
< |
oputn, oputN, oputs, oputw, oputW, oputm, oputM, oputtilde; |
68 |
> |
oputr, oputR, oputx, oputX, oputn, oputN, oputs, |
69 |
> |
oputw, oputW, oputm, oputM, oputtilde; |
70 |
|
|
71 |
< |
static void setoutput(char *vs); |
72 |
< |
static void tranotify(OBJECT obj); |
71 |
> |
extern void tranotify(OBJECT obj); |
72 |
> |
static int is_fifo(FILE *fp); |
73 |
|
static void bogusray(void); |
74 |
< |
static void rad(FVECT org, FVECT dir, double dmax); |
75 |
< |
static void irrad(FVECT org, FVECT dir); |
76 |
< |
static void printvals(RAY *r); |
77 |
< |
static int getvec(FVECT vec, int fmt, FILE *fp); |
78 |
< |
static void tabin(RAY *r); |
79 |
< |
static void ourtrace(RAY *r); |
74 |
> |
static void raycast(RAY *r); |
75 |
> |
static void rayirrad(RAY *r); |
76 |
> |
static void rtcompute(FVECT org, FVECT dir, double dmax); |
77 |
> |
static int printvals(RAY *r); |
78 |
> |
static int getvec(FVECT vec, int fmt, FILE *fp); |
79 |
> |
static int iszerovec(const FVECT vec); |
80 |
> |
static double nextray(FVECT org, FVECT dir); |
81 |
> |
static void tabin(RAY *r); |
82 |
> |
static void ourtrace(RAY *r); |
83 |
|
|
84 |
< |
static oputf_t *ray_out[16], *every_out[16]; |
84 |
> |
static oputf_t *ray_out[32], *every_out[32]; |
85 |
|
static putf_t *putreal; |
86 |
|
|
120 |
– |
void (*addobjnotify[])() = {ambnotify, tranotify, NULL}; |
87 |
|
|
122 |
– |
|
88 |
|
void |
89 |
|
quit( /* quit program */ |
90 |
|
int code |
91 |
|
) |
92 |
|
{ |
93 |
< |
#ifndef NON_POSIX /* XXX we don't clean up elsewhere? */ |
94 |
< |
headclean(); /* delete header file */ |
95 |
< |
pfclean(); /* clean up persist files */ |
93 |
> |
if (ray_pnprocs > 0) /* close children if any */ |
94 |
> |
ray_pclose(0); |
95 |
> |
else if (ray_pnprocs < 0) |
96 |
> |
_exit(code); /* avoid flush() in child */ |
97 |
> |
#ifndef NON_POSIX |
98 |
> |
else { |
99 |
> |
headclean(); /* delete header file */ |
100 |
> |
pfclean(); /* clean up persist files */ |
101 |
> |
} |
102 |
|
#endif |
103 |
|
exit(code); |
104 |
|
} |
105 |
|
|
106 |
|
|
107 |
< |
extern char * |
107 |
> |
char * |
108 |
|
formstr( /* return format identifier */ |
109 |
|
int f |
110 |
|
) |
119 |
|
} |
120 |
|
|
121 |
|
|
122 |
< |
extern void |
122 |
> |
void |
123 |
|
rtrace( /* trace rays from file */ |
124 |
< |
char *fname |
124 |
> |
char *fname, |
125 |
> |
int nproc |
126 |
|
) |
127 |
|
{ |
128 |
|
unsigned long vcount = (hresolu > 1) ? (unsigned long)hresolu*vresolu |
129 |
< |
: vresolu; |
130 |
< |
long nextflush = hresolu; |
129 |
> |
: (unsigned long)vresolu; |
130 |
> |
long nextflush = (!vresolu | (hresolu <= 1)) * hresolu; |
131 |
> |
int something2flush = 0; |
132 |
|
FILE *fp; |
133 |
|
double d; |
134 |
|
FVECT orig, direc; |
135 |
|
/* set up input */ |
136 |
|
if (fname == NULL) |
137 |
< |
fp = stdin; |
138 |
< |
else if ((fp = fopen(fname, "r")) == NULL) { |
137 |
> |
inpfp = stdin; |
138 |
> |
else if ((inpfp = fopen(fname, "r")) == NULL) { |
139 |
|
sprintf(errmsg, "cannot open input file \"%s\"", fname); |
140 |
|
error(SYSTEM, errmsg); |
141 |
|
} |
142 |
+ |
#ifdef getc_unlocked |
143 |
+ |
flockfile(inpfp); /* avoid lock/unlock overhead */ |
144 |
+ |
flockfile(stdout); |
145 |
+ |
#endif |
146 |
|
if (inform != 'a') |
147 |
< |
SET_FILE_BINARY(fp); |
147 |
> |
SET_FILE_BINARY(inpfp); |
148 |
|
/* set up output */ |
149 |
< |
setoutput(outvals); |
149 |
> |
if (castonly || every_out[0] != NULL) |
150 |
> |
nproc = 1; /* don't bother multiprocessing */ |
151 |
> |
if ((nextflush > 0) & (nproc > nextflush)) { |
152 |
> |
error(WARNING, "reducing number of processes to match flush interval"); |
153 |
> |
nproc = nextflush; |
154 |
> |
} |
155 |
|
switch (outform) { |
156 |
|
case 'a': putreal = puta; break; |
157 |
|
case 'f': putreal = putf; break; |
158 |
|
case 'd': putreal = putd; break; |
159 |
|
case 'c': |
160 |
< |
if (strcmp(outvals, "v")) |
161 |
< |
error(USER, "color format with value output only"); |
162 |
< |
break; |
160 |
> |
if (outvals[1] || !strchr("vrx", outvals[0])) |
161 |
> |
error(USER, "color format only with -ov, -or, -ox"); |
162 |
> |
putreal = putrgbe; break; |
163 |
|
default: |
164 |
|
error(CONSISTENCY, "botched output format"); |
165 |
|
} |
166 |
+ |
if (nproc > 1) { /* start multiprocessing */ |
167 |
+ |
ray_popen(nproc); |
168 |
+ |
ray_fifo_out = printvals; |
169 |
+ |
} |
170 |
|
if (hresolu > 0) { |
171 |
|
if (vresolu > 0) |
172 |
|
fprtresolu(hresolu, vresolu, stdout); |
173 |
< |
fflush(stdout); |
173 |
> |
else |
174 |
> |
fflush(stdout); |
175 |
|
} |
176 |
< |
/* process file */ |
177 |
< |
while (getvec(orig, inform, fp) == 0 && |
178 |
< |
getvec(direc, inform, fp) == 0) { |
179 |
< |
|
180 |
< |
d = normalize(direc); |
181 |
< |
if (d == 0.0) { /* zero ==> flush */ |
182 |
< |
bogusray(); |
196 |
< |
if (--nextflush <= 0 || !vcount) { |
176 |
> |
/* process input rays */ |
177 |
> |
while ((d = nextray(orig, direc)) >= 0.0) { |
178 |
> |
if (d == 0.0) { /* flush request? */ |
179 |
> |
if (something2flush) { |
180 |
> |
if (ray_pnprocs > 1 && ray_fifo_flush() < 0) |
181 |
> |
error(USER, "child(ren) died"); |
182 |
> |
bogusray(); |
183 |
|
fflush(stdout); |
184 |
< |
nextflush = hresolu; |
185 |
< |
} |
186 |
< |
} else { |
187 |
< |
samplendx = rand_samp ? random() : samplendx+1; |
188 |
< |
/* compute and print */ |
189 |
< |
if (imm_irrad) |
190 |
< |
irrad(orig, direc); |
191 |
< |
else |
192 |
< |
rad(orig, direc, lim_dist ? d : 0.0); |
207 |
< |
/* flush if time */ |
208 |
< |
if (!--nextflush) { |
184 |
> |
nextflush = (!vresolu | (hresolu <= 1)) * hresolu; |
185 |
> |
something2flush = 0; |
186 |
> |
} else |
187 |
> |
bogusray(); |
188 |
> |
} else { /* compute and print */ |
189 |
> |
rtcompute(orig, direc, lim_dist ? d : 0.0); |
190 |
> |
if (!--nextflush) { /* flush if time */ |
191 |
> |
if (ray_pnprocs > 1 && ray_fifo_flush() < 0) |
192 |
> |
error(USER, "child(ren) died"); |
193 |
|
fflush(stdout); |
194 |
|
nextflush = hresolu; |
195 |
< |
} |
195 |
> |
} else |
196 |
> |
something2flush = 1; |
197 |
|
} |
198 |
|
if (ferror(stdout)) |
199 |
|
error(SYSTEM, "write error"); |
200 |
|
if (vcount && !--vcount) /* check for end */ |
201 |
|
break; |
202 |
|
} |
203 |
+ |
if (ray_pnprocs > 1) { /* clean up children */ |
204 |
+ |
if (ray_fifo_flush() < 0) |
205 |
+ |
error(USER, "unable to complete processing"); |
206 |
+ |
ray_pclose(0); |
207 |
+ |
} |
208 |
+ |
if (vcount) |
209 |
+ |
error(WARNING, "unexpected EOF on input"); |
210 |
|
if (fflush(stdout) < 0) |
211 |
|
error(SYSTEM, "write error"); |
212 |
< |
if (vcount) |
213 |
< |
error(USER, "unexpected EOF on input"); |
214 |
< |
if (fname != NULL) |
215 |
< |
fclose(fp); |
212 |
> |
if (fname != NULL) { |
213 |
> |
fclose(inpfp); |
214 |
> |
inpfp = NULL; |
215 |
> |
} |
216 |
> |
nextray(NULL, NULL); |
217 |
|
} |
218 |
|
|
219 |
|
|
227 |
|
} |
228 |
|
|
229 |
|
|
230 |
< |
static void |
231 |
< |
setoutput( /* set up output tables */ |
239 |
< |
register char *vs |
240 |
< |
) |
230 |
> |
int |
231 |
> |
setrtoutput(void) /* set up output tables, return #comp */ |
232 |
|
{ |
233 |
< |
register oputf_t **table = ray_out; |
233 |
> |
char *vs = outvals; |
234 |
> |
oputf_t **table = ray_out; |
235 |
> |
int ncomp = 0; |
236 |
|
|
237 |
< |
castonly = 1; |
238 |
< |
while (*vs) |
239 |
< |
switch (*vs++) { |
237 |
> |
if (!*vs) |
238 |
> |
error(USER, "empty output specification"); |
239 |
> |
|
240 |
> |
castonly = 1; /* sets castonly as side-effect */ |
241 |
> |
do |
242 |
> |
switch (*vs) { |
243 |
|
case 'T': /* trace sources */ |
244 |
< |
if (!*vs) break; |
244 |
> |
if (!vs[1]) break; |
245 |
|
trace_sources(); |
246 |
|
/* fall through */ |
247 |
|
case 't': /* trace */ |
248 |
< |
if (!*vs) break; |
248 |
> |
if (!vs[1]) break; |
249 |
|
*table = NULL; |
250 |
|
table = every_out; |
251 |
|
trace = ourtrace; |
253 |
|
break; |
254 |
|
case 'o': /* origin */ |
255 |
|
*table++ = oputo; |
256 |
+ |
ncomp += 3; |
257 |
|
break; |
258 |
|
case 'd': /* direction */ |
259 |
|
*table++ = oputd; |
260 |
+ |
ncomp += 3; |
261 |
|
break; |
262 |
+ |
case 'r': /* reflected contrib. */ |
263 |
+ |
*table++ = oputr; |
264 |
+ |
ncomp += 3; |
265 |
+ |
castonly = 0; |
266 |
+ |
break; |
267 |
+ |
case 'R': /* reflected distance */ |
268 |
+ |
*table++ = oputR; |
269 |
+ |
ncomp++; |
270 |
+ |
castonly = 0; |
271 |
+ |
break; |
272 |
+ |
case 'x': /* xmit contrib. */ |
273 |
+ |
*table++ = oputx; |
274 |
+ |
ncomp += 3; |
275 |
+ |
castonly = 0; |
276 |
+ |
break; |
277 |
+ |
case 'X': /* xmit distance */ |
278 |
+ |
*table++ = oputX; |
279 |
+ |
ncomp++; |
280 |
+ |
castonly = 0; |
281 |
+ |
break; |
282 |
|
case 'v': /* value */ |
283 |
|
*table++ = oputv; |
284 |
+ |
ncomp += 3; |
285 |
|
castonly = 0; |
286 |
|
break; |
287 |
|
case 'V': /* contribution */ |
288 |
|
*table++ = oputV; |
289 |
+ |
ncomp += 3; |
290 |
+ |
castonly = 0; |
291 |
|
if (ambounce > 0 && (ambacc > FTINY || ambssamp > 0)) |
292 |
|
error(WARNING, |
293 |
|
"-otV accuracy depends on -aa 0 -as 0"); |
294 |
|
break; |
295 |
|
case 'l': /* effective distance */ |
296 |
|
*table++ = oputl; |
297 |
+ |
ncomp++; |
298 |
|
castonly = 0; |
299 |
|
break; |
300 |
|
case 'c': /* local coordinates */ |
301 |
|
*table++ = oputc; |
302 |
+ |
ncomp += 2; |
303 |
|
break; |
304 |
|
case 'L': /* single ray length */ |
305 |
|
*table++ = oputL; |
306 |
+ |
ncomp++; |
307 |
|
break; |
308 |
|
case 'p': /* point */ |
309 |
|
*table++ = oputp; |
310 |
+ |
ncomp += 3; |
311 |
|
break; |
312 |
|
case 'n': /* perturbed normal */ |
313 |
|
*table++ = oputn; |
314 |
+ |
ncomp += 3; |
315 |
|
castonly = 0; |
316 |
|
break; |
317 |
|
case 'N': /* unperturbed normal */ |
318 |
|
*table++ = oputN; |
319 |
+ |
ncomp += 3; |
320 |
|
break; |
321 |
|
case 's': /* surface */ |
322 |
|
*table++ = oputs; |
323 |
+ |
ncomp++; |
324 |
|
break; |
325 |
|
case 'w': /* weight */ |
326 |
|
*table++ = oputw; |
327 |
+ |
ncomp++; |
328 |
|
break; |
329 |
|
case 'W': /* coefficient */ |
330 |
|
*table++ = oputW; |
331 |
< |
if (ambounce > 0 && (ambacc > FTINY || ambssamp > 0)) |
331 |
> |
ncomp += 3; |
332 |
> |
castonly = 0; |
333 |
> |
if (ambounce > 0 && (ambacc > FTINY) | (ambssamp > 0)) |
334 |
|
error(WARNING, |
335 |
|
"-otW accuracy depends on -aa 0 -as 0"); |
336 |
|
break; |
337 |
|
case 'm': /* modifier */ |
338 |
|
*table++ = oputm; |
339 |
+ |
ncomp++; |
340 |
|
break; |
341 |
|
case 'M': /* material */ |
342 |
|
*table++ = oputM; |
343 |
+ |
ncomp++; |
344 |
|
break; |
345 |
|
case '~': /* tilde */ |
346 |
|
*table++ = oputtilde; |
347 |
|
break; |
348 |
+ |
default: |
349 |
+ |
sprintf(errmsg, "unrecognized output option '%c'", *vs); |
350 |
+ |
error(USER, errmsg); |
351 |
|
} |
352 |
+ |
while (*++vs); |
353 |
+ |
|
354 |
|
*table = NULL; |
355 |
+ |
if (*every_out != NULL) |
356 |
+ |
ncomp = 0; |
357 |
+ |
/* compatibility */ |
358 |
+ |
if ((do_irrad | imm_irrad) && castonly) |
359 |
+ |
error(USER, "-I+ and -i+ options require some value output"); |
360 |
+ |
for (table = ray_out; *table != NULL; table++) { |
361 |
+ |
if ((*table == oputV) | (*table == oputW)) |
362 |
+ |
error(WARNING, "-oVW options require trace mode"); |
363 |
+ |
if ((do_irrad | imm_irrad) && |
364 |
+ |
(*table == oputr) | (*table == oputR) | |
365 |
+ |
(*table == oputx) | (*table == oputX)) |
366 |
+ |
error(WARNING, "-orRxX options incompatible with -I+ and -i+"); |
367 |
+ |
} |
368 |
+ |
return(ncomp); |
369 |
|
} |
370 |
|
|
371 |
|
|
372 |
|
static void |
373 |
|
bogusray(void) /* print out empty record */ |
374 |
|
{ |
323 |
– |
thisray.rorg[0] = thisray.rorg[1] = thisray.rorg[2] = |
324 |
– |
thisray.rdir[0] = thisray.rdir[1] = thisray.rdir[2] = 0.0; |
325 |
– |
thisray.rmax = 0.0; |
375 |
|
rayorigin(&thisray, PRIMARY, NULL, NULL); |
376 |
|
printvals(&thisray); |
377 |
|
} |
378 |
|
|
379 |
|
|
380 |
|
static void |
381 |
< |
rad( /* compute and print ray value(s) */ |
382 |
< |
FVECT org, |
334 |
< |
FVECT dir, |
335 |
< |
double dmax |
381 |
> |
raycast( /* compute first ray intersection only */ |
382 |
> |
RAY *r |
383 |
|
) |
384 |
|
{ |
385 |
< |
VCOPY(thisray.rorg, org); |
386 |
< |
VCOPY(thisray.rdir, dir); |
387 |
< |
thisray.rmax = dmax; |
388 |
< |
rayorigin(&thisray, PRIMARY, NULL, NULL); |
389 |
< |
if (castonly) { |
390 |
< |
if (!localhit(&thisray, &thescene)) { |
391 |
< |
if (thisray.ro == &Aftplane) { /* clipped */ |
345 |
< |
thisray.ro = NULL; |
346 |
< |
thisray.rot = FHUGE; |
347 |
< |
} else |
348 |
< |
sourcehit(&thisray); |
349 |
< |
} |
350 |
< |
} else |
351 |
< |
rayvalue(&thisray); |
352 |
< |
printvals(&thisray); |
385 |
> |
if (!localhit(r, &thescene)) { |
386 |
> |
if (r->ro == &Aftplane) { /* clipped */ |
387 |
> |
r->ro = NULL; |
388 |
> |
r->rot = FHUGE; |
389 |
> |
} else |
390 |
> |
sourcehit(r); |
391 |
> |
} |
392 |
|
} |
393 |
|
|
394 |
|
|
395 |
|
static void |
396 |
< |
irrad( /* compute immediate irradiance value */ |
397 |
< |
FVECT org, |
359 |
< |
FVECT dir |
396 |
> |
rayirrad( /* compute irradiance rather than radiance */ |
397 |
> |
RAY *r |
398 |
|
) |
399 |
|
{ |
400 |
< |
register int i; |
400 |
> |
void (*old_revf)(RAY *) = r->revf; |
401 |
> |
/* pretend we hit surface */ |
402 |
> |
r->rxt = r->rot = 1e-5; |
403 |
> |
VSUM(r->rop, r->rorg, r->rdir, r->rot); |
404 |
> |
r->ron[0] = -r->rdir[0]; |
405 |
> |
r->ron[1] = -r->rdir[1]; |
406 |
> |
r->ron[2] = -r->rdir[2]; |
407 |
> |
r->rod = 1.0; |
408 |
> |
/* compute result */ |
409 |
> |
r->revf = raytrace; |
410 |
> |
(*ofun[Lamb.otype].funp)(&Lamb, r); |
411 |
> |
r->revf = old_revf; |
412 |
> |
} |
413 |
|
|
414 |
< |
for (i = 0; i < 3; i++) { |
415 |
< |
thisray.rorg[i] = org[i] + dir[i]; |
416 |
< |
thisray.rdir[i] = -dir[i]; |
417 |
< |
} |
418 |
< |
thisray.rmax = 0.0; |
414 |
> |
|
415 |
> |
static void |
416 |
> |
rtcompute( /* compute and print ray value(s) */ |
417 |
> |
FVECT org, |
418 |
> |
FVECT dir, |
419 |
> |
double dmax |
420 |
> |
) |
421 |
> |
{ |
422 |
> |
/* set up ray */ |
423 |
|
rayorigin(&thisray, PRIMARY, NULL, NULL); |
424 |
< |
/* pretend we hit surface */ |
425 |
< |
thisray.rot = 1.0-1e-4; |
426 |
< |
thisray.rod = 1.0; |
427 |
< |
VCOPY(thisray.ron, dir); |
428 |
< |
for (i = 0; i < 3; i++) /* fudge factor */ |
429 |
< |
thisray.rop[i] = org[i] + 1e-4*dir[i]; |
430 |
< |
/* compute and print */ |
431 |
< |
(*ofun[Lamb.otype].funp)(&Lamb, &thisray); |
424 |
> |
if (imm_irrad) { |
425 |
> |
VSUM(thisray.rorg, org, dir, 1.1e-4); |
426 |
> |
thisray.rdir[0] = -dir[0]; |
427 |
> |
thisray.rdir[1] = -dir[1]; |
428 |
> |
thisray.rdir[2] = -dir[2]; |
429 |
> |
thisray.rmax = 0.0; |
430 |
> |
thisray.revf = rayirrad; |
431 |
> |
} else { |
432 |
> |
VCOPY(thisray.rorg, org); |
433 |
> |
VCOPY(thisray.rdir, dir); |
434 |
> |
thisray.rmax = dmax; |
435 |
> |
if (castonly) |
436 |
> |
thisray.revf = raycast; |
437 |
> |
} |
438 |
> |
if (ray_pnprocs > 1) { /* multiprocessing FIFO? */ |
439 |
> |
if (ray_fifo_in(&thisray) < 0) |
440 |
> |
error(USER, "lost children"); |
441 |
> |
return; |
442 |
> |
} |
443 |
> |
samplendx++; /* else do it ourselves */ |
444 |
> |
rayvalue(&thisray); |
445 |
|
printvals(&thisray); |
446 |
|
} |
447 |
|
|
448 |
|
|
449 |
< |
static void |
449 |
> |
static int |
450 |
|
printvals( /* print requested ray values */ |
451 |
|
RAY *r |
452 |
|
) |
453 |
|
{ |
454 |
< |
register oputf_t **tp; |
454 |
> |
oputf_t **tp; |
455 |
|
|
456 |
|
if (ray_out[0] == NULL) |
457 |
< |
return; |
457 |
> |
return(0); |
458 |
|
for (tp = ray_out; *tp != NULL; tp++) |
459 |
|
(**tp)(r); |
460 |
|
if (outform == 'a') |
461 |
|
putchar('\n'); |
462 |
+ |
return(1); |
463 |
|
} |
464 |
|
|
465 |
|
|
466 |
|
static int |
467 |
< |
getvec( /* get a vector from fp */ |
468 |
< |
register FVECT vec, |
467 |
> |
is_fifo( /* check if file pointer connected to pipe */ |
468 |
> |
FILE *fp |
469 |
> |
) |
470 |
> |
{ |
471 |
> |
#ifdef S_ISFIFO |
472 |
> |
struct stat sbuf; |
473 |
> |
|
474 |
> |
if (fstat(fileno(fp), &sbuf) < 0) |
475 |
> |
error(SYSTEM, "fstat() failed on input stream"); |
476 |
> |
return(S_ISFIFO(sbuf.st_mode)); |
477 |
> |
#else |
478 |
> |
return (fp == stdin); /* just a guess, really */ |
479 |
> |
#endif |
480 |
> |
} |
481 |
> |
|
482 |
> |
|
483 |
> |
static int |
484 |
> |
getvec( /* get a vector from fp */ |
485 |
> |
FVECT vec, |
486 |
|
int fmt, |
487 |
|
FILE *fp |
488 |
|
) |
490 |
|
static float vf[3]; |
491 |
|
static double vd[3]; |
492 |
|
char buf[32]; |
493 |
< |
register int i; |
493 |
> |
int i; |
494 |
|
|
495 |
|
switch (fmt) { |
496 |
|
case 'a': /* ascii */ |
502 |
|
} |
503 |
|
break; |
504 |
|
case 'f': /* binary float */ |
505 |
< |
if (fread((char *)vf, sizeof(float), 3, fp) != 3) |
505 |
> |
if (getbinary(vf, sizeof(float), 3, fp) != 3) |
506 |
|
return(-1); |
507 |
< |
vec[0] = vf[0]; vec[1] = vf[1]; vec[2] = vf[2]; |
507 |
> |
VCOPY(vec, vf); |
508 |
|
break; |
509 |
|
case 'd': /* binary double */ |
510 |
< |
if (fread((char *)vd, sizeof(double), 3, fp) != 3) |
510 |
> |
if (getbinary(vd, sizeof(double), 3, fp) != 3) |
511 |
|
return(-1); |
512 |
< |
vec[0] = vd[0]; vec[1] = vd[1]; vec[2] = vd[2]; |
512 |
> |
VCOPY(vec, vd); |
513 |
|
break; |
514 |
|
default: |
515 |
|
error(CONSISTENCY, "botched input format"); |
518 |
|
} |
519 |
|
|
520 |
|
|
521 |
< |
static void |
521 |
> |
static int |
522 |
> |
iszerovec(const FVECT vec) |
523 |
> |
{ |
524 |
> |
return (vec[0] == 0.0) & (vec[1] == 0.0) & (vec[2] == 0.0); |
525 |
> |
} |
526 |
> |
|
527 |
> |
|
528 |
> |
static double |
529 |
> |
nextray( /* return next ray in work group (-1.0 if EOF) */ |
530 |
> |
FVECT org, |
531 |
> |
FVECT dir |
532 |
> |
) |
533 |
> |
{ |
534 |
> |
const size_t qlength = !vresolu * hresolu; |
535 |
> |
|
536 |
> |
if ((org == NULL) | (dir == NULL)) { |
537 |
> |
if (inp_queue != NULL) /* asking to free queue */ |
538 |
> |
free(inp_queue); |
539 |
> |
inp_queue = NULL; |
540 |
> |
inp_qpos = inp_qend = 0; |
541 |
> |
return(-1.); |
542 |
> |
} |
543 |
> |
if (!inp_qend) { /* initialize FIFO queue */ |
544 |
> |
int rsiz = 6*20; /* conservative ascii ray size */ |
545 |
> |
if (inform == 'f') rsiz = 6*sizeof(float); |
546 |
> |
else if (inform == 'd') rsiz = 6*sizeof(double); |
547 |
> |
/* check against pipe limit */ |
548 |
> |
if (qlength*rsiz > 512 && is_fifo(inpfp)) |
549 |
> |
inp_queue = (FVECT *)malloc(sizeof(FVECT)*2*qlength); |
550 |
> |
inp_qend = -(inp_queue == NULL); /* flag for no queue */ |
551 |
> |
} |
552 |
> |
if (inp_qend < 0) { /* not queuing? */ |
553 |
> |
if (getvec(org, inform, inpfp) < 0 || |
554 |
> |
getvec(dir, inform, inpfp) < 0) |
555 |
> |
return(-1.); |
556 |
> |
return normalize(dir); |
557 |
> |
} |
558 |
> |
if (inp_qpos >= inp_qend) { /* need to refill input queue? */ |
559 |
> |
for (inp_qend = 0; inp_qend < qlength; inp_qend++) { |
560 |
> |
if (getvec(inp_queue[2*inp_qend], inform, inpfp) < 0 |
561 |
> |
|| getvec(inp_queue[2*inp_qend+1], |
562 |
> |
inform, inpfp) < 0) |
563 |
> |
break; /* hit EOF */ |
564 |
> |
if (iszerovec(inp_queue[2*inp_qend+1])) { |
565 |
> |
++inp_qend; /* flush request */ |
566 |
> |
break; |
567 |
> |
} |
568 |
> |
} |
569 |
> |
inp_qpos = 0; |
570 |
> |
} |
571 |
> |
if (inp_qpos >= inp_qend) /* unexpected EOF? */ |
572 |
> |
return(-1.); |
573 |
> |
VCOPY(org, inp_queue[2*inp_qpos]); |
574 |
> |
VCOPY(dir, inp_queue[2*inp_qpos+1]); |
575 |
> |
++inp_qpos; |
576 |
> |
return normalize(dir); |
577 |
> |
} |
578 |
> |
|
579 |
> |
|
580 |
> |
void |
581 |
|
tranotify( /* record new modifier */ |
582 |
|
OBJECT obj |
583 |
|
) |
584 |
|
{ |
585 |
|
static int hitlimit = 0; |
586 |
< |
register OBJREC *o = objptr(obj); |
587 |
< |
register char **tralp; |
586 |
> |
OBJREC *o = objptr(obj); |
587 |
> |
char **tralp; |
588 |
|
|
589 |
|
if (obj == OVOID) { /* starting over */ |
590 |
|
traset[0] = 0; |
611 |
|
RAY *r |
612 |
|
) |
613 |
|
{ |
614 |
< |
register oputf_t **tp; |
614 |
> |
oputf_t **tp; |
615 |
|
|
616 |
|
if (every_out[0] == NULL) |
617 |
|
return; |
645 |
|
RAY *r |
646 |
|
) |
647 |
|
{ |
648 |
< |
(*putreal)(r->rorg[0]); |
505 |
< |
(*putreal)(r->rorg[1]); |
506 |
< |
(*putreal)(r->rorg[2]); |
648 |
> |
(*putreal)(r->rorg, 3); |
649 |
|
} |
650 |
|
|
651 |
|
|
654 |
|
RAY *r |
655 |
|
) |
656 |
|
{ |
657 |
< |
(*putreal)(r->rdir[0]); |
516 |
< |
(*putreal)(r->rdir[1]); |
517 |
< |
(*putreal)(r->rdir[2]); |
657 |
> |
(*putreal)(r->rdir, 3); |
658 |
|
} |
659 |
|
|
660 |
|
|
661 |
|
static void |
662 |
+ |
oputr( /* print mirrored contribution */ |
663 |
+ |
RAY *r |
664 |
+ |
) |
665 |
+ |
{ |
666 |
+ |
RREAL cval[3]; |
667 |
+ |
|
668 |
+ |
cval[0] = colval(r->mcol,RED); |
669 |
+ |
cval[1] = colval(r->mcol,GRN); |
670 |
+ |
cval[2] = colval(r->mcol,BLU); |
671 |
+ |
(*putreal)(cval, 3); |
672 |
+ |
} |
673 |
+ |
|
674 |
+ |
|
675 |
+ |
|
676 |
+ |
static void |
677 |
+ |
oputR( /* print mirrored distance */ |
678 |
+ |
RAY *r |
679 |
+ |
) |
680 |
+ |
{ |
681 |
+ |
(*putreal)(&r->rmt, 1); |
682 |
+ |
} |
683 |
+ |
|
684 |
+ |
|
685 |
+ |
static void |
686 |
+ |
oputx( /* print unmirrored contribution */ |
687 |
+ |
RAY *r |
688 |
+ |
) |
689 |
+ |
{ |
690 |
+ |
RREAL cval[3]; |
691 |
+ |
|
692 |
+ |
cval[0] = colval(r->rcol,RED) - colval(r->mcol,RED); |
693 |
+ |
cval[1] = colval(r->rcol,GRN) - colval(r->mcol,GRN); |
694 |
+ |
cval[2] = colval(r->rcol,BLU) - colval(r->mcol,BLU); |
695 |
+ |
(*putreal)(cval, 3); |
696 |
+ |
} |
697 |
+ |
|
698 |
+ |
|
699 |
+ |
static void |
700 |
+ |
oputX( /* print unmirrored distance */ |
701 |
+ |
RAY *r |
702 |
+ |
) |
703 |
+ |
{ |
704 |
+ |
(*putreal)(&r->rxt, 1); |
705 |
+ |
} |
706 |
+ |
|
707 |
+ |
|
708 |
+ |
static void |
709 |
|
oputv( /* print value */ |
710 |
|
RAY *r |
711 |
|
) |
712 |
|
{ |
713 |
< |
if (outform == 'c') { |
714 |
< |
COLR cout; |
715 |
< |
setcolr(cout, colval(r->rcol,RED), |
716 |
< |
colval(r->rcol,GRN), |
717 |
< |
colval(r->rcol,BLU)); |
718 |
< |
fwrite((char *)cout, sizeof(cout), 1, stdout); |
532 |
< |
return; |
533 |
< |
} |
534 |
< |
(*putreal)(colval(r->rcol,RED)); |
535 |
< |
(*putreal)(colval(r->rcol,GRN)); |
536 |
< |
(*putreal)(colval(r->rcol,BLU)); |
713 |
> |
RREAL cval[3]; |
714 |
> |
|
715 |
> |
cval[0] = colval(r->rcol,RED); |
716 |
> |
cval[1] = colval(r->rcol,GRN); |
717 |
> |
cval[2] = colval(r->rcol,BLU); |
718 |
> |
(*putreal)(cval, 3); |
719 |
|
} |
720 |
|
|
721 |
|
|
724 |
|
RAY *r |
725 |
|
) |
726 |
|
{ |
727 |
< |
double contr[3]; |
727 |
> |
RREAL contr[3]; |
728 |
|
|
729 |
|
raycontrib(contr, r, PRIMARY); |
730 |
|
multcolor(contr, r->rcol); |
731 |
< |
(*putreal)(contr[RED]); |
550 |
< |
(*putreal)(contr[GRN]); |
551 |
< |
(*putreal)(contr[BLU]); |
731 |
> |
(*putreal)(contr, 3); |
732 |
|
} |
733 |
|
|
734 |
|
|
737 |
|
RAY *r |
738 |
|
) |
739 |
|
{ |
740 |
< |
(*putreal)(r->rt); |
740 |
> |
RREAL d = raydistance(r); |
741 |
> |
|
742 |
> |
(*putreal)(&d, 1); |
743 |
|
} |
744 |
|
|
745 |
|
|
748 |
|
RAY *r |
749 |
|
) |
750 |
|
{ |
751 |
< |
(*putreal)(r->rot); |
751 |
> |
(*putreal)(&r->rot, 1); |
752 |
|
} |
753 |
|
|
754 |
|
|
757 |
|
RAY *r |
758 |
|
) |
759 |
|
{ |
760 |
< |
(*putreal)(r->uv[0]); |
579 |
< |
(*putreal)(r->uv[1]); |
760 |
> |
(*putreal)(r->uv, 2); |
761 |
|
} |
762 |
|
|
763 |
|
|
764 |
+ |
static RREAL vdummy[3] = {0.0, 0.0, 0.0}; |
765 |
+ |
|
766 |
+ |
|
767 |
|
static void |
768 |
|
oputp( /* print point */ |
769 |
|
RAY *r |
770 |
|
) |
771 |
|
{ |
772 |
< |
if (r->rot < FHUGE) { |
773 |
< |
(*putreal)(r->rop[0]); |
774 |
< |
(*putreal)(r->rop[1]); |
775 |
< |
(*putreal)(r->rop[2]); |
592 |
< |
} else { |
593 |
< |
(*putreal)(0.0); |
594 |
< |
(*putreal)(0.0); |
595 |
< |
(*putreal)(0.0); |
596 |
< |
} |
772 |
> |
if (r->rot < FHUGE*.99) |
773 |
> |
(*putreal)(r->rop, 3); |
774 |
> |
else |
775 |
> |
(*putreal)(vdummy, 3); |
776 |
|
} |
777 |
|
|
778 |
|
|
781 |
|
RAY *r |
782 |
|
) |
783 |
|
{ |
784 |
< |
if (r->rot < FHUGE) { |
785 |
< |
(*putreal)(r->ron[0]); |
786 |
< |
(*putreal)(r->ron[1]); |
787 |
< |
(*putreal)(r->ron[2]); |
788 |
< |
} else { |
789 |
< |
(*putreal)(0.0); |
790 |
< |
(*putreal)(0.0); |
791 |
< |
(*putreal)(0.0); |
792 |
< |
} |
784 |
> |
if (r->rot < FHUGE*.99) { |
785 |
> |
if (r->rflips & 1) { /* undo any flippin' flips */ |
786 |
> |
FVECT unrm; |
787 |
> |
unrm[0] = -r->ron[0]; |
788 |
> |
unrm[1] = -r->ron[1]; |
789 |
> |
unrm[2] = -r->ron[2]; |
790 |
> |
(*putreal)(unrm, 3); |
791 |
> |
} else |
792 |
> |
(*putreal)(r->ron, 3); |
793 |
> |
} else |
794 |
> |
(*putreal)(vdummy, 3); |
795 |
|
} |
796 |
|
|
797 |
|
|
802 |
|
{ |
803 |
|
FVECT pnorm; |
804 |
|
|
805 |
< |
if (r->rot >= FHUGE) { |
806 |
< |
(*putreal)(0.0); |
626 |
< |
(*putreal)(0.0); |
627 |
< |
(*putreal)(0.0); |
805 |
> |
if (r->rot >= FHUGE*.99) { |
806 |
> |
(*putreal)(vdummy, 3); |
807 |
|
return; |
808 |
|
} |
809 |
|
raynormal(pnorm, r); |
810 |
< |
(*putreal)(pnorm[0]); |
632 |
< |
(*putreal)(pnorm[1]); |
633 |
< |
(*putreal)(pnorm[2]); |
810 |
> |
(*putreal)(pnorm, 3); |
811 |
|
} |
812 |
|
|
813 |
|
|
829 |
|
RAY *r |
830 |
|
) |
831 |
|
{ |
832 |
< |
(*putreal)(r->rweight); |
832 |
> |
RREAL rwt = r->rweight; |
833 |
> |
|
834 |
> |
(*putreal)(&rwt, 1); |
835 |
|
} |
836 |
|
|
837 |
|
|
840 |
|
RAY *r |
841 |
|
) |
842 |
|
{ |
843 |
< |
double contr[3]; |
843 |
> |
RREAL contr[3]; |
844 |
> |
/* shadow ray not on source? */ |
845 |
> |
if (r->rsrc >= 0 && source[r->rsrc].so != r->ro) |
846 |
> |
setcolor(contr, 0.0, 0.0, 0.0); |
847 |
> |
else |
848 |
> |
raycontrib(contr, r, PRIMARY); |
849 |
|
|
850 |
< |
raycontrib(contr, r, PRIMARY); |
667 |
< |
(*putreal)(contr[RED]); |
668 |
< |
(*putreal)(contr[GRN]); |
669 |
< |
(*putreal)(contr[BLU]); |
850 |
> |
(*putreal)(contr, 3); |
851 |
|
} |
852 |
|
|
853 |
|
|
895 |
|
|
896 |
|
|
897 |
|
static void |
898 |
< |
puta( /* print ascii value */ |
899 |
< |
double v |
898 |
> |
puta( /* print ascii value(s) */ |
899 |
> |
RREAL *v, int n |
900 |
|
) |
901 |
|
{ |
902 |
< |
printf("%e\t", v); |
902 |
> |
if (n == 3) { |
903 |
> |
printf("%e\t%e\t%e\t", v[0], v[1], v[2]); |
904 |
> |
return; |
905 |
> |
} |
906 |
> |
while (n--) |
907 |
> |
printf("%e\t", *v++); |
908 |
|
} |
909 |
|
|
910 |
|
|
911 |
|
static void |
912 |
< |
putd(v) /* print binary double */ |
727 |
< |
double v; |
912 |
> |
putd(RREAL *v, int n) /* output binary double(s) */ |
913 |
|
{ |
914 |
< |
fwrite((char *)&v, sizeof(v), 1, stdout); |
914 |
> |
#ifdef SMLFLT |
915 |
> |
double da[3]; |
916 |
> |
int i; |
917 |
> |
|
918 |
> |
if (n > 3) |
919 |
> |
error(INTERNAL, "code error in putd()"); |
920 |
> |
for (i = n; i--; ) |
921 |
> |
da[i] = v[i]; |
922 |
> |
putbinary(da, sizeof(double), n, stdout); |
923 |
> |
#else |
924 |
> |
putbinary(v, sizeof(RREAL), n, stdout); |
925 |
> |
#endif |
926 |
|
} |
927 |
|
|
928 |
|
|
929 |
|
static void |
930 |
< |
putf(v) /* print binary float */ |
735 |
< |
double v; |
930 |
> |
putf(RREAL *v, int n) /* output binary float(s) */ |
931 |
|
{ |
932 |
< |
float f = v; |
932 |
> |
#ifndef SMLFLT |
933 |
> |
float fa[3]; |
934 |
> |
int i; |
935 |
|
|
936 |
< |
fwrite((char *)&f, sizeof(f), 1, stdout); |
936 |
> |
if (n > 3) |
937 |
> |
error(INTERNAL, "code error in putf()"); |
938 |
> |
for (i = n; i--; ) |
939 |
> |
fa[i] = v[i]; |
940 |
> |
putbinary(fa, sizeof(float), n, stdout); |
941 |
> |
#else |
942 |
> |
putbinary(v, sizeof(RREAL), n, stdout); |
943 |
> |
#endif |
944 |
> |
} |
945 |
> |
|
946 |
> |
|
947 |
> |
static void |
948 |
> |
putrgbe(RREAL *v, int n) /* output RGBE color */ |
949 |
> |
{ |
950 |
> |
COLR cout; |
951 |
> |
|
952 |
> |
if (n != 3) |
953 |
> |
error(INTERNAL, "putrgbe() not called with 3 components"); |
954 |
> |
setcolr(cout, v[0], v[1], v[2]); |
955 |
> |
putbinary(cout, sizeof(cout), 1, stdout); |
956 |
|
} |