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

Comparing ray/src/hd/rhdisp.c (file contents):
Revision 3.37 by gwlarson, Fri Dec 18 11:56:10 1998 UTC vs.
Revision 3.43 by greg, Sat Feb 22 02:07:24 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1998 Silicon Graphics, Inc. */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ SGI";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Holodeck display process.
6   */
# Line 22 | Line 19 | static char SCCSid[] = "$SunId$ SGI";
19   #define FSIZDEF         0.125   /* default focus frame size */
20   #endif
21  
22 + #if defined(freebsd)
23 + #define fbufcnt(f)      ((f)->_r)
24 + #elif defined(__GNUC__)
25 + #define fbufcnt(f)      ((f)->_IO_read_end - (f)->_IO_read_ptr)
26 + #else
27 + #define fbufcnt(f)      ((f)->_cnt)
28 + #endif
29 +
30   HOLO    *hdlist[HDMAX+1];       /* global holodeck list */
31  
32 < char    *hdofn[HDMAX+1];        /* holodeck section octree list */
32 > char    *hdgfn[HDMAX];          /* holodeck section geometry list */
33 > char    *hdpfn[HDMAX];          /* section portal list */
34  
35   char    cmdlist[DC_NCMDS][8] = DC_INIT;
36  
# Line 39 | Line 45 | char   *progname;              /* global argv[0] */
45   FILE    *sstdin, *sstdout;      /* server's standard input and output */
46  
47   #ifdef DEBUG
42 #include <sys/types.h>
48   extern time_t   time();
49   static time_t   tmodesw;
50   static time_t   timm, tadd;
# Line 55 | Line 60 | main(argc, argv)
60   int     argc;
61   char    *argv[];
62   {
58        extern int      eputs();
63          int     rdy, inp, res = 0, pause = 0;
64  
65          progname = argv[0];
# Line 154 | Line 158 | disp_wait()                    /* wait for more input */
158          int     n;
159          register int    i;
160                                  /* see if we can avoid select call */
161 +        if (hdlist[0] == NULL)
162 +                return(RDY_SRV);        /* initialize first */
163          flgs = 0;               /* flag what's ready already */
164 <        if (imm_mode || stdin->_cnt > 0)
164 >        if (imm_mode || fbufcnt(stdin) > 0)
165                  flgs |= RDY_SRV;
166 <        if (sstdin != NULL && sstdin->_cnt > 0)
166 >        if (sstdin != NULL && fbufcnt(sstdin) > 0)
167                  flgs |= RDY_SIN;
168          if (odev.inpready)
169                  flgs |= RDY_DEV;
# Line 195 | Line 201 | disp_wait()                    /* wait for more input */
201   }
202  
203  
204 < add_holo(hdg, ofn)              /* register a new holodeck section */
204 > add_holo(hdg, gfn, pfn)         /* register a new holodeck section */
205   HDGRID  *hdg;
206 < char    *ofn;
206 > char    *gfn, *pfn;
207   {
208          VIEW    nv;
209          double  d;
# Line 212 | Line 218 | char   *ofn;
218                  error(SYSTEM, "out of memory in add_holo");
219          bcopy((char *)hdg, (char *)hdlist[hd], sizeof(HDGRID));
220          hdcompgrid(hdlist[hd]);
221 <        hdofn[hd] = savestr(ofn);
221 >        hdgfn[hd] = savestr(gfn);
222 >        hdpfn[hd] = pfn && *pfn ? savestr(pfn) : (char *)NULL;
223          if (hd)
224                  return;
225                                          /* set initial viewpoint */
# Line 267 | Line 274 | register VIEW  *v;
274          static VIEW     viewhist[VIEWHISTLEN];
275          static unsigned nhist;
276          VIEW    *dv;
277 <        int     i, res[2], *slist;
277 >        int     i, res[2];
278 >        int2    *slist;
279          char    *err;
280                                  /* restore previous view? */
281          if (v == NULL) {
# Line 300 | Line 308 | again:
308                          goto again;     /* poss. overloading dev_section()? */
309                  }
310                  DCHECK(*slist < 0, WARNING, "no visible sections in new_view");
311 <                while (*slist >= 0)
312 <                        dev_section(hdofn[*slist++]);
311 >                for ( ; *slist >= 0; slist++)
312 >                        dev_section(hdgfn[*slist], hdpfn[*slist]);
313          }
314 <        dev_section(NULL);      /* end section list */
314 >        dev_section(NULL,NULL); /* end section list */
315          dev_flush();            /* update display */
316                                  /* update server */
317          imm_mode = beam_sync(odev.firstuse) > 0;
# Line 486 | Line 494 | serv_result()                  /* get next server result and process
494                  disp_bundle((PACKHEAD *)buf);
495                  break;
496          case DS_ADDHOLO:
497 <                if (msg.nbytes <= sizeof(HDGRID))
497 >                if (msg.nbytes < sizeof(HDGRID)+2)
498                          error(INTERNAL, "bad holodeck record from server");
499 <                add_holo((HDGRID *)buf, buf+sizeof(HDGRID));
499 >                add_holo((HDGRID *)buf, buf+sizeof(HDGRID),
500 >                        buf+sizeof(HDGRID)+strlen(buf+sizeof(HDGRID))+1);
501                  break;
502          case DS_OUTSECT:
503                  do_outside = 1;
# Line 499 | Line 508 | serv_result()                  /* get next server result and process
508                  break;
509          case DS_STARTIMM:
510          case DS_ENDIMM:
511 +                if (!(imm_mode = msg.type==DS_STARTIMM))
512 +                        dev_flush();
513   #ifdef DEBUG
514                  {
515                          time_t  tnow = time(NULL);
# Line 507 | Line 518 | serv_result()                  /* get next server result and process
518                          tmodesw = tnow;
519                  }
520   #endif
510                if (!(imm_mode = msg.type==DS_STARTIMM))
511                        dev_flush();
521                  goto noargs;
522          case DS_ACKNOW:
523          case DS_SHUTDOWN:
# Line 557 | Line 566 | char   *p;
566   }
567  
568  
569 + void
570   eputs(s)                        /* put error message to stderr */
571   register char  *s;
572   {
# Line 576 | Line 586 | register char  *s;
586   }
587  
588  
589 + void
590   quit(code)                      /* clean up and exit */
591   int     code;
592   {
593 +        if (code)
594 +                exit(code);
595          if (odev.v.type)
596                  dev_close();
597 <        exit(code);
597 >        exit(0);
598   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines