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.7 by greg, Tue Feb 22 05:41:02 2011 UTC vs.
Revision 2.18 by greg, Fri Mar 30 15:08:40 2012 UTC

# Line 50 | Line 50 | static const char RCSid[] = "$Id$";
50   *  Arguments for MAT_BSDF are:
51   *      6+      thick   BSDFfile        ux uy uz        funcfile        transform
52   *      0
53 < *      0|3|9   rdf     gdf     bdf
53 > *      0|3|6|9 rdf     gdf     bdf
54   *              rdb     gdb     bdb
55   *              rdt     gdt     bdt
56   */
# Line 67 | Line 67 | typedef struct {
67          RAY     *pr;            /* intersected ray */
68          FVECT   pnorm;          /* perturbed surface normal */
69          FVECT   vray;           /* local outgoing (return) vector */
70 <        double  sr_vpsa;        /* sqrt of BSDF projected solid angle */
70 >        double  sr_vpsa[2];     /* sqrt of BSDF projected solid angle extrema */
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 82 | Line 82 | typedef struct {
82  
83   /* Jitter ray sample according to projected solid angle and specjitter */
84   static void
85 < bsdf_jitter(FVECT vres, BSDFDAT *ndp)
85 > bsdf_jitter(FVECT vres, BSDFDAT *ndp, double sr_psa)
86   {
87        double  sr_psa = ndp->sr_vpsa;
88
87          VCOPY(vres, ndp->vray);
88          if (specjitter < 1.)
89                  sr_psa *= specjitter;
# Line 98 | Line 96 | bsdf_jitter(FVECT vres, BSDFDAT *ndp)
96  
97   /* Evaluate BSDF for direct component, returning true if OK to proceed */
98   static int
99 < direct_bsdf_OK(COLOR cval, FVECT ldir, BSDFDAT *ndp)
99 > direct_bsdf_OK(COLOR cval, FVECT ldir, double omega, BSDFDAT *ndp)
100   {
101 <        FVECT   vsrc, vjit;
101 >        int     nsamp, ok = 0;
102 >        FVECT   vsrc, vsmp, vjit;
103 >        double  tomega;
104 >        double  sf, tsr, sd[2];
105 >        COLOR   csmp;
106          SDValue sv;
107          SDError ec;
108 +        int     i;
109                                          /* transform source direction */
110          if (SDmapDir(vsrc, ndp->toloc, ldir) != SDEnone)
111                  return(0);
112 <                                        /* jitter query direction */
113 <        bsdf_jitter(vjit, ndp);
114 <                                        /* avoid indirect over-counting */
115 <        if (ndp->thick != .0 && ndp->pr->crtype & (SPECULAR|AMBIENT) &&
116 <                                vsrc[2] > .0 ^ vjit[2] > .0) {
117 <                double  dx = vsrc[0] + vjit[0];
118 <                double  dy = vsrc[1] + vjit[1];
119 <                if (dx*dx + dy*dy <= ndp->sr_vpsa*ndp->sr_vpsa)
112 >                                        /* assign number of samples */
113 >        ec = SDsizeBSDF(&tomega, ndp->vray, vsrc, SDqueryMin, ndp->sd);
114 >        if (ec)
115 >                goto baderror;
116 >                                        /* check indirect over-counting */
117 >        if (ndp->thick != 0 && ndp->pr->crtype & (SPECULAR|AMBIENT)
118 >                                && vsrc[2] > 0 ^ ndp->vray[2] > 0) {
119 >                double  dx = vsrc[0] + ndp->vray[0];
120 >                double  dy = vsrc[1] + ndp->vray[1];
121 >                if (dx*dx + dy*dy <= omega+tomega)
122                          return(0);
123          }
124 <        ec = SDevalBSDF(&sv, vjit, vsrc, ndp->sd);
125 <        if (ec)
126 <                objerror(ndp->mp, USER, transSDError(ec));
127 <
128 <        if (sv.cieY <= FTINY)           /* not worth using? */
129 <                return(0);
130 <                                        /* else we're good to go */
131 <        cvt_sdcolor(cval, &sv);
132 <        return(1);
124 >        sf = specjitter * ndp->pr->rweight;
125 >        if (25.*tomega <= omega)
126 >                nsamp = 100.*sf + .5;
127 >        else
128 >                nsamp = 4.*sf*omega/tomega + .5;
129 >        nsamp += !nsamp;
130 >        setcolor(cval, .0, .0, .0);     /* sample our source area */
131 >        sf = sqrt(omega);
132 >        tsr = sqrt(tomega);
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, tsr);
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 >        return(0);                      /* gratis return */
161   }
162  
163   /* Compute source contribution for BSDF (reflected & transmitted) */
# Line 147 | Line 180 | dir_bsdf(
180          if ((-FTINY <= ldot) & (ldot <= FTINY))
181                  return;
182  
183 <        if (ldot > .0 && bright(np->rdiff) > FTINY) {
183 >        if (ldot > 0 && bright(np->rdiff) > FTINY) {
184                  /*
185                   *  Compute added diffuse reflected component.
186                   */
# Line 156 | Line 189 | dir_bsdf(
189                  scalecolor(ctmp, dtmp);
190                  addcolor(cval, ctmp);
191          }
192 <        if (ldot < .0 && bright(np->tdiff) > FTINY) {
192 >        if (ldot < 0 && bright(np->tdiff) > FTINY) {
193                  /*
194                   *  Compute added diffuse transmission.
195                   */
# Line 168 | Line 201 | dir_bsdf(
201          /*
202           *  Compute scattering coefficient using BSDF.
203           */
204 <        if (!direct_bsdf_OK(ctmp, ldir, np))
204 >        if (!direct_bsdf_OK(ctmp, ldir, omega, np))
205                  return;
206 <        if (ldot > .0) {                /* pattern only diffuse reflection */
206 >        if (ldot > 0) {         /* pattern only diffuse reflection */
207                  COLOR   ctmp1, ctmp2;
208 <                dtmp = (np->pr->rod > .0) ? np->sd->rLambFront.cieY
208 >                dtmp = (np->pr->rod > 0) ? np->sd->rLambFront.cieY
209                                          : np->sd->rLambBack.cieY;
210                                          /* diffuse fraction */
211                  dtmp /= PI * bright(ctmp);
# Line 223 | Line 256 | dir_brdf(
256          /*
257           *  Compute reflection coefficient using BSDF.
258           */
259 <        if (!direct_bsdf_OK(ctmp, ldir, np))
259 >        if (!direct_bsdf_OK(ctmp, ldir, omega, np))
260                  return;
261                                          /* pattern only diffuse reflection */
262 <        dtmp = (np->pr->rod > .0) ? np->sd->rLambFront.cieY
262 >        dtmp = (np->pr->rod > 0) ? np->sd->rLambFront.cieY
263                                  : np->sd->rLambBack.cieY;
264          dtmp /= PI * bright(ctmp);      /* diffuse fraction */
265          copycolor(ctmp2, np->pr->pcol);
# Line 272 | Line 305 | dir_btdf(
305          /*
306           *  Compute scattering coefficient using BSDF.
307           */
308 <        if (!direct_bsdf_OK(ctmp, ldir, np))
308 >        if (!direct_bsdf_OK(ctmp, ldir, omega, np))
309                  return;
310                                          /* full pattern on transmission */
311          multcolor(ctmp, np->pr->pcol);
# Line 286 | Line 319 | static int
319   sample_sdcomp(BSDFDAT *ndp, SDComponent *dcp, int usepat)
320   {
321          int     nstarget = 1;
322 <        int     nsent = 0;
322 >        int     nsent;
323          SDError ec;
324          SDValue bsv;
325 <        double  sthick;
326 <        FVECT   vjit, vsmp;
325 >        double  xrand;
326 >        FVECT   vsmp;
327          RAY     sr;
295        int     ntrials;
328                                                  /* multiple samples? */
329          if (specjitter > 1.5) {
330                  nstarget = specjitter*ndp->pr->rweight + .5;
331 <                if (nstarget < 1)
300 <                        nstarget = 1;
331 >                nstarget += !nstarget;
332          }
333 <                                                /* run through our trials */
334 <        for (ntrials = 0; nsent < nstarget && ntrials < 9*nstarget; ntrials++) {
335 <                SDerrorDetail[0] = '\0';
336 <                                                /* sample direction & coef. */
337 <                bsdf_jitter(vjit, ndp);
338 <                ec = SDsampComponent(&bsv, vsmp, vjit, ntrials ? frandom()
339 <                                : urand(ilhash(dimlist,ndims)+samplendx), dcp);
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 >                        if (specjitter < 1.)
338 >                                xrand = .5 + specjitter*(xrand-.5);
339 >                } else {
340 >                        xrand = (nsent + frandom())/(double)nstarget;
341 >                }
342 >                SDerrorDetail[0] = '\0';        /* sample direction & coef. */
343 >                bsdf_jitter(vsmp, ndp, ndp->sr_vpsa[0]);
344 >                ec = SDsampComponent(&bsv, vsmp, xrand, dcp);
345                  if (ec)
346                          objerror(ndp->mp, USER, transSDError(ec));
347 <                                                /* zero component? */
312 <                if (bsv.cieY <= FTINY)
347 >                if (bsv.cieY <= FTINY)          /* zero component? */
348                          break;
349                                                  /* map vector to world */
350                  if (SDmapDir(sr.rdir, ndp->fromloc, vsmp) != SDEnone)
351                          break;
317                                                /* unintentional penetration? */
318                if (DOT(sr.rdir, ndp->pr->ron) > .0 ^ vsmp[2] > .0)
319                        continue;
352                                                  /* spawn a specular ray */
353                  if (nstarget > 1)
354                          bsv.cieY /= (double)nstarget;
355 <                cvt_sdcolor(sr.rcoef, &bsv);    /* use color */
356 <                if (usepat)                     /* pattern on transmission */
355 >                cvt_sdcolor(sr.rcoef, &bsv);    /* use sample color */
356 >                if (usepat)                     /* apply pattern? */
357                          multcolor(sr.rcoef, ndp->pr->pcol);
358                  if (rayorigin(&sr, SPECULAR, ndp->pr, sr.rcoef) < 0) {
359 <                        if (maxdepth  > 0)
359 >                        if (maxdepth > 0)
360                                  break;
361 <                        ++nsent;                /* Russian roulette victim */
330 <                        continue;
361 >                        continue;               /* Russian roulette victim */
362                  }
363                                                  /* need to offset origin? */
364 <                if (ndp->thick != .0 && ndp->pr->rod > .0 ^ vsmp[2] > .0)
364 >                if (ndp->thick != 0 && ndp->pr->rod > 0 ^ vsmp[2] > 0)
365                          VSUM(sr.rorg, sr.rorg, ndp->pr->ron, -ndp->thick);
366                  rayvalue(&sr);                  /* send & evaluate sample */
367                  multcolor(sr.rcol, sr.rcoef);
368                  addcolor(ndp->pr->rcol, sr.rcol);
338                ++nsent;
369          }
370          return(nsent);
371   }
# Line 354 | Line 384 | sample_sdf(BSDFDAT *ndp, int sflags)
384                  cvt_sdcolor(unsc, &ndp->sd->tLamb);
385          } else /* sflags == SDsampSpR */ {
386                  unsc = ndp->runsamp;
387 <                if (ndp->pr->rod > .0) {
387 >                if (ndp->pr->rod > 0) {
388                          dfp = ndp->sd->rf;
389                          cvt_sdcolor(unsc, &ndp->sd->rLambFront);
390                  } else {
# Line 371 | Line 401 | sample_sdf(BSDFDAT *ndp, int sflags)
401                          FVECT   vjit;
402                          double  d;
403                          COLOR   ctmp;
404 <                        bsdf_jitter(vjit, ndp);
404 >                        bsdf_jitter(vjit, ndp, ndp->sr_vpsa[1]);
405                          d = SDdirectHemi(vjit, sflags, ndp->sd);
406                          if (sflags == SDsampSpT) {
407                                  copycolor(ctmp, ndp->pr->pcol);
# Line 408 | Line 438 | m_bsdf(OBJREC *m, RAY *r)
438                                  (m->oargs.nfargs % 3))
439                  objerror(m, USER, "bad # arguments");
440                                                  /* record surface struck */
441 <        hitfront = (r->rod > .0);
441 >        hitfront = (r->rod > 0);
442                                                  /* load cal file */
443          mf = getfunc(m, 5, 0x1d, 1);
444                                                  /* get thickness */
# Line 417 | Line 447 | m_bsdf(OBJREC *m, RAY *r)
447                  nd.thick = .0;
448                                                  /* check shadow */
449          if (r->crtype & SHADOW) {
450 <                if (nd.thick != .0)
450 >                if (nd.thick != 0)
451                          raytrans(r);            /* pass-through */
452                  return(1);                      /* or shadow */
453          }
454                                                  /* check other rays to pass */
455 <        if (nd.thick != .0 && (!(r->crtype & (SPECULAR|AMBIENT)) ||
456 <                                nd.thick > .0 ^ hitfront)) {
455 >        if (nd.thick != 0 && (!(r->crtype & (SPECULAR|AMBIENT)) ||
456 >                                nd.thick > 0 ^ hitfront)) {
457                  raytrans(r);                    /* hide our proxy */
458                  return(1);
459          }
# Line 487 | Line 517 | m_bsdf(OBJREC *m, RAY *r)
517                  ec = SDinvXform(nd.fromloc, nd.toloc);
518                                                  /* determine BSDF resolution */
519          if (!ec)
520 <                ec = SDsizeBSDF(&nd.sr_vpsa, nd.vray, SDqueryMin, nd.sd);
521 <        if (!ec)
522 <                nd.sr_vpsa = sqrt(nd.sr_vpsa);
493 <        else {
520 >                ec = SDsizeBSDF(nd.sr_vpsa, nd.vray, NULL,
521 >                                                SDqueryMin+SDqueryMax, nd.sd);
522 >        if (ec) {
523                  objerror(m, WARNING, transSDError(ec));
524                  SDfreeCache(nd.sd);
525                  return(1);
526          }
527 +        nd.sr_vpsa[0] = sqrt(nd.sr_vpsa[0]);
528 +        nd.sr_vpsa[1] = sqrt(nd.sr_vpsa[1]);
529          if (!hitfront) {                        /* perturb normal towards hit */
530                  nd.pnorm[0] = -nd.pnorm[0];
531                  nd.pnorm[1] = -nd.pnorm[1];
# Line 524 | Line 555 | m_bsdf(OBJREC *m, RAY *r)
555                  bnorm[0] = -nd.pnorm[0];
556                  bnorm[1] = -nd.pnorm[1];
557                  bnorm[2] = -nd.pnorm[2];
558 <                if (nd.thick != .0) {           /* proxy with offset? */
558 >                if (nd.thick != 0) {            /* proxy with offset? */
559                          VCOPY(vtmp, r->rop);
560 <                        VSUM(r->rop, vtmp, r->ron, -nd.thick);
560 >                        VSUM(r->rop, vtmp, r->ron, nd.thick);
561                          multambient(ctmp, r, bnorm);
562                          VCOPY(r->rop, vtmp);
563                  } else
# Line 538 | Line 569 | m_bsdf(OBJREC *m, RAY *r)
569                                                  /* add direct component */
570          if ((bright(nd.tdiff) <= FTINY) & (nd.sd->tf == NULL)) {
571                  direct(r, dir_brdf, &nd);       /* reflection only */
572 <        } else if (nd.thick == .0) {
572 >        } else if (nd.thick == 0) {
573                  direct(r, dir_bsdf, &nd);       /* thin surface scattering */
574          } else {
575                  direct(r, dir_brdf, &nd);       /* reflection first */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines