ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/source.c
(Generate patch)

Comparing ray/src/rt/source.c (file contents):
Revision 1.8 by greg, Wed Jun 7 21:00:51 1989 UTC vs.
Revision 1.29 by greg, Fri Dec 28 20:37:08 1990 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1986 Regents of the University of California */
1 > /* Copyright (c) 1990 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 27 | Line 27 | static char SCCSid[] = "$SunId$ LBL";
27  
28   extern double  dstrsrc;                 /* source distribution amount */
29   extern double  shadthresh;              /* relative shadow threshold */
30 + extern double  shadcert;                /* shadow testing certainty */
31  
32   SRCREC  *source = NULL;                 /* our list of sources */
33   int  nsources = 0;                      /* the number of sources */
34  
35 + static CONTRIB  *srccnt;                /* source contributions in direct() */
36 + static CNTPTR  *cntord;                 /* source ordering in direct() */
37  
38 +
39   marksources()                   /* find and mark source objects */
40   {
41          register OBJREC  *o, *m;
# Line 46 | Line 50 | marksources()                  /* find and mark source objects */
50  
51                  m = objptr(o->omod);
52  
53 <                if (m->otype != MAT_LIGHT &&
50 <                                m->otype != MAT_ILLUM &&
51 <                                m->otype != MAT_GLOW &&
52 <                                m->otype != MAT_SPOT)
53 >                if (!islight(m->otype))
54                          continue;
55          
56                  if (m->oargs.nfargs != (m->otype == MAT_GLOW ? 4 :
# Line 67 | Line 68 | marksources()                  /* find and mark source objects */
68                          source = (SRCREC *)realloc((char *)source,
69                                          (unsigned)(nsources+1)*sizeof(SRCREC));
70                  if (source == NULL)
71 <                        error(SYSTEM, "out of memory in marksources");
71 >                        goto memerr;
72  
73                  newsource(&source[nsources], o);
74  
# Line 82 | Line 83 | marksources()                  /* find and mark source objects */
83                  }
84                  nsources++;
85          }
86 +        if (nsources <= 0) {
87 +                error(WARNING, "no light sources found");
88 +                return;
89 +        }
90 +        srccnt = (CONTRIB *)malloc(nsources*sizeof(CONTRIB));
91 +        cntord = (CNTPTR *)malloc(nsources*sizeof(CNTPTR));
92 +        if (srccnt != NULL && cntord != NULL)
93 +                return;
94 +        /* fall through */
95 + memerr:
96 +        error(SYSTEM, "out of memory in marksources");
97   }
98  
99  
# Line 225 | Line 237 | register int  sn;              /* source number */
237                                                  /* domega constant */
238                  return(source[sn].ss2);
239  
228        else {
240                                                  /* check proximity */
241 <                if (source[sn].sflags & SPROX &&
242 <                                d > source[sn].sl.prox)
243 <                        return(0.0);
244 <
245 <                if (norm != NULL)
246 <                        ddot /= d;
247 <                else
248 <                        ddot = 1.0;
241 >        if (source[sn].sflags & SPROX &&
242 >                        d > source[sn].sl.prox)
243 >                return(0.0);
244 >                                                /* compute dot product */
245 >        if (norm != NULL)
246 >                ddot /= d;
247 >        else
248 >                ddot = 1.0;
249                                                  /* check angle */
250 <                if (source[sn].sflags & SSPOT) {
251 <                        if (source[sn].sl.s->siz < 2.0*PI *
250 >        if (source[sn].sflags & SSPOT) {
251 >                if (source[sn].sl.s->siz < 2.0*PI *
252                                  (1.0 + DOT(source[sn].sl.s->aim,sr->rdir)))
253 <                                return(0.0);
254 <                        d += source[sn].sl.s->flen;
244 <                }
245 <                                                /* return domega */
246 <                return(ddot*source[sn].ss2/(d*d));
253 >                        return(0.0);
254 >                d += source[sn].sl.s->flen;     /* adjust length */
255          }
256 +                                                /* compute domega */
257 +        return(ddot*source[sn].ss2/(d*d));
258   }
259  
260  
# Line 276 | Line 286 | register RAY  *r;
286                  for (i = 0; i < 3; i++)
287                          r->ron[i] = -r->rdir[i];
288                  r->rod = 1.0;
289 <                r->rofs = 1.0; setident4(r->rofx);
280 <                r->robs = 1.0; setident4(r->robx);
289 >                r->rox = NULL;
290                  return(1);
291          }
292          return(0);
# Line 286 | Line 295 | register RAY  *r;
295  
296   static int
297   cntcmp(sc1, sc2)                        /* contribution compare (descending) */
298 < register CONTRIB  *sc1, *sc2;
298 > register CNTPTR  *sc1, *sc2;
299   {
300          if (sc1->brt > sc2->brt)
301                  return(-1);
# Line 301 | Line 310 | RAY  *r;                       /* ray that hit surface */
310   int  (*f)();                    /* direct component coefficient function */
311   char  *p;                       /* data for f */
312   {
313 +        extern double  pow();
314          register int  sn;
315 <        register CONTRIB  *srccnt;
316 <        int  ncnts;
317 <        double  ourthresh, prob, hwt, test2, hit2;
315 >        int  nshadcheck, ncnts;
316 >        int  nhits;
317 >        double  prob, ourthresh, hwt;
318          RAY  sr;
319 <
320 <        if ((srccnt = (CONTRIB *)malloc(nsources*sizeof(CONTRIB))) == NULL)
321 <                error(SYSTEM, "out of memory in direct");
319 >                        /* NOTE: srccnt and cntord global so no recursion */
320 >        if (nsources <= 0)
321 >                return;         /* no sources?! */
322 >                                                /* compute number to check */
323 >        nshadcheck = pow((double)nsources, shadcert) + .5;
324                                                  /* modify threshold */
325          ourthresh = shadthresh / r->rweight;
326                                                  /* potential contributions */
327          for (sn = 0; sn < nsources; sn++) {
328 <                srccnt[sn].sno = sn;
329 <                setcolor(srccnt[sn].val, 0.0, 0.0, 0.0);
318 <                srccnt[sn].brt = 0.0;
328 >                cntord[sn].sno = sn;
329 >                cntord[sn].brt = 0.0;
330                                                  /* get source ray */
331                  if ((srccnt[sn].dom = srcray(&sr, r, sn)) == 0.0)
332                          continue;
333                  VCOPY(srccnt[sn].dir, sr.rdir);
334                                                  /* compute coefficient */
335                  (*f)(srccnt[sn].val, p, srccnt[sn].dir, srccnt[sn].dom);
336 <                srccnt[sn].brt = bright(srccnt[sn].val);
337 <                if (srccnt[sn].brt <= FTINY)
336 >                cntord[sn].brt = bright(srccnt[sn].val);
337 >                if (cntord[sn].brt <= 0.0)
338                          continue;
339                                                  /* compute intersection */
340                  if (!( source[sn].sflags & SDISTANT ?
341                                  sourcehit(&sr) :
342                                  (*ofun[source[sn].so->otype].funp)
343 <                                (source[sn].so, &sr) ))
343 >                                (source[sn].so, &sr) )) {
344 >                        sprintf(errmsg,
345 >                                "aiming failure for light source \"%s\"",
346 >                                        source[sn].so->oname);
347 >                        error(WARNING, errmsg);
348 >                        cntord[sn].brt = 0.0;
349                          continue;
350 +                }
351                                                  /* compute contribution */
352 <                rayshade(&sr, sr.ro->omod);
352 >                raycont(&sr);
353                  multcolor(srccnt[sn].val, sr.rcol);
354 <                srccnt[sn].brt = bright(srccnt[sn].val);
354 >                cntord[sn].brt = bright(srccnt[sn].val);
355          }
356                                                  /* sort contributions */
357 <        qsort(srccnt, nsources, sizeof(CONTRIB), cntcmp);
358 <        hit2 = 0.0; test2 = FTINY;
359 <                                                /* find last */
360 <        sn = 0; ncnts = nsources;
361 <        while (sn < ncnts-1) {
362 <                register int  m;
363 <                m = (sn + ncnts) >> 1;
364 <                if (srccnt[m].brt > 0.0)
365 <                        sn = m;
366 <                else
367 <                        ncnts = m;
357 >        qsort(cntord, nsources, sizeof(CNTPTR), cntcmp);
358 >        {                                       /* find last */
359 >                register int  l, m;
360 >
361 >                sn = 0; ncnts = l = nsources;
362 >                while ((m = (sn + ncnts) >> 1) != l) {
363 >                        if (cntord[m].brt > 0.0)
364 >                                sn = m;
365 >                        else
366 >                                ncnts = m;
367 >                        l = m;
368 >                }
369          }
370 <                                                /* accumulate tail */
371 <        for (sn = ncnts-1; sn > 0; sn--)
372 <                srccnt[sn-1].brt += srccnt[sn].brt;
373 <                                                /* shadow testing */
370 >                                                /* accumulate tail */
371 >        for (sn = ncnts-1; sn > 0; sn--)
372 >                cntord[sn-1].brt += cntord[sn].brt;
373 >                                                /* test for shadows */
374 >        nhits = 0;
375          for (sn = 0; sn < ncnts; sn++) {
376 <                                                /* tail below threshold? */
377 <                if (srccnt[sn].brt < ourthresh*bright(r->rcol))
376 >                                                /* check threshold */
377 >                if ((sn+nshadcheck>=ncnts ? cntord[sn].brt :
378 >                                cntord[sn].brt-cntord[sn+nshadcheck].brt)
379 >                                < ourthresh*bright(r->rcol))
380                          break;
381                                                  /* get statistics */
382 <                hwt = (double)source[srccnt[sn].sno].nhits /
362 <                                (double)source[srccnt[sn].sno].ntests;
363 <                test2 += hwt;
364 <                source[srccnt[sn].sno].ntests++;
382 >                source[cntord[sn].sno].ntests++;
383                                                  /* test for hit */
384                  rayorigin(&sr, r, SHADOW, 1.0);
385 <                VCOPY(sr.rdir, srccnt[sn].dir);
385 >                VCOPY(sr.rdir, srccnt[cntord[sn].sno].dir);
386 >                sr.rsrc = cntord[sn].sno;
387                  if (localhit(&sr, &thescene) &&
388 <                                sr.ro != source[srccnt[sn].sno].so) {
388 >                                sr.ro != source[cntord[sn].sno].so) {
389                                                  /* check for transmission */
390 <                        if (sr.clipset != NULL && inset(sr.clipset,sr.ro->omod))
372 <                                raytrans(&sr);          /* object is clipped */
373 <                        else
374 <                                rayshade(&sr, sr.ro->omod);
390 >                        raycont(&sr);
391                          if (bright(sr.rcol) <= FTINY)
392                                  continue;       /* missed! */
393 <                        (*f)(srccnt[sn].val, p, srccnt[sn].dir, srccnt[sn].dom);
394 <                        multcolor(srccnt[sn].val, sr.rcol);
393 >                        (*f)(srccnt[cntord[sn].sno].val, p,
394 >                                        srccnt[cntord[sn].sno].dir,
395 >                                        srccnt[cntord[sn].sno].dom);
396 >                        multcolor(srccnt[cntord[sn].sno].val, sr.rcol);
397                  }
398                                                  /* add contribution if hit */
399 <                addcolor(r->rcol, srccnt[sn].val);
400 <                hit2 += hwt;
401 <                source[srccnt[sn].sno].nhits++;
399 >                addcolor(r->rcol, srccnt[cntord[sn].sno].val);
400 >                nhits++;
401 >                source[cntord[sn].sno].nhits++;
402          }
403 <                                        /* weighted hit rate */
404 <        hwt = hit2 / test2;
403 >                                        /* surface hit rate */
404 >        if (sn > 0)
405 >                hwt = (double)nhits / (double)sn;
406 >        else
407 >                hwt = 0.5;
408   #ifdef DEBUG
409 <        fprintf(stderr, "%d tested, %d untested, %f hit rate\n",
409 >        sprintf(errmsg, "%d tested, %d untested, %f hit rate\n",
410                          sn, ncnts-sn, hwt);
411 +        eputs(errmsg);
412   #endif
413                                          /* add in untested sources */
414          for ( ; sn < ncnts; sn++) {
415 <                prob = hwt * (double)source[srccnt[sn].sno].nhits /
416 <                                (double)source[srccnt[sn].sno].ntests;
417 <                scalecolor(srccnt[sn].val, prob);
418 <                addcolor(r->rcol, srccnt[sn].val);
415 >                prob = hwt * (double)source[cntord[sn].sno].nhits /
416 >                                (double)source[cntord[sn].sno].ntests;
417 >                scalecolor(srccnt[cntord[sn].sno].val, prob);
418 >                addcolor(r->rcol, srccnt[cntord[sn].sno].val);
419          }
398        free(srccnt);
420   }
421  
422  
# Line 415 | Line 436 | m_light(m, r)                  /* ray hit a light source */
436   register OBJREC  *m;
437   register RAY  *r;
438   {
418                                                /* check for behind */
419        if (r->rod < 0.0)
420                return;
439                                                  /* check for over-counting */
440          if (wrongsource(m, r) || badambient(m, r))
441                  return;
# Line 431 | Line 449 | register RAY  *r;
449  
450                                                  /* otherwise treat as source */
451          } else {
452 +                                                /* check for behind */
453 +                if (r->rod < 0.0)
454 +                        return;
455                                                  /* get distribution pattern */
456                  raytexture(r, m->omod);
457                                                  /* get source color */
# Line 439 | Line 460 | register RAY  *r;
460                                    m->oargs.farg[2]);
461                                                  /* modify value */
462                  multcolor(r->rcol, r->pcol);
463 +                                                /* assign distance */
464 +                r->rt = r->rot;
465          }
466   }
444
445
446 o_source() {}           /* intersection with a source is done elsewhere */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines