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.18 by greg, Tue Nov 7 12:40:32 1995 UTC vs.
Revision 2.22 by greg, Sun Dec 17 11:51:49 1995 UTC

# Line 18 | Line 18 | static char SCCSid[] = "$SunId$ LBL";
18  
19   #include  "source.h"
20  
21 + #include  "random.h"
22 +
23 + extern double  ssampdist;               /* scatter sampling distance */
24 +
25 + #ifndef MAXSSAMP
26 + #define MAXSSAMP        16              /* maximum samples per ray */
27 + #endif
28 +
29   /*
30   * Structures used by direct()
31   */
# Line 166 | Line 174 | register RAY  *r;
174                          return;
175                  if (!rayshade(r, r->ro->omod))  /* compute contribution */
176                          goto nomat;
177 +                rayparticipate(r);
178                  return;
179          }
180                                          /* compute intersection */
# Line 175 | Line 184 | register RAY  *r;
184                          sp->sa.success++;
185                  if (!rayshade(r, r->ro->omod))  /* compute contribution */
186                          goto nomat;
187 +                rayparticipate(r);
188                  return;
189          }
190                                          /* we missed our mark! */
# Line 329 | Line 339 | char  *p;                      /* data for f */
339                                                  /* follow entire path */
340                          if (!raycont(&sr))
341                                  objerror(sr.ro, USER, "material not found");
342 +                        rayparticipate(&sr);
343                          if (trace != NULL)
344                                  (*trace)(&sr);  /* trace execution */
345                          if (bright(sr.rcol) <= FTINY)
# Line 361 | Line 372 | char  *p;                      /* data for f */
372                  scalecolor(scp->val, prob);
373                  addcolor(r->rcol, scp->val);
374          }
375 + }
376 +
377 +
378 + srcscatter(r)                   /* compute source scattering into ray */
379 + register RAY  *r;
380 + {
381 +        int  oldsampndx;
382 +        int  nsamps;
383 +        RAY  sr;
384 +        SRCINDEX  si;
385 +        double  t, lastt, d;
386 +        COLOR  cumval, ctmp;
387 +        int  i, j;
388 +
389 +        if (r->slights == NULL || r->slights[0] == 0
390 +                        || r->gecc >= 1.-FTINY || r->rot >= FHUGE)
391 +                return;
392 +        if (ssampdist <= FTINY || (nsamps = r->rot/ssampdist + .5) < 1)
393 +                nsamps = 1;
394 + #if MAXSSAMP
395 +        else if (nsamps > MAXSSAMP)
396 +                nsamps = MAXSSAMP;
397 + #endif
398 +        oldsampndx = samplendx;
399 +        samplendx = random()&0x7fff;            /* randomize */
400 +        for (i = r->slights[0]; i > 0; i--) {   /* for each source */
401 +                setcolor(cumval, 0., 0., 0.);
402 +                lastt = r->rot;
403 +                for (j = nsamps; j-- > 0; ) {   /* for each sample position */
404 +                        samplendx++;
405 +                        t = r->rot * (j+frandom())/nsamps;
406 +                        sr.rorg[0] = r->rorg[0] + r->rdir[0]*t;
407 +                        sr.rorg[1] = r->rorg[1] + r->rdir[1]*t;
408 +                        sr.rorg[2] = r->rorg[2] + r->rdir[2]*t;
409 +                        sr.rmax = 0.;
410 +                        initsrcindex(&si);      /* sample ray to this source */
411 +                        si.sn = r->slights[i];
412 +                        nopart(&si, &sr);
413 +                        if (!srcray(&sr, NULL, &si) ||
414 +                                        sr.rsrc != r->slights[i])
415 +                                continue;               /* no path */
416 +                        copycolor(sr.cext, r->cext);
417 +                        sr.albedo = r->albedo;
418 +                        sr.gecc = r->gecc;
419 +                        rayvalue(&sr);                  /* eval. source ray */
420 +                        if (bright(sr.rcol) <= FTINY)
421 +                                continue;
422 +                                                        /* compute fall-off */
423 +                        d = lastt - t;
424 +                        setcolor(ctmp,  1.-d*colval(r->cext,RED),
425 +                                        1.-d*colval(r->cext,GRN),
426 +                                        1.-d*colval(r->cext,BLU));
427 +                        multcolor(cumval, ctmp);
428 +                        lastt = t;
429 +                        if (r->gecc <= FTINY)           /* compute P(theta) */
430 +                                d = 1.;
431 +                        else {
432 +                                d = DOT(r->rdir, sr.rdir);
433 +                                d = sqrt(1. + r->gecc*r->gecc - 2.*r->gecc*d);
434 +                                d = (1. - r->gecc*r->gecc) / (d*d*d);
435 +                        }
436 +                                                        /* other factors */
437 +                        d *= si.dom * r->albedo * r->rot / (4.*PI*nsamps);
438 +                        multcolor(sr.rcol, r->cext);
439 +                        scalecolor(sr.rcol, d);
440 +                        addcolor(cumval, sr.rcol);
441 +                }
442 +                                                /* final fall-off */
443 +                setcolor(ctmp,  1.-lastt*colval(r->cext,RED),
444 +                                1.-lastt*colval(r->cext,GRN),
445 +                                1.-lastt*colval(r->cext,BLU));
446 +                multcolor(cumval, ctmp);
447 +                addcolor(r->rcol, cumval);      /* sum into ray result */
448 +        }
449 +        samplendx = oldsampndx;
450   }
451  
452  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines