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 2.7 by greg, Thu Oct 22 09:55:16 1992 UTC vs.
Revision 2.22 by greg, Sun Dec 17 11:51:49 1995 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1992 Regents of the University of California */
1 > /* Copyright (c) 1995 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 18 | Line 18 | static char SCCSid[] = "$SunId$ LBL";
18  
19   #include  "source.h"
20  
21 + #include  "random.h"
22 +
23 + extern double  ssampdist;               /* scatter sampling distance */
24 +
25 + #ifndef MAXSSAMP
26 + #define MAXSSAMP        16              /* maximum samples per ray */
27 + #endif
28 +
29   /*
30   * Structures used by direct()
31   */
# Line 68 | Line 76 | marksources()                  /* find and mark source objects */
76                                  o->otype != OBJ_SOURCE &&
77                                  m->oargs.farg[3] <= FTINY)
78                          continue;                       /* don't bother */
79 +                if (m->oargs.farg[0] <= FTINY && m->oargs.farg[1] <= FTINY &&
80 +                                m->oargs.farg[2] <= FTINY)
81 +                        continue;                       /* don't bother */
82  
83                  if (sfun[o->otype].of == NULL ||
84                                  sfun[o->otype].of->setsrc == NULL)
# Line 81 | Line 92 | marksources()                  /* find and mark source objects */
92                  if (m->otype == MAT_GLOW) {
93                          source[ns].sflags |= SPROX;
94                          source[ns].sl.prox = m->oargs.farg[3];
95 <                        if (o->otype == OBJ_SOURCE)
95 >                        if (source[ns].sflags & SDISTANT)
96                                  source[ns].sflags |= SSKIP;
97                  } else if (m->otype == MAT_SPOT) {
98                          source[ns].sflags |= SSPOT;
# Line 128 | Line 139 | SRCINDEX  *si;                 /* source sample index */
139          sr->rsrc = si->sn;                      /* remember source */
140          srcp = source + si->sn;
141          if (srcp->sflags & SDISTANT) {
142 <                if (srcp->sflags & SSPOT && spotout(sr, srcp->sl.s, 1))
142 >                if (srcp->sflags & SSPOT && spotout(sr, srcp->sl.s))
143                          continue;
144                  return(1);              /* sample OK */
145          }
# Line 138 | Line 149 | SRCINDEX  *si;                 /* source sample index */
149                  continue;
150                                                  /* check angle */
151          if (srcp->sflags & SSPOT) {
152 <                if (spotout(sr, srcp->sl.s, 0))
152 >                if (spotout(sr, srcp->sl.s))
153                          continue;
154                                          /* adjust solid angle */
155                  si->dom *= d*d;
# Line 152 | Line 163 | SRCINDEX  *si;                 /* source sample index */
163  
164  
165   srcvalue(r)                     /* punch ray to source and compute value */
166 < RAY  *r;
166 > register RAY  *r;
167   {
168          register SRCREC  *sp;
169  
# Line 161 | Line 172 | RAY  *r;
172                                          /* check intersection */
173                  if (!(*ofun[sp->so->otype].funp)(sp->so, r))
174                          return;
175 <                raycont(r);             /* compute contribution */
175 >                if (!rayshade(r, r->ro->omod))  /* compute contribution */
176 >                        goto nomat;
177 >                rayparticipate(r);
178                  return;
179          }
180                                          /* compute intersection */
# Line 169 | Line 182 | RAY  *r;
182                          (*ofun[sp->so->otype].funp)(sp->so, r)) {
183                  if (sp->sa.success >= 0)
184                          sp->sa.success++;
185 <                raycont(r);             /* compute contribution */
185 >                if (!rayshade(r, r->ro->omod))  /* compute contribution */
186 >                        goto nomat;
187 >                rayparticipate(r);
188                  return;
189          }
190 +                                        /* we missed our mark! */
191          if (sp->sa.success < 0)
192                  return;                 /* bitched already */
193          sp->sa.success -= AIMREQT;
# Line 180 | Line 196 | RAY  *r;
196          sprintf(errmsg, "aiming failure for light source \"%s\"",
197                          sp->so->oname);
198          error(WARNING, errmsg);         /* issue warning */
199 +        return;
200 + nomat:
201 +        objerror(r->ro, USER, "material not found");
202   }
203  
204  
# Line 299 | Line 318 | char  *p;                      /* data for f */
318                                                  /* modify threshold */
319          ourthresh = shadthresh / r->rweight;
320                                                  /* test for shadows */
321 <        nhits = 0;
322 <        for (sn = 0; sn < ncnts; sn++) {
321 >        for (nhits = 0, hwt = 0.0, sn = 0; sn < ncnts;
322 >                        hwt += (double)source[scp->sno].nhits /
323 >                                (double)source[scp->sno].ntests,
324 >                        sn++) {
325                                                  /* check threshold */
326                  if ((sn+nshadcheck>=ncnts ? cntord[sn].brt :
327                                  cntord[sn].brt-cntord[sn+nshadcheck].brt)
# Line 316 | Line 337 | char  *p;                      /* data for f */
337                                  ( sr.ro != source[scp->sno].so ||
338                                  source[scp->sno].sflags & SFOLLOW )) {
339                                                  /* follow entire path */
340 <                        raycont(&sr);
340 >                        if (!raycont(&sr))
341 >                                objerror(sr.ro, USER, "material not found");
342 >                        rayparticipate(&sr);
343                          if (trace != NULL)
344                                  (*trace)(&sr);  /* trace execution */
345                          if (bright(sr.rcol) <= FTINY)
# Line 329 | Line 352 | char  *p;                      /* data for f */
352                  nhits++;
353                  source[scp->sno].nhits++;
354          }
355 <                                        /* surface hit rate */
356 <        if (sn > 0)
357 <                hwt = (double)nhits / (double)sn;
355 >                                        /* source hit rate */
356 >        if (hwt > FTINY)
357 >                hwt = (double)nhits / hwt;
358          else
359                  hwt = 0.5;
360   #ifdef DEBUG
361 <        sprintf(errmsg, "%d tested, %d untested, %f hit rate\n",
361 >        sprintf(errmsg, "%d tested, %d untested, %f conditional hit rate\n",
362                          sn, ncnts-sn, hwt);
363          eputs(errmsg);
364   #endif
# Line 344 | Line 367 | char  *p;                      /* data for f */
367                  scp = srccnt + cntord[sn].sndx;
368                  prob = hwt * (double)source[scp->sno].nhits /
369                                  (double)source[scp->sno].ntests;
370 +                if (prob > 1.0)
371 +                        prob = 1.0;
372                  scalecolor(scp->val, prob);
373                  addcolor(r->rcol, scp->val);
374          }
375   }
376  
377  
378 + srcscatter(r)                   /* compute source scattering into ray */
379 + register RAY  *r;
380 + {
381 +        int  oldsampndx;
382 +        int  nsamps;
383 +        RAY  sr;
384 +        SRCINDEX  si;
385 +        double  t, lastt, d;
386 +        COLOR  cumval, ctmp;
387 +        int  i, j;
388 +
389 +        if (r->slights == NULL || r->slights[0] == 0
390 +                        || r->gecc >= 1.-FTINY || r->rot >= FHUGE)
391 +                return;
392 +        if (ssampdist <= FTINY || (nsamps = r->rot/ssampdist + .5) < 1)
393 +                nsamps = 1;
394 + #if MAXSSAMP
395 +        else if (nsamps > MAXSSAMP)
396 +                nsamps = MAXSSAMP;
397 + #endif
398 +        oldsampndx = samplendx;
399 +        samplendx = random()&0x7fff;            /* randomize */
400 +        for (i = r->slights[0]; i > 0; i--) {   /* for each source */
401 +                setcolor(cumval, 0., 0., 0.);
402 +                lastt = r->rot;
403 +                for (j = nsamps; j-- > 0; ) {   /* for each sample position */
404 +                        samplendx++;
405 +                        t = r->rot * (j+frandom())/nsamps;
406 +                        sr.rorg[0] = r->rorg[0] + r->rdir[0]*t;
407 +                        sr.rorg[1] = r->rorg[1] + r->rdir[1]*t;
408 +                        sr.rorg[2] = r->rorg[2] + r->rdir[2]*t;
409 +                        sr.rmax = 0.;
410 +                        initsrcindex(&si);      /* sample ray to this source */
411 +                        si.sn = r->slights[i];
412 +                        nopart(&si, &sr);
413 +                        if (!srcray(&sr, NULL, &si) ||
414 +                                        sr.rsrc != r->slights[i])
415 +                                continue;               /* no path */
416 +                        copycolor(sr.cext, r->cext);
417 +                        sr.albedo = r->albedo;
418 +                        sr.gecc = r->gecc;
419 +                        rayvalue(&sr);                  /* eval. source ray */
420 +                        if (bright(sr.rcol) <= FTINY)
421 +                                continue;
422 +                                                        /* compute fall-off */
423 +                        d = lastt - t;
424 +                        setcolor(ctmp,  1.-d*colval(r->cext,RED),
425 +                                        1.-d*colval(r->cext,GRN),
426 +                                        1.-d*colval(r->cext,BLU));
427 +                        multcolor(cumval, ctmp);
428 +                        lastt = t;
429 +                        if (r->gecc <= FTINY)           /* compute P(theta) */
430 +                                d = 1.;
431 +                        else {
432 +                                d = DOT(r->rdir, sr.rdir);
433 +                                d = sqrt(1. + r->gecc*r->gecc - 2.*r->gecc*d);
434 +                                d = (1. - r->gecc*r->gecc) / (d*d*d);
435 +                        }
436 +                                                        /* other factors */
437 +                        d *= si.dom * r->albedo * r->rot / (4.*PI*nsamps);
438 +                        multcolor(sr.rcol, r->cext);
439 +                        scalecolor(sr.rcol, d);
440 +                        addcolor(cumval, sr.rcol);
441 +                }
442 +                                                /* final fall-off */
443 +                setcolor(ctmp,  1.-lastt*colval(r->cext,RED),
444 +                                1.-lastt*colval(r->cext,GRN),
445 +                                1.-lastt*colval(r->cext,BLU));
446 +                multcolor(cumval, ctmp);
447 +                addcolor(r->rcol, cumval);      /* sum into ray result */
448 +        }
449 +        samplendx = oldsampndx;
450 + }
451 +
452 +
453   /****************************************************************
454   * The following macros were separated from the m_light() routine
455   * because they are very nasty and difficult to understand.
456   */
457  
458 < /* wrongillum *
458 > /* illumblock *
459   *
460   * We cannot allow an illum to pass to another illum, because that
461   * would almost certainly constitute overcounting.
462   * However, we do allow an illum to pass to another illum
463   * that is actually going to relay to a virtual light source.
464 + * We also prevent an illum from passing to a glow; this provides a
465 + * convenient mechanism for defining detailed light source
466 + * geometry behind (or inside) an effective radiator.
467   */
468  
469 < #define  wrongillum(m, r)       (!(source[r->rsrc].sflags&SVIRTUAL) && \
470 <                        objptr(source[r->rsrc].so->omod)->otype==MAT_ILLUM)
469 > static int weaksrcmod(obj) int obj;     /* efficiency booster function */
470 > {register OBJREC *o = objptr(obj);
471 > return(o->otype==MAT_ILLUM|o->otype==MAT_GLOW);}
472  
473 + #define  illumblock(m, r)       (!(source[r->rsrc].sflags&SVIRTUAL) && \
474 +                                r->rod > 0.0 && \
475 +                                weaksrcmod(source[r->rsrc].so->omod))
476 +
477   /* wrongsource *
478   *
479   * This source is the wrong source (ie. overcounted) if we are
480   * aimed to a different source than the one we hit and the one
481 < * we hit is not an illum which should be passed.
481 > * we hit is not an illum that should be passed.
482   */
483  
484   #define  wrongsource(m, r)      (r->rsrc>=0 && source[r->rsrc].so!=r->ro && \
485 <                                (m->otype!=MAT_ILLUM || wrongillum(m,r)))
485 >                                (m->otype!=MAT_ILLUM || illumblock(m,r)))
486  
487   /* distglow *
488   *
489   * A distant glow is an object that sometimes acts as a light source,
490   * but is too far away from the test point to be one in this case.
491 + * (Glows with negative radii should NEVER participate in illumination.)
492   */
493  
494 < #define  distglow(m, r)         (m->otype==MAT_GLOW && \
495 <                                r->rot > m->oargs.farg[3])
494 > #define  distglow(m, r, d)      (m->otype==MAT_GLOW && \
495 >                                m->oargs.farg[3] >= -FTINY && \
496 >                                d > m->oargs.farg[3])
497  
498   /* badcomponent *
499   *
# Line 396 | Line 506 | char  *p;                      /* data for f */
506  
507   #define  badcomponent(m, r)     (r->crtype&(AMBIENT|SPECULAR) && \
508                                  !(r->crtype&SHADOW || r->rod < 0.0 || \
509 <                                        distglow(m, r)))
509 >                /* not 100% correct */  distglow(m, r, r->rot)))
510  
401 /* overcount *
402 *
403 * All overcounting possibilities are contained here.
404 */
405
406 #define  overcount(m, r)        (badcomponent(m,r) || wrongsource(m,r))
407
511   /* passillum *
512   *
513   * An illum passes to another material type when we didn't hit it
# Line 418 | Line 521 | char  *p;                      /* data for f */
521  
522   /* srcignore *
523   *
524 < * The -di flag renders light sources invisible, and here is the test.
524 > * The -dv flag is normally on for sources to be visible.
525   */
526  
527 < #define  srcignore(m, r)        (directinvis && !(r->crtype&SHADOW) && \
528 <                                !distglow(m, r))
527 > #define  srcignore(m, r)        !(directvis || r->crtype&SHADOW || \
528 >                                distglow(m, r, raydist(r,PRIMARY)))
529  
530  
531   m_light(m, r)                   /* ray hit a light source */
# Line 430 | Line 533 | register OBJREC  *m;
533   register RAY  *r;
534   {
535                                                  /* check for over-counting */
536 <        if (overcount(m, r))
537 <                return;
536 >        if (badcomponent(m, r))
537 >                return(1);
538 >        if (wrongsource(m, r))
539 >                return(1);
540                                                  /* check for passed illum */
541          if (passillum(m, r)) {
542 <                if (m->oargs.nsargs < 1 || !strcmp(m->oargs.sarg[0], VOIDID))
543 <                        raytrans(r);
544 <                else
545 <                        rayshade(r, modifier(m->oargs.sarg[0]));
441 <                return;
542 >                if (m->oargs.nsargs && strcmp(m->oargs.sarg[0], VOIDID))
543 >                        return(rayshade(r, modifier(m->oargs.sarg[0])));
544 >                raytrans(r);
545 >                return(1);
546          }
547                                          /* otherwise treat as source */
548                                                  /* check for behind */
549          if (r->rod < 0.0)
550 <                return;
550 >                return(1);
551                                                  /* check for invisibility */
552          if (srcignore(m, r))
553 <                return;
553 >                return(1);
554                                                  /* check for outside spot */
555 <        if (m->otype==MAT_SPOT && spotout(r, (SPOT *)m->os, r->rot>=FHUGE))
556 <                return;
555 >        if (m->otype==MAT_SPOT && spotout(r, makespot(m)))
556 >                return(1);
557                                                  /* get distribution pattern */
558          raytexture(r, m->omod);
559                                                  /* get source color */
# Line 458 | Line 562 | register RAY  *r;
562                            m->oargs.farg[2]);
563                                                  /* modify value */
564          multcolor(r->rcol, r->pcol);
565 +        return(1);
566   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines