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

Comparing ray/src/hd/rhdisp2.c (file contents):
Revision 3.6 by gregl, Mon Nov 24 15:17:28 1997 UTC vs.
Revision 3.9 by gregl, Fri Dec 5 15:50:43 1997 UTC

# Line 12 | Line 12 | static char SCCSid[] = "$SunId$ SGI";
12   #include "rhdisp.h"
13   #include "rhdriver.h"
14  
15 + #ifndef MAXDIST
16 + #define MAXDIST         13      /* maximum distance outside section */
17 + #endif
18 +
19   extern GCOORD   *getviewcells();
20  
21 + static VIEW     dvw;            /* current view corresponding to beam list */
22 +
23   typedef struct {
24          int     hd;             /* holodeck section number (-1 if inactive) */
25          int     i[3];           /* voxel index (may be outside section) */
# Line 156 | Line 162 | int    adopt;
162   }
163  
164  
165 + cbeamadj(v, hr, vr)             /* adjust our beam list */
166 + VIEW    *v;
167 + int     hr, vr;
168 + {
169 +        register PACKHEAD       *pa;
170 +        register int    i;
171 +        int     n;
172 +                                        /* first handle additions */
173 +        pa = (PACKHEAD *)malloc(xcbeams*sizeof(PACKHEAD));
174 +        if (xcbeams && pa == NULL)
175 +                goto memerr;
176 +        for (i = xcbeams; i--; ) {
177 +                pa[i].hd = cbeam[ncbeams+i].hd;
178 +                pa[i].bi = cbeam[ncbeams+i].bi;
179 +                pa[i].nr = npixels(v, hr, vr, hdlist[pa[i].hd], pa[i].bi);
180 +        }
181 +        n = xcbeams;                    /* now sort list for deletions */
182 +        cbeamsort(0);
183 +        pa = (PACKHEAD *)realloc((char *)pa, (n+xcbeams)*sizeof(PACKHEAD));
184 +        if (n+xcbeams && pa == NULL)
185 +                goto memerr;
186 +        for (i = xcbeams; i--; ) {
187 +                pa[n+i].hd = cbeam[ncbeams+i].hd;
188 +                pa[n+i].bi = cbeam[ncbeams+i].bi;
189 +                pa[n+i].nr = 0;
190 +        }
191 +        n += xcbeams;
192 +        xcbeams = 0;                    /* delete orphans */
193 +        serv_request(DR_ADJSET, n*sizeof(PACKHEAD), (char *)pa);
194 +        free((char *)pa);
195 +        return;
196 + memerr:
197 +        error(SYSTEM, "out of memory in cbeamadj");
198 + }
199 +
200 +
201   cbeamop(op, bl, n, v, hr, vr)   /* update beams on server list */
202   int     op;
203   register struct beamcomp        *bl;
# Line 257 | Line 299 | FVECT  vp;
299                          n++;
300                  }
301          }
302 +                                        /* check for really stupid move */
303 +        if (bestd > MAXDIST) {
304 +                error(WARNING, "move to outer solar system");
305 +                return(0);
306 +        }
307                                          /* warn of dangerous moves */
308          if (n < lastn && bestd >= lastd)
309                  error(WARNING, "moving outside holodeck section");
# Line 361 | Line 408 | VIEW   *vold, *vnew;
408          struct cellact  oca, nca;
409          int     ocnt, ncnt;
410          int     c;
411 +        GCOORD  *ogcl, *ngcl;
412          register GCOORD *ogcp, *ngcp;
413                                  /* get old and new cell lists */
414 <        ogcp = getviewcells(&ocnt, hdlist[voxel[voxi].hd], vold);
415 <        ngcp = getviewcells(&ncnt, hdlist[voxel[voxi].hd], vnew);
414 >        ogcp = ogcl = getviewcells(&ocnt, hdlist[voxel[voxi].hd], vold);
415 >        ngcp = ngcl = getviewcells(&ncnt, hdlist[voxel[voxi].hd], vnew);
416                                  /* set up actions */
417          oca.vi = nca.vi = voxi;
418          oca.rev = nca.rev = 0;
# Line 391 | Line 439 | VIEW   *vold, *vnew;
439          for ( ; ocnt > 0; ocnt--)
440                  netchange -= docell(ogcp++, &oca);
441                                  /* clean up */
442 <        if (ogcp != NULL) free((char *)ogcp);
443 <        if (ngcp != NULL) free((char *)ngcp);
442 >        if (ogcl != NULL) free((char *)ogcl);
443 >        if (ngcl != NULL) free((char *)ngcl);
444          return(netchange);
445   }
446  
# Line 403 | Line 451 | beam_sync()            /* synchronize beams on server */
451   }
452  
453  
454 < beam_view(vo, vn)       /* change beam view */
455 < VIEW    *vo, *vn;
454 > beam_view(vn)                   /* change beam view (if advisable) */
455 > VIEW    *vn;
456   {
457          struct cellact  ca;
458          VOXL    vlnew[8];
# Line 414 | Line 462 | VIEW   *vo, *vn;
462                  set_voxels(vlnew, 0);
463                  cbeamop(DR_DELSET, cbeam, ncbeams, NULL, 0, 0);
464                  ncbeams = 0;
465 <                return;
465 >                copystruct(&dvw, vn);
466 >                return(1);
467          }
468                                          /* find our new voxels */
469          n = get_voxels(vlnew, vn->vp);
470 +        if (dvw.type && !n) {
471 +                copystruct(vn, &dvw);           /* cancel move */
472 +                return(0);
473 +        }
474                                          /* set the new voxels */
475          comn = set_voxels(vlnew, n);
476 <        if (!vo->type)
476 >        if (!dvw.type)
477                  comn = 0;
478          ca.add = 1;                     /* update our beam list */
479          for (ca.vi = n; ca.vi--; )
480                  if (comn & 1<<ca.vi)    /* change which cells we see */
481 <                        mvview(ca.vi, vo, vn);
481 >                        mvview(ca.vi, &dvw, vn);
482                  else                    /* else add all new cells */
483                          doview(&ca, vn);
484 + #if 1
485 +        cbeamadj(vn, odev.hres, odev.vres);
486 + #else
487                                          /* inform server of new beams */
488          cbeamop(DR_ADDSET, cbeam+ncbeams, xcbeams, vn, odev.hres, odev.vres);
489                                          /* sort list to put orphans at end */
# Line 435 | Line 491 | VIEW   *vo, *vn;
491                                          /* tell server to delete orphans */
492          cbeamop(DR_DELSET, cbeam+ncbeams, xcbeams, NULL, 0, 0);
493          xcbeams = 0;                    /* truncate our list */
494 + #endif
495 +        copystruct(&dvw, vn);           /* record new view */
496 +        return(1);
497   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines