1 |
< |
/* Copyright (c) 1986 Regents of the University of California */ |
1 |
> |
/* Copyright (c) 1992 Regents of the University of California */ |
2 |
|
|
3 |
|
#ifndef lint |
4 |
|
static char SCCSid[] = "$SunId$ LBL"; |
20 |
|
* All values default to ascii representation of real |
21 |
|
* numbers. Binary representations can be selected |
22 |
|
* with '-ff' for float or '-fd' for double. By default, |
23 |
< |
* radiance is computed. The '-i' option indicates that |
23 |
> |
* radiance is computed. The '-i' or '-I' options indicate that |
24 |
|
* irradiance values are desired. |
25 |
|
*/ |
26 |
|
|
27 |
|
#include "ray.h" |
28 |
|
|
29 |
+ |
#include "octree.h" |
30 |
+ |
|
31 |
|
#include "otypes.h" |
32 |
|
|
33 |
+ |
#include "resolu.h" |
34 |
+ |
|
35 |
+ |
int dimlist[MAXDIM]; /* sampling dimensions */ |
36 |
+ |
int ndims = 0; /* number of sampling dimensions */ |
37 |
+ |
int samplendx = 0; /* index for this sample */ |
38 |
+ |
|
39 |
+ |
int imm_irrad = 0; /* compute immediate irradiance? */ |
40 |
+ |
|
41 |
|
int inform = 'a'; /* input format */ |
42 |
|
int outform = 'a'; /* output format */ |
43 |
|
char *outvals = "v"; /* output specification */ |
48 |
|
double dstrsrc = 0.0; /* square source distribution */ |
49 |
|
double shadthresh = .05; /* shadow threshold */ |
50 |
|
double shadcert = .5; /* shadow certainty */ |
51 |
+ |
int directrelay = 1; /* number of source relays */ |
52 |
+ |
int vspretest = 512; /* virtual source pretest density */ |
53 |
+ |
int directvis = 1; /* sources visible? */ |
54 |
+ |
double srcsizerat = .25; /* maximum ratio source size/dist. */ |
55 |
|
|
56 |
+ |
double specthresh = .15; /* specular sampling threshold */ |
57 |
+ |
double specjitter = 1.; /* specular sampling jitter */ |
58 |
+ |
|
59 |
|
int maxdepth = 6; /* maximum recursion depth */ |
60 |
|
double minweight = 4e-3; /* minimum ray weight */ |
61 |
|
|
68 |
|
char *amblist[128]; /* ambient include/exclude list */ |
69 |
|
int ambincl = -1; /* include == 1, exclude == 0 */ |
70 |
|
|
71 |
+ |
extern OBJREC Lamb; /* a Lambertian surface */ |
72 |
+ |
|
73 |
|
static RAY thisray; /* for our convenience */ |
74 |
|
|
75 |
< |
static int oputo(), oputd(), oputv(), oputl(), |
76 |
< |
oputp(), oputn(), oputs(), oputw(), oputm(); |
75 |
> |
static int oputo(), oputd(), oputv(), oputl(), oputL(), |
76 |
> |
oputp(), oputn(), oputN(), oputs(), oputw(), oputm(); |
77 |
|
|
78 |
< |
static int (*ray_out[10])(), (*every_out[10])(); |
78 |
> |
static int ourtrace(), tabin(); |
79 |
> |
static int (*ray_out[16])(), (*every_out[16])(); |
80 |
> |
static int castonly = 0; |
81 |
|
|
82 |
|
static int puta(), putf(), putd(); |
83 |
|
|
87 |
|
quit(code) /* quit program */ |
88 |
|
int code; |
89 |
|
{ |
90 |
+ |
#ifndef NIX |
91 |
+ |
headclean(); /* delete header file */ |
92 |
+ |
pfclean(); /* clean up persist files */ |
93 |
+ |
#endif |
94 |
|
exit(code); |
95 |
|
} |
96 |
|
|
97 |
|
|
98 |
+ |
char * |
99 |
+ |
formstr(f) /* return format identifier */ |
100 |
+ |
int f; |
101 |
+ |
{ |
102 |
+ |
switch (f) { |
103 |
+ |
case 'a': return("ascii"); |
104 |
+ |
case 'f': return("float"); |
105 |
+ |
case 'd': return("double"); |
106 |
+ |
case 'c': return(COLRFMT); |
107 |
+ |
} |
108 |
+ |
return("unknown"); |
109 |
+ |
} |
110 |
+ |
|
111 |
+ |
|
112 |
|
rtrace(fname) /* trace rays from file */ |
113 |
|
char *fname; |
114 |
|
{ |
123 |
|
sprintf(errmsg, "cannot open input file \"%s\"", fname); |
124 |
|
error(SYSTEM, errmsg); |
125 |
|
} |
126 |
+ |
#ifdef MSDOS |
127 |
+ |
if (inform != 'a') |
128 |
+ |
setmode(fileno(fp), O_BINARY); |
129 |
+ |
#endif |
130 |
|
/* set up output */ |
131 |
< |
setoutput(outvals); |
131 |
> |
if (imm_irrad) |
132 |
> |
outvals = "v"; |
133 |
> |
else |
134 |
> |
setoutput(outvals); |
135 |
|
switch (outform) { |
136 |
|
case 'a': putreal = puta; break; |
137 |
|
case 'f': putreal = putf; break; |
138 |
|
case 'd': putreal = putd; break; |
139 |
+ |
case 'c': |
140 |
+ |
if (strcmp(outvals, "v")) |
141 |
+ |
error(USER, "color format with value output only"); |
142 |
+ |
break; |
143 |
+ |
default: |
144 |
+ |
error(CONSISTENCY, "botched output format"); |
145 |
|
} |
146 |
+ |
if (hresolu > 0) { |
147 |
+ |
if (vresolu > 0) |
148 |
+ |
fprtresolu(hresolu, vresolu, stdout); |
149 |
+ |
fflush(stdout); |
150 |
+ |
} |
151 |
|
/* process file */ |
152 |
|
while (getvec(orig, inform, fp) == 0 && |
153 |
|
getvec(direc, inform, fp) == 0) { |
156 |
|
fflush(stdout); |
157 |
|
continue; |
158 |
|
} |
159 |
+ |
samplendx++; |
160 |
|
/* compute and print */ |
161 |
< |
if (outvals[0] == 'i') |
161 |
> |
if (imm_irrad) |
162 |
|
irrad(orig, direc); |
163 |
|
else |
164 |
< |
radiance(orig, direc); |
164 |
> |
traceray(orig, direc); |
165 |
|
/* flush if time */ |
166 |
|
if (--nextflush == 0) { |
167 |
|
fflush(stdout); |
172 |
|
if (--vcount == 0) /* check for end */ |
173 |
|
break; |
174 |
|
} |
175 |
+ |
fflush(stdout); |
176 |
|
if (vcount > 0) |
177 |
|
error(USER, "read error"); |
178 |
< |
fclose(fp); |
178 |
> |
if (fname != NULL) |
179 |
> |
fclose(fp); |
180 |
|
} |
181 |
|
|
182 |
|
|
183 |
|
setoutput(vs) /* set up output tables */ |
184 |
|
register char *vs; |
185 |
|
{ |
186 |
< |
extern int ourtrace(), (*trace)(); |
186 |
> |
extern int (*trace)(); |
187 |
|
register int (**table)() = ray_out; |
188 |
|
|
189 |
+ |
castonly = 1; |
190 |
|
while (*vs) |
191 |
|
switch (*vs++) { |
192 |
|
case 't': /* trace */ |
193 |
|
*table = NULL; |
194 |
|
table = every_out; |
195 |
|
trace = ourtrace; |
196 |
+ |
castonly = 0; |
197 |
|
break; |
198 |
|
case 'o': /* origin */ |
199 |
|
*table++ = oputo; |
203 |
|
break; |
204 |
|
case 'v': /* value */ |
205 |
|
*table++ = oputv; |
206 |
+ |
castonly = 0; |
207 |
|
break; |
208 |
< |
case 'l': /* length */ |
208 |
> |
case 'l': /* effective distance */ |
209 |
|
*table++ = oputl; |
210 |
+ |
castonly = 0; |
211 |
|
break; |
212 |
+ |
case 'L': /* single ray length */ |
213 |
+ |
*table++ = oputL; |
214 |
+ |
break; |
215 |
|
case 'p': /* point */ |
216 |
|
*table++ = oputp; |
217 |
|
break; |
218 |
< |
case 'n': /* normal */ |
218 |
> |
case 'n': /* perturbed normal */ |
219 |
|
*table++ = oputn; |
220 |
+ |
castonly = 0; |
221 |
|
break; |
222 |
+ |
case 'N': /* unperturbed normal */ |
223 |
+ |
*table++ = oputN; |
224 |
+ |
break; |
225 |
|
case 's': /* surface */ |
226 |
|
*table++ = oputs; |
227 |
|
break; |
236 |
|
} |
237 |
|
|
238 |
|
|
239 |
< |
radiance(org, dir) /* compute radiance value */ |
239 |
> |
traceray(org, dir) /* compute and print ray value(s) */ |
240 |
|
FVECT org, dir; |
241 |
|
{ |
242 |
|
register int (**tp)(); |
244 |
|
VCOPY(thisray.rorg, org); |
245 |
|
VCOPY(thisray.rdir, dir); |
246 |
|
rayorigin(&thisray, NULL, PRIMARY, 1.0); |
247 |
< |
rayvalue(&thisray); |
247 |
> |
if (castonly) |
248 |
> |
localhit(&thisray, &thescene) || sourcehit(&thisray); |
249 |
> |
else |
250 |
> |
rayvalue(&thisray); |
251 |
|
|
252 |
|
if (ray_out[0] == NULL) |
253 |
|
return; |
258 |
|
} |
259 |
|
|
260 |
|
|
261 |
< |
irrad(org, dir) /* compute irradiance value */ |
261 |
> |
irrad(org, dir) /* compute immediate irradiance value */ |
262 |
|
FVECT org, dir; |
263 |
|
{ |
190 |
– |
static double Lambfa[5] = {PI, PI, PI, 0.0, 0.0}; |
191 |
– |
static OBJREC Lamb = { |
192 |
– |
OVOID, MAT_PLASTIC, "Lambertian", |
193 |
– |
{0, 5, NULL, Lambfa}, NULL, -1, |
194 |
– |
}; |
264 |
|
register int i; |
265 |
|
|
266 |
|
for (i = 0; i < 3; i++) { |
287 |
|
int fmt; |
288 |
|
FILE *fp; |
289 |
|
{ |
290 |
+ |
extern char *fgetword(); |
291 |
|
static float vf[3]; |
292 |
+ |
static double vd[3]; |
293 |
+ |
char buf[32]; |
294 |
+ |
register int i; |
295 |
|
|
296 |
|
switch (fmt) { |
297 |
|
case 'a': /* ascii */ |
298 |
< |
if (fscanf(fp, "%lf %lf %lf", vec, vec+1, vec+2) != 3) |
299 |
< |
return(-1); |
298 |
> |
for (i = 0; i < 3; i++) { |
299 |
> |
if (fgetword(buf, sizeof(buf), fp) == NULL || |
300 |
> |
!isflt(buf)) |
301 |
> |
return(-1); |
302 |
> |
vec[i] = atof(buf); |
303 |
> |
} |
304 |
|
break; |
305 |
|
case 'f': /* binary float */ |
306 |
|
if (fread((char *)vf, sizeof(float), 3, fp) != 3) |
308 |
|
vec[0] = vf[0]; vec[1] = vf[1]; vec[2] = vf[2]; |
309 |
|
break; |
310 |
|
case 'd': /* binary double */ |
311 |
< |
if (fread((char *)vec, sizeof(double), 3, fp) != 3) |
311 |
> |
if (fread((char *)vd, sizeof(double), 3, fp) != 3) |
312 |
|
return(-1); |
313 |
+ |
vec[0] = vd[0]; vec[1] = vd[1]; vec[2] = vd[2]; |
314 |
|
break; |
315 |
+ |
default: |
316 |
+ |
error(CONSISTENCY, "botched input format"); |
317 |
|
} |
318 |
|
return(0); |
319 |
|
} |
369 |
|
oputv(r) /* print value */ |
370 |
|
register RAY *r; |
371 |
|
{ |
372 |
+ |
COLR cout; |
373 |
+ |
|
374 |
+ |
if (outform == 'c') { |
375 |
+ |
setcolr(cout, colval(r->rcol,RED), |
376 |
+ |
colval(r->rcol,GRN), |
377 |
+ |
colval(r->rcol,BLU)); |
378 |
+ |
fwrite((char *)cout, sizeof(cout), 1, stdout); |
379 |
+ |
return; |
380 |
+ |
} |
381 |
|
(*putreal)(colval(r->rcol,RED)); |
382 |
|
(*putreal)(colval(r->rcol,GRN)); |
383 |
|
(*putreal)(colval(r->rcol,BLU)); |
385 |
|
|
386 |
|
|
387 |
|
static |
388 |
< |
oputl(r) /* print length */ |
388 |
> |
oputl(r) /* print effective distance */ |
389 |
|
register RAY *r; |
390 |
|
{ |
391 |
|
(*putreal)(r->rt); |
393 |
|
|
394 |
|
|
395 |
|
static |
396 |
+ |
oputL(r) /* print single ray length */ |
397 |
+ |
register RAY *r; |
398 |
+ |
{ |
399 |
+ |
(*putreal)(r->rot); |
400 |
+ |
} |
401 |
+ |
|
402 |
+ |
|
403 |
+ |
static |
404 |
|
oputp(r) /* print point */ |
405 |
|
register RAY *r; |
406 |
|
{ |
417 |
|
|
418 |
|
|
419 |
|
static |
420 |
< |
oputn(r) /* print normal */ |
420 |
> |
oputN(r) /* print unperturbed normal */ |
421 |
|
register RAY *r; |
422 |
|
{ |
423 |
|
if (r->rot < FHUGE) { |
429 |
|
(*putreal)(0.0); |
430 |
|
(*putreal)(0.0); |
431 |
|
} |
432 |
+ |
} |
433 |
+ |
|
434 |
+ |
|
435 |
+ |
static |
436 |
+ |
oputn(r) /* print perturbed normal */ |
437 |
+ |
RAY *r; |
438 |
+ |
{ |
439 |
+ |
FVECT pnorm; |
440 |
+ |
|
441 |
+ |
if (r->rot >= FHUGE) { |
442 |
+ |
(*putreal)(0.0); |
443 |
+ |
(*putreal)(0.0); |
444 |
+ |
(*putreal)(0.0); |
445 |
+ |
return; |
446 |
+ |
} |
447 |
+ |
raynormal(pnorm, r); |
448 |
+ |
(*putreal)(pnorm[0]); |
449 |
+ |
(*putreal)(pnorm[1]); |
450 |
+ |
(*putreal)(pnorm[2]); |
451 |
|
} |
452 |
|
|
453 |
|
|