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

Comparing ray/src/rt/ambcomp.c (file contents):
Revision 2.29 by greg, Wed Apr 23 06:04:17 2014 UTC vs.
Revision 2.105 by greg, Thu Aug 21 20:38:41 2025 UTC

# Line 8 | Line 8 | static const char      RCSid[] = "$Id$";
8   *      for Irradiance Caching" by Schwarzhaupt, Wann Jensen, & Jarosz
9   *      from ACM SIGGRAPH Asia 2012 conference proceedings.
10   *
11 + *  Added book-keeping optimization to avoid calculations that would
12 + *      cancel due to traversal both directions on edges that are adjacent
13 + *      to same-valued triangles.  This cuts about half of Hessian math.
14 + *
15   *  Declarations of external symbols in ambient.h
16   */
17  
# Line 17 | Line 21 | static const char      RCSid[] = "$Id$";
21   #include  "ambient.h"
22   #include  "random.h"
23  
24 < #ifdef NEWAMB
24 > #ifndef MINADIV
25 > #define MINADIV         7       /* minimum # divisions in each dimension */
26 > #endif
27 > #ifndef MINSDIST
28 > #define MINSDIST        0.2     /* def. min. spacing = 1/5th division */
29 > #endif
30  
31 < extern void             SDsquare2disk(double ds[2], double seedx, double seedy);
31 > typedef struct {
32 >        FVECT   p;              /* intersection point */
33 >        float   d;              /* reciprocal distance */
34 >        SCOLOR  v;              /* hemisphere sample value */
35 > } AMBSAMP;              /* sample value */
36  
37   typedef struct {
38          RAY     *rp;            /* originating ray sample */
26        FVECT   ux, uy;         /* tangent axis unit vectors */
39          int     ns;             /* number of samples per axis */
40 <        COLOR   acoef;          /* division contribution coefficient */
41 <        struct s_ambsamp {
42 <                COLOR   v;              /* hemisphere sample value */
43 <                float   p[3];           /* intersection point */
44 <        } sa[1];                /* sample array (extends struct) */
40 >        int     sampOK;         /* acquired full sample set? */
41 >        int     atyp;           /* RAMBIENT or TAMBIENT */
42 >        SCOLOR  acoef;          /* division contribution coefficient */
43 >        SCOLOR  acol;           /* accumulated color */
44 >        FVECT   onrm;           /* oriented unperturbed surface normal */
45 >        FVECT   ux, uy;         /* tangent axis unit vectors */
46 >        AMBSAMP sa[1];          /* sample array (extends struct) */
47   }  AMBHEMI;             /* ambient sample hemisphere */
48  
49 < #define ambsamp(h,i,j)  (h)->sa[(i)*(h)->ns + (j)]
49 > #define AI(h,i,j)       ((i)*(h)->ns + (j))
50 > #define ambsam(h,i,j)   (h)->sa[AI(h,i,j)]
51  
52   typedef struct {
53 <        FVECT   r_i, r_i1, e_i;
54 <        double  nf, I1, I2, J2;
53 >        FVECT   r_i, r_i1, e_i, rcp, rI2_eJ2;
54 >        double  I1, I2;
55   } FFTRI;                /* vectors and coefficients for Hessian calculation */
56  
57  
58 + #define XLOTSIZ         512             /* size of used car lot */
59 + #define CFIRST          0               /* first corner */
60 + #define COTHER          (CFIRST+4)      /* non-corner sample */
61 + #define CMAXTARGET      (int)(XLOTSIZ*MINSDIST/(1-MINSDIST))
62 +
63 + static int
64 + psample_class(double ss[2])             /* classify patch sample */
65 + {
66 +        if (ss[0] < MINSDIST) {
67 +                if (ss[1] < MINSDIST)
68 +                        return(CFIRST);
69 +                if (ss[1] > 1.-MINSDIST)
70 +                        return(CFIRST+2);
71 +        } else if (ss[0] > 1.-MINSDIST) {
72 +                if (ss[1] < MINSDIST)
73 +                        return(CFIRST+1);
74 +                if (ss[1] > 1.-MINSDIST)
75 +                        return(CFIRST+3);
76 +        }
77 +        return(COTHER);                 /* not in a corner */
78 + }
79 +
80 + static void
81 + trade_patchsamp(double ss[2])           /* trade in problem patch position */
82 + {
83 +        static float    tradelot[XLOTSIZ][2];
84 +        static int      gterm[COTHER+1];
85 +        double          repl[2];
86 +        int             sclass, rclass;
87 +        int             x;
88 + re_initialize:                          /* initialize lot? */
89 +        while (gterm[COTHER] < XLOTSIZ) {
90 +                tradelot[gterm[COTHER]][0] = frandom();
91 +                tradelot[gterm[COTHER]][1] = frandom();
92 +                ++gterm[COTHER];
93 +        }
94 +                                        /* get trade-in candidate... */
95 +        sclass = psample_class(ss);     /* submitted corner or not? */
96 +        switch (sclass) {
97 +        case COTHER:                    /* trade mid-edge with corner/any */
98 +                x = irandom( gterm[COTHER-1] > CMAXTARGET
99 +                                ? gterm[COTHER-1] : XLOTSIZ );
100 +                break;
101 +        case CFIRST:                    /* kick out of first corner */
102 +                x = gterm[CFIRST] + irandom(XLOTSIZ - gterm[CFIRST]);
103 +                break;
104 +        default:                        /* kick out of 2nd-4th corner */
105 +                x = irandom(XLOTSIZ - (gterm[sclass] - gterm[sclass-1]));
106 +                x += (x >= gterm[sclass-1])*(gterm[sclass] - gterm[sclass-1]);
107 +                break;
108 +        }
109 +        if (x >= XLOTSIZ) {             /* uh-oh... trapped in a corner! */
110 +                memset(gterm, 0, sizeof(gterm));
111 +                goto re_initialize;
112 +        }
113 +        repl[0] = tradelot[x][0];       /* save selected replacement (result) */
114 +        repl[1] = tradelot[x][1];
115 +                                        /* identify replacement class */
116 +        for (rclass = CFIRST; rclass < COTHER; rclass++)
117 +                if (x < gterm[rclass])
118 +                        break;          /* repark to keep classes grouped */
119 +        while (rclass > sclass) {       /* replacement group after submitted? */
120 +                tradelot[x][0] = tradelot[gterm[rclass-1]][0];
121 +                tradelot[x][1] = tradelot[gterm[rclass-1]][1];
122 +                x = gterm[--rclass]++;
123 +        }
124 +        while (rclass < sclass) {       /* replacement group before submitted? */
125 +                tradelot[x][0] = tradelot[--gterm[rclass]][0];
126 +                tradelot[x][1] = tradelot[gterm[rclass]][1];
127 +                x = gterm[rclass++];
128 +        }
129 +        tradelot[x][0] = ss[0];         /* complete the trade-in */
130 +        tradelot[x][1] = ss[1];
131 +        ss[0] = repl[0];
132 +        ss[1] = repl[1];
133 + }
134 +
135 + #undef XLOTSIZ
136 + #undef COTHER
137 + #undef CFIRST
138 +
139 +
140 + static int
141 + ambcollision(                           /* proposed direction collides? */
142 +        AMBHEMI *hp,
143 +        int     i,
144 +        int     j,
145 +        RREAL   spt[2]
146 + )
147 + {
148 +        int     ii, jj;
149 +                                        /* check existing neighbors */
150 +        for (ii = i-1; ii <= i+1; ii++) {
151 +                if (ii < 0) continue;
152 +                if (ii >= hp->ns) break;
153 +                for (jj = j-1; jj <= j+1; jj++) {
154 +                        AMBSAMP *ap;
155 +                        FVECT   avec;
156 +                        double  dx, dy;
157 +                        if (jj < 0) continue;
158 +                        if (jj >= hp->ns) break;
159 +                        if ((ii==i) & (jj==j)) continue;
160 +                        ap = &ambsam(hp,ii,jj);
161 +                        if (ap->d <= .5/FHUGE)
162 +                                continue;       /* no one home */
163 +                        VSUB(avec, ap->p, hp->rp->rop);
164 +                        normalize(avec);        /* use diskworld distance */
165 +                        dx = DOT(avec, hp->ux) - spt[0];
166 +                        dy = DOT(avec, hp->uy) - spt[1];
167 +                        if ((dx*dx + dy*dy)*(hp->ns*hp->ns) <
168 +                                        PI*MINSDIST*MINSDIST)
169 +                                return(1);      /* too close */
170 +                }
171 +        }
172 +        return(0);                      /* nothing to worry about */
173 + }
174 +
175 +
176 + static int
177 + ambsample(                              /* initial ambient division sample */
178 +        AMBHEMI *hp,
179 +        int     i,
180 +        int     j,
181 +        int     n
182 + )
183 + {
184 +        int     trade_ok = (!n & (hp->ns >= 4))*21;
185 +        AMBSAMP *ap = &ambsam(hp,i,j);
186 +        RAY     ar;
187 +        int     hlist[3], ii;
188 +        double  ss[2];
189 +        RREAL   spt[2];
190 +        double  zd;
191 +                                        /* generate hemispherical sample */
192 +                                        /* ambient coefficient for weight */
193 +        if (ambacc > FTINY)
194 +                setscolor(ar.rcoef, AVGREFL, AVGREFL, AVGREFL);
195 +        else
196 +                copyscolor(ar.rcoef, hp->acoef);
197 +        if (rayorigin(&ar, hp->atyp, hp->rp, ar.rcoef) < 0)
198 +                return(0);
199 +        if (ambacc > FTINY) {
200 +                smultscolor(ar.rcoef, hp->acoef);
201 +                scalescolor(ar.rcoef, 1./AVGREFL);
202 +        }
203 +        hlist[0] = hp->rp->rno;
204 +        hlist[1] = AI(hp,i,j);
205 +        hlist[2] = samplendx;
206 +        multisamp(ss, 2, urand(ilhash(hlist,3)+n));
207 +        square2disk(spt, (j+ss[1])/hp->ns, (i+ss[0])/hp->ns);
208 +                                        /* avoid coincident samples? */
209 +        while (trade_ok-- && ambcollision(hp, i, j, spt)) {
210 +                if (trade_ok) {
211 +                        trade_patchsamp(ss);
212 +                } else {                /* punting... */
213 +                        ss[0] = MINSDIST + (1-2*MINSDIST)*frandom();
214 +                        ss[1] = MINSDIST + (1-2*MINSDIST)*frandom();
215 +                }
216 +                square2disk(spt, (j+ss[1])/hp->ns, (i+ss[0])/hp->ns);
217 +        }
218 +        zd = sqrt(1. - spt[0]*spt[0] - spt[1]*spt[1]);
219 +        for (ii = 3; ii--; )
220 +                ar.rdir[ii] =   spt[0]*hp->ux[ii] +
221 +                                spt[1]*hp->uy[ii] +
222 +                                zd*hp->onrm[ii];
223 +        checknorm(ar.rdir);
224 +        dimlist[ndims_inc()] = AI(hp,i,j) + 90171;
225 +        rayvalue(&ar);                  /* evaluate ray */
226 +        dec_ndims();
227 +        zd = raydistance(&ar);
228 +        if (zd <= FTINY)
229 +                return(0);              /* should never happen */
230 +        smultscolor(ar.rcol, ar.rcoef); /* apply coefficient */
231 +        if (zd*ap->d < 1.0)             /* new/closer distance? */
232 +                ap->d = 1.0/zd;
233 +        if (!n) {                       /* record first vertex & value */
234 +                if (zd > 10.0*thescene.cusize + 1000.)
235 +                        zd = 10.0*thescene.cusize + 1000.;
236 +                VSUM(ap->p, ar.rorg, ar.rdir, zd);
237 +                copyscolor(ap->v, ar.rcol);
238 +        } else {                        /* else update recorded value */
239 +                sopscolor(hp->acol, -=, ap->v);
240 +                zd = 1.0/(double)(n+1);
241 +                scalescolor(ar.rcol, zd);
242 +                zd *= (double)n;
243 +                scalescolor(ap->v, zd);
244 +                saddscolor(ap->v, ar.rcol);
245 +        }
246 +        saddscolor(hp->acol, ap->v);    /* add to our sum */
247 +        return(1);
248 + }
249 +
250 +
251 + /* Estimate variance based on ambient division differences */
252 + static float *
253 + getambdiffs(AMBHEMI *hp)
254 + {
255 +        const double    normf = 1./(pbright(hp->acoef) + FTINY);
256 +        float   *earr = (float *)calloc(2*hp->ns*hp->ns, sizeof(float));
257 +        float   *ep;
258 +        AMBSAMP *ap;
259 +        double  b, b1, d2;
260 +        int     i, j;
261 +
262 +        if (earr == NULL)               /* out of memory? */
263 +                return(NULL);
264 +                                        /* sum squared neighbor diffs */
265 +        ap = hp->sa;
266 +        ep = earr + hp->ns*hp->ns;      /* original estimates to scratch */
267 +        for (i = 0; i < hp->ns; i++)
268 +            for (j = 0; j < hp->ns; j++, ap++, ep++) {
269 +                b = pbright(ap[0].v);
270 +                if (i) {                /* from above */
271 +                        b1 = pbright(ap[-hp->ns].v);
272 +                        d2 = b - b1;
273 +                        d2 *= d2*normf/(b + b1 + FTINY);
274 +                        ep[0] += d2;
275 +                        ep[-hp->ns] += d2;
276 +                }
277 +                if (!j) continue;
278 +                                        /* from behind */
279 +                b1 = pbright(ap[-1].v);
280 +                d2 = b - b1;
281 +                d2 *= d2*normf/(b + b1 + FTINY);
282 +                ep[0] += d2;
283 +                ep[-1] += d2;
284 +                if (!i) continue;
285 +                                        /* diagonal */
286 +                b1 = pbright(ap[-hp->ns-1].v);
287 +                d2 = b - b1;
288 +                d2 *= d2*normf/(b + b1 + FTINY);
289 +                ep[0] += d2;
290 +                ep[-hp->ns-1] += d2;
291 +            }
292 +                                        /* correct for number of neighbors */
293 +        ep = earr + hp->ns*hp->ns;
294 +        ep[0] *= 6./3.;
295 +        ep[hp->ns-1] *= 6./3.;
296 +        ep[(hp->ns-1)*hp->ns] *= 6./3.;
297 +        ep[(hp->ns-1)*hp->ns + hp->ns-1] *= 6./3.;
298 +        for (i = 1; i < hp->ns-1; i++) {
299 +                ep[i*hp->ns] *= 6./5.;
300 +                ep[i*hp->ns + hp->ns-1] *= 6./5.;
301 +        }
302 +        for (j = 1; j < hp->ns-1; j++) {
303 +                ep[j] *= 6./5.;
304 +                ep[(hp->ns-1)*hp->ns + j] *= 6./5.;
305 +        }
306 +                                        /* blur final map to reduce bias */
307 +        for (i = 0; i < hp->ns-1; i++) {
308 +            float  *ep2;
309 +            ep = earr + i*hp->ns;
310 +            ep2 = ep + hp->ns*hp->ns;
311 +            for (j = 0; j < hp->ns-1; j++, ep++, ep2++) {
312 +                ep[0] += .5*ep2[0] + .125*(ep2[1] + ep2[hp->ns]);
313 +                ep[1] += .125*ep2[0];
314 +                ep[hp->ns] += .125*ep2[0];
315 +            }
316 +        }
317 +        return(earr);
318 + }
319 +
320 +
321 + /* Perform super-sampling on hemisphere (introduces bias) */
322 + static void
323 + ambsupersamp(AMBHEMI *hp, int cnt)
324 + {
325 +        float   *earr = getambdiffs(hp);
326 +        double  e2rem = 0;
327 +        float   *ep;
328 +        int     i, j, n, nss;
329 +
330 +        if (earr == NULL)               /* just skip calc. if no memory */
331 +                return;
332 +                                        /* accumulate estimated variances */
333 +        for (ep = earr + hp->ns*hp->ns; ep > earr; )
334 +                e2rem += *--ep;
335 +        ep = earr;                      /* perform super-sampling */
336 +        for (i = 0; i < hp->ns; i++)
337 +            for (j = 0; j < hp->ns; j++) {
338 +                if (e2rem <= FTINY)
339 +                        goto done;      /* nothing left to do */
340 +                nss = *ep/e2rem*cnt + frandom();
341 +                for (n = 1; n <= nss && ambsample(hp,i,j,n); n++)
342 +                        if (!--cnt) goto done;
343 +                e2rem -= *ep++;         /* update remainder */
344 +        }
345 + done:
346 +        free(earr);
347 + }
348 +
349 +
350   static AMBHEMI *
351 < inithemi(                       /* initialize sampling hemisphere */
352 <        COLOR   ac,
351 > samp_hemi(                              /* sample indirect hemisphere */
352 >        SCOLOR  rcol,
353          RAY     *r,
354          double  wt
355   )
356   {
357 +        int     backside = (wt < 0);
358          AMBHEMI *hp;
359          double  d;
360 <        int     n, i;
360 >        int     n, i, j;
361 >                                        /* insignificance check */
362 >        d = sintens(rcol);
363 >        if (d <= FTINY)
364 >                return(NULL);
365                                          /* set number of divisions */
366 +        if (backside) wt = -wt;
367          if (ambacc <= FTINY &&
368 <                        wt > (d = 0.8*intens(ac)*r->rweight/(ambdiv*minweight)))
368 >                        wt > (d *= 0.8*r->rweight/(ambdiv*minweight + 1e-20)))
369                  wt = d;                 /* avoid ray termination */
370          n = sqrt(ambdiv * wt) + 0.5;
371 <        i = 1 + 5*(ambacc > FTINY);     /* minimum number of samples */
372 <        if (n < i)
371 >        i = 1 + (MINADIV-1)*(ambacc > FTINY);
372 >        if (n < i)                      /* use minimum number of samples? */
373                  n = i;
374                                          /* allocate sampling array */
375 <        hp = (AMBHEMI *)malloc(sizeof(AMBHEMI) +
63 <                                sizeof(struct s_ambsamp)*(n*n - 1));
375 >        hp = (AMBHEMI *)malloc(sizeof(AMBHEMI) + sizeof(AMBSAMP)*(n*n - 1));
376          if (hp == NULL)
377 <                return(NULL);
377 >                error(SYSTEM, "out of memory in samp_hemi");
378 >
379 >        if (backside) {
380 >                hp->atyp = TAMBIENT;
381 >                hp->onrm[0] = -r->ron[0];
382 >                hp->onrm[1] = -r->ron[1];
383 >                hp->onrm[2] = -r->ron[2];
384 >        } else {
385 >                hp->atyp = RAMBIENT;
386 >                VCOPY(hp->onrm, r->ron);
387 >        }
388          hp->rp = r;
389          hp->ns = n;
390 +        scolorblack(hp->acol);
391 +        memset(hp->sa, 0, sizeof(AMBSAMP)*n*n);
392 +        hp->sampOK = 0;
393                                          /* assign coefficient */
394 <        copycolor(hp->acoef, ac);
394 >        copyscolor(hp->acoef, rcol);
395          d = 1.0/(n*n);
396 <        scalecolor(hp->acoef, d);
396 >        scalescolor(hp->acoef, d);
397                                          /* make tangent plane axes */
398 <        hp->uy[0] = 0.1 - 0.2*frandom();
399 <        hp->uy[1] = 0.1 - 0.2*frandom();
400 <        hp->uy[2] = 0.1 - 0.2*frandom();
401 <        for (i = 0; i < 3; i++)
402 <                if (r->ron[i] < 0.6 && r->ron[i] > -0.6)
403 <                        break;
404 <        if (i >= 3)
405 <                error(CONSISTENCY, "bad ray direction in inithemi()");
406 <        hp->uy[i] = 1.0;
407 <        VCROSS(hp->ux, hp->uy, r->ron);
408 <        normalize(hp->ux);
409 <        VCROSS(hp->uy, r->ron, hp->ux);
410 <                                        /* we're ready to sample */
411 <        return(hp);
398 >        if (!getperpendicular(hp->ux, hp->onrm, 1))
399 >                error(CONSISTENCY, "bad ray direction in samp_hemi");
400 >        VCROSS(hp->uy, hp->onrm, hp->ux);
401 >                                        /* sample divisions */
402 >        for (i = hp->ns; i--; )
403 >            for (j = hp->ns; j--; )
404 >                hp->sampOK += ambsample(hp, i, j, 0);
405 >        copyscolor(rcol, hp->acol);
406 >        if (!hp->sampOK) {              /* utter failure? */
407 >                free(hp);
408 >                return(NULL);
409 >        }
410 >        if (hp->sampOK < hp->ns*hp->ns) {
411 >                hp->sampOK *= -1;       /* soft failure */
412 >                return(hp);
413 >        }
414 >        if (hp->sampOK <= MINADIV*MINADIV)
415 >                return(hp);             /* don't bother super-sampling */
416 >        n = ambssamp*wt + 0.5;
417 >        if (n >= 4*hp->ns) {            /* perform super-sampling? */
418 >                ambsupersamp(hp, n);
419 >                copyscolor(rcol, hp->acol);
420 >        }
421 >        return(hp);                     /* all is well */
422   }
423  
424  
425 < static struct s_ambsamp *
426 < ambsample(                              /* sample an ambient direction */
427 <        AMBHEMI *hp,
93 <        int     i,
94 <        int     j
95 < )
425 > /* Return brightness of farthest ambient sample */
426 > static double
427 > back_ambval(AMBHEMI *hp, const int n1, const int n2, const int n3)
428   {
429 <        struct s_ambsamp        *ap = &ambsamp(hp,i,j);
430 <        RAY                     ar;
431 <        double                  spt[2], zd;
432 <        int                     ii;
101 <                                        /* ambient coefficient for weight */
102 <        if (ambacc > FTINY)
103 <                setcolor(ar.rcoef, AVGREFL, AVGREFL, AVGREFL);
104 <        else
105 <                copycolor(ar.rcoef, hp->acoef);
106 <        if (rayorigin(&ar, AMBIENT, hp->rp, ar.rcoef) < 0) {
107 <                setcolor(ap->v, 0., 0., 0.);
108 <                VCOPY(ap->p, hp->rp->rop);
109 <                return(NULL);           /* no sample taken */
429 >        if (hp->sa[n1].d <= hp->sa[n2].d) {
430 >                if (hp->sa[n1].d <= hp->sa[n3].d)
431 >                        return(hp->sa[n1].v[0]);
432 >                return(hp->sa[n3].v[0]);
433          }
434 <        if (ambacc > FTINY) {
435 <                multcolor(ar.rcoef, hp->acoef);
436 <                scalecolor(ar.rcoef, 1./AVGREFL);
114 <        }
115 <                                        /* generate hemispherical sample */
116 <        SDsquare2disk(spt,      (i+.1+.8*frandom())/hp->ns,
117 <                                (j+.1+.8*frandom())/hp->ns );
118 <        zd = sqrt(1. - spt[0]*spt[0] - spt[1]*spt[1]);
119 <        for (ii = 3; ii--; )
120 <                ar.rdir[ii] =   spt[0]*hp->ux[ii] +
121 <                                spt[1]*hp->uy[ii] +
122 <                                zd*hp->rp->ron[ii];
123 <        checknorm(ar.rdir);
124 <        dimlist[ndims++] = i*hp->ns + j + 90171;
125 <        rayvalue(&ar);                  /* evaluate ray */
126 <        ndims--;
127 <        multcolor(ar.rcol, ar.rcoef);   /* apply coefficient */
128 <        copycolor(ap->v, ar.rcol);
129 <        if (ar.rt > 20.0*maxarad)       /* limit vertex distance */
130 <                VSUM(ap->p, ar.rorg, ar.rdir, 20.0*maxarad);
131 <        else
132 <                VCOPY(ap->p, ar.rop);
133 <        return(ap);
434 >        if (hp->sa[n2].d <= hp->sa[n3].d)
435 >                return(hp->sa[n2].v[0]);
436 >        return(hp->sa[n3].v[0]);
437   }
438  
439  
440   /* Compute vectors and coefficients for Hessian/gradient calcs */
441   static void
442 < comp_fftri(FFTRI *ftp, float ap0[3], float ap1[3], FVECT rop)
442 > comp_fftri(FFTRI *ftp, AMBHEMI *hp, const int n0, const int n1)
443   {
444 <        FVECT   v1;
445 <        double  dot_e, dot_er, dot_r, dot_r1;
444 >        double  rdot_cp, dot_e, dot_er, rdot_r, rdot_r1, J2;
445 >        int     ii;
446  
447 <        VSUB(ftp->r_i, ap0, rop);
448 <        VSUB(ftp->r_i1, ap1, rop);
449 <        VSUB(ftp->e_i, ap1, ap0);
450 <        VCROSS(v1, ftp->e_i, ftp->r_i);
451 <        ftp->nf = 1.0/DOT(v1,v1);
447 >        VSUB(ftp->r_i, hp->sa[n0].p, hp->rp->rop);
448 >        VSUB(ftp->r_i1, hp->sa[n1].p, hp->rp->rop);
449 >        VSUB(ftp->e_i, hp->sa[n1].p, hp->sa[n0].p);
450 >        VCROSS(ftp->rcp, ftp->r_i, ftp->r_i1);
451 >        rdot_cp = 1.0/DOT(ftp->rcp,ftp->rcp);
452          dot_e = DOT(ftp->e_i,ftp->e_i);
453          dot_er = DOT(ftp->e_i, ftp->r_i);
454 <        dot_r = DOT(ftp->r_i,ftp->r_i);
455 <        dot_r1 = DOT(ftp->r_i1,ftp->r_i1);
456 <        ftp->I1 = acos( DOT(ftp->r_i, ftp->r_i1) / sqrt(dot_r*dot_r1) ) *
457 <                        sqrt( ftp->nf );
458 <        ftp->I2 = ( DOT(ftp->e_i, ftp->r_i1)/dot_r1 - dot_er/dot_r +
459 <                        dot_e*ftp->I1 )*0.5*ftp->nf;
460 <        ftp->J2 =  0.5/dot_e*( 1.0/dot_r - 1.0/dot_r1 ) -
461 <                        dot_er/dot_e*ftp->I2;
454 >        rdot_r = 1.0/DOT(ftp->r_i,ftp->r_i);
455 >        rdot_r1 = 1.0/DOT(ftp->r_i1,ftp->r_i1);
456 >        ftp->I1 = acos( DOT(ftp->r_i, ftp->r_i1) * sqrt(rdot_r*rdot_r1) ) *
457 >                        sqrt( rdot_cp );
458 >        ftp->I2 = ( DOT(ftp->e_i, ftp->r_i1)*rdot_r1 - dot_er*rdot_r +
459 >                        dot_e*ftp->I1 )*0.5*rdot_cp;
460 >        J2 =  ( 0.5*(rdot_r - rdot_r1) - dot_er*ftp->I2 ) / dot_e;
461 >        for (ii = 3; ii--; )
462 >                ftp->rI2_eJ2[ii] = ftp->I2*ftp->r_i[ii] + J2*ftp->e_i[ii];
463   }
464  
465  
# Line 176 | Line 480 | compose_matrix(FVECT mat[3], FVECT va, FVECT vb)
480   static void
481   comp_hessian(FVECT hess[3], FFTRI *ftp, FVECT nrm)
482   {
483 <        FVECT   v1, v2;
483 >        FVECT   ncp;
484          FVECT   m1[3], m2[3], m3[3], m4[3];
485          double  d1, d2, d3, d4;
486          double  I3, J3, K3;
# Line 186 | Line 490 | comp_hessian(FVECT hess[3], FFTRI *ftp, FVECT nrm)
490          d2 = 1.0/DOT(ftp->r_i1,ftp->r_i1);
491          d3 = 1.0/DOT(ftp->e_i,ftp->e_i);
492          d4 = DOT(ftp->e_i, ftp->r_i);
493 <        I3 = 0.25*ftp->nf*( DOT(ftp->e_i, ftp->r_i1)*d2*d2 - d4*d1*d1 +
494 <                                3.0/d3*ftp->I2 );
493 >        I3 = ( DOT(ftp->e_i, ftp->r_i1)*d2*d2 - d4*d1*d1 + 3.0/d3*ftp->I2 )
494 >                        / ( 4.0*DOT(ftp->rcp,ftp->rcp) );
495          J3 = 0.25*d3*(d1*d1 - d2*d2) - d4*d3*I3;
496          K3 = d3*(ftp->I2 - I3/d1 - 2.0*d4*J3);
497                                          /* intermediate matrices */
498 <        VCROSS(v1, nrm, ftp->e_i);
499 <        for (j = 3; j--; )
196 <                v2[j] = ftp->I2*ftp->r_i[j] + ftp->J2*ftp->e_i[j];
197 <        compose_matrix(m1, v1, v2);
498 >        VCROSS(ncp, nrm, ftp->e_i);
499 >        compose_matrix(m1, ncp, ftp->rI2_eJ2);
500          compose_matrix(m2, ftp->r_i, ftp->r_i);
501          compose_matrix(m3, ftp->e_i, ftp->e_i);
502          compose_matrix(m4, ftp->r_i, ftp->e_i);
503 <        VCROSS(v1, ftp->r_i, ftp->e_i);
202 <        d1 = DOT(nrm, v1);
503 >        d1 = DOT(nrm, ftp->rcp);
504          d2 = -d1*ftp->I2;
505          d1 *= 2.0;
506          for (i = 3; i--; )              /* final matrix sum */
# Line 229 | Line 530 | rev_hessian(FVECT hess[3])
530   /* Add to radiometric Hessian from the given triangle */
531   static void
532   add2hessian(FVECT hess[3], FVECT ehess1[3],
533 <                FVECT ehess2[3], FVECT ehess3[3], COLORV v)
533 >                FVECT ehess2[3], FVECT ehess3[3], double v)
534   {
535          int     i, j;
536  
# Line 243 | Line 544 | add2hessian(FVECT hess[3], FVECT ehess1[3],
544   static void
545   comp_gradient(FVECT grad, FFTRI *ftp, FVECT nrm)
546   {
547 <        FVECT   vcp;
547 >        FVECT   ncp;
548          double  f1;
549          int     i;
550  
551 <        VCROSS(vcp, ftp->r_i, ftp->r_i1);
552 <        f1 = 2.0*DOT(nrm, vcp);
252 <        VCROSS(vcp, nrm, ftp->e_i);
551 >        f1 = 2.0*DOT(nrm, ftp->rcp);
552 >        VCROSS(ncp, nrm, ftp->e_i);
553          for (i = 3; i--; )
554 <                grad[i] = (0.5/PI)*( ftp->I1*vcp[i] +
255 <                            f1*(ftp->I2*ftp->r_i[i] + ftp->J2*ftp->e_i[i]) );
554 >                grad[i] = (0.5/PI)*( ftp->I1*ncp[i] + f1*ftp->rI2_eJ2[i] );
555   }
556  
557  
# Line 268 | Line 567 | rev_gradient(FVECT grad)
567  
568   /* Add to displacement gradient from the given triangle */
569   static void
570 < add2gradient(FVECT grad, FVECT egrad1, FVECT egrad2, FVECT egrad3, COLORV v)
570 > add2gradient(FVECT grad, FVECT egrad1, FVECT egrad2, FVECT egrad3, double v)
571   {
572          int     i;
573  
# Line 277 | Line 576 | add2gradient(FVECT grad, FVECT egrad1, FVECT egrad2, F
576   }
577  
578  
280 /* Return brightness of furthest ambient sample */
281 static COLORV
282 back_ambval(struct s_ambsamp *ap1, struct s_ambsamp *ap2,
283                struct s_ambsamp *ap3, FVECT orig)
284 {
285        COLORV  vback;
286        FVECT   vec;
287        double  d2, d2best;
288
289        VSUB(vec, ap1->p, orig);
290        d2best = DOT(vec,vec);
291        vback = colval(ap1->v,CIEY);
292        VSUB(vec, ap2->p, orig);
293        d2 = DOT(vec,vec);
294        if (d2 > d2best) {
295                d2best = d2;
296                vback = colval(ap2->v,CIEY);
297        }
298        VSUB(vec, ap3->p, orig);
299        d2 = DOT(vec,vec);
300        if (d2 > d2best)
301                return(colval(ap3->v,CIEY));
302        return(vback);
303 }
304
305
579   /* Compute anisotropic radii and eigenvector directions */
580 < static int
580 > static void
581   eigenvectors(FVECT uv[2], float ra[2], FVECT hessian[3])
582   {
583          double  hess2[2][2];
# Line 320 | Line 593 | eigenvectors(FVECT uv[2], float ra[2], FVECT hessian[3
593          hess2[0][1] = DOT(uv[0], b);
594          hess2[1][0] = DOT(uv[1], a);
595          hess2[1][1] = DOT(uv[1], b);
596 <                                        /* compute eigenvalues */
597 <        if ( quadratic(evalue, 1.0, -hess2[0][0]-hess2[1][1],
598 <                        hess2[0][0]*hess2[1][1]-hess2[0][1]*hess2[1][0]) != 2 ||
599 <                        (evalue[0] = fabs(evalue[0])) <= FTINY*FTINY ||
600 <                        (evalue[1] = fabs(evalue[1])) <= FTINY*FTINY )
601 <                error(INTERNAL, "bad eigenvalue calculation");
602 <
596 >                                        /* compute eigenvalue(s) */
597 >        i = quadratic(evalue, 1.0, -hess2[0][0]-hess2[1][1],
598 >                        hess2[0][0]*hess2[1][1]-hess2[0][1]*hess2[1][0]);
599 >        if (i == 1)                     /* double-root (circle) */
600 >                evalue[1] = evalue[0];
601 >        if (!i || ((evalue[0] = fabs(evalue[0])) <= FTINY*FTINY) |
602 >                        ((evalue[1] = fabs(evalue[1])) <= FTINY*FTINY) ) {
603 >                ra[0] = ra[1] = maxarad;
604 >                return;
605 >        }
606          if (evalue[0] > evalue[1]) {
607                  ra[0] = sqrt(sqrt(4.0/evalue[0]));
608                  ra[1] = sqrt(sqrt(4.0/evalue[1]));
# Line 384 | Line 660 | ambHessian(                            /* anisotropic radii & pos. gradient */
660          }
661                                          /* compute first row of edges */
662          for (j = 0; j < hp->ns-1; j++) {
663 <                comp_fftri(&fftr, ambsamp(hp,0,j).p,
388 <                                ambsamp(hp,0,j+1).p, hp->rp->rop);
663 >                comp_fftri(&fftr, hp, AI(hp,0,j), AI(hp,0,j+1));
664                  if (hessrow != NULL)
665 <                        comp_hessian(hessrow[j], &fftr, hp->rp->ron);
665 >                        comp_hessian(hessrow[j], &fftr, hp->onrm);
666                  if (gradrow != NULL)
667 <                        comp_gradient(gradrow[j], &fftr, hp->rp->ron);
667 >                        comp_gradient(gradrow[j], &fftr, hp->onrm);
668          }
669                                          /* sum each row of triangles */
670          for (i = 0; i < hp->ns-1; i++) {
671              FVECT       hesscol[3];     /* compute first vertical edge */
672              FVECT       gradcol;
673 <            comp_fftri(&fftr, ambsamp(hp,i,0).p,
399 <                        ambsamp(hp,i+1,0).p, hp->rp->rop);
673 >            comp_fftri(&fftr, hp, AI(hp,i,0), AI(hp,i+1,0));
674              if (hessrow != NULL)
675 <                comp_hessian(hesscol, &fftr, hp->rp->ron);
675 >                comp_hessian(hesscol, &fftr, hp->onrm);
676              if (gradrow != NULL)
677 <                comp_gradient(gradcol, &fftr, hp->rp->ron);
677 >                comp_gradient(gradcol, &fftr, hp->onrm);
678              for (j = 0; j < hp->ns-1; j++) {
679                  FVECT   hessdia[3];     /* compute triangle contributions */
680                  FVECT   graddia;
681 <                COLORV  backg;
682 <                backg = back_ambval(&ambsamp(hp,i,j), &ambsamp(hp,i,j+1),
683 <                                        &ambsamp(hp,i+1,j), hp->rp->rop);
681 >                double  backg;
682 >                backg = back_ambval(hp, AI(hp,i,j),
683 >                                        AI(hp,i,j+1), AI(hp,i+1,j));
684                                          /* diagonal (inner) edge */
685 <                comp_fftri(&fftr, ambsamp(hp,i,j+1).p,
412 <                                ambsamp(hp,i+1,j).p, hp->rp->rop);
685 >                comp_fftri(&fftr, hp, AI(hp,i,j+1), AI(hp,i+1,j));
686                  if (hessrow != NULL) {
687 <                    comp_hessian(hessdia, &fftr, hp->rp->ron);
687 >                    comp_hessian(hessdia, &fftr, hp->onrm);
688                      rev_hessian(hesscol);
689                      add2hessian(hessian, hessrow[j], hessdia, hesscol, backg);
690                  }
691 <                if (gradient != NULL) {
692 <                    comp_gradient(graddia, &fftr, hp->rp->ron);
691 >                if (gradrow != NULL) {
692 >                    comp_gradient(graddia, &fftr, hp->onrm);
693                      rev_gradient(gradcol);
694                      add2gradient(gradient, gradrow[j], graddia, gradcol, backg);
695                  }
696                                          /* initialize edge in next row */
697 <                comp_fftri(&fftr, ambsamp(hp,i+1,j+1).p,
425 <                                ambsamp(hp,i+1,j).p, hp->rp->rop);
697 >                comp_fftri(&fftr, hp, AI(hp,i+1,j+1), AI(hp,i+1,j));
698                  if (hessrow != NULL)
699 <                    comp_hessian(hessrow[j], &fftr, hp->rp->ron);
699 >                    comp_hessian(hessrow[j], &fftr, hp->onrm);
700                  if (gradrow != NULL)
701 <                    comp_gradient(gradrow[j], &fftr, hp->rp->ron);
701 >                    comp_gradient(gradrow[j], &fftr, hp->onrm);
702                                          /* new column edge & paired triangle */
703 <                backg = back_ambval(&ambsamp(hp,i,j+1), &ambsamp(hp,i+1,j+1),
704 <                                        &ambsamp(hp,i+1,j), hp->rp->rop);
705 <                comp_fftri(&fftr, ambsamp(hp,i,j+1).p, ambsamp(hp,i+1,j+1).p,
434 <                                hp->rp->rop);
703 >                backg = back_ambval(hp, AI(hp,i+1,j+1),
704 >                                        AI(hp,i+1,j), AI(hp,i,j+1));
705 >                comp_fftri(&fftr, hp, AI(hp,i,j+1), AI(hp,i+1,j+1));
706                  if (hessrow != NULL) {
707 <                    comp_hessian(hesscol, &fftr, hp->rp->ron);
707 >                    comp_hessian(hesscol, &fftr, hp->onrm);
708                      rev_hessian(hessdia);
709                      add2hessian(hessian, hessrow[j], hessdia, hesscol, backg);
710                      if (i < hp->ns-2)
711                          rev_hessian(hessrow[j]);
712                  }
713                  if (gradrow != NULL) {
714 <                    comp_gradient(gradcol, &fftr, hp->rp->ron);
714 >                    comp_gradient(gradcol, &fftr, hp->onrm);
715                      rev_gradient(graddia);
716                      add2gradient(gradient, gradrow[j], graddia, gradcol, backg);
717                      if (i < hp->ns-2)
# Line 454 | Line 725 | ambHessian(                            /* anisotropic radii & pos. gradient */
725          
726          if (ra != NULL)                 /* extract eigenvectors & radii */
727                  eigenvectors(uv, ra, hessian);
728 <        if (pg != NULL) {               /* tangential position gradient/PI */
729 <                pg[0] = DOT(gradient, uv[0]) / PI;
730 <                pg[1] = DOT(gradient, uv[1]) / PI;
728 >        if (pg != NULL) {               /* tangential position gradient */
729 >                pg[0] = DOT(gradient, uv[0]);
730 >                pg[1] = DOT(gradient, uv[1]);
731          }
732   }
733  
# Line 465 | Line 736 | ambHessian(                            /* anisotropic radii & pos. gradient */
736   static void
737   ambdirgrad(AMBHEMI *hp, FVECT uv[2], float dg[2])
738   {
739 <        struct s_ambsamp        *ap;
740 <        double                  dgsum[2];
741 <        int                     n;
742 <        FVECT                   vd;
743 <        double                  gfact;
739 >        AMBSAMP *ap;
740 >        double  dgsum[2];
741 >        int     n;
742 >        FVECT   vd;
743 >        double  gfact;
744  
745          dgsum[0] = dgsum[1] = 0.0;      /* sum values times -tan(theta) */
746          for (ap = hp->sa, n = hp->ns*hp->ns; n--; ap++) {
747                                          /* use vector for azimuth + 90deg */
748                  VSUB(vd, ap->p, hp->rp->rop);
749                                          /* brightness over cosine factor */
750 <                gfact = colval(ap->v,CIEY) / DOT(hp->rp->ron, vd);
751 <                                        /* -sine = -proj_radius/vd_length */
752 <                dgsum[0] += DOT(uv[1], vd) * gfact;
753 <                dgsum[1] -= DOT(uv[0], vd) * gfact;
750 >                gfact = ap->v[0] / DOT(hp->onrm, vd);
751 >                                        /* sine = proj_radius/vd_length */
752 >                dgsum[0] -= DOT(uv[1], vd) * gfact;
753 >                dgsum[1] += DOT(uv[0], vd) * gfact;
754          }
755          dg[0] = dgsum[0] / (hp->ns*hp->ns);
756          dg[1] = dgsum[1] / (hp->ns*hp->ns);
757   }
758  
759  
760 + /* Compute potential light leak direction flags for cache value */
761 + static uint32
762 + ambcorral(AMBHEMI *hp, FVECT uv[2], const double r0, const double r1)
763 + {
764 +        const double    max_d = 1.0/(minarad*ambacc + 0.001);
765 +        const double    ang_res = 0.5*PI/hp->ns;
766 +        const double    ang_step = ang_res/((int)(16/PI*ang_res) + 1.01);
767 +        double          avg_d = 0;
768 +        uint32          flgs = 0;
769 +        FVECT           vec;
770 +        double          u, v;
771 +        double          ang, a1;
772 +        int             i, j;
773 +                                        /* don't bother for a few samples */
774 +        if (hp->ns < 8)
775 +                return(0);
776 +                                        /* check distances overhead */
777 +        for (i = hp->ns*3/4; i-- > hp->ns>>2; )
778 +            for (j = hp->ns*3/4; j-- > hp->ns>>2; )
779 +                avg_d += ambsam(hp,i,j).d;
780 +        avg_d *= 4.0/(hp->ns*hp->ns);
781 +        if (avg_d*r0 >= 1.0)            /* ceiling too low for corral? */
782 +                return(0);
783 +        if (avg_d >= max_d)             /* insurance */
784 +                return(0);
785 +                                        /* else circle around perimeter */
786 +        for (i = 0; i < hp->ns; i++)
787 +            for (j = 0; j < hp->ns; j += !i|(i==hp->ns-1) ? 1 : hp->ns-1) {
788 +                AMBSAMP *ap = &ambsam(hp,i,j);
789 +                if ((ap->d <= FTINY) | (ap->d >= max_d))
790 +                        continue;       /* too far or too near */
791 +                VSUB(vec, ap->p, hp->rp->rop);
792 +                u = DOT(vec, uv[0]);
793 +                v = DOT(vec, uv[1]);
794 +                if ((r0*r0*u*u + r1*r1*v*v) * ap->d*ap->d <= u*u + v*v)
795 +                        continue;       /* occluder outside ellipse */
796 +                ang = atan2a(v, u);     /* else set direction flags */
797 +                for (a1 = ang-ang_res; a1 <= ang+ang_res; a1 += ang_step)
798 +                        flgs |= 1L<<(int)(16/PI*(a1 + 2.*PI*(a1 < 0)));
799 +            }
800 +        return(flgs);
801 + }
802 +
803 +
804   int
805   doambient(                              /* compute ambient component */
806 <        COLOR   rcol,                   /* input/output color */
806 >        SCOLOR  rcol,                   /* input/output color */
807          RAY     *r,
808 <        double  wt,
808 >        double  wt,                     /* negative for back side */
809          FVECT   uv[2],                  /* returned (optional) */
810          float   ra[2],                  /* returned (optional) */
811          float   pg[2],                  /* returned (optional) */
812 <        float   dg[2]                   /* returned (optional) */
812 >        float   dg[2],                  /* returned (optional) */
813 >        uint32  *crlp                   /* returned (optional) */
814   )
815   {
816 <        AMBHEMI                 *hp = inithemi(rcol, r, wt);
817 <        int                     cnt = 0;
818 <        FVECT                   my_uv[2];
819 <        double                  d, acol[3];
820 <        struct s_ambsamp        *ap;
821 <        int                     i, j;
506 <                                        /* check/initialize */
507 <        if (hp == NULL)
508 <                return(0);
816 >        AMBHEMI *hp = samp_hemi(rcol, r, wt);
817 >        FVECT   my_uv[2];
818 >        double  d, K;
819 >        AMBSAMP *ap;
820 >        int     i;
821 >                                        /* clear return values */
822          if (uv != NULL)
823                  memset(uv, 0, sizeof(FVECT)*2);
824          if (ra != NULL)
# Line 514 | Line 827 | doambient(                             /* compute ambient component */
827                  pg[0] = pg[1] = 0.0;
828          if (dg != NULL)
829                  dg[0] = dg[1] = 0.0;
830 <                                        /* sample the hemisphere */
831 <        acol[0] = acol[1] = acol[2] = 0.0;
832 <        for (i = hp->ns; i--; )
833 <                for (j = hp->ns; j--; )
834 <                        if ((ap = ambsample(hp, i, j)) != NULL) {
835 <                                addcolor(acol, ap->v);
836 <                                ++cnt;
837 <                        }
838 <        if (!cnt) {
526 <                setcolor(rcol, 0.0, 0.0, 0.0);
527 <                free(hp);
528 <                return(0);              /* no valid samples */
830 >        if (crlp != NULL)
831 >                *crlp = 0;
832 >        if (hp == NULL)                 /* sampling falure? */
833 >                return(0);
834 >
835 >        if ((ra == NULL) & (pg == NULL) & (dg == NULL) ||
836 >                        (hp->sampOK < 0) | (hp->ns < MINADIV)) {
837 >                free(hp);               /* Hessian not requested/possible */
838 >                return(-1);             /* value-only return value */
839          }
840 <        copycolor(rcol, acol);          /* final indirect irradiance/PI */
841 <        if (cnt < hp->ns*hp->ns ||      /* incomplete sampling? */
842 <                        (ra == NULL) & (pg == NULL) & (dg == NULL)) {
843 <                free(hp);
844 <                return(-1);             /* no radius or gradient calc. */
840 >        if ((d = scolor_mean(rcol)) > FTINY) {
841 >                d = 0.99*(hp->ns*hp->ns)/d;     /* normalize avg. values */
842 >                K = 0.01;
843 >        } else {                        /* or fall back on geometric Hessian */
844 >                K = 1.0;
845 >                pg = NULL;
846 >                dg = NULL;
847 >                crlp = NULL;
848          }
849 <        multcolor(acol, hp->acoef);     /* normalize Y values */
537 <        if ((d = bright(acol)) > FTINY)
538 <                d = 1.0/d;
539 <        else
540 <                d = 0.0;
541 <        ap = hp->sa;                    /* relative Y channel from here on... */
849 >        ap = hp->sa;                    /* single channel from here on... */
850          for (i = hp->ns*hp->ns; i--; ap++)
851 <                colval(ap->v,CIEY) = bright(ap->v)*d + 0.0314;
851 >                ap->v[0] = scolor_mean(ap->v)*d + K;
852  
853          if (uv == NULL)                 /* make sure we have axis pointers */
854                  uv = my_uv;
# Line 551 | Line 859 | doambient(                             /* compute ambient component */
859                  ambdirgrad(hp, uv, dg);
860  
861          if (ra != NULL) {               /* scale/clamp radii */
862 +                if (pg != NULL) {
863 +                        if (ra[0]*(d = fabs(pg[0])) > 1.0)
864 +                                ra[0] = 1.0/d;
865 +                        if (ra[1]*(d = fabs(pg[1])) > 1.0)
866 +                                ra[1] = 1.0/d;
867 +                        if (ra[0] > ra[1])
868 +                                ra[0] = ra[1];
869 +                }
870                  if (ra[0] < minarad) {
871                          ra[0] = minarad;
872                          if (ra[1] < minarad)
873                                  ra[1] = minarad;
874                  }
875 <                ra[0] *= d = 1.0/sqrt(sqrt(wt));
875 >                ra[0] *= d = 1.0/sqrt(fabs(wt));
876                  if ((ra[1] *= d) > 2.0*ra[0])
877                          ra[1] = 2.0*ra[0];
878                  if (ra[1] > maxarad) {
# Line 564 | Line 880 | doambient(                             /* compute ambient component */
880                          if (ra[0] > maxarad)
881                                  ra[0] = maxarad;
882                  }
883 +                                        /* flag encroached directions */
884 +                if (crlp != NULL)       /* XXX doesn't update with changes to ambacc */
885 +                        *crlp = ambcorral(hp, uv, ra[0]*ambacc, ra[1]*ambacc);
886 +                if (pg != NULL) {       /* cap gradient if necessary */
887 +                        d = pg[0]*pg[0]*ra[0]*ra[0] + pg[1]*pg[1]*ra[1]*ra[1];
888 +                        if (d > 1.0) {
889 +                                d = 1.0/sqrt(d);
890 +                                pg[0] *= d;
891 +                                pg[1] *= d;
892 +                        }
893 +                }
894          }
895          free(hp);                       /* clean up and return */
896          return(1);
897   }
571
572
573 #else /* ! NEWAMB */
574
575
576 void
577 inithemi(                       /* initialize sampling hemisphere */
578        AMBHEMI  *hp,
579        COLOR ac,
580        RAY  *r,
581        double  wt
582 )
583 {
584        double  d;
585        int  i;
586                                        /* set number of divisions */
587        if (ambacc <= FTINY &&
588                        wt > (d = 0.8*intens(ac)*r->rweight/(ambdiv*minweight)))
589                wt = d;                 /* avoid ray termination */
590        hp->nt = sqrt(ambdiv * wt / PI) + 0.5;
591        i = ambacc > FTINY ? 3 : 1;     /* minimum number of samples */
592        if (hp->nt < i)
593                hp->nt = i;
594        hp->np = PI * hp->nt + 0.5;
595                                        /* set number of super-samples */
596        hp->ns = ambssamp * wt + 0.5;
597                                        /* assign coefficient */
598        copycolor(hp->acoef, ac);
599        d = 1.0/(hp->nt*hp->np);
600        scalecolor(hp->acoef, d);
601                                        /* make axes */
602        VCOPY(hp->uz, r->ron);
603        hp->uy[0] = hp->uy[1] = hp->uy[2] = 0.0;
604        for (i = 0; i < 3; i++)
605                if (hp->uz[i] < 0.6 && hp->uz[i] > -0.6)
606                        break;
607        if (i >= 3)
608                error(CONSISTENCY, "bad ray direction in inithemi");
609        hp->uy[i] = 1.0;
610        fcross(hp->ux, hp->uy, hp->uz);
611        normalize(hp->ux);
612        fcross(hp->uy, hp->uz, hp->ux);
613 }
614
615
616 int
617 divsample(                              /* sample a division */
618        AMBSAMP  *dp,
619        AMBHEMI  *h,
620        RAY  *r
621 )
622 {
623        RAY  ar;
624        int  hlist[3];
625        double  spt[2];
626        double  xd, yd, zd;
627        double  b2;
628        double  phi;
629        int  i;
630                                        /* ambient coefficient for weight */
631        if (ambacc > FTINY)
632                setcolor(ar.rcoef, AVGREFL, AVGREFL, AVGREFL);
633        else
634                copycolor(ar.rcoef, h->acoef);
635        if (rayorigin(&ar, AMBIENT, r, ar.rcoef) < 0)
636                return(-1);
637        if (ambacc > FTINY) {
638                multcolor(ar.rcoef, h->acoef);
639                scalecolor(ar.rcoef, 1./AVGREFL);
640        }
641        hlist[0] = r->rno;
642        hlist[1] = dp->t;
643        hlist[2] = dp->p;
644        multisamp(spt, 2, urand(ilhash(hlist,3)+dp->n));
645        zd = sqrt((dp->t + spt[0])/h->nt);
646        phi = 2.0*PI * (dp->p + spt[1])/h->np;
647        xd = tcos(phi) * zd;
648        yd = tsin(phi) * zd;
649        zd = sqrt(1.0 - zd*zd);
650        for (i = 0; i < 3; i++)
651                ar.rdir[i] =    xd*h->ux[i] +
652                                yd*h->uy[i] +
653                                zd*h->uz[i];
654        checknorm(ar.rdir);
655        dimlist[ndims++] = dp->t*h->np + dp->p + 90171;
656        rayvalue(&ar);
657        ndims--;
658        multcolor(ar.rcol, ar.rcoef);   /* apply coefficient */
659        addcolor(dp->v, ar.rcol);
660                                        /* use rt to improve gradient calc */
661        if (ar.rt > FTINY && ar.rt < FHUGE)
662                dp->r += 1.0/ar.rt;
663                                        /* (re)initialize error */
664        if (dp->n++) {
665                b2 = bright(dp->v)/dp->n - bright(ar.rcol);
666                b2 = b2*b2 + dp->k*((dp->n-1)*(dp->n-1));
667                dp->k = b2/(dp->n*dp->n);
668        } else
669                dp->k = 0.0;
670        return(0);
671 }
672
673
674 static int
675 ambcmp(                                 /* decreasing order */
676        const void *p1,
677        const void *p2
678 )
679 {
680        const AMBSAMP   *d1 = (const AMBSAMP *)p1;
681        const AMBSAMP   *d2 = (const AMBSAMP *)p2;
682
683        if (d1->k < d2->k)
684                return(1);
685        if (d1->k > d2->k)
686                return(-1);
687        return(0);
688 }
689
690
691 static int
692 ambnorm(                                /* standard order */
693        const void *p1,
694        const void *p2
695 )
696 {
697        const AMBSAMP   *d1 = (const AMBSAMP *)p1;
698        const AMBSAMP   *d2 = (const AMBSAMP *)p2;
699        int     c;
700
701        if ( (c = d1->t - d2->t) )
702                return(c);
703        return(d1->p - d2->p);
704 }
705
706
707 double
708 doambient(                              /* compute ambient component */
709        COLOR  rcol,
710        RAY  *r,
711        double  wt,
712        FVECT  pg,
713        FVECT  dg
714 )
715 {
716        double  b, d=0;
717        AMBHEMI  hemi;
718        AMBSAMP  *div;
719        AMBSAMP  dnew;
720        double  acol[3];
721        AMBSAMP  *dp;
722        double  arad;
723        int  divcnt;
724        int  i, j;
725                                        /* initialize hemisphere */
726        inithemi(&hemi, rcol, r, wt);
727        divcnt = hemi.nt * hemi.np;
728                                        /* initialize */
729        if (pg != NULL)
730                pg[0] = pg[1] = pg[2] = 0.0;
731        if (dg != NULL)
732                dg[0] = dg[1] = dg[2] = 0.0;
733        setcolor(rcol, 0.0, 0.0, 0.0);
734        if (divcnt == 0)
735                return(0.0);
736                                        /* allocate super-samples */
737        if (hemi.ns > 0 || pg != NULL || dg != NULL) {
738                div = (AMBSAMP *)malloc(divcnt*sizeof(AMBSAMP));
739                if (div == NULL)
740                        error(SYSTEM, "out of memory in doambient");
741        } else
742                div = NULL;
743                                        /* sample the divisions */
744        arad = 0.0;
745        acol[0] = acol[1] = acol[2] = 0.0;
746        if ((dp = div) == NULL)
747                dp = &dnew;
748        divcnt = 0;
749        for (i = 0; i < hemi.nt; i++)
750                for (j = 0; j < hemi.np; j++) {
751                        dp->t = i; dp->p = j;
752                        setcolor(dp->v, 0.0, 0.0, 0.0);
753                        dp->r = 0.0;
754                        dp->n = 0;
755                        if (divsample(dp, &hemi, r) < 0) {
756                                if (div != NULL)
757                                        dp++;
758                                continue;
759                        }
760                        arad += dp->r;
761                        divcnt++;
762                        if (div != NULL)
763                                dp++;
764                        else
765                                addcolor(acol, dp->v);
766                }
767        if (!divcnt) {
768                if (div != NULL)
769                        free((void *)div);
770                return(0.0);            /* no samples taken */
771        }
772        if (divcnt < hemi.nt*hemi.np) {
773                pg = dg = NULL;         /* incomplete sampling */
774                hemi.ns = 0;
775        } else if (arad > FTINY && divcnt/arad < minarad) {
776                hemi.ns = 0;            /* close enough */
777        } else if (hemi.ns > 0) {       /* else perform super-sampling? */
778                comperrs(div, &hemi);                   /* compute errors */
779                qsort(div, divcnt, sizeof(AMBSAMP), ambcmp);    /* sort divs */
780                                                /* super-sample */
781                for (i = hemi.ns; i > 0; i--) {
782                        dnew = *div;
783                        if (divsample(&dnew, &hemi, r) < 0) {
784                                dp++;
785                                continue;
786                        }
787                        dp = div;               /* reinsert */
788                        j = divcnt < i ? divcnt : i;
789                        while (--j > 0 && dnew.k < dp[1].k) {
790                                *dp = *(dp+1);
791                                dp++;
792                        }
793                        *dp = dnew;
794                }
795                if (pg != NULL || dg != NULL)   /* restore order */
796                        qsort(div, divcnt, sizeof(AMBSAMP), ambnorm);
797        }
798                                        /* compute returned values */
799        if (div != NULL) {
800                arad = 0.0;             /* note: divcnt may be < nt*np */
801                for (i = hemi.nt*hemi.np, dp = div; i-- > 0; dp++) {
802                        arad += dp->r;
803                        if (dp->n > 1) {
804                                b = 1.0/dp->n;
805                                scalecolor(dp->v, b);
806                                dp->r *= b;
807                                dp->n = 1;
808                        }
809                        addcolor(acol, dp->v);
810                }
811                b = bright(acol);
812                if (b > FTINY) {
813                        b = 1.0/b;      /* compute & normalize gradient(s) */
814                        if (pg != NULL) {
815                                posgradient(pg, div, &hemi);
816                                for (i = 0; i < 3; i++)
817                                        pg[i] *= b;
818                        }
819                        if (dg != NULL) {
820                                dirgradient(dg, div, &hemi);
821                                for (i = 0; i < 3; i++)
822                                        dg[i] *= b;
823                        }
824                }
825                free((void *)div);
826        }
827        copycolor(rcol, acol);
828        if (arad <= FTINY)
829                arad = maxarad;
830        else
831                arad = (divcnt+hemi.ns)/arad;
832        if (pg != NULL) {               /* reduce radius if gradient large */
833                d = DOT(pg,pg);
834                if (d*arad*arad > 1.0)
835                        arad = 1.0/sqrt(d);
836        }
837        if (arad < minarad) {
838                arad = minarad;
839                if (pg != NULL && d*arad*arad > 1.0) {  /* cap gradient */
840                        d = 1.0/arad/sqrt(d);
841                        for (i = 0; i < 3; i++)
842                                pg[i] *= d;
843                }
844        }
845        if ((arad /= sqrt(wt)) > maxarad)
846                arad = maxarad;
847        return(arad);
848 }
849
850
851 void
852 comperrs(                       /* compute initial error estimates */
853        AMBSAMP  *da,   /* assumes standard ordering */
854        AMBHEMI  *hp
855 )
856 {
857        double  b, b2;
858        int  i, j;
859        AMBSAMP  *dp;
860                                /* sum differences from neighbors */
861        dp = da;
862        for (i = 0; i < hp->nt; i++)
863                for (j = 0; j < hp->np; j++) {
864 #ifdef  DEBUG
865                        if (dp->t != i || dp->p != j)
866                                error(CONSISTENCY,
867                                        "division order in comperrs");
868 #endif
869                        b = bright(dp[0].v);
870                        if (i > 0) {            /* from above */
871                                b2 = bright(dp[-hp->np].v) - b;
872                                b2 *= b2 * 0.25;
873                                dp[0].k += b2;
874                                dp[-hp->np].k += b2;
875                        }
876                        if (j > 0) {            /* from behind */
877                                b2 = bright(dp[-1].v) - b;
878                                b2 *= b2 * 0.25;
879                                dp[0].k += b2;
880                                dp[-1].k += b2;
881                        } else {                /* around */
882                                b2 = bright(dp[hp->np-1].v) - b;
883                                b2 *= b2 * 0.25;
884                                dp[0].k += b2;
885                                dp[hp->np-1].k += b2;
886                        }
887                        dp++;
888                }
889                                /* divide by number of neighbors */
890        dp = da;
891        for (j = 0; j < hp->np; j++)            /* top row */
892                (dp++)->k *= 1.0/3.0;
893        if (hp->nt < 2)
894                return;
895        for (i = 1; i < hp->nt-1; i++)          /* central region */
896                for (j = 0; j < hp->np; j++)
897                        (dp++)->k *= 0.25;
898        for (j = 0; j < hp->np; j++)            /* bottom row */
899                (dp++)->k *= 1.0/3.0;
900 }
901
902
903 void
904 posgradient(                                    /* compute position gradient */
905        FVECT  gv,
906        AMBSAMP  *da,                   /* assumes standard ordering */
907        AMBHEMI  *hp
908 )
909 {
910        int  i, j;
911        double  nextsine, lastsine, b, d;
912        double  mag0, mag1;
913        double  phi, cosp, sinp, xd, yd;
914        AMBSAMP  *dp;
915
916        xd = yd = 0.0;
917        for (j = 0; j < hp->np; j++) {
918                dp = da + j;
919                mag0 = mag1 = 0.0;
920                lastsine = 0.0;
921                for (i = 0; i < hp->nt; i++) {
922 #ifdef  DEBUG
923                        if (dp->t != i || dp->p != j)
924                                error(CONSISTENCY,
925                                        "division order in posgradient");
926 #endif
927                        b = bright(dp->v);
928                        if (i > 0) {
929                                d = dp[-hp->np].r;
930                                if (dp[0].r > d) d = dp[0].r;
931                                                        /* sin(t)*cos(t)^2 */
932                                d *= lastsine * (1.0 - (double)i/hp->nt);
933                                mag0 += d*(b - bright(dp[-hp->np].v));
934                        }
935                        nextsine = sqrt((double)(i+1)/hp->nt);
936                        if (j > 0) {
937                                d = dp[-1].r;
938                                if (dp[0].r > d) d = dp[0].r;
939                                mag1 += d * (nextsine - lastsine) *
940                                                (b - bright(dp[-1].v));
941                        } else {
942                                d = dp[hp->np-1].r;
943                                if (dp[0].r > d) d = dp[0].r;
944                                mag1 += d * (nextsine - lastsine) *
945                                                (b - bright(dp[hp->np-1].v));
946                        }
947                        dp += hp->np;
948                        lastsine = nextsine;
949                }
950                mag0 *= 2.0*PI / hp->np;
951                phi = 2.0*PI * (double)j/hp->np;
952                cosp = tcos(phi); sinp = tsin(phi);
953                xd += mag0*cosp - mag1*sinp;
954                yd += mag0*sinp + mag1*cosp;
955        }
956        for (i = 0; i < 3; i++)
957                gv[i] = (xd*hp->ux[i] + yd*hp->uy[i])*(hp->nt*hp->np)/PI;
958 }
959
960
961 void
962 dirgradient(                                    /* compute direction gradient */
963        FVECT  gv,
964        AMBSAMP  *da,                   /* assumes standard ordering */
965        AMBHEMI  *hp
966 )
967 {
968        int  i, j;
969        double  mag;
970        double  phi, xd, yd;
971        AMBSAMP  *dp;
972
973        xd = yd = 0.0;
974        for (j = 0; j < hp->np; j++) {
975                dp = da + j;
976                mag = 0.0;
977                for (i = 0; i < hp->nt; i++) {
978 #ifdef  DEBUG
979                        if (dp->t != i || dp->p != j)
980                                error(CONSISTENCY,
981                                        "division order in dirgradient");
982 #endif
983                                                        /* tan(t) */
984                        mag += bright(dp->v)/sqrt(hp->nt/(i+.5) - 1.0);
985                        dp += hp->np;
986                }
987                phi = 2.0*PI * (j+.5)/hp->np + PI/2.0;
988                xd += mag * tcos(phi);
989                yd += mag * tsin(phi);
990        }
991        for (i = 0; i < 3; i++)
992                gv[i] = xd*hp->ux[i] + yd*hp->uy[i];
993 }
994
995 #endif  /* ! NEWAMB */

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)