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.36 by gwlarson, Thu Dec 10 10:45:54 1998 UTC vs.
Revision 3.47 by schorsch, Mon Jun 30 14:59:11 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   */
7  
8 + #include <string.h>
9 + #include <ctype.h>
10 +
11   #include "rholo.h"
12   #include "rhdisp.h"
13   #include "rhdriver.h"
14   #include "selcall.h"
15 #include <ctype.h>
15  
16   #ifndef VIEWHISTLEN
17   #define VIEWHISTLEN     4       /* number of remembered views */
# Line 22 | Line 21 | static char SCCSid[] = "$SunId$ SGI";
21   #define FSIZDEF         0.125   /* default focus frame size */
22   #endif
23  
24 + #if defined(freebsd)
25 + #define fbufcnt(f)      ((f)->_r)
26 + #elif defined(__GNUC__)
27 + #define fbufcnt(f)      ((f)->_IO_read_end - (f)->_IO_read_ptr)
28 + #else
29 + #define fbufcnt(f)      ((f)->_cnt)
30 + #endif
31 +
32   HOLO    *hdlist[HDMAX+1];       /* global holodeck list */
33  
34 + char    *hdgfn[HDMAX];          /* holodeck section geometry list */
35 + char    *hdpfn[HDMAX];          /* section portal list */
36 +
37   char    cmdlist[DC_NCMDS][8] = DC_INIT;
38  
39   int     imm_mode = 0;           /* bundles are being delivered immediately */
# Line 37 | Line 47 | char   *progname;              /* global argv[0] */
47   FILE    *sstdin, *sstdout;      /* server's standard input and output */
48  
49   #ifdef DEBUG
40 #include <sys/types.h>
50   extern time_t   time();
51   static time_t   tmodesw;
52   static time_t   timm, tadd;
# Line 53 | Line 62 | main(argc, argv)
62   int     argc;
63   char    *argv[];
64   {
56        extern int      eputs();
65          int     rdy, inp, res = 0, pause = 0;
66  
67          progname = argv[0];
# Line 88 | Line 96 | char   *argv[];
96                          inp = dev_input();
97                          if (inp & DFL(DC_SETVIEW))
98                                  new_view(&odev.v);
99 +                        else if (inp & DFL(DC_LASTVIEW))
100 +                                new_view(NULL);
101 +                        if (inp & DFL(DC_REDRAW))
102 +                                imm_mode = beam_sync(1) > 0;
103                          if (inp & DFL(DC_GETVIEW))
104                                  printview();
93                        if (inp & DFL(DC_LASTVIEW))
94                                new_view(NULL);
105                          if (inp & DFL(DC_FOCUS))
106                                  set_focus(odev_args);
107                          if (inp & DFL(DC_KILL)) {
# Line 110 | Line 120 | char   *argv[];
120                          }
121                          if (inp & DFL(DC_PAUSE))
122                                  pause = 1;
113                        if (inp & DFL(DC_REDRAW))
114                                imm_mode = beam_sync(1) > 0;
123                          if (inp & DFL(DC_QUIT))
124                                  serv_request(DR_SHUTDOWN, 0, NULL);
125                  }
# Line 152 | Line 160 | disp_wait()                    /* wait for more input */
160          int     n;
161          register int    i;
162                                  /* see if we can avoid select call */
163 +        if (hdlist[0] == NULL)
164 +                return(RDY_SRV);        /* initialize first */
165          flgs = 0;               /* flag what's ready already */
166 <        if (imm_mode || stdin->_cnt > 0)
166 >        if (imm_mode || fbufcnt(stdin) > 0)
167                  flgs |= RDY_SRV;
168 <        if (sstdin != NULL && sstdin->_cnt > 0)
168 >        if (sstdin != NULL && fbufcnt(sstdin) > 0)
169                  flgs |= RDY_SIN;
170          if (odev.inpready)
171                  flgs |= RDY_DEV;
# Line 193 | Line 203 | disp_wait()                    /* wait for more input */
203   }
204  
205  
206 < add_holo(hdg)                   /* register a new holodeck section */
206 > add_holo(hdg, gfn, pfn)         /* register a new holodeck section */
207   HDGRID  *hdg;
208 + char    *gfn, *pfn;
209   {
210          VIEW    nv;
211          double  d;
# Line 207 | Line 218 | HDGRID *hdg;
218          hdlist[hd] = (HOLO *)malloc(sizeof(HOLO));
219          if (hdlist[hd] == NULL)
220                  error(SYSTEM, "out of memory in add_holo");
221 <        bcopy((char *)hdg, (char *)hdlist[hd], sizeof(HDGRID));
221 >        memcpy((void *)hdlist[hd], (void *)hdg, sizeof(HDGRID));
222          hdcompgrid(hdlist[hd]);
223 +        hdgfn[hd] = savestr(gfn);
224 +        hdpfn[hd] = pfn && *pfn ? savestr(pfn) : (char *)NULL;
225          if (hd)
226                  return;
227                                          /* set initial viewpoint */
# Line 264 | Line 277 | register VIEW  *v;
277          static unsigned nhist;
278          VIEW    *dv;
279          int     i, res[2];
280 +        int16   *slist;
281          char    *err;
282                                  /* restore previous view? */
283          if (v == NULL) {
# Line 279 | Line 293 | again:
293                  error(COMMAND, err);
294                  return;
295          }
296 +        if (!dev_view(v))       /* notify display driver */
297 +                goto again;
298          if (v->type == VT_PAR) {
299                  error(COMMAND, "cannot handle parallel views");
300                  return;
301          }
302 <        if (!dev_view(v))       /* notify display driver */
303 <                goto again;
304 <        dev_flush();            /* update screen */
289 <        beam_init(0);           /* compute new beam set */
290 <        for (i = 0; (dv = dev_auxview(i, res)) != NULL; i++)
291 <                if (!beam_view(dv, res[0], res[1])) {
302 >        beam_init(odev.firstuse);       /* compute new beam set */
303 >        for (i = 0; (dv = dev_auxview(i, res)) != NULL; i++) {
304 >                if ((slist = beam_view(dv, res[0], res[1])) == NULL) {
305                          if (!nhist) {
306                                  error(COMMAND, "invalid starting view");
307                                  return;
308                          }
309                          copystruct(v, viewhist + ((nhist-1)%VIEWHISTLEN));
310 <                        goto again;
311 <                }      
310 >                        goto again;     /* poss. overloading dev_section()? */
311 >                }
312 >                DCHECK(*slist < 0, WARNING, "no visible sections in new_view");
313 >                for ( ; *slist >= 0; slist++)
314 >                        dev_section(hdgfn[*slist], hdpfn[*slist]);
315 >        }
316 >        dev_section(NULL,NULL); /* end section list */
317 >        dev_flush();            /* update display */
318                                  /* update server */
319 <        imm_mode = beam_sync(0) > 0;
319 >        imm_mode = beam_sync(odev.firstuse) > 0;
320                                  /* record new view */
321          if (v < viewhist || v >= viewhist+VIEWHISTLEN) {
322                  copystruct(viewhist + (nhist%VIEWHISTLEN), v);
# Line 462 | Line 481 | serv_result()                  /* get next server result and process
481                          if (buf == NULL)
482                                  buf = (char *)malloc(bufsiz=msg.nbytes);
483                          else
484 <                                buf = (char *)realloc(buf, bufsiz=msg.nbytes);
484 >                                buf = (char *)realloc((void *)buf,
485 >                                                bufsiz=msg.nbytes);
486                          if (buf == NULL)
487                                  error(SYSTEM, "out of memory in serv_result");
488                  }
# Line 477 | Line 497 | serv_result()                  /* get next server result and process
497                  disp_bundle((PACKHEAD *)buf);
498                  break;
499          case DS_ADDHOLO:
500 <                if (msg.nbytes != sizeof(HDGRID))
500 >                if (msg.nbytes < sizeof(HDGRID)+2)
501                          error(INTERNAL, "bad holodeck record from server");
502 <                add_holo((HDGRID *)buf);
502 >                add_holo((HDGRID *)buf, buf+sizeof(HDGRID),
503 >                        buf+sizeof(HDGRID)+strlen(buf+sizeof(HDGRID))+1);
504                  break;
505          case DS_OUTSECT:
506                  do_outside = 1;
# Line 490 | Line 511 | serv_result()                  /* get next server result and process
511                  break;
512          case DS_STARTIMM:
513          case DS_ENDIMM:
514 +                if (!(imm_mode = msg.type==DS_STARTIMM))
515 +                        dev_flush();
516   #ifdef DEBUG
517                  {
518                          time_t  tnow = time(NULL);
# Line 498 | Line 521 | serv_result()                  /* get next server result and process
521                          tmodesw = tnow;
522                  }
523   #endif
501                if (!(imm_mode = msg.type==DS_STARTIMM))
502                        dev_flush();
524                  goto noargs;
525          case DS_ACKNOW:
526          case DS_SHUTDOWN:
# Line 529 | Line 550 | char   *p;
550          MSGHEAD msg;
551          int     m;
552                                  /* consistency checks */
553 < #ifdef DEBUG
554 <        if (nbytes < 0 || nbytes > 0 & p == NULL)
534 <                error(CONSISTENCY, "bad buffer handed to serv_request");
535 < #endif
553 >        DCHECK(nbytes < 0 || nbytes > 0 & p == NULL,
554 >                        CONSISTENCY, "bad buffer handed to serv_request");
555                                  /* get server's attention for big request */
556          if (nbytes >= BIGREQSIZ-sizeof(MSGHEAD)) {
557                  serv_request(DR_ATTEN, 0, NULL);
# Line 550 | Line 569 | char   *p;
569   }
570  
571  
572 + void
573   eputs(s)                        /* put error message to stderr */
574   register char  *s;
575   {
# Line 569 | Line 589 | register char  *s;
589   }
590  
591  
592 + void
593   quit(code)                      /* clean up and exit */
594   int     code;
595   {
596 +        if (code)
597 +                exit(code);
598          if (odev.v.type)
599                  dev_close();
600 <        exit(code);
600 >        exit(0);
601   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines