| 23 |
|
* sort of context, so it is impossible to simultaneously run |
| 24 |
|
* this library on multiple scenes or in multiple threads. |
| 25 |
|
* You get one scene and one thread, and if you want more, you |
| 26 |
< |
* will have to go with the process model used by the programs |
| 27 |
< |
* gen/mkillum, hd/rholo, and px/pinterp. Finally, unrecoverable |
| 28 |
< |
* errors result in a call to the application-defined function |
| 29 |
< |
* quit(). The usual thing to do is to call exit(). |
| 26 |
> |
* will have to go with the process model defined in raypcalls.c. |
| 27 |
> |
* Finally, unrecoverable errors result in a call to the application- |
| 28 |
> |
* defined function quit(). The usual thing to do is to call exit(). |
| 29 |
|
* You might want to do something else instead, like |
| 30 |
|
* call setjmp()/longjmp() to bring you back to the calling |
| 31 |
|
* function for recovery. You may also wish to define your own |
| 90 |
|
*/ |
| 91 |
|
|
| 92 |
|
#include <string.h> |
| 93 |
+ |
#include <time.h> |
| 94 |
|
|
| 95 |
|
#include "ray.h" |
| 96 |
|
#include "source.h" |
| 97 |
+ |
#include "bsdf.h" |
| 98 |
|
#include "ambient.h" |
| 99 |
|
#include "otypes.h" |
| 100 |
|
#include "random.h" |
| 101 |
+ |
#include "func.h" |
| 102 |
|
#include "data.h" |
| 103 |
|
#include "font.h" |
| 104 |
+ |
#include "pmapray.h" |
| 105 |
|
|
| 106 |
|
char *progname = "unknown_app"; /* caller sets to argv[0] */ |
| 107 |
|
|
| 108 |
|
char *octname; /* octree name we are given */ |
| 109 |
|
|
| 107 |
– |
char *shm_boundary = NULL; /* boundary of shared memory */ |
| 108 |
– |
|
| 110 |
|
CUBE thescene; /* our scene */ |
| 111 |
|
OBJECT nsceneobjs; /* number of objects in our scene */ |
| 112 |
|
|
| 116 |
|
|
| 117 |
|
void (*trace)() = NULL; /* trace call */ |
| 118 |
|
|
| 119 |
< |
extern void ambnotify(); |
| 119 |
< |
void (*addobjnotify[])() = {ambnotify, NULL}; |
| 119 |
> |
void (*addobjnotify[8])() = {ambnotify, NULL}; |
| 120 |
|
|
| 121 |
+ |
int castonly = 0; /* only doing ray-casting? */ |
| 122 |
+ |
|
| 123 |
|
int do_irrad = 0; /* compute irradiance? */ |
| 124 |
|
|
| 125 |
+ |
int rand_samp = 1; /* pure Monte Carlo sampling? */ |
| 126 |
+ |
|
| 127 |
|
double dstrsrc = 0.0; /* square source distribution */ |
| 128 |
< |
double shadthresh = .05; /* shadow threshold */ |
| 129 |
< |
double shadcert = .5; /* shadow certainty */ |
| 128 |
> |
double shadthresh = .03; /* shadow threshold */ |
| 129 |
> |
double shadcert = .75; /* shadow certainty */ |
| 130 |
|
int directrelay = 2; /* number of source relays */ |
| 131 |
|
int vspretest = 512; /* virtual source pretest density */ |
| 132 |
|
int directvis = 1; /* sources visible? */ |
| 142 |
|
|
| 143 |
|
int backvis = 1; /* back face visibility */ |
| 144 |
|
|
| 145 |
< |
int maxdepth = 6; /* maximum recursion depth */ |
| 146 |
< |
double minweight = 4e-3; /* minimum ray weight */ |
| 145 |
> |
int maxdepth = -10; /* maximum recursion depth */ |
| 146 |
> |
double minweight = 1e-4; /* minimum ray weight */ |
| 147 |
|
|
| 148 |
|
char *ambfile = NULL; /* ambient file name */ |
| 149 |
|
COLOR ambval = BLKCOLOR; /* ambient value */ |
| 150 |
|
int ambvwt = 0; /* initial weight for ambient value */ |
| 151 |
< |
double ambacc = 0.2; /* ambient accuracy */ |
| 152 |
< |
int ambres = 128; /* ambient resolution */ |
| 153 |
< |
int ambdiv = 512; /* ambient divisions */ |
| 154 |
< |
int ambssamp = 0; /* ambient super-samples */ |
| 151 |
> |
double ambacc = 0.1; /* ambient accuracy */ |
| 152 |
> |
int ambres = 256; /* ambient resolution */ |
| 153 |
> |
int ambdiv = 1024; /* ambient divisions */ |
| 154 |
> |
int ambssamp = 512; /* ambient super-samples */ |
| 155 |
|
int ambounce = 0; /* ambient bounces */ |
| 156 |
|
char *amblist[AMBLLEN+1]; /* ambient include/exclude list */ |
| 157 |
|
int ambincl = -1; /* include == 1, exclude == 0 */ |
| 158 |
|
|
| 159 |
|
|
| 160 |
+ |
static void |
| 161 |
+ |
reset_random(void) /* re-initialize random number generator */ |
| 162 |
+ |
{ |
| 163 |
+ |
if (rand_samp) { |
| 164 |
+ |
srandom((long)time(0)); |
| 165 |
+ |
initurand(0); |
| 166 |
+ |
} else { |
| 167 |
+ |
srandom(0L); |
| 168 |
+ |
initurand(2048); |
| 169 |
+ |
} |
| 170 |
+ |
} |
| 171 |
+ |
|
| 172 |
+ |
|
| 173 |
|
void |
| 174 |
< |
ray_init(otnm) /* initialize ray-tracing calculation */ |
| 175 |
< |
char *otnm; |
| 174 |
> |
ray_init( /* initialize ray-tracing calculation */ |
| 175 |
> |
char *otnm |
| 176 |
> |
) |
| 177 |
|
{ |
| 178 |
|
if (nobjects > 0) /* free old scene data */ |
| 179 |
|
ray_done(0); |
| 180 |
|
/* initialize object types */ |
| 181 |
|
if (ofun[OBJ_SPHERE].funp == o_default) |
| 182 |
|
initotypes(); |
| 183 |
+ |
/* initialize calcomp routines */ |
| 184 |
+ |
initfunc(); |
| 185 |
|
/* initialize urand */ |
| 186 |
< |
if (urperm == NULL) |
| 187 |
< |
initurand(2048); |
| 188 |
< |
/* read scene octree */ |
| 189 |
< |
readoct(octname = otnm, ~(IO_FILES|IO_INFO), &thescene, NULL); |
| 186 |
> |
reset_random(); |
| 187 |
> |
/* initialize spectral sampling */ |
| 188 |
> |
if (setspectrsamp(CNDX, WLPART) < 0) |
| 189 |
> |
error(USER, "unsupported spectral sampling"); |
| 190 |
> |
|
| 191 |
> |
octname = savqstr(otnm); /* read scene octree */ |
| 192 |
> |
readoct(octname, ~(IO_FILES|IO_INFO), &thescene, NULL); |
| 193 |
|
nsceneobjs = nobjects; |
| 194 |
< |
/* find and mark sources */ |
| 195 |
< |
marksources(); |
| 196 |
< |
/* initialize ambient calculation */ |
| 197 |
< |
setambient(); |
| 198 |
< |
/* ready to go... */ |
| 194 |
> |
|
| 195 |
> |
if (!castonly) { /* any actual ray traversal to do? */ |
| 196 |
> |
|
| 197 |
> |
ray_init_pmap(); /* PMAP: set up & load photon maps */ |
| 198 |
> |
|
| 199 |
> |
marksources(); /* find and mark sources */ |
| 200 |
> |
|
| 201 |
> |
setambient(); /* initialize ambient calculation */ |
| 202 |
> |
} else |
| 203 |
> |
distantsources(); /* else mark only distant sources */ |
| 204 |
|
} |
| 205 |
|
|
| 206 |
+ |
|
| 207 |
|
void |
| 208 |
< |
ray_trace(r) /* trace a primary ray */ |
| 209 |
< |
RAY *r; |
| 208 |
> |
ray_trace( /* trace a primary ray */ |
| 209 |
> |
RAY *r |
| 210 |
> |
) |
| 211 |
|
{ |
| 212 |
< |
rayorigin(r, NULL, PRIMARY, 1.0); |
| 212 |
> |
rayorigin(r, PRIMARY, NULL, NULL); |
| 213 |
|
samplendx++; |
| 214 |
|
rayvalue(r); /* assumes origin and direction are set */ |
| 215 |
|
} |
| 216 |
|
|
| 217 |
|
|
| 218 |
|
void |
| 219 |
< |
ray_done(freall) /* free ray-tracing data */ |
| 220 |
< |
int freall; |
| 219 |
> |
ray_done( /* free ray-tracing data */ |
| 220 |
> |
int freall |
| 221 |
> |
) |
| 222 |
|
{ |
| 223 |
|
retainfonts = 1; |
| 224 |
|
ambdone(); |
| 228 |
|
donesets(); |
| 229 |
|
octdone(); |
| 230 |
|
thescene.cutree = EMPTY; |
| 231 |
< |
octname = NULL; |
| 231 |
> |
freeqstr(octname); octname = NULL; |
| 232 |
> |
retainfonts = 0; |
| 233 |
|
if (freall) { |
| 202 |
– |
retainfonts = 0; |
| 234 |
|
freefont(NULL); |
| 235 |
|
freedata(NULL); |
| 236 |
+ |
SDfreeCache(NULL); |
| 237 |
|
initurand(0); |
| 238 |
|
} |
| 239 |
|
if (nobjects > 0) { |
| 240 |
< |
sprintf(errmsg, "%d objects left after call to ray_done()", |
| 241 |
< |
nobjects); |
| 240 |
> |
sprintf(errmsg, "%ld objects left after call to ray_done()", |
| 241 |
> |
(long)nobjects); |
| 242 |
|
error(WARNING, errmsg); |
| 243 |
|
} |
| 244 |
+ |
|
| 245 |
+ |
ray_done_pmap(); |
| 246 |
|
} |
| 247 |
|
|
| 248 |
|
|
| 249 |
|
void |
| 250 |
< |
ray_save(rp) /* save current parameter settings */ |
| 251 |
< |
RAYPARAMS *rp; |
| 250 |
> |
ray_save( /* save current parameter settings */ |
| 251 |
> |
RAYPARAMS *rp |
| 252 |
> |
) |
| 253 |
|
{ |
| 254 |
|
int i, ndx; |
| 255 |
|
|
| 256 |
|
if (rp == NULL) |
| 257 |
|
return; |
| 258 |
|
rp->do_irrad = do_irrad; |
| 259 |
+ |
rp->rand_samp = rand_samp; |
| 260 |
|
rp->dstrsrc = dstrsrc; |
| 261 |
|
rp->shadthresh = shadthresh; |
| 262 |
|
rp->shadcert = shadcert; |
| 273 |
|
rp->backvis = backvis; |
| 274 |
|
rp->maxdepth = maxdepth; |
| 275 |
|
rp->minweight = minweight; |
| 240 |
– |
copycolor(rp->ambval, ambval); |
| 241 |
– |
memset(rp->ambfile, '\0', sizeof(rp->ambfile)); |
| 276 |
|
if (ambfile != NULL) |
| 277 |
|
strncpy(rp->ambfile, ambfile, sizeof(rp->ambfile)-1); |
| 278 |
+ |
else |
| 279 |
+ |
memset(rp->ambfile, '\0', sizeof(rp->ambfile)); |
| 280 |
+ |
copycolor(rp->ambval, ambval); |
| 281 |
|
rp->ambvwt = ambvwt; |
| 282 |
|
rp->ambacc = ambacc; |
| 283 |
|
rp->ambres = ambres; |
| 292 |
|
if (ndx+len >= sizeof(rp->amblval)) |
| 293 |
|
break; |
| 294 |
|
strcpy(rp->amblval+ndx, amblist[i]); |
| 295 |
+ |
rp->amblndx[i] = ndx; |
| 296 |
|
ndx += len+1; |
| 297 |
|
} |
| 298 |
|
while (i <= AMBLLEN) |
| 299 |
|
rp->amblndx[i++] = -1; |
| 300 |
+ |
|
| 301 |
+ |
/* PMAP: save photon mapping params */ |
| 302 |
+ |
ray_save_pmap(rp); |
| 303 |
|
} |
| 304 |
|
|
| 305 |
|
|
| 306 |
|
void |
| 307 |
< |
ray_restore(rp) /* restore parameter settings */ |
| 308 |
< |
RAYPARAMS *rp; |
| 307 |
> |
ray_restore( /* restore parameter settings */ |
| 308 |
> |
RAYPARAMS *rp |
| 309 |
> |
) |
| 310 |
|
{ |
| 311 |
< |
register int i; |
| 311 |
> |
int i; |
| 312 |
|
|
| 313 |
|
if (rp == NULL) { /* restore defaults */ |
| 314 |
|
RAYPARAMS dflt; |
| 318 |
|
} |
| 319 |
|
/* restore saved settings */ |
| 320 |
|
do_irrad = rp->do_irrad; |
| 321 |
+ |
if (!rand_samp != !rp->rand_samp) { |
| 322 |
+ |
rand_samp = rp->rand_samp; |
| 323 |
+ |
reset_random(); |
| 324 |
+ |
} |
| 325 |
|
dstrsrc = rp->dstrsrc; |
| 326 |
|
shadthresh = rp->shadthresh; |
| 327 |
|
shadcert = rp->shadcert; |
| 343 |
|
ambdiv = rp->ambdiv; |
| 344 |
|
ambssamp = rp->ambssamp; |
| 345 |
|
ambounce = rp->ambounce; |
| 346 |
+ |
/* a bit dangerous if not static */ |
| 347 |
|
for (i = 0; rp->amblndx[i] >= 0; i++) |
| 348 |
|
amblist[i] = rp->amblval + rp->amblndx[i]; |
| 349 |
|
while (i <= AMBLLEN) |
| 351 |
|
ambincl = rp->ambincl; |
| 352 |
|
/* update ambient calculation */ |
| 353 |
|
ambnotify(OVOID); |
| 354 |
< |
if (thescene.cutree != EMPTY) { |
| 354 |
> |
if ((thescene.cutree != EMPTY) & !castonly) { |
| 355 |
|
int newamb = (ambfile == NULL) ? rp->ambfile[0] : |
| 356 |
|
strcmp(ambfile, rp->ambfile) ; |
| 357 |
|
|
| 373 |
|
ambres = rp->ambres; |
| 374 |
|
ambacc = rp->ambacc; |
| 375 |
|
} |
| 376 |
+ |
|
| 377 |
+ |
/* PMAP: restore photon mapping params */ |
| 378 |
+ |
ray_restore_pmap(rp); |
| 379 |
|
} |
| 380 |
|
|
| 381 |
|
|
| 382 |
|
void |
| 383 |
< |
ray_defaults(rp) /* get default parameter values */ |
| 384 |
< |
RAYPARAMS *rp; |
| 383 |
> |
ray_defaults( /* get default parameter values */ |
| 384 |
> |
RAYPARAMS *rp |
| 385 |
> |
) |
| 386 |
|
{ |
| 387 |
|
int i; |
| 388 |
|
|
| 390 |
|
return; |
| 391 |
|
|
| 392 |
|
rp->do_irrad = 0; |
| 393 |
+ |
rp->rand_samp = 1; |
| 394 |
|
rp->dstrsrc = 0.0; |
| 395 |
< |
rp->shadthresh = .05; |
| 396 |
< |
rp->shadcert = .5; |
| 395 |
> |
rp->shadthresh = 0.03; |
| 396 |
> |
rp->shadcert = 0.75; |
| 397 |
|
rp->directrelay = 2; |
| 398 |
|
rp->vspretest = 512; |
| 399 |
|
rp->directvis = 1; |
| 402 |
|
setcolor(rp->salbedo, 0., 0., 0.); |
| 403 |
|
rp->seccg = 0.; |
| 404 |
|
rp->ssampdist = 0.; |
| 405 |
< |
rp->specthresh = .15; |
| 405 |
> |
rp->specthresh = 0.15; |
| 406 |
|
rp->specjitter = 1.; |
| 407 |
|
rp->backvis = 1; |
| 408 |
< |
rp->maxdepth = 6; |
| 409 |
< |
rp->minweight = 4e-3; |
| 358 |
< |
setcolor(rp->ambval, 0., 0., 0.); |
| 408 |
> |
rp->maxdepth = -10; |
| 409 |
> |
rp->minweight = 1e-4; |
| 410 |
|
memset(rp->ambfile, '\0', sizeof(rp->ambfile)); |
| 411 |
+ |
setcolor(rp->ambval, 0., 0., 0.); |
| 412 |
|
rp->ambvwt = 0; |
| 413 |
< |
rp->ambres = 128; |
| 414 |
< |
rp->ambacc = 0.2; |
| 415 |
< |
rp->ambdiv = 512; |
| 416 |
< |
rp->ambssamp = 0; |
| 413 |
> |
rp->ambres = 256; |
| 414 |
> |
rp->ambacc = 0.1; |
| 415 |
> |
rp->ambdiv = 1024; |
| 416 |
> |
rp->ambssamp = 512; |
| 417 |
|
rp->ambounce = 0; |
| 418 |
|
rp->ambincl = -1; |
| 419 |
|
memset(rp->amblval, '\0', sizeof(rp->amblval)); |
| 420 |
|
for (i = AMBLLEN+1; i--; ) |
| 421 |
|
rp->amblndx[i] = -1; |
| 422 |
+ |
|
| 423 |
+ |
/* PMAP: restore photon mapping defaults */ |
| 424 |
+ |
ray_defaults_pmap(rp); |
| 425 |
|
} |