19 |
|
|
20 |
|
#include "random.h" |
21 |
|
|
22 |
< |
#define MINSAMPLES 5 /* minimum number of pretest samples */ |
23 |
< |
#define STESTMAX 30 /* maximum seeks per sample */ |
22 |
> |
#define MINSAMPLES 16 /* minimum number of pretest samples */ |
23 |
> |
#define STESTMAX 32 /* maximum seeks per sample */ |
24 |
|
|
25 |
|
|
26 |
|
double getdisk(); |
44 |
|
if (!isvlight(objptr(o->omod)->otype)) |
45 |
|
continue; |
46 |
|
if (sfun[o->otype].of == NULL || |
47 |
< |
sfun[o->otype].of->getpleq == NULL) |
48 |
< |
objerror(o, USER, "illegal material"); |
47 |
> |
sfun[o->otype].of->getpleq == NULL) { |
48 |
> |
objerror(o,WARNING,"secondary sources not supported"); |
49 |
> |
continue; |
50 |
> |
} |
51 |
|
if (nvobjects == 0) |
52 |
|
vobject = (OBJECT *)malloc(sizeof(OBJECT)); |
53 |
|
else |
201 |
|
if (source[sn].sflags & SFLAT) { /* behind source? */ |
202 |
|
multv3(nsnorm, source[sn].snorm, pm); |
203 |
|
normalize(nsnorm); |
204 |
< |
if (!checkspot(&ourspot, nsnorm)) |
204 |
> |
if (nsflags & SSPOT && !checkspot(&ourspot, nsnorm)) |
205 |
|
return(-1); |
206 |
|
} |
207 |
|
} |
287 |
|
getplaneq(onorm, o); |
288 |
|
/* set number of rays to sample */ |
289 |
|
if (source[sn].sflags & SDISTANT) { |
290 |
< |
n = (2./3.*PI*PI)*or2/(thescene.cusize*thescene.cusize)* |
289 |
< |
vspretest + .5; |
290 |
> |
n = 4.*or2/(thescene.cusize*thescene.cusize)*vspretest + .5; |
291 |
|
infront = DOT(onorm, source[sn].sloc) > 0.; |
292 |
|
} else { |
293 |
|
for (i = 0; i < 3; i++) |
294 |
|
offsdir[i] = source[sn].sloc[i] - oc[i]; |
295 |
< |
n = or2/DOT(offsdir,offsdir)*vspretest + .5; |
295 |
> |
d = DOT(offsdir,offsdir); |
296 |
> |
if (d <= FTINY) |
297 |
> |
n = 2.*PI * vspretest + .5; |
298 |
> |
else |
299 |
> |
n = 2.*PI * (1.-sqrt(1./(1.+or2/d)))*vspretest + .5; |
300 |
|
infront = DOT(onorm, offsdir) > 0.; |
301 |
|
} |
302 |
|
if (n < MINSAMPLES) n = MINSAMPLES; |
318 |
|
#endif |
319 |
|
return(f); /* too small a target! */ |
320 |
|
} |
321 |
+ |
peano(offsdir, 3, urand(sn*931+5827+ssn), .005); |
322 |
|
for (i = 0; i < 3; i++) |
323 |
< |
offsdir[i] = or*(1. - |
318 |
< |
2.*urand(urind(931*i+5827,ssn))); |
323 |
> |
offsdir[i] = or*(1. - 2.*offsdir[i]); |
324 |
|
ssn++; |
325 |
|
for (i = 0; i < 3; i++) |
326 |
|
sr.rorg[i] = oc[i] + offsdir[i]; |
348 |
|
nok++; |
349 |
|
/* check against obstructions */ |
350 |
|
rayclear(&sr); |
351 |
< |
sr.revf = raytrace; |
347 |
< |
rayvalue(&sr); |
348 |
< |
if (bright(sr.rcol) > FTINY) |
351 |
> |
if (!localhit(&sr, &thescene) || sr.ro == source[sn].so) |
352 |
|
nhit++; |
353 |
|
if (nhit > 0 && nhit < nok) { |
354 |
|
#ifdef DEBUG |