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

Comparing ray/src/hd/rholo3.c (file contents):
Revision 3.12 by gregl, Mon Dec 1 16:35:02 1997 UTC vs.
Revision 3.21 by gwlarson, Mon Feb 2 11:42:10 1998 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1997 Silicon Graphics, Inc. */
1 > /* Copyright (c) 1998 Silicon Graphics, Inc. */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ SGI";
# Line 27 | Line 27 | register PACKHEAD      *b0, *b1;
27   }
28  
29  
30 + int
31 + dispbeam(b, hp, bi)                     /* display a holodeck beam */
32 + register BEAM   *b;
33 + HOLO    *hp;
34 + int     bi;
35 + {
36 +        static int      n = 0;
37 +        static PACKHEAD *p = NULL;
38 +
39 +        if (b == NULL)
40 +                return;
41 +        if (b->nrm > n) {               /* (re)allocate packet holder */
42 +                n = b->nrm;
43 +                if (p == NULL) p = (PACKHEAD *)malloc(packsiz(n));
44 +                else p = (PACKHEAD *)realloc((char *)p, packsiz(n));
45 +                if (p == NULL)
46 +                        error(SYSTEM, "out of memory in dispbeam");
47 +        }
48 +                                        /* assign packet fields */
49 +        bcopy((char *)hdbray(b), (char *)packra(p), b->nrm*sizeof(RAYVAL));
50 +        p->nr = p->nc = b->nrm;
51 +        for (p->hd = 0; hdlist[p->hd] != hp; p->hd++)
52 +                if (hdlist[p->hd] == NULL)
53 +                        error(CONSISTENCY, "unregistered holodeck in dispbeam");
54 +        p->bi = bi;
55 +        disp_packet(p);                 /* display it */
56 + }
57 +
58 +
59   bundle_set(op, clist, nents)    /* bundle set operation */
60   int     op;
61 < PACKHEAD        *clist;
61 > register PACKHEAD       *clist;
62   int     nents;
63   {
64 <        BEAM    *b;
36 <        PACKHEAD        *p;
64 >        int     oldnr;
65          register int    i, n;
66 <
66 >                                /* look for common members */
67 >        for (n = 0; n < nents; n++) {
68 >                for (i = 0; i < complen; i++)
69 >                        if (clist[n].bi == complist[i].bi &&
70 >                                        clist[n].hd == complist[i].hd) {
71 >                                oldnr = complist[i].nr;
72 >                                clist[n].nc = complist[i].nc;
73 >                                switch (op) {
74 >                                case BS_ADD:            /* add to count */
75 >                                        complist[i].nr += clist[n].nr;
76 >                                        clist[n].nr = 0;
77 >                                        break;
78 >                                case BS_ADJ:            /* reset count */
79 >                                        complist[i].nr = clist[n].nr;
80 >                                        clist[n].nr = 0;
81 >                                        break;
82 >                                case BS_DEL:            /* delete count */
83 >                                        if (clist[n].nr == 0 ||
84 >                                                clist[n].nr >= complist[i].nr)
85 >                                                complist[i].nr = 0;
86 >                                        else
87 >                                                complist[i].nr -= clist[n].nr;
88 >                                        break;
89 >                                }
90 >                                if (complist[i].nr != oldnr)
91 >                                        lastin = -1;    /* flag sort */
92 >                                break;
93 >                        }
94 >                if (i >= complen)
95 >                        clist[n].nc = bnrays(hdlist[clist[n].hd], clist[n].bi);
96 >        }
97 >                                /* complete list operations */
98          switch (op) {
99          case BS_NEW:                    /* new computation set */
100 <                if (complen)
100 >                listpos = 0; lastin = -1;
101 >                if (complen)            /* free old list */
102                          free((char *)complist);
103 <                if (nents <= 0) {
104 <                        complist = NULL;
45 <                        listpos = complen = 0;
46 <                        lastin = -1;
103 >                complist = NULL;
104 >                if (!(complen = nents))
105                          return;
48                }
106                  complist = (PACKHEAD *)malloc(nents*sizeof(PACKHEAD));
107                  if (complist == NULL)
108                          goto memerr;
109                  bcopy((char *)clist, (char *)complist, nents*sizeof(PACKHEAD));
53                complen = nents;        /* finish initialization below */
110                  break;
111          case BS_ADD:                    /* add to computation set */
112          case BS_ADJ:                    /* adjust set quantities */
113                  if (nents <= 0)
114                          return;
115 <                                        /* merge any common members */
60 <                for (n = 0; n < nents; n++) {
61 <                        for (i = 0; i < complen; i++)
62 <                                if (clist[n].bi == complist[i].bi &&
63 <                                                clist[n].hd == complist[i].hd) {
64 <                                        int     oldnr = complist[i].nr;
65 <                                        if (op == BS_ADD)
66 <                                                complist[i].nr += clist[n].nr;
67 <                                        else /* op == BS_ADJ */
68 <                                                complist[i].nr = clist[n].nr;
69 <                                        clist[n].nr = 0;
70 <                                        clist[n].nc = complist[i].nc;
71 <                                        if (complist[i].nr != oldnr)
72 <                                                lastin = -1;    /* flag sort */
73 <                                        break;
74 <                                }
75 <                        if (i >= complen)
76 <                                clist[n].nc = bnrays(hdlist[clist[n].hd],
77 <                                                clist[n].bi);
78 <                }
79 <                                        /* sort updated list */
80 <                sortcomplist();
81 <                                        /* sort new entries */
115 >                sortcomplist();         /* sort updated list & new entries */
116                  qsort((char *)clist, nents, sizeof(PACKHEAD), beamcmp);
117                                          /* what can't we satisfy? */
118                  for (n = 0; n < nents && clist[n].nr > clist[n].nc; n++)
# Line 102 | Line 136 | int    nents;
136                  lastin = complen-1;     /* list is now sorted */
137                  break;
138          case BS_DEL:                    /* delete from computation set */
139 <                if (nents <= 0)
106 <                        return;
107 <                                        /* find each member */
108 <                for (i = 0; i < complen; i++)
109 <                        for (n = 0; n < nents; n++)
110 <                                if (clist[n].bi == complist[i].bi &&
111 <                                                clist[n].hd == complist[i].hd) {
112 <                                        if (clist[n].nr == 0 ||
113 <                                                clist[n].nr >= complist[i].nr)
114 <                                                complist[i].nr = 0;
115 <                                        else
116 <                                                complist[i].nr -= clist[n].nr;
117 <                                        lastin = -1;    /* flag full sort */
118 <                                        break;
119 <                                }
120 <                return;                 /* no display */
139 >                return;                 /* already done */
140          default:
141                  error(CONSISTENCY, "bundle_set called with unknown operation");
142          }
143 <        if (outdev == NULL)
144 <                return;
145 <        n = 32*RPACKSIZ;                /* allocate packet holder */
146 <        p = (PACKHEAD *)malloc(packsiz(n));
147 <        if (p == NULL)
148 <                goto memerr;
149 <                                        /* display what we have */
131 <        for (i = 0; i < nents; i++)
132 <                if ((b = hdgetbeam(hdlist[clist[i].hd], clist[i].bi)) != NULL) {
133 <                        if (b->nrm > n) {
134 <                                n = b->nrm;
135 <                                p = (PACKHEAD *)realloc((char *)p, packsiz(n));
136 <                                if (p == NULL)
137 <                                        goto memerr;
138 <                        }
139 <                        bcopy((char *)hdbray(b), (char *)packra(p),
140 <                                        b->nrm*sizeof(RAYVAL));
141 <                        p->hd = clist[i].hd;
142 <                        p->bi = clist[i].bi;
143 <                        p->nr = p->nc = b->nrm;
144 <                        disp_packet(p);
143 >        if (outdev != NULL) {           /* load and display beams we have */
144 >                register HDBEAMI        *hb;
145 >
146 >                hb = (HDBEAMI *)malloc(nents*sizeof(HDBEAMI));
147 >                for (i = 0; i < nents; i++) {
148 >                        hb[i].h = hdlist[clist[i].hd];
149 >                        hb[i].b = clist[i].bi;
150                  }
151 <        free((char *)p);                /* clean up */
152 <        if (op == BS_NEW) {
148 <                done_packets(flush_queue());    /* empty queue, so we can... */
149 <                for (i = 0; i < complen; i++)   /* ...get number computed */
150 <                        complist[i].nc = bnrays(hdlist[complist[i].hd],
151 <                                                complist[i].bi);
152 <                listpos = 0;
153 <                lastin = -1;            /* flag for initial sort */
151 >                hdloadbeams(hb, nents, dispbeam);
152 >                free((char *)hb);
153          }
154          return;
155   memerr:
# Line 158 | Line 157 | memerr:
157   }
158  
159  
160 < int
161 < weightf(hp, x0, x1, x2)         /* voxel weighting function */
163 < register HOLO   *hp;
164 < register int    x0, x1, x2;
165 < {
166 <        switch (vlet(OCCUPANCY)) {
167 <        case 'U':               /* uniform weighting */
168 <                return(1);
169 <        case 'C':               /* center weighting (crude) */
170 <                x0 += x0 - hp->grid[0] + 1;
171 <                x0 = abs(x0)*hp->grid[1]*hp->grid[2];
172 <                x1 += x1 - hp->grid[1] + 1;
173 <                x1 = abs(x1)*hp->grid[0]*hp->grid[2];
174 <                x2 += x2 - hp->grid[2] + 1;
175 <                x2 = abs(x2)*hp->grid[0]*hp->grid[1];
176 <                return(hp->grid[0]*hp->grid[1]*hp->grid[2] -
177 <                                (x0+x1+x2)/3);
178 <        default:
179 <                badvalue(OCCUPANCY);
180 <        }
181 < }
182 <
183 <
184 < /* The following is by Daniel Cohen, taken from Graphics Gems IV, p. 368 */
185 < long
186 < lineweight(hp, x, y, z, dx, dy, dz)     /* compute weights along a line */
160 > double
161 > beamvolume(hp, bi)      /* compute approximate volume of a beam */
162   HOLO    *hp;
163 < int     x, y, z, dx, dy, dz;
163 > int     bi;
164   {
165 <        long    wres = 0;
166 <        int     n, sx, sy, sz, exy, exz, ezy, ax, ay, az, bx, by, bz;
167 <
168 <        sx = sgn(dx);   sy = sgn(dy);   sz = sgn(dz);
169 <        ax = abs(dx);   ay = abs(dy);   az = abs(dz);
170 <        bx = 2*ax;      by = 2*ay;      bz = 2*az;
171 <        exy = ay-ax;    exz = az-ax;    ezy = ay-az;
172 <        n = ax+ay+az + 1;               /* added increment to visit last */
173 <        while (n--) {
174 <                wres += weightf(hp, x, y, z);
175 <                if (exy < 0) {
176 <                        if (exz < 0) {
177 <                                x += sx;
178 <                                exy += by; exz += bz;
179 <                        } else {
180 <                                z += sz;
181 <                                exz -= bx; ezy += by;
207 <                        }
208 <                } else {
209 <                        if (ezy < 0) {
210 <                                z += sz;
211 <                                exz -= bx; ezy += by;
212 <                        } else {
213 <                                y += sy;
214 <                                exy -= bx; ezy -= bz;
215 <                        }
216 <                }
165 >        GCOORD  gc[2];
166 >        FVECT   cp[4], edgeA, edgeB, cent[2];
167 >        FVECT   v, crossp[2], diffv;
168 >        double  vol[2];
169 >        register int    i;
170 >                                        /* get grid coordinates */
171 >        if (!hdbcoord(gc, hp, bi))
172 >                error(CONSISTENCY, "bad beam index in beamvolume");
173 >        for (i = 0; i < 2; i++) {       /* compute cell area vectors */
174 >                hdcell(cp, hp, gc+i);
175 >                VSUM(edgeA, cp[1], cp[0], -1.0);
176 >                VSUM(edgeB, cp[3], cp[1], -1.0);
177 >                fcross(crossp[i], edgeA, edgeB);
178 >                                        /* compute center */
179 >                cent[i][0] = 0.5*(cp[0][0] + cp[2][0]);
180 >                cent[i][1] = 0.5*(cp[0][1] + cp[2][1]);
181 >                cent[i][2] = 0.5*(cp[0][2] + cp[2][2]);
182          }
183 <        return(wres);
183 >                                        /* compute difference vector */
184 >        VSUM(diffv, cent[1], cent[0], -1.0);
185 >        for (i = 0; i < 2; i++) {       /* compute volume contributions */
186 >                vol[i] = 0.5*DOT(crossp[i], diffv);
187 >                if (vol[i] < 0.) vol[i] = -vol[i];
188 >        }
189 >        return(vol[0] + vol[1]);        /* return total volume */
190   }
191  
192  
193   init_global()                   /* initialize global ray computation */
194   {
195          long    wtotal = 0;
225        int     i, j;
226        int     lseg[2][3];
196          double  frac;
197 <        register int    k;
198 <                                        /* free old list */
199 <        if (complen > 0)
197 >        int     i;
198 >        register int    j, k;
199 >                                        /* free old list and empty queue */
200 >        if (complen > 0) {
201                  free((char *)complist);
202 +                done_packets(flush_queue());
203 +        }
204                                          /* allocate beam list */
205          complen = 0;
206          for (j = 0; hdlist[j] != NULL; j++)
# Line 238 | Line 210 | init_global()                  /* initialize global ray computation *
210                  error(SYSTEM, "out of memory in init_global");
211                                          /* compute beam weights */
212          k = 0;
213 <        for (j = 0; hdlist[j] != NULL; j++)
213 >        for (j = 0; hdlist[j] != NULL; j++) {
214 >                frac = 512. * VLEN(hdlist[j]->wg[0]) *
215 >                                VLEN(hdlist[j]->wg[1]) *
216 >                                VLEN(hdlist[j]->wg[2]);
217                  for (i = nbeams(hdlist[j]); i > 0; i--) {
243                        hdlseg(lseg, hdlist[j], i);
218                          complist[k].hd = j;
219                          complist[k].bi = i;
220 <                        complist[k].nr = lineweight( hdlist[j],
221 <                                        lseg[0][0], lseg[0][1], lseg[0][2],
248 <                                        lseg[1][0] - lseg[0][0],
249 <                                        lseg[1][1] - lseg[0][1],
250 <                                        lseg[1][2] - lseg[0][2] );
220 >                        complist[k].nr = frac*beamvolume(hdlist[j], i) + 0.5;
221 >                        complist[k].nc = bnrays(hdlist[j], i);
222                          wtotal += complist[k++].nr;
223                  }
224 +        }
225                                          /* adjust weights */
226          if (vdef(DISKSPACE))
227                  frac = 1024.*1024.*vflt(DISKSPACE) / (wtotal*sizeof(RAYVAL));
# Line 257 | Line 229 | init_global()                  /* initialize global ray computation *
229                  frac = 1024.*1024.*16384. / (wtotal*sizeof(RAYVAL));
230          while (k--)
231                  complist[k].nr = frac * complist[k].nr;
232 <        listpos = 0; lastin = -1;       /* flag initial sort */
232 >        listpos = 0; lastin = -1;       /* perform initial sort */
233 >        sortcomplist();
234   }
235  
236  
237   mergeclists(cdest, cl1, n1, cl2, n2)    /* merge two sorted lists */
238 < PACKHEAD        *cdest;
239 < PACKHEAD        *cl1, *cl2;
238 > register PACKHEAD       *cdest;
239 > register PACKHEAD       *cl1, *cl2;
240   int     n1, n2;
241   {
242 <        int     cmp;
242 >        register int    cmp;
243  
244          while (n1 | n2) {
245                  if (!n1) cmp = 1;
# Line 331 | Line 304 | sortcomplist()                 /* fix our list order */
304   * list and start again from the beginning.  Since
305   * a merge sort is used, the sorting costs are minimal.
306   */
307 < next_packet(p)                  /* prepare packet for computation */
307 > next_packet(p, n)               /* prepare packet for computation */
308   register PACKET *p;
309 + int     n;
310   {
311          register int    i;
312  
# Line 346 | Line 320 | register PACKET        *p;
320          p->nr = complist[listpos].nr - p->nc;
321          if (p->nr <= 0)
322                  return(0);
323 <        if (p->nr > RPACKSIZ)
324 <                p->nr = RPACKSIZ;
323 > #ifdef DEBUG
324 >        if (n < 1 | n > RPACKSIZ)
325 >                error(CONSISTENCY, "next_packet called with bad n value");
326 > #endif
327 >        if (p->nr > n)
328 >                p->nr = n;
329          complist[listpos].nc += p->nr;  /* find where this one would go */
330          while (lastin > listpos &&
331                          beamcmp(complist+lastin, complist+listpos) > 0)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines