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

Comparing ray/src/rt/m_bsdf.c (file contents):
Revision 2.10 by greg, Sun Apr 24 19:39:21 2011 UTC vs.
Revision 2.13 by greg, Sun Aug 21 21:24:30 2011 UTC

# Line 68 | Line 68 | typedef struct {
68          FVECT   pnorm;          /* perturbed surface normal */
69          FVECT   vray;           /* local outgoing (return) vector */
70          double  sr_vpsa[2];     /* sqrt of BSDF projected solid angle extrema */
71        double  thru_psa;       /* through direction projected solid angle */
71          RREAL   toloc[3][3];    /* world to local BSDF coords */
72          RREAL   fromloc[3][3];  /* local BSDF coords to world */
73          double  thick;          /* surface thickness */
# Line 99 | Line 98 | bsdf_jitter(FVECT vres, BSDFDAT *ndp, int domax)
98  
99   /* Evaluate BSDF for direct component, returning true if OK to proceed */
100   static int
101 < direct_bsdf_OK(COLOR cval, FVECT ldir, BSDFDAT *ndp)
101 > direct_bsdf_OK(COLOR cval, FVECT ldir, double omega, BSDFDAT *ndp)
102   {
103 <        FVECT   vsrc, vjit;
103 >        int     nsamp, ok = 0;
104 >        FVECT   vsrc, vsmp, vjit;
105 >        double  tomega;
106 >        double  sf, sd[2];
107 >        COLOR   csmp;
108          SDValue sv;
109          SDError ec;
110 +        int     i;
111                                          /* transform source direction */
112          if (SDmapDir(vsrc, ndp->toloc, ldir) != SDEnone)
113                  return(0);
114 <                                        /* jitter query direction */
115 <        bsdf_jitter(vjit, ndp, 0);
116 <                                        /* avoid indirect over-counting */
117 <        if (ndp->thick != 0 && ndp->pr->crtype & (SPECULAR|AMBIENT) &&
118 <                                vsrc[2] > 0 ^ vjit[2] > 0) {
119 <                double  dx = vsrc[0] + vjit[0];
116 <                double  dy = vsrc[1] + vjit[1];
117 <                if (dx*dx + dy*dy <= ndp->thru_psa)
114 >                                        /* check indirect over-counting */
115 >        if (ndp->thick != 0 && ndp->pr->crtype & (SPECULAR|AMBIENT)
116 >                                && vsrc[2] > 0 ^ ndp->vray[2] > 0) {
117 >                double  dx = vsrc[0] + ndp->vray[0];
118 >                double  dy = vsrc[1] + ndp->vray[1];
119 >                if (dx*dx + dy*dy <= omega*(1./PI))
120                          return(0);
121          }
122 <        ec = SDevalBSDF(&sv, vjit, vsrc, ndp->sd);
122 >                                        /* get local BSDF resolution */
123 >        ec = SDsizeBSDF(&tomega, ndp->vray, vsrc, SDqueryMin, ndp->sd);
124          if (ec)
125 <                objerror(ndp->mp, USER, transSDError(ec));
126 <
127 <        if (sv.cieY <= FTINY)           /* not worth using? */
128 <                return(0);
129 <                                        /* else we're good to go */
130 <        cvt_sdcolor(cval, &sv);
131 <        return(1);
125 >                goto baderror;
126 >                                        /* assign number of samples */
127 >        if (tomega <= omega*.02)
128 >                nsamp = 50;
129 >        else
130 >                nsamp = 2.*omega/tomega + 1.;
131 >        sf = sqrt(omega);
132 >        setcolor(cval, .0, .0, .0);     /* sample our source area */
133 >        for (i = nsamp; i--; ) {
134 >                VCOPY(vsmp, vsrc);      /* jitter query directions */
135 >                if (nsamp > 1) {
136 >                        multisamp(sd, 2, (i + frandom())/(double)nsamp);
137 >                        vsmp[0] += (sd[0] - .5)*sf;
138 >                        vsmp[1] += (sd[1] - .5)*sf;
139 >                        if (normalize(vsmp) == 0) {
140 >                                --nsamp;
141 >                                continue;
142 >                        }
143 >                }
144 >                bsdf_jitter(vjit, ndp, 0);
145 >                                        /* compute BSDF */
146 >                ec = SDevalBSDF(&sv, vjit, vsmp, ndp->sd);
147 >                if (ec)
148 >                        goto baderror;
149 >                if (sv.cieY <= FTINY)   /* worth using? */
150 >                        continue;
151 >                cvt_sdcolor(csmp, &sv);
152 >                addcolor(cval, csmp);   /* average it in */
153 >                ++ok;
154 >        }
155 >        sf = 1./(double)nsamp;
156 >        scalecolor(cval, sf);
157 >        return(ok);
158 > baderror:
159 >        objerror(ndp->mp, USER, transSDError(ec));
160   }
161  
162   /* Compute source contribution for BSDF (reflected & transmitted) */
# Line 169 | Line 200 | dir_bsdf(
200          /*
201           *  Compute scattering coefficient using BSDF.
202           */
203 <        if (!direct_bsdf_OK(ctmp, ldir, np))
203 >        if (!direct_bsdf_OK(ctmp, ldir, omega, np))
204                  return;
205          if (ldot > 0) {         /* pattern only diffuse reflection */
206                  COLOR   ctmp1, ctmp2;
# Line 224 | Line 255 | dir_brdf(
255          /*
256           *  Compute reflection coefficient using BSDF.
257           */
258 <        if (!direct_bsdf_OK(ctmp, ldir, np))
258 >        if (!direct_bsdf_OK(ctmp, ldir, omega, np))
259                  return;
260                                          /* pattern only diffuse reflection */
261          dtmp = (np->pr->rod > 0) ? np->sd->rLambFront.cieY
# Line 273 | Line 304 | dir_btdf(
304          /*
305           *  Compute scattering coefficient using BSDF.
306           */
307 <        if (!direct_bsdf_OK(ctmp, ldir, np))
307 >        if (!direct_bsdf_OK(ctmp, ldir, omega, np))
308                  return;
309                                          /* full pattern on transmission */
310          multcolor(ctmp, np->pr->pcol);
# Line 287 | Line 318 | static int
318   sample_sdcomp(BSDFDAT *ndp, SDComponent *dcp, int usepat)
319   {
320          int     nstarget = 1;
321 <        int     nsent = 0;
321 >        int     nsent;
322          SDError ec;
323          SDValue bsv;
324 <        double  sthick;
324 >        double  xrand;
325          FVECT   vsmp;
326          RAY     sr;
296        int     ntrials;
327                                                  /* multiple samples? */
328          if (specjitter > 1.5) {
329                  nstarget = specjitter*ndp->pr->rweight + .5;
330                  if (nstarget < 1)
331                          nstarget = 1;
332          }
333 <                                                /* run through our trials */
334 <        for (ntrials = 0; nsent < nstarget && ntrials < 9*nstarget; ntrials++) {
335 <                SDerrorDetail[0] = '\0';
336 <                                                /* sample direction & coef. */
333 >                                                /* run through our samples */
334 >        for (nsent = 0; nsent < nstarget; nsent++) {
335 >                if (nstarget == 1)              /* stratify random variable */
336 >                        xrand = urand(ilhash(dimlist,ndims)+samplendx);
337 >                else
338 >                        xrand = (nsent + frandom())/(double)nstarget;
339 >                SDerrorDetail[0] = '\0';        /* sample direction & coef. */
340                  bsdf_jitter(vsmp, ndp, 0);
341 <                ec = SDsampComponent(&bsv, vsmp, ntrials ? frandom()
309 <                                : urand(ilhash(dimlist,ndims)+samplendx), dcp);
341 >                ec = SDsampComponent(&bsv, vsmp, xrand, dcp);
342                  if (ec)
343                          objerror(ndp->mp, USER, transSDError(ec));
344 <                                                /* zero component? */
313 <                if (bsv.cieY <= FTINY)
344 >                if (bsv.cieY <= FTINY)          /* zero component? */
345                          break;
346                                                  /* map vector to world */
347                  if (SDmapDir(sr.rdir, ndp->fromloc, vsmp) != SDEnone)
348                          break;
318                                                /* unintentional penetration? */
319                if (DOT(sr.rdir, ndp->pr->ron) > 0 ^ vsmp[2] > 0)
320                        continue;
349                                                  /* spawn a specular ray */
350                  if (nstarget > 1)
351                          bsv.cieY /= (double)nstarget;
352 <                cvt_sdcolor(sr.rcoef, &bsv);    /* use color */
353 <                if (usepat)                     /* pattern on transmission */
352 >                cvt_sdcolor(sr.rcoef, &bsv);    /* use sample color */
353 >                if (usepat)                     /* apply pattern? */
354                          multcolor(sr.rcoef, ndp->pr->pcol);
355                  if (rayorigin(&sr, SPECULAR, ndp->pr, sr.rcoef) < 0) {
356 <                        if (maxdepth  > 0)
356 >                        if (maxdepth > 0)
357                                  break;
358 <                        ++nsent;                /* Russian roulette victim */
331 <                        continue;
358 >                        continue;               /* Russian roulette victim */
359                  }
360                                                  /* need to offset origin? */
361                  if (ndp->thick != 0 && ndp->pr->rod > 0 ^ vsmp[2] > 0)
# Line 336 | Line 363 | sample_sdcomp(BSDFDAT *ndp, SDComponent *dcp, int usep
363                  rayvalue(&sr);                  /* send & evaluate sample */
364                  multcolor(sr.rcol, sr.rcoef);
365                  addcolor(ndp->pr->rcol, sr.rcol);
339                ++nsent;
366          }
367          return(nsent);
368   }
# Line 490 | Line 516 | m_bsdf(OBJREC *m, RAY *r)
516          if (!ec)
517                  ec = SDsizeBSDF(nd.sr_vpsa, nd.vray, NULL,
518                                                  SDqueryMin+SDqueryMax, nd.sd);
493        nd.thru_psa = .0;
494        if (!ec && nd.thick != 0 && r->crtype & (SPECULAR|AMBIENT)) {
495                FVECT   vthru;
496                vthru[0] = -nd.vray[0];
497                vthru[1] = -nd.vray[1];
498                vthru[2] = -nd.vray[2];
499                ec = SDsizeBSDF(&nd.thru_psa, nd.vray, vthru,
500                                                SDqueryMin, nd.sd);
501        }
519          if (ec) {
520                  objerror(m, WARNING, transSDError(ec));
521                  SDfreeCache(nd.sd);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines