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

Comparing ray/src/rt/normal.c (file contents):
Revision 2.52 by greg, Fri May 7 15:44:52 2010 UTC vs.
Revision 2.62 by greg, Sun Jul 29 19:01:39 2012 UTC

# Line 65 | Line 65 | typedef struct {
65          double  pdot;           /* perturbed dot product */
66   }  NORMDAT;             /* normal material data */
67  
68 static srcdirf_t dirnorm;
68   static void gaussamp(RAY  *r, NORMDAT  *np);
69  
70  
71   static void
72   dirnorm(                /* compute source contribution */
73          COLOR  cval,                    /* returned coefficient */
74 <        void  *nnp,             /* material data */
74 >        void  *nnp,                     /* material data */
75          FVECT  ldir,                    /* light source direction */
76          double  omega                   /* light source size */
77   )
78   {
79 <        register NORMDAT *np = nnp;
79 >        NORMDAT *np = nnp;
80          double  ldot;
81          double  lrdiff, ltdiff;
82 <        double  dtmp, d2;
82 >        double  dtmp, d2, d3, d4;
83          FVECT  vtmp;
84          COLOR  ctmp;
85  
# Line 115 | Line 114 | dirnorm(               /* compute source contribution */
114          if (ldot > FTINY && (np->specfl&(SP_REFL|SP_PURE)) == SP_REFL) {
115                  /*
116                   *  Compute specular reflection coefficient using
117 <                 *  gaussian distribution model.
117 >                 *  Gaussian distribution model.
118                   */
119                                                  /* roughness */
120                  dtmp = np->alpha2;
# Line 123 | Line 122 | dirnorm(               /* compute source contribution */
122                  if (np->specfl & SP_FLAT)
123                          dtmp += omega * (0.25/PI);
124                                                  /* half vector */
125 <                vtmp[0] = ldir[0] - np->rp->rdir[0];
127 <                vtmp[1] = ldir[1] - np->rp->rdir[1];
128 <                vtmp[2] = ldir[2] - np->rp->rdir[2];
125 >                VSUB(vtmp, ldir, np->rp->rdir);
126                  d2 = DOT(vtmp, np->pnorm);
127                  d2 *= d2;
128 <                d2 = (DOT(vtmp,vtmp) - d2) / d2;
129 <                                                /* gaussian */
130 <                dtmp = exp(-d2/dtmp)/(4.*PI * np->pdot * dtmp);
128 >                d3 = DOT(vtmp,vtmp);
129 >                d4 = (d3 - d2) / d2;
130 >                                                /* new W-G-M-D model */
131 >                dtmp = exp(-d4/dtmp) * d3 / (PI * d2*d2 * dtmp);
132                                                  /* worth using? */
133                  if (dtmp > FTINY) {
134                          copycolor(ctmp, np->scolor);
135 <                        dtmp *= omega;
135 >                        dtmp *= ldot * omega;
136                          scalecolor(ctmp, dtmp);
137                          addcolor(cval, ctmp);
138                  }
# Line 155 | Line 153 | dirnorm(               /* compute source contribution */
153                   */
154                                                  /* roughness + source */
155                  dtmp = np->alpha2 + omega*(1.0/PI);
156 <                                                /* gaussian */
157 <                 dtmp = exp((2.*DOT(np->prdir,ldir)-2.)/dtmp)/(PI*dtmp);
156 >                                                /* Gaussian */
157 >                dtmp = exp((2.*DOT(np->prdir,ldir)-2.)/dtmp)/(PI*dtmp);
158                                                  /* worth using? */
159                  if (dtmp > FTINY) {
160                          copycolor(ctmp, np->mcolor);
# Line 168 | Line 166 | dirnorm(               /* compute source contribution */
166   }
167  
168  
169 < extern int
169 > int
170   m_normal(                       /* color a ray that hit something normal */
171 <        register OBJREC  *m,
172 <        register RAY  *r
171 >        OBJREC  *m,
172 >        RAY  *r
173   )
174   {
175          NORMDAT  nd;
# Line 181 | Line 179 | m_normal(                      /* color a ray that hit something normal *
179          int     hastexture;
180          double  d;
181          COLOR  ctmp;
182 <        register int  i;
182 >        int  i;
183                                                  /* easy shadow test */
184          if (r->crtype & SHADOW && m->otype != MAT_TRANS)
185                  return(1);
# Line 226 | Line 224 | m_normal(                      /* color a ray that hit something normal *
224          nd.rspec = m->oargs.farg[3];
225                                                  /* compute Fresnel approx. */
226          if (nd.specfl & SP_PURE && nd.rspec >= FRESTHRESH) {
227 <                fest = FRESNE(r->rod);
227 >                fest = FRESNE(nd.pdot);
228                  nd.rspec += fest*(1. - nd.rspec);
229          } else
230                  fest = 0.;
# Line 293 | Line 291 | m_normal(                      /* color a ray that hit something normal *
291                  if (!(nd.specfl & SP_PURE) && specthresh >= nd.rspec-FTINY)
292                          nd.specfl |= SP_RBLT;
293                                                  /* compute reflected ray */
294 <                for (i = 0; i < 3; i++)
297 <                        nd.vrefl[i] = r->rdir[i] + 2.*nd.pdot*nd.pnorm[i];
294 >                VSUM(nd.vrefl, r->rdir, nd.pnorm, 2.*nd.pdot);
295                                                  /* penetration? */
296                  if (hastexture && DOT(nd.vrefl, r->ron) <= FTINY)
297 <                        for (i = 0; i < 3; i++)         /* safety measure */
298 <                                nd.vrefl[i] = r->rdir[i] + 2.*r->rod*r->ron[i];
297 >                        VSUM(nd.vrefl, r->rdir, r->ron, 2.*r->rod);
298 >                checknorm(nd.vrefl);
299          }
300                                                  /* reflected ray */
301          if ((nd.specfl&(SP_REFL|SP_PURE|SP_RBLT)) == (SP_REFL|SP_PURE)) {
# Line 325 | Line 322 | m_normal(                      /* color a ray that hit something normal *
322  
323          if (nd.rdiff > FTINY) {         /* ambient from this side */
324                  copycolor(ctmp, nd.mcolor);     /* modified by material color */
325 <                if (nd.specfl & SP_RBLT)
326 <                        scalecolor(ctmp, 1.0-nd.trans);
327 <                else
331 <                        scalecolor(ctmp, nd.rdiff);
325 >                scalecolor(ctmp, nd.rdiff);
326 >                if (nd.specfl & SP_RBLT)        /* add in specular as well? */
327 >                        addcolor(ctmp, nd.scolor);
328                  multambient(ctmp, r, hastexture ? nd.pnorm : r->ron);
329                  addcolor(r->rcol, ctmp);        /* add to returned color */
330          }
# Line 364 | Line 360 | m_normal(                      /* color a ray that hit something normal *
360  
361  
362   static void
363 < gaussamp(                       /* sample gaussian specular */
363 > gaussamp(                       /* sample Gaussian specular */
364          RAY  *r,
365 <        register NORMDAT  *np
365 >        NORMDAT  *np
366   )
367   {
368          RAY  sr;
369          FVECT  u, v, h;
370          double  rv[2];
371          double  d, sinp, cosp;
372 <        int  niter;
373 <        register int  i;
372 >        COLOR  scol;
373 >        int  maxiter, ntrials, nstarget, nstaken;
374 >        int  i;
375                                          /* quick test */
376          if ((np->specfl & (SP_REFL|SP_RBLT)) != SP_REFL &&
377                          (np->specfl & (SP_TRAN|SP_TBLT)) != SP_TRAN)
# Line 391 | Line 388 | gaussamp(                      /* sample gaussian specular */
388                                          /* compute reflection */
389          if ((np->specfl & (SP_REFL|SP_RBLT)) == SP_REFL &&
390                          rayorigin(&sr, SPECULAR, r, np->scolor) == 0) {
391 <                dimlist[ndims++] = (int)np->mp;
392 <                for (niter = 0; niter < MAXITER; niter++) {
393 <                        if (niter)
391 >                nstarget = 1;
392 >                if (specjitter > 1.5) { /* multiple samples? */
393 >                        nstarget = specjitter*r->rweight + .5;
394 >                        if (sr.rweight <= minweight*nstarget)
395 >                                nstarget = sr.rweight/minweight;
396 >                        if (nstarget > 1) {
397 >                                d = 1./nstarget;
398 >                                scalecolor(sr.rcoef, d);
399 >                                sr.rweight *= d;
400 >                        } else
401 >                                nstarget = 1;
402 >                }
403 >                setcolor(scol, 0., 0., 0.);
404 >                dimlist[ndims++] = (int)(size_t)np->mp;
405 >                maxiter = MAXITER*nstarget;
406 >                for (nstaken = ntrials = 0; nstaken < nstarget &&
407 >                                                ntrials < maxiter; ntrials++) {
408 >                        if (ntrials)
409                                  d = frandom();
410                          else
411                                  d = urand(ilhash(dimlist,ndims)+samplendx);
# Line 401 | Line 413 | gaussamp(                      /* sample gaussian specular */
413                          d = 2.0*PI * rv[0];
414                          cosp = tcos(d);
415                          sinp = tsin(d);
416 <                        rv[1] = 1.0 - specjitter*rv[1];
416 >                        if ((0. <= specjitter) & (specjitter < 1.))
417 >                                rv[1] = 1.0 - specjitter*rv[1];
418                          if (rv[1] <= FTINY)
419                                  d = 1.0;
420                          else
# Line 409 | Line 422 | gaussamp(                      /* sample gaussian specular */
422                          for (i = 0; i < 3; i++)
423                                  h[i] = np->pnorm[i] + d*(cosp*u[i] + sinp*v[i]);
424                          d = -2.0 * DOT(h, r->rdir) / (1.0 + d*d);
425 <                        for (i = 0; i < 3; i++)
426 <                                sr.rdir[i] = r->rdir[i] + d*h[i];
427 <                        if (DOT(sr.rdir, r->ron) > FTINY) {
425 >                        VSUM(sr.rdir, r->rdir, h, d);
426 >                                                /* sample rejection test */
427 >                        if ((d = DOT(sr.rdir, r->ron)) <= FTINY)
428 >                                continue;
429 >                        checknorm(sr.rdir);
430 >                        if (nstarget > 1) {     /* W-G-M-D adjustment */
431 >                                if (nstaken) rayclear(&sr);
432                                  rayvalue(&sr);
433 +                                d = 2./(1. + r->rod/d);
434 +                                scalecolor(sr.rcol, d);
435 +                                addcolor(scol, sr.rcol);
436 +                        } else {
437 +                                rayvalue(&sr);
438                                  multcolor(sr.rcol, sr.rcoef);
439                                  addcolor(r->rcol, sr.rcol);
418                                break;
440                          }
441 +                        ++nstaken;
442                  }
443 +                if (nstarget > 1) {             /* final W-G-M-D weighting */
444 +                        multcolor(scol, sr.rcoef);
445 +                        d = (double)nstarget/ntrials;
446 +                        scalecolor(scol, d);
447 +                        addcolor(r->rcol, scol);
448 +                }
449                  ndims--;
450          }
451                                          /* compute transmission */
# Line 425 | Line 453 | gaussamp(                      /* sample gaussian specular */
453          scalecolor(sr.rcoef, np->tspec);
454          if ((np->specfl & (SP_TRAN|SP_TBLT)) == SP_TRAN &&
455                          rayorigin(&sr, SPECULAR, r, sr.rcoef) == 0) {
456 <                dimlist[ndims++] = (int)np->mp;
457 <                for (niter = 0; niter < MAXITER; niter++) {
458 <                        if (niter)
456 >                nstarget = 1;
457 >                if (specjitter > 1.5) { /* multiple samples? */
458 >                        nstarget = specjitter*r->rweight + .5;
459 >                        if (sr.rweight <= minweight*nstarget)
460 >                                nstarget = sr.rweight/minweight;
461 >                        if (nstarget > 1) {
462 >                                d = 1./nstarget;
463 >                                scalecolor(sr.rcoef, d);
464 >                                sr.rweight *= d;
465 >                        } else
466 >                                nstarget = 1;
467 >                }
468 >                dimlist[ndims++] = (int)(size_t)np->mp;
469 >                maxiter = MAXITER*nstarget;
470 >                for (nstaken = ntrials = 0; nstaken < nstarget &&
471 >                                                ntrials < maxiter; ntrials++) {
472 >                        if (ntrials)
473                                  d = frandom();
474                          else
475 <                                d = urand(ilhash(dimlist,ndims)+1823+samplendx);
475 >                                d = urand(ilhash(dimlist,ndims)+samplendx);
476                          multisamp(rv, 2, d);
477                          d = 2.0*PI * rv[0];
478                          cosp = tcos(d);
479                          sinp = tsin(d);
480 <                        rv[1] = 1.0 - specjitter*rv[1];
480 >                        if ((0. <= specjitter) & (specjitter < 1.))
481 >                                rv[1] = 1.0 - specjitter*rv[1];
482                          if (rv[1] <= FTINY)
483                                  d = 1.0;
484                          else
485                                  d = sqrt( np->alpha2 * -log(rv[1]) );
486                          for (i = 0; i < 3; i++)
487                                  sr.rdir[i] = np->prdir[i] + d*(cosp*u[i] + sinp*v[i]);
488 <                        if (DOT(sr.rdir, r->ron) < -FTINY) {
489 <                                normalize(sr.rdir);     /* OK, normalize */
490 <                                rayvalue(&sr);
491 <                                multcolor(sr.rcol, sr.rcoef);
492 <                                addcolor(r->rcol, sr.rcol);
493 <                                break;
494 <                        }
488 >                                                /* sample rejection test */
489 >                        if (DOT(sr.rdir, r->ron) >= -FTINY)
490 >                                continue;
491 >                        normalize(sr.rdir);     /* OK, normalize */
492 >                        if (nstaken)            /* multi-sampling */
493 >                                rayclear(&sr);
494 >                        rayvalue(&sr);
495 >                        multcolor(sr.rcol, sr.rcoef);
496 >                        addcolor(r->rcol, sr.rcol);
497 >                        ++nstaken;
498                  }
499                  ndims--;
500          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines