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

Comparing ray/src/gen/mkillum2.c (file contents):
Revision 2.10 by schorsch, Thu Jun 26 00:58:09 2003 UTC vs.
Revision 2.20 by greg, Tue Sep 18 19:51:07 2007 UTC

# Line 5 | Line 5 | static const char      RCSid[] = "$Id$";
5   * Routines to do the actual calculation for mkillum
6   */
7  
8 + #include <string.h>
9 +
10   #include  "mkillum.h"
11   #include  "face.h"
12   #include  "cone.h"
13   #include  "random.h"
14  
15  
16 < o_default(ob, il, rt, nm)       /* default illum action */
17 < OBJREC  *ob;
18 < struct illum_args  *il;
19 < struct rtproc  *rt;
20 < char  *nm;
16 > static void mkaxes(FVECT u, FVECT v, FVECT n);
17 > static void rounddir(FVECT dv, double alt, double azi);
18 > static void flatdir(FVECT dv, double alt, double azi);
19 >
20 >
21 > static COLORV * distarr = NULL;         /* distribution array */
22 > static int      distsiz = 0;
23 >
24 >
25 > static void
26 > newdist(                        /* allocate & clear distribution array */
27 >        int siz
28 > )
29   {
30 +        if (siz == 0) {
31 +                if (distsiz > 0)
32 +                        free((void *)distarr);
33 +                distarr = NULL;
34 +                distsiz = 0;
35 +                return;
36 +        }
37 +        if (distsiz < siz) {
38 +                free((void *)distarr);
39 +                distarr = (COLORV *)malloc(sizeof(COLORV)*3*siz);
40 +                if (distarr == NULL)
41 +                        error(SYSTEM, "out of memory in newdist");
42 +                distsiz = siz;
43 +        }
44 +        memset(distarr, '\0', sizeof(COLORV)*3*siz);
45 + }
46 +
47 +
48 + static int
49 + process_ray(RAY *r, int rv)
50 + {
51 +        COLORV  *colp;
52 +
53 +        if (rv == 0)
54 +                return(0);
55 +        if (rv < 0)
56 +                error(USER, "ray tracing process died");
57 +        if (r->rno >= distsiz)
58 +                error(INTERNAL, "bad returned index in process_ray");
59 +        colp = &distarr[r->rno * 3];
60 +        addcolor(colp, r->rcol);
61 +        return(1);
62 + }
63 +
64 +
65 + static void
66 + raysamp(        /* queue a ray sample */
67 +        int  ndx,
68 +        FVECT  org,
69 +        FVECT  dir
70 + )
71 + {
72 +        RAY     myRay;
73 +        int     rv;
74 +
75 +        if ((ndx < 0) | (ndx >= distsiz))
76 +                error(INTERNAL, "bad index in raysamp");
77 +        VCOPY(myRay.rorg, org);
78 +        VCOPY(myRay.rdir, dir);
79 +        myRay.rmax = .0;
80 +        rayorigin(&myRay, PRIMARY, NULL, NULL);
81 +        myRay.rno = ndx;
82 +                                        /* queue ray, check result */
83 +        process_ray(&myRay, ray_pqueue(&myRay));
84 + }
85 +
86 +
87 + static void
88 + rayclean()                      /* finish all pending rays */
89 + {
90 +        RAY     myRay;
91 +
92 +        while (process_ray(&myRay, ray_presult(&myRay, 0)))
93 +                ;
94 + }
95 +
96 +
97 + int
98 + my_default(     /* default illum action */
99 +        OBJREC  *ob,
100 +        struct illum_args  *il,
101 +        char  *nm
102 + )
103 + {
104          sprintf(errmsg, "(%s): cannot make illum for %s \"%s\"",
105                          nm, ofun[ob->otype].funame, ob->oname);
106          error(WARNING, errmsg);
107          printobj(il->altmat, ob);
108 +        return(1);
109   }
110  
111  
112 < o_face(ob, il, rt, nm)          /* make an illum face */
113 < OBJREC  *ob;
114 < struct illum_args  *il;
115 < struct rtproc  *rt;
116 < char  *nm;
112 > int
113 > my_face(                /* make an illum face */
114 >        OBJREC  *ob,
115 >        struct illum_args  *il,
116 >        char  *nm
117 > )
118   {
119   #define MAXMISS         (5*n*il->nsamps)
120          int  dim[3];
121          int  n, nalt, nazi, h;
36        float  *distarr;
122          double  sp[2], r1, r2;
123          FVECT  dn, org, dir;
124          FVECT  u, v;
# Line 45 | Line 130 | char  *nm;
130          fa = getface(ob);
131          if (fa->area == 0.0) {
132                  freeface(ob);
133 <                o_default(ob, il, rt, nm);
49 <                return;
133 >                return(my_default(ob, il, nm));
134          }
135                                  /* set up sampling */
136          if (il->sampdens <= 0)
# Line 57 | Line 141 | char  *nm;
141                  nazi = PI*nalt + .5;
142          }
143          n = nalt*nazi;
144 <        distarr = (float *)calloc(n, 3*sizeof(float));
145 <        if (distarr == NULL)
62 <                error(SYSTEM, "out of memory in o_face");
63 <                                /* take first edge longer than sqrt(area) */
144 >        newdist(n);
145 >                                /* take first edge >= sqrt(area) */
146          for (j = fa->nv-1, i = 0; i < fa->nv; j = i++) {
147                  u[0] = VERTEX(fa,i)[0] - VERTEX(fa,j)[0];
148                  u[1] = VERTEX(fa,i)[1] - VERTEX(fa,j)[1];
# Line 110 | Line 192 | char  *nm;
192                      } while (!inface(org, fa) && nmisses++ < MAXMISS);
193                      if (nmisses > MAXMISS) {
194                          objerror(ob, WARNING, "bad aspect");
195 <                        rt->nrays = 0;
195 >                        rayclean();
196                          freeface(ob);
197                          free((void *)distarr);
198 <                        o_default(ob, il, rt, nm);
117 <                        return;
198 >                        return(my_default(ob, il, nm));
199                      }
200                      for (j = 0; j < 3; j++)
201 <                        org[j] += .001*fa->norm[j];
201 >                        org[j] += .0001*fa->norm[j];
202                                          /* send sample */
203 <                    raysamp(distarr+3*(dim[1]*nazi+dim[2]), org, dir, rt);
203 >                    raysamp(dim[1]*nazi+dim[2], org, dir);
204                  }
205 <        rayflush(rt);
205 >        rayclean();
206                                  /* write out the face and its distribution */
207          if (average(il, distarr, nalt*nazi)) {
208                  if (il->sampdens > 0)
# Line 131 | Line 212 | char  *nm;
212                  printobj(il->altmat, ob);
213                                  /* clean up */
214          freeface(ob);
215 <        free((void *)distarr);
215 >        return(0);
216   #undef MAXMISS
217   }
218  
219  
220 < o_sphere(ob, il, rt, nm)        /* make an illum sphere */
221 < register OBJREC  *ob;
222 < struct illum_args  *il;
223 < struct rtproc  *rt;
224 < char  *nm;
220 > int
221 > my_sphere(      /* make an illum sphere */
222 >        register OBJREC  *ob,
223 >        struct illum_args  *il,
224 >        char  *nm
225 > )
226   {
227          int  dim[3];
228          int  n, nalt, nazi;
147        float  *distarr;
229          double  sp[4], r1, r2, r3;
230          FVECT  org, dir;
231          FVECT  u, v;
# Line 161 | Line 242 | char  *nm;
242                  nazi = PI/2.*nalt + .5;
243          }
244          n = nalt*nazi;
245 <        distarr = (float *)calloc(n, 3*sizeof(float));
165 <        if (distarr == NULL)
166 <                error(SYSTEM, "out of memory in o_sphere");
245 >        newdist(n);
246          dim[0] = random();
247                                  /* sample sphere */
248          for (dim[1] = 0; dim[1] < nalt; dim[1]++)
# Line 188 | Line 267 | char  *nm;
267                          dir[j] = -dir[j];
268                      }
269                                          /* send sample */
270 <                    raysamp(distarr+3*(dim[1]*nazi+dim[2]), org, dir, rt);
270 >                    raysamp(dim[1]*nazi+dim[2], org, dir);
271                  }
272 <        rayflush(rt);
272 >        rayclean();
273                                  /* write out the sphere and its distribution */
274          if (average(il, distarr, nalt*nazi)) {
275                  if (il->sampdens > 0)
# Line 201 | Line 280 | char  *nm;
280          } else
281                  printobj(il->altmat, ob);
282                                  /* clean up */
283 <        free((void *)distarr);
283 >        return(1);
284   }
285  
286  
287 < o_ring(ob, il, rt, nm)          /* make an illum ring */
288 < OBJREC  *ob;
289 < struct illum_args  *il;
290 < struct rtproc  *rt;
291 < char  *nm;
287 > int
288 > my_ring(                /* make an illum ring */
289 >        OBJREC  *ob,
290 >        struct illum_args  *il,
291 >        char  *nm
292 > )
293   {
294          int  dim[3];
295          int  n, nalt, nazi;
216        float  *distarr;
296          double  sp[4], r1, r2, r3;
297          FVECT  dn, org, dir;
298          FVECT  u, v;
# Line 230 | Line 309 | char  *nm;
309                  nazi = PI*nalt + .5;
310          }
311          n = nalt*nazi;
312 <        distarr = (float *)calloc(n, 3*sizeof(float));
234 <        if (distarr == NULL)
235 <                error(SYSTEM, "out of memory in o_ring");
312 >        newdist(n);
313          mkaxes(u, v, co->ad);
314          dim[0] = random();
315                                  /* sample disk */
# Line 255 | Line 332 | char  *nm;
332                      r2 = r3*sin(r2);
333                      for (j = 0; j < 3; j++)
334                          org[j] = CO_P0(co)[j] + r1*u[j] + r2*v[j] +
335 <                                        .001*co->ad[j];
259 <
335 >                                                .0001*co->ad[j];
336                                          /* send sample */
337 <                    raysamp(distarr+3*(dim[1]*nazi+dim[2]), org, dir, rt);
337 >                    raysamp(dim[1]*nazi+dim[2], org, dir);
338                  }
339 <        rayflush(rt);
339 >        rayclean();
340                                  /* write out the ring and its distribution */
341          if (average(il, distarr, nalt*nazi)) {
342                  if (il->sampdens > 0)
# Line 270 | Line 346 | char  *nm;
346                  printobj(il->altmat, ob);
347                                  /* clean up */
348          freecone(ob);
349 <        free((void *)distarr);
349 >        return(1);
350   }
351  
352  
353 < raysamp(res, org, dir, rt)      /* compute a ray sample */
354 < float  res[3];
355 < FVECT  org, dir;
356 < register struct rtproc  *rt;
353 > static void
354 > mkaxes(                 /* compute u and v to go with n */
355 >        FVECT  u,
356 >        FVECT  v,
357 >        FVECT  n
358 > )
359   {
282        register float  *fp;
283
284        if (rt->nrays == rt->bsiz)
285                rayflush(rt);
286        rt->dest[rt->nrays] = res;
287        fp = rt->buf + 6*rt->nrays++;
288        *fp++ = org[0]; *fp++ = org[1]; *fp++ = org[2];
289        *fp++ = dir[0]; *fp++ = dir[1]; *fp = dir[2];
290 }
291
292
293 rayflush(rt)                    /* flush buffered rays */
294 register struct rtproc  *rt;
295 {
360          register int  i;
361  
298        if (rt->nrays <= 0)
299                return;
300        bzero(rt->buf+6*rt->nrays, 6*sizeof(float));
301        errno = 0;
302        if ( process(&(rt->pd), (char *)rt->buf, (char *)rt->buf,
303                        3*sizeof(float)*(rt->nrays+1),
304                        6*sizeof(float)*(rt->nrays+1)) <
305                        3*sizeof(float)*(rt->nrays+1) )
306                error(SYSTEM, "error reading from rtrace process");
307        i = rt->nrays;
308        while (i--) {
309                rt->dest[i][0] += rt->buf[3*i];
310                rt->dest[i][1] += rt->buf[3*i+1];
311                rt->dest[i][2] += rt->buf[3*i+2];
312        }
313        rt->nrays = 0;
314 }
315
316
317 mkaxes(u, v, n)                 /* compute u and v to go with n */
318 FVECT  u, v, n;
319 {
320        register int  i;
321
362          v[0] = v[1] = v[2] = 0.0;
363          for (i = 0; i < 3; i++)
364                  if (n[i] < 0.6 && n[i] > -0.6)
# Line 330 | Line 370 | FVECT  u, v, n;
370   }
371  
372  
373 < rounddir(dv, alt, azi)          /* compute uniform spherical direction */
374 < register FVECT  dv;
375 < double  alt, azi;
373 > static void
374 > rounddir(               /* compute uniform spherical direction */
375 >        register FVECT  dv,
376 >        double  alt,
377 >        double  azi
378 > )
379   {
380          double  d1, d2;
381  
# Line 344 | Line 387 | double  alt, azi;
387   }
388  
389  
390 < flatdir(dv, alt, azi)           /* compute uniform hemispherical direction */
391 < register FVECT  dv;
392 < double  alt, azi;
390 > static void
391 > flatdir(                /* compute uniform hemispherical direction */
392 >        register FVECT  dv,
393 >        double  alt,
394 >        double  azi
395 > )
396   {
397          double  d1, d2;
398  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines