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

Comparing ray/src/rt/ambcomp.c (file contents):
Revision 2.4 by greg, Fri Oct 2 16:14:38 1992 UTC vs.
Revision 2.9 by greg, Sat Feb 22 02:07:28 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1991 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Routines to compute "ambient" values using Monte Carlo
6 + *
7 + *  Declarations of external symbols in ambient.h
8   */
9  
10 + /* ====================================================================
11 + * The Radiance Software License, Version 1.0
12 + *
13 + * Copyright (c) 1990 - 2002 The Regents of the University of California,
14 + * through Lawrence Berkeley National Laboratory.   All rights reserved.
15 + *
16 + * Redistribution and use in source and binary forms, with or without
17 + * modification, are permitted provided that the following conditions
18 + * are met:
19 + *
20 + * 1. Redistributions of source code must retain the above copyright
21 + *         notice, this list of conditions and the following disclaimer.
22 + *
23 + * 2. Redistributions in binary form must reproduce the above copyright
24 + *       notice, this list of conditions and the following disclaimer in
25 + *       the documentation and/or other materials provided with the
26 + *       distribution.
27 + *
28 + * 3. The end-user documentation included with the redistribution,
29 + *           if any, must include the following acknowledgment:
30 + *             "This product includes Radiance software
31 + *                 (http://radsite.lbl.gov/)
32 + *                 developed by the Lawrence Berkeley National Laboratory
33 + *               (http://www.lbl.gov/)."
34 + *       Alternately, this acknowledgment may appear in the software itself,
35 + *       if and wherever such third-party acknowledgments normally appear.
36 + *
37 + * 4. The names "Radiance," "Lawrence Berkeley National Laboratory"
38 + *       and "The Regents of the University of California" must
39 + *       not be used to endorse or promote products derived from this
40 + *       software without prior written permission. For written
41 + *       permission, please contact [email protected].
42 + *
43 + * 5. Products derived from this software may not be called "Radiance",
44 + *       nor may "Radiance" appear in their name, without prior written
45 + *       permission of Lawrence Berkeley National Laboratory.
46 + *
47 + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
48 + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
49 + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
50 + * DISCLAIMED.   IN NO EVENT SHALL Lawrence Berkeley National Laboratory OR
51 + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
52 + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
53 + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
54 + * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
55 + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
56 + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
57 + * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 + * SUCH DAMAGE.
59 + * ====================================================================
60 + *
61 + * This software consists of voluntary contributions made by many
62 + * individuals on behalf of Lawrence Berkeley National Laboratory.   For more
63 + * information on Lawrence Berkeley National Laboratory, please see
64 + * <http://www.lbl.gov/>.
65 + */
66 +
67   #include  "ray.h"
68  
69   #include  "ambient.h"
70  
71   #include  "random.h"
72  
17 typedef struct {
18        short  t, p;            /* theta, phi indices */
19        COLOR  v;               /* value sum */
20        float  r;               /* 1/distance sum */
21        float  k;               /* variance for this division */
22        int  n;                 /* number of subsamples */
23 }  AMBSAMP;             /* ambient sample division */
73  
25 typedef struct {
26        FVECT  ux, uy, uz;      /* x, y and z axis directions */
27        short  nt, np;          /* number of theta and phi directions */
28 }  AMBHEMI;             /* ambient sample hemisphere */
29
30
74   static int
75   ambcmp(d1, d2)                          /* decreasing order */
76   AMBSAMP  *d1, *d2;
# Line 52 | Line 95 | AMBSAMP  *d1, *d2;
95   }
96  
97  
98 + int
99   divsample(dp, h, r)                     /* sample a division */
100   register AMBSAMP  *dp;
101   AMBHEMI  *h;
# Line 73 | Line 117 | RAY  *r;
117          multisamp(spt, 2, urand(ilhash(hlist,3)+dp->n));
118          zd = sqrt((dp->t + spt[0])/h->nt);
119          phi = 2.0*PI * (dp->p + spt[1])/h->np;
120 <        xd = cos(phi) * zd;
121 <        yd = sin(phi) * zd;
120 >        xd = tcos(phi) * zd;
121 >        yd = tsin(phi) * zd;
122          zd = sqrt(1.0 - zd*zd);
123          for (i = 0; i < 3; i++)
124                  ar.rdir[i] =    xd*h->ux[i] +
# Line 84 | Line 128 | RAY  *r;
128          rayvalue(&ar);
129          ndims--;
130          addcolor(dp->v, ar.rcol);
131 +                                        /* use rt to improve gradient calc */
132          if (ar.rt > FTINY && ar.rt < FHUGE)
133                  dp->r += 1.0/ar.rt;
134                                          /* (re)initialize error */
# Line 139 | Line 184 | FVECT  pg, dg;
184                          dp->n = 0;
185                          if (divsample(dp, &hemi, r) < 0)
186                                  goto oopsy;
187 +                        arad += dp->r;
188                          if (div != NULL)
189                                  dp++;
190 <                        else {
190 >                        else
191                                  addcolor(acol, dp->v);
146                                arad += dp->r;
147                        }
192                  }
193 <        if (ns > 0) {                   /* perform super-sampling */
193 >        if (ns > 0 && arad > FTINY && ndivs/arad < minarad)
194 >                ns = 0;                 /* close enough */
195 >        else if (ns > 0) {              /* else perform super-sampling */
196                  comperrs(div, &hemi);                   /* compute errors */
197                  qsort(div, ndivs, sizeof(AMBSAMP), ambcmp);     /* sort divs */
198                                                  /* super-sample */
# Line 168 | Line 214 | FVECT  pg, dg;
214          }
215                                          /* compute returned values */
216          if (div != NULL) {
217 +                arad = 0.0;
218                  for (i = ndivs, dp = div; i-- > 0; dp++) {
219                          arad += dp->r;
220                          if (dp->n > 1) {
# Line 199 | Line 246 | FVECT  pg, dg;
246                                  for (i = 0; i < 3; i++)
247                                          dg[i] = 0.0;
248                  }
249 <                free((char *)div);
249 >                free((void *)div);
250          }
251          b = 1.0/ndivs;
252          scalecolor(acol, b);
# Line 225 | Line 272 | FVECT  pg, dg;
272          return(arad);
273   oopsy:
274          if (div != NULL)
275 <                free((char *)div);
275 >                free((void *)div);
276          return(0.0);
277   }
278  
279  
280 + void
281   inithemi(hp, r, wt)             /* initialize sampling hemisphere */
282   register AMBHEMI  *hp;
283   RAY  *r;
# Line 258 | Line 306 | double  wt;
306   }
307  
308  
309 + void
310   comperrs(da, hp)                /* compute initial error estimates */
311   AMBSAMP  *da;           /* assumes standard ordering */
312   register AMBHEMI  *hp;
# Line 308 | Line 357 | register AMBHEMI  *hp;
357   }
358  
359  
360 + void
361   posgradient(gv, da, hp)                         /* compute position gradient */
362   FVECT  gv;
363   AMBSAMP  *da;                   /* assumes standard ordering */
# Line 355 | Line 405 | register AMBHEMI  *hp;
405                  }
406                  mag0 *= 2.0*PI / hp->np;
407                  phi = 2.0*PI * (double)j/hp->np;
408 <                cosp = cos(phi); sinp = sin(phi);
408 >                cosp = tcos(phi); sinp = tsin(phi);
409                  xd += mag0*cosp - mag1*sinp;
410                  yd += mag0*sinp + mag1*cosp;
411          }
# Line 364 | Line 414 | register AMBHEMI  *hp;
414   }
415  
416  
417 + void
418   dirgradient(gv, da, hp)                         /* compute direction gradient */
419   FVECT  gv;
420   AMBSAMP  *da;                   /* assumes standard ordering */
# Line 389 | Line 440 | register AMBHEMI  *hp;
440                          dp += hp->np;
441                  }
442                  phi = 2.0*PI * (j+.5)/hp->np + PI/2.0;
443 <                xd += mag * cos(phi);
444 <                yd += mag * sin(phi);
443 >                xd += mag * tcos(phi);
444 >                yd += mag * tsin(phi);
445          }
446          for (i = 0; i < 3; i++)
447                  gv[i] = (xd*hp->ux[i] + yd*hp->uy[i])/(hp->nt*hp->np);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines