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.60 by greg, Mon Feb 14 20:13:38 2011 UTC vs.
Revision 2.69 by greg, Wed Nov 7 18:22:29 2018 UTC

# Line 12 | Line 12 | static const char RCSid[] = "$Id$";
12   #include  "rtotypes.h"
13   #include  "source.h"
14   #include  "random.h"
15 + #include  "pmapsrc.h"
16 + #include  "pmapmat.h"
17  
16 extern double  ssampdist;               /* scatter sampling distance */
17
18   #ifndef MAXSSAMP
19   #define MAXSSAMP        16              /* maximum samples per ray */
20   #endif
# Line 42 | Line 42 | static int  maxcntr = 0;               /* size of contribution arra
42   static int cntcmp(const void *p1, const void *p2);
43  
44  
45 < extern OBJREC *                 /* find an object's actual material */
46 < findmaterial(register OBJREC *o)
45 > OBJREC *                        /* find an object's actual material */
46 > findmaterial(OBJREC *o)
47   {
48          while (!ismaterial(o->otype)) {
49                  if (o->otype == MOD_ALIAS && o->oargs.nsargs) {
# Line 52 | Line 52 | findmaterial(register OBJREC *o)
52                          aobj = lastmod(objndx(o), o->oargs.sarg[0]);
53                          if (aobj < 0)
54                                  objerror(o, USER, "bad reference");
55 <                        ao = objptr(aobj);
56 <                        if (ismaterial(ao->otype))
55 >                                /* recursive check on alias branch */
56 >                        if ((ao = findmaterial(objptr(aobj))) != NULL)
57                                  return(ao);
58                        if (ao->otype == MOD_ALIAS) {
59                                o = ao;
60                                continue;
61                        }
58                  }
59                  if (o->omod == OVOID)
60                          return(NULL);
# Line 68 | Line 64 | findmaterial(register OBJREC *o)
64   }
65  
66  
67 < extern void
67 > void
68   marksources(void)                       /* find and mark source objects */
69   {
70          int  foundsource = 0;
71          int  i;
72 <        register OBJREC  *o, *m;
73 <        register int  ns;
72 >        OBJREC  *o, *m;
73 >        int  ns;
74                                          /* initialize dispatch table */
75          initstypes();
76                                          /* find direct sources */
# Line 99 | Line 95 | marksources(void)                      /* find and mark source objects */
95                                  m->otype == MAT_SPOT ? 7 : 3))
96                          objerror(m, USER, "bad # arguments");
97  
102                if (m->otype == MAT_GLOW &&
103                                o->otype != OBJ_SOURCE &&
104                                m->oargs.farg[3] <= FTINY)
105                        continue;                       /* don't bother */
98                  if (m->oargs.farg[0] <= FTINY && m->oargs.farg[1] <= FTINY &&
99                                  m->oargs.farg[2] <= FTINY)
100                          continue;                       /* don't bother */
101 <
101 >                if (m->otype == MAT_GLOW &&
102 >                                o->otype != OBJ_SOURCE &&
103 >                                m->oargs.farg[3] <= FTINY) {
104 >                        foundsource += (ambounce > 0);
105 >                        continue;                       /* don't track these */
106 >                }
107                  if (sfun[o->otype].of == NULL ||
108                                  sfun[o->otype].of->setsrc == NULL)
109                          objerror(o, USER, "illegal material");
# Line 119 | Line 116 | marksources(void)                      /* find and mark source objects */
116                  if (m->otype == MAT_GLOW) {
117                          source[ns].sflags |= SPROX;
118                          source[ns].sl.prox = m->oargs.farg[3];
119 <                        if (source[ns].sflags & SDISTANT)
119 >                        if (source[ns].sflags & SDISTANT) {
120                                  source[ns].sflags |= SSKIP;
121 +                                foundsource += (ambounce > 0);
122 +                        }
123                  } else if (m->otype == MAT_SPOT) {
124                          source[ns].sflags |= SSPOT;
125                          if ((source[ns].sl.s = makespot(m)) == NULL)
# Line 132 | Line 131 | marksources(void)                      /* find and mark source objects */
131                                  source[ns].sflags |= SSKIP;
132                          }
133                  }
134 < #if  SHADCACHE
136 <                initobscache(ns);
137 < #endif
138 <                if (!(source[ns].sflags & SSKIP))
139 <                        foundsource++;
134 >                foundsource += !(source[ns].sflags & SSKIP);
135          }
136          if (!foundsource) {
137                  error(WARNING, "no light sources found");
138                  return;
139          }
140 <        markvirtuals();                 /* find and add virtual sources */
140 > #if  SHADCACHE
141 >        for (ns = 0; ns < nsources; ns++)       /* initialize obstructor cache */
142 >                initobscache(ns);
143 > #endif
144 >        /* PMAP: disable virtual sources */
145 >        if (!photonMapping)
146 >                markvirtuals();                 /* find and add virtual sources */
147 >                
148                                  /* allocate our contribution arrays */
149          maxcntr = nsources + MAXSPART;  /* start with this many */
150          srccnt = (CONTRIB *)malloc(maxcntr*sizeof(CONTRIB));
# Line 155 | Line 157 | memerr:
157   }
158  
159  
160 < extern void
160 > void
161   freesources(void)                       /* free all source structures */
162   {
163          if (nsources > 0) {
# Line 178 | Line 180 | freesources(void)                      /* free all source structures */
180   }
181  
182  
183 < extern int
183 > int
184   srcray(                         /* send a ray to a source, return domega */
185 <        register RAY  *sr,              /* returned source ray */
185 >        RAY  *sr,               /* returned source ray */
186          RAY  *r,                        /* ray which hit object */
187          SRCINDEX  *si                   /* source sample index */
188   )
189   {
190          double  d;                              /* distance to source */
191 <        register SRCREC  *srcp;
191 >        SRCREC  *srcp;
192  
193          rayorigin(sr, SHADOW, r, NULL);         /* ignore limits */
194  
# Line 220 | Line 222 | srcray(                                /* send a ray to a source, return domega */
222   }
223  
224  
225 < extern void
225 > void
226   srcvalue(                       /* punch ray to source and compute value */
227 <        register RAY  *r
227 >        RAY  *r
228   )
229   {
230 <        register SRCREC  *sp;
230 >        SRCREC  *sp;
231  
232          sp = &source[r->rsrc];
233          if (sp->sflags & SVIRTUAL) {    /* virtual source */
# Line 277 | Line 279 | transillum(                    /* check if material is transparent illu
279   }
280  
281  
282 < extern int
282 > int
283   sourcehit(                      /* check to see if ray hit distant source */
284 <        register RAY  *r
284 >        RAY  *r
285   )
286   {
287          int  glowsrc = -1;
288          int  transrc = -1;
289          int  first, last;
290 <        register int  i;
290 >        int  i;
291  
292          if (r->rsrc >= 0) {             /* check only one if aimed */
293                  first = last = r->rsrc;
# Line 353 | Line 355 | cntcmp(                                /* contribution compare (descending) */
355          const void *p2
356   )
357   {
358 <        register const CNTPTR  *sc1 = (const CNTPTR *)p1;
359 <        register const CNTPTR  *sc2 = (const CNTPTR *)p2;
358 >        const CNTPTR  *sc1 = (const CNTPTR *)p1;
359 >        const CNTPTR  *sc2 = (const CNTPTR *)p2;
360  
361          if (sc1->brt > sc2->brt)
362                  return(-1);
# Line 364 | Line 366 | cntcmp(                                /* contribution compare (descending) */
366   }
367  
368  
369 < extern void
369 > void
370   direct(                                 /* add direct component */
371          RAY  *r,                        /* ray that hit surface */
372          srcdirf_t *f,                   /* direct component coefficient function */
373          void  *p                        /* data for f */
374   )
375   {
376 <        register int  sn;
377 <        register CONTRIB  *scp;
376 >        int  sn;
377 >        CONTRIB  *scp;
378          SRCINDEX  si;
379          int  nshadcheck, ncnts;
380          int  nhits;
381          double  prob, ourthresh, hwt;
382          RAY  sr;
383 +        
384 +        /* PMAP: Factor in direct photons (primarily for debugging/validation) */
385 +        if (directPhotonMapping) {
386 +                (*f)(r -> rcol, p, r -> ron, PI);              
387 +                multDirectPmap(r);
388 +                return;
389 +        }
390 +        
391                          /* NOTE: srccnt and cntord global so no recursion */
392          if (nsources <= 0)
393                  return;         /* no sources?! */
# Line 420 | Line 430 | direct(                                        /* add direct component */
430                                                  /* sort contributions */
431          qsort(cntord, sn, sizeof(CNTPTR), cntcmp);
432          {                                       /* find last */
433 <                register int  l, m;
433 >                int  l, m;
434  
435                  ncnts = l = sn;
436                  sn = 0;
# Line 440 | Line 450 | direct(                                        /* add direct component */
450                                                  /* compute number to check */
451          nshadcheck = pow((double)ncnts, shadcert) + .5;
452                                                  /* modify threshold */
453 <        ourthresh = shadthresh / r->rweight;
453 >        if (ncnts > MINSHADCNT)
454 >                ourthresh = shadthresh / r->rweight;
455 >        else
456 >                ourthresh = 0;
457                                                  /* test for shadows */
458          for (nhits = 0, hwt = 0.0, sn = 0; sn < ncnts;
459                          hwt += (double)source[scp->sno].nhits /
# Line 515 | Line 528 | direct(                                        /* add direct component */
528   }
529  
530  
531 < extern void
531 > void
532   srcscatter(                     /* compute source scattering into ray */
533 <        register RAY  *r
533 >        RAY  *r
534   )
535   {
536          int  oldsampndx;
# Line 529 | Line 542 | srcscatter(                    /* compute source scattering into ray */
542          COLOR  cvext;
543          int  i, j;
544  
545 <        if (r->slights == NULL || r->slights[0] == 0
546 <                        || r->gecc >= 1.-FTINY || r->rot >= FHUGE)
545 >        if (r->rot >= FHUGE || r->gecc >= 1.-FTINY)
546 >                return;         /* this can never work */
547 >        /* PMAP: do unconditional inscattering for volume photons */
548 >        if (!volumePhotonMapping && (r->slights == NULL || r->slights[0] == 0))
549                  return;
550 +                
551          if (ssampdist <= FTINY || (nsamps = r->rot/ssampdist + .5) < 1)
552                  nsamps = 1;
553   #if MAXSSAMP
# Line 540 | Line 556 | srcscatter(                    /* compute source scattering into ray */
556   #endif
557          oldsampndx = samplendx;
558          samplendx = random()&0x7fff;            /* randomize */
559 <        for (i = r->slights[0]; i > 0; i--) {   /* for each source */
559 >        for (i = volumePhotonMapping ? 1 : r->slights[0]; i > 0; i--) {
560 >                /* for each source OR once if volume photon map enabled */
561                  for (j = 0; j < nsamps; j++) {  /* for each sample position */
562                          samplendx++;
563                          t = r->rot * (j+frandom())/nsamps;
# Line 556 | Line 573 | srcscatter(                    /* compute source scattering into ray */
573                          sr.rorg[0] = r->rorg[0] + r->rdir[0]*t;
574                          sr.rorg[1] = r->rorg[1] + r->rdir[1]*t;
575                          sr.rorg[2] = r->rorg[2] + r->rdir[2]*t;
576 <                        initsrcindex(&si);      /* sample ray to this source */
577 <                        si.sn = r->slights[i];
578 <                        nopart(&si, &sr);
579 <                        if (!srcray(&sr, NULL, &si) ||
580 <                                        sr.rsrc != r->slights[i])
581 <                                continue;               /* no path */
576 >                        
577 >                        if (!volumePhotonMapping) {
578 >                                initsrcindex(&si);      /* sample ray to this source */
579 >                                si.sn = r->slights[i];
580 >                                nopart(&si, &sr);
581 >                                if (!srcray(&sr, NULL, &si) ||
582 >                                                sr.rsrc != r->slights[i])
583 >                                        continue;       /* no path */
584   #if SHADCACHE
585 <                        if (srcblocked(&sr))            /* check shadow cache */
586 <                                continue;
585 >                                if (srcblocked(&sr))    /* check shadow cache */
586 >                                        continue;
587   #endif
588 <                        copycolor(sr.cext, r->cext);
589 <                        copycolor(sr.albedo, r->albedo);
590 <                        sr.gecc = r->gecc;
591 <                        sr.slights = r->slights;
592 <                        rayvalue(&sr);                  /* eval. source ray */
593 <                        if (bright(sr.rcol) <= FTINY) {
588 >                                copycolor(sr.cext, r->cext);
589 >                                copycolor(sr.albedo, r->albedo);
590 >                                sr.gecc = r->gecc;
591 >                                sr.slights = r->slights;
592 >                                rayvalue(&sr);          /* eval. source ray */
593 >                                if (bright(sr.rcol) <= FTINY) {
594   #if SHADCACHE
595 <                                srcblocker(&sr);        /* add blocker to cache */
595 >                                        srcblocker(&sr); /* add blocker to cache */
596   #endif
597 <                                continue;
598 <                        }
599 <                        if (r->gecc <= FTINY)           /* compute P(theta) */
600 <                                d = 1.;
601 <                        else {
602 <                                d = DOT(r->rdir, sr.rdir);
603 <                                d = 1. + r->gecc*r->gecc - 2.*r->gecc*d;
604 <                                d = (1. - r->gecc*r->gecc) / (d*sqrt(d));
605 <                        }
597 >                                        continue;
598 >                                }
599 >                                if (r->gecc <= FTINY)   /* compute P(theta) */
600 >                                        d = 1.;
601 >                                else {
602 >                                        d = DOT(r->rdir, sr.rdir);
603 >                                        d = 1. + r->gecc*r->gecc - 2.*r->gecc*d;
604 >                                        d = (1. - r->gecc*r->gecc) / (d*sqrt(d));
605 >                                }
606                                                          /* other factors */
607 <                        d *= si.dom * r->rot / (4.*PI*nsamps);
607 >                                d *= si.dom * r->rot / (4.*PI*nsamps);
608 >                                scalecolor(sr.rcol, d);
609 >                        } else {
610 >                                /* PMAP: Add ambient inscattering from
611 >                                 * volume photons; note we reverse the
612 >                                 * incident ray direction since we're
613 >                                 * now in *backward* raytracing mode! */
614 >                                sr.rdir [0] = -r -> rdir [0];
615 >                                sr.rdir [1] = -r -> rdir [1];
616 >                                sr.rdir [2] = -r -> rdir [2];
617 >                                sr.gecc = r -> gecc;
618 >                                inscatterVolumePmap(&sr, sr.rcol);
619 >                                scalecolor(sr.rcol, r -> rot / nsamps);
620 >                        }
621                          multcolor(sr.rcol, r->cext);
622                          multcolor(sr.rcol, r->albedo);
591                        scalecolor(sr.rcol, d);
623                          multcolor(sr.rcol, cvext);
624                          addcolor(r->rcol, sr.rcol);     /* add it in */
625                  }
# Line 655 | Line 686 | weaksrcmat(OBJECT obj)         /* identify material */
686   * The same is true for stray specular samples, since the specular
687   * contribution from light sources is calculated separately.
688   */
689 <
690 < #define  badcomponent(m, r)     (r->crtype&(AMBIENT|SPECULAR) && \
689 > /* PMAP: Also avoid counting sources via transferred ambient rays (e.g.
690 > * through glass) when photon mapping is enabled, as these indirect
691 > * components are already accounted for.
692 > */
693 > #define  badcomponent(m, r)   (srcRayInPmap(r) || \
694 >                                (r->crtype&(AMBIENT|SPECULAR) && \
695                                  !(r->crtype&SHADOW || r->rod < 0.0 || \
696 <                /* not 100% correct */  distglow(m, r, r->rot)))
696 >                /* not 100% correct */  distglow(m, r, r->rot))))
697  
698   /* passillum *
699   *
# Line 680 | Line 715 | weaksrcmat(OBJECT obj)         /* identify material */
715                                  distglow(m, r, raydist(r,PRIMARY)))
716  
717  
718 < extern int
718 > int
719   m_light(                                /* ray hit a light source */
720 <        register OBJREC  *m,
721 <        register RAY  *r
720 >        OBJREC  *m,
721 >        RAY  *r
722   )
723   {
724                                                  /* check for over-counting */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines