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.16 by gregl, Thu Dec 18 18:14:15 1997 UTC vs.
Revision 3.23 by gregl, Thu Jan 8 21:19:05 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 24 | Line 24 | char   cmdlist[DC_NCMDS][8] = DC_INIT;
24  
25   int     imm_mode = 0;           /* bundles are being delivered immediately */
26  
27 + int     do_outside = 0;         /* render from outside sections */
28 +
29   char    *progname;              /* global argv[0] */
30  
31   FILE    *sstdin, *sstdout;      /* server's standard input and output */
32  
33 + #ifdef DEBUG
34 + #include <sys/types.h>
35 + extern time_t   time();
36 + static time_t   tmodesw;
37 + static time_t   timm, tadd;
38 + static long     nimmrays, naddrays;
39 + #endif
40 +
41   #define RDY_SRV         01
42   #define RDY_DEV         02
43   #define RDY_SIN         04
# Line 53 | Line 63 | char   *argv[];
63                  sstdin = fdopen(inp, "r");
64                                          /* set command error vector */
65          erract[COMMAND].pf = eputs;
66 + #ifdef DEBUG
67 +        tmodesw = time(NULL);
68 + #endif
69                                          /* enter main loop */
70          do {
71                  rdy = disp_wait();
72 +                if (rdy & RDY_SRV) {            /* process server result */
73 +                        res = serv_result();
74 +                        if (pause && res != DS_SHUTDOWN) {
75 +                                serv_request(DR_ATTEN, 0, NULL);
76 +                                while ((res = serv_result()) != DS_ACKNOW &&
77 +                                                res != DS_SHUTDOWN)
78 +                                        ;
79 +                        }
80 +                }
81                  if (rdy & RDY_DEV) {            /* user input from driver */
82                          inp = dev_input();
83                          if (inp & DFL(DC_SETVIEW))
# Line 98 | Line 120 | char   *argv[];
120                                  pause = 0;
121                                  break;
122                          }
101                if (rdy & RDY_SRV) {            /* process server result */
102                        res = serv_result();
103                        if (pause && res != DS_SHUTDOWN) {
104                                serv_request(DR_ATTEN, 0, NULL);
105                                while ((res = serv_result()) != DS_ACKNOW &&
106                                                res != DS_SHUTDOWN)
107                                        ;
108                        }
109                }
123          } while (res != DS_SHUTDOWN);
124 + #ifdef DEBUG
125 +        if (timm && nimmrays)
126 +                fprintf(stderr,
127 +                        "%s: %.1f rays recalled/second (%ld rays total)\n",
128 +                                progname, (double)nimmrays/timm, nimmrays);
129 +        if (tadd && naddrays)
130 +                fprintf(stderr,
131 +                        "%s: %.1f rays calculated/second (%ld rays total)\n",
132 +                                progname, (double)naddrays/tadd, naddrays);
133 + #endif
134                                          /* all done */
135          quit(0);
136   }
# Line 136 | Line 159 | disp_wait()                    /* wait for more input */
159          n = odev.ifd+1;
160          if (sstdin != NULL) {
161                  FD_SET(fileno(sstdin), &readset);
162 +                FD_SET(fileno(sstdin), &errset);
163                  if (fileno(sstdin) >= n)
164                          n = fileno(sstdin) + 1;
165          }
# Line 150 | Line 174 | disp_wait()                    /* wait for more input */
174                  flgs |= RDY_SRV;
175          if (FD_ISSET(odev.ifd, &readset) || FD_ISSET(odev.ifd, &errset))
176                  flgs |= RDY_DEV;
177 <        if (sstdin != NULL && FD_ISSET(fileno(sstdin), &readset))
177 >        if (sstdin != NULL && (FD_ISSET(fileno(sstdin), &readset) ||
178 >                                FD_ISSET(fileno(sstdin), &errset)))
179                  flgs |= RDY_SIN;
180          return(flgs);
181   }
# Line 160 | Line 185 | add_holo(hdg)                  /* register a new holodeck section */
185   HDGRID  *hdg;
186   {
187          VIEW    nv;
188 +        double  d;
189          register int    hd;
190  
191          for (hd = 0; hd < HDMAX && hdlist[hd] != NULL; hd++)
# Line 180 | Line 206 | HDGRID *hdg;
206          VSUM(nv.vp, nv.vp, hdlist[0]->xv[2], 0.5);
207          fcross(nv.vdir, hdlist[0]->xv[1], hdlist[0]->xv[2]);
208          VCOPY(nv.vup, hdlist[0]->xv[2]);
209 +        if (do_outside) {
210 +                normalize(nv.vdir);
211 +                d = VLEN(hdlist[0]->xv[1]);
212 +                d += VLEN(hdlist[0]->xv[2]);
213 +                VSUM(nv.vp, nv.vp, nv.vdir, -d);
214 +        }
215          new_view(&nv);
216   }
217  
# Line 203 | Line 235 | register PACKHEAD      *p;
235                  VSUM(wp, ro, rd, d);            /* might be behind viewpoint */
236                  dev_value(packra(p)[i].v, wp, rd);
237          }
238 + #ifdef DEBUG
239 +        if (imm_mode) nimmrays += p->nr;
240 +        else naddrays += p->nr;
241 + #endif
242   }
243  
244  
# Line 220 | Line 256 | register VIEW  *v;
256                          while (nhist < VIEWHISTLEN && viewhist[nhist].type)
257                                  nhist++;
258                  v = viewhist + ((nhist-1)%VIEWHISTLEN);
259 <        } else if ((err = setview(v)) != NULL) {
259 >        } else
260 > again:
261 >        if ((err = setview(v)) != NULL) {
262                  error(COMMAND, err);
263                  return;
264          }
227 again:
265          if (v->type == VT_PAR) {
266                  error(COMMAND, "cannot handle parallel views");
267                  return;
# Line 246 | Line 283 | int
283   usr_input()                     /* get user input and process it */
284   {
285          VIEW    vparams;
286 <        char    cmd[128];
286 >        char    cmd[256];
287          register char   *args;
288          register int    i;
289  
290 <        if (fgets(cmd, sizeof(cmd), sstdin) == NULL)
291 <                return(DC_QUIT);
290 >        if (fgets(cmd, sizeof(cmd), sstdin) == NULL) {
291 >                fclose(sstdin);
292 >                sstdin = NULL;
293 >                return(0);
294 >        }
295          for (args = cmd; *args && !isspace(*args); args++)
296                  ;
297          while (isspace(*args))
# Line 288 | Line 328 | usr_input()                    /* get user input and process it */
328                  break;
329          case DC_REDRAW:                 /* redraw from server */
330                  imm_mode = beam_sync() > 0;
331 +                dev_clear();
332                  break;
333          case DC_KILL:                   /* kill rtrace process(es) */
334                  serv_request(DR_KILL, 0, NULL);
# Line 351 | Line 392 | serv_result()                  /* get next server result and process
392                          error(INTERNAL, "bad holodeck record from server");
393                  add_holo((HDGRID *)buf);
394                  break;
395 +        case DS_OUTSECT:
396 +                do_outside = 1;
397 +                break;
398          case DS_STARTIMM:
399          case DS_ENDIMM:
400 + #ifdef DEBUG
401 +                if (imm_mode != (msg.type==DS_STARTIMM)) {
402 +                        time_t  tnow = time(NULL);
403 +                        if (imm_mode) timm += tnow - tmodesw;
404 +                        else tadd += tnow - tmodesw;
405 +                        tmodesw = tnow;
406 +                }
407 + #endif
408                  imm_mode = msg.type==DS_STARTIMM;
357                if (msg.type == DS_ENDIMM)
358                        dev_flush();            /* update display NOW */
409                  /* fall through */
410          case DS_ACKNOW:
411          case DS_SHUTDOWN:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines