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

Comparing ray/src/rt/m_brdf.c (file contents):
Revision 1.12 by greg, Fri Jun 28 10:04:02 1991 UTC vs.
Revision 2.2 by greg, Mon Nov 25 09:51:03 1991 UTC

# Line 14 | Line 14 | static char SCCSid[] = "$SunId$ LBL";
14  
15   #include  "otypes.h"
16  
17 + #include  "func.h"
18 +
19   /*
20   *      Arguments to this material include the color and specularity.
21   *  String arguments include the reflection function and files.
# Line 58 | Line 60 | static char SCCSid[] = "$SunId$ LBL";
60   *              CrP, CgP, CbP -         perturbed material color
61   */
62  
61 extern double   funvalue(), varvalue();
62 extern XF  funcxf;
63
63   typedef struct {
64          OBJREC  *mp;            /* material pointer */
65          RAY  *pr;               /* intersected ray */
# Line 153 | Line 152 | double  omega;                 /* light source size */
152                  dtmp = funvalue(sa[0], 1, &dtmp);
153                  setcolor(ctmp, dtmp, dtmp, dtmp);
154          }
155 <        if (errno)
156 <                goto computerr;
155 >        if (errno) {
156 >                objerror(np->mp, WARNING, "compute error");
157 >                return;
158 >        }
159          if (dtmp <= FTINY)
160                  return;
161          if (ldot > 0.0) {
# Line 176 | Line 177 | double  omega;                 /* light source size */
177                  scalecolor(ctmp, dtmp);
178                  addcolor(cval, ctmp);
179          }
179        return;
180 computerr:
181        objerror(np->mp, WARNING, "compute error");
182        return;
180   }
181  
182  
# Line 191 | Line 188 | register RAY  *r;
188          BRDFDAT  nd;
189          double  transtest, transdist;
190          COLOR  ctmp;
191 <        double  dtmp;
191 >        double  dtmp, tspect, rspecr;
192 >        MFUNC  *mf;
193          register int  i;
194                                                  /* check arguments */
195          switch (m->otype) {
# Line 238 | Line 236 | register RAY  *r;
236          multcolor(nd.mcolor, r->pcol);          /* modify material color */
237          transtest = 0;
238                                                  /* load auxiliary files */
239 <        if (m->otype == MAT_PDATA || m->otype == MAT_MDATA
242 <                        || m->otype == MAT_TDATA) {
239 >        if (hasdata(m->otype)) {
240                  nd.dp = getdata(m->oargs.sarg[1]);
241 <                for (i = 3; i < m->oargs.nsargs; i++)
242 <                        if (m->oargs.sarg[i][0] == '-')
246 <                                break;
247 <                if (i-3 != nd.dp->nd)
248 <                        objerror(m, USER, "dimension error");
249 <                if (!fundefined(m->oargs.sarg[3]))
250 <                        loadfunc(m->oargs.sarg[2]);
241 >                i = (1 << nd.dp->nd) - 1;
242 >                mf = getfunc(m, 2, i<<3, 0);
243          } else if (m->otype == MAT_BRTDF) {
244                  nd.dp = NULL;
245 <                if (!fundefined(m->oargs.sarg[7]))
254 <                        loadfunc(m->oargs.sarg[9]);
245 >                mf = getfunc(m, 9, 0x3f, 0);
246          } else {
247                  nd.dp = NULL;
248 <                if (!fundefined(m->oargs.sarg[0]))
258 <                        loadfunc(m->oargs.sarg[1]);
248 >                mf = getfunc(m, 1, 0, 0);
249          }
250                                                  /* set special variables */
251          setbrdfunc(&nd);
252                                                  /* compute transmitted ray */
253 +        tspect = 0.;
254          if (m->otype == MAT_BRTDF && nd.tspec > FTINY) {
255                  RAY  sr;
256                  errno = 0;
257 <                setcolor(ctmp, varvalue(m->oargs.sarg[3]),
258 <                                varvalue(m->oargs.sarg[4]),
259 <                                varvalue(m->oargs.sarg[5]));
260 <                scalecolor(ctmp, nd.tspec);
257 >                setcolor(ctmp, evalue(mf->ep[3]),
258 >                                evalue(mf->ep[4]),
259 >                                evalue(mf->ep[5]));
260 >                scalecolor(ctmp, nd.trans);
261                  if (errno)
262                          objerror(m, WARNING, "compute error");
263 <                else if ((dtmp = bright(ctmp)) > FTINY &&
264 <                                rayorigin(&sr, r, TRANS, dtmp) == 0) {
265 <                        if (DOT(r->pert,r->pert) > FTINY*FTINY) {
263 >                else if ((tspect = bright(ctmp)) > FTINY &&
264 >                                rayorigin(&sr, r, TRANS, tspect) == 0) {
265 >                        if (!(r->crtype & SHADOW) &&
266 >                                        DOT(r->pert,r->pert) > FTINY*FTINY) {
267                                  for (i = 0; i < 3; i++) /* perturb direction */
268                                          sr.rdir[i] = r->rdir[i] -
269                                                          .75*r->pert[i];
# Line 290 | Line 282 | register RAY  *r;
282          if (r->crtype & SHADOW)                 /* the rest is shadow */
283                  return;
284                                                  /* compute reflected ray */
285 +        rspecr = 0.;
286          if (m->otype == MAT_BRTDF && nd.rspec > FTINY) {
287                  RAY  sr;
288                  errno = 0;
289 <                setcolor(ctmp, varvalue(m->oargs.sarg[0]),
290 <                                varvalue(m->oargs.sarg[1]),
291 <                                varvalue(m->oargs.sarg[2]));
299 <                scalecolor(ctmp, nd.rspec);
289 >                setcolor(ctmp, evalue(mf->ep[0]),
290 >                                evalue(mf->ep[1]),
291 >                                evalue(mf->ep[2]));
292                  if (errno)
293                          objerror(m, WARNING, "compute error");
294 <                else if ((dtmp = bright(ctmp)) > FTINY &&
295 <                                rayorigin(&sr, r, REFLECTED, dtmp) == 0) {
294 >                else if ((rspecr = bright(ctmp)) > FTINY &&
295 >                                rayorigin(&sr, r, REFLECTED, rspecr) == 0) {
296                          for (i = 0; i < 3; i++)
297                                  sr.rdir[i] = r->rdir[i] +
298                                                  2.0*nd.pdot*nd.pnorm[i];
# Line 310 | Line 302 | register RAY  *r;
302                  }
303          }
304                                                  /* compute ambient */
305 <        if (nd.rdiff > FTINY) {
305 >        if ((dtmp = 1.0-nd.trans-rspecr) > FTINY) {
306                  ambient(ctmp, r);
307 <                if (m->otype == MAT_BRTDF)
316 <                        scalecolor(ctmp, nd.rdiff);
317 <                else
318 <                        scalecolor(ctmp, 1.0-nd.trans);
307 >                scalecolor(ctmp, dtmp);
308                  multcolor(ctmp, nd.mcolor);     /* modified by material color */
309                  addcolor(r->rcol, ctmp);        /* add to returned color */
310          }
311 <        if (nd.tdiff > FTINY) {                 /* from other side */
311 >        if ((dtmp = nd.trans-tspect) > FTINY) { /* from other side */
312                  flipsurface(r);
313                  ambient(ctmp, r);
314 <                if (m->otype == MAT_BRTDF)
326 <                        scalecolor(ctmp, nd.tdiff);
327 <                else
328 <                        scalecolor(ctmp, nd.trans);
314 >                scalecolor(ctmp, dtmp);
315                  multcolor(ctmp, nd.mcolor);
316                  addcolor(r->rcol, ctmp);
317                  flipsurface(r);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines