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.8 by gregl, Thu Dec 4 10:51:37 1997 UTC vs.
Revision 3.24 by gwlarson, Thu May 14 13:06:32 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 12 | Line 12 | static char SCCSid[] = "$SunId$ SGI";
12   #include "rhdisp.h"
13   #include "rhdriver.h"
14   #include "selcall.h"
15 + #include <ctype.h>
16  
17 + #ifndef VIEWHISTLEN
18 + #define VIEWHISTLEN     4       /* number of remembered views */
19 + #endif
20 +
21   HOLO    *hdlist[HDMAX+1];       /* global holodeck list */
22  
23 + 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 < #define RDY_SRV 01
23 < #define RDY_DEV 02
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
44 +
45 +
46   main(argc, argv)
47   int     argc;
48   char    *argv[];
49   {
50 +        extern int      eputs();
51          int     rdy, inp, res = 0, pause = 0;
52  
53          progname = argv[0];
54 <        if (argc != 2)
54 >        if (argc < 3)
55                  error(USER, "bad command line arguments");
56                                          /* open our device */
57          dev_open(argv[1]);
58 +                                        /* open server process i/o */
59 +        sstdout = fdopen(atoi(argv[2]), "w");
60 +        if (argc < 4 || (inp = atoi(argv[3])) < 0)
61 +                sstdin = NULL;
62 +        else
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_DEV) {            /* get user input */
41 <                        inp = dev_input();
42 <                        if (inp & DEV_NEWVIEW)
43 <                                new_view(&odev.v);
44 <                        if (inp & DEV_SHUTDOWN)
45 <                                serv_request(DR_SHUTDOWN, 0, NULL);
46 <                        if (inp & DEV_REDRAW) {
47 <                                imm_mode = 1;   /* preempt updates */
48 <                                beam_sync();
49 <                        }
50 <                        if (inp & DEV_WAIT)
51 <                                pause = 1;
52 <                        if (inp & DEV_RESUME) {
53 <                                serv_request(DR_NOOP, 0, NULL);
54 <                                pause = 0;
55 <                        }
56 <                }
57 <                if (rdy & RDY_SRV) {            /* get server result */
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);
# Line 63 | Line 78 | char   *argv[];
78                                          ;
79                          }
80                  }
81 +                if (rdy & RDY_DEV) {            /* user input from driver */
82 +                        inp = dev_input();
83 +                        if (inp & DFL(DC_SETVIEW))
84 +                                new_view(&odev.v);
85 +                        if (inp & DFL(DC_GETVIEW))
86 +                                printview();
87 +                        if (inp & DFL(DC_LASTVIEW))
88 +                                new_view(NULL);
89 +                        if (inp & DFL(DC_RESUME)) {
90 +                                serv_request(DR_NOOP, 0, NULL);
91 +                                pause = 0;
92 +                        }
93 +                        if (inp & DFL(DC_PAUSE))
94 +                                pause = 1;
95 +                        if (inp & DFL(DC_REDRAW))
96 +                                imm_mode = beam_sync(1) > 0;
97 +                        if (inp & DFL(DC_KILL)) {
98 +                                serv_request(DR_KILL, 0, NULL);
99 +                                pause = 0;
100 +                        }
101 +                        if (inp & DFL(DC_CLOBBER))
102 +                                serv_request(DR_CLOBBER, 0, NULL);
103 +                        if (inp & DFL(DC_RESTART)) {
104 +                                serv_request(DR_RESTART, 0, NULL);
105 +                                pause = 0;
106 +                        }
107 +                        if (inp & DFL(DC_QUIT))
108 +                                serv_request(DR_SHUTDOWN, 0, NULL);
109 +                }
110 +                if (rdy & RDY_SIN)              /* user input from sstdin */
111 +                        switch (usr_input()) {
112 +                        case DC_PAUSE:
113 +                                pause = 1;
114 +                                break;
115 +                        case DC_RESUME:
116 +                                serv_request(DR_NOOP, 0, NULL);
117 +                                /* fall through */
118 +                        case DC_KILL:
119 +                        case DC_RESTART:
120 +                                pause = 0;
121 +                                break;
122 +                        }
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 79 | Line 146 | disp_wait()                    /* wait for more input */
146                                  /* see if we can avoid select call */
147          if (imm_mode || stdin->_cnt > 0)
148                  return(RDY_SRV);
149 +        if (sstdin != NULL && sstdin->_cnt > 0)
150 +                return(RDY_SIN);
151          if (dev_flush())
152                  return(RDY_DEV);
153                                  /* make the call */
# Line 87 | Line 156 | disp_wait()                    /* wait for more input */
156          FD_SET(0, &errset);
157          FD_SET(odev.ifd, &readset);
158          FD_SET(odev.ifd, &errset);
159 <        n = odev.ifd + 1;
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 >        }
166          n = select(n, &readset, NULL, &errset, NULL);
167          if (n < 0) {
168                  if (errno == EINTR)
# Line 99 | 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) ||
178 +                                FD_ISSET(fileno(sstdin), &errset)))
179 +                flgs |= RDY_SIN;
180          return(flgs);
181   }
182  
# Line 107 | 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 127 | 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 148 | Line 233 | register PACKHEAD      *p;
233                  hdray(ro, rd, hdlist[p->hd], gc, packra(p)[i].r);
234                  d = hddepth(hdlist[p->hd], packra(p)[i].d);
235                  VSUM(wp, ro, rd, d);            /* might be behind viewpoint */
236 <                dev_value(packra(p)[i].v, wp);
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  
245   new_view(v)                     /* change view parameters */
246 < VIEW    *v;
246 > register VIEW   *v;
247   {
248 +        static VIEW     viewhist[VIEWHISTLEN];
249 +        static unsigned nhist;
250 +        VIEW    *dv;
251 +        int     i, res[2];
252          char    *err;
253 +                                /* restore previous view? */
254 +        if (v == NULL) {
255 +                if (nhist > 1)          /* get one before last setting */
256 +                        nhist--;
257 +                else                    /* else go to end of list */
258 +                        while (nhist < VIEWHISTLEN && viewhist[nhist].type)
259 +                                nhist++;
260 +                v = viewhist + ((nhist-1)%VIEWHISTLEN);
261 +        } else
262 + again:
263 +        if ((err = setview(v)) != NULL) {
264 +                error(COMMAND, err);
265 +                return;
266 +        }
267 +        if (v->type == VT_PAR) {
268 +                error(COMMAND, "cannot handle parallel views");
269 +                return;
270 +        }
271 +        if (!dev_view(v))       /* notify display driver */
272 +                goto again;
273 +        dev_flush();            /* update screen */
274 +        beam_init();            /* compute new beam set */
275 +        for (i = 0; (dv = dev_auxview(i, res)) != NULL; i++)
276 +                if (!beam_view(dv, res[0], res[1])) {
277 +                        if (!nhist) {
278 +                                error(COMMAND, "invalid starting view");
279 +                                return;
280 +                        }
281 +                        copystruct(v, viewhist + ((nhist-1)%VIEWHISTLEN));
282 +                        goto again;
283 +                }
284 +        beam_sync(0);           /* update server */
285 +                                /* record new view */
286 +        if (v < viewhist || v >= viewhist+VIEWHISTLEN) {
287 +                copystruct(viewhist + (nhist%VIEWHISTLEN), v);
288 +                nhist++;
289 +        }
290 + }
291  
292 <        do {
293 <                if ((err = setview(v)) != NULL)
294 <                        error(INTERNAL, err);
295 <                dev_view(v);            /* update display driver */
296 <                dev_flush();            /* update screen */
297 <        } while (!beam_view(v));        /* update beam list */
292 >
293 > int
294 > usr_input()                     /* get user input and process it */
295 > {
296 >        VIEW    vparams;
297 >        char    cmd[256];
298 >        register char   *args;
299 >        register int    i;
300 >
301 >        if (fgets(cmd, sizeof(cmd), sstdin) == NULL) {
302 >                fclose(sstdin);
303 >                sstdin = NULL;
304 >                return(0);
305 >        }
306 >        for (args = cmd; *args && !isspace(*args); args++)
307 >                ;
308 >        while (isspace(*args))
309 >                *args++ = '\0';
310 >        if (!*cmd)
311 >                return(DC_RESUME);
312 >        if (*args && args[i=strlen(args)-1] == '\n')
313 >                args[i] = '\0';
314 >        for (i = 0; i < DC_NCMDS; i++)
315 >                if (!strcmp(cmd, cmdlist[i]))
316 >                        break;
317 >        if (i >= DC_NCMDS) {
318 >                sprintf(errmsg, "unknown command: %s", cmd);
319 >                error(COMMAND, errmsg);
320 >                return(-1);
321 >        }
322 >        switch (i) {
323 >        case DC_SETVIEW:                /* set the view */
324 >                copystruct(&vparams, &odev.v);
325 >                if (!sscanview(&vparams, args))
326 >                        error(COMMAND, "missing view options");
327 >                else
328 >                        new_view(&vparams);
329 >                break;
330 >        case DC_GETVIEW:                /* print the current view */
331 >                printview();
332 >                break;
333 >        case DC_LASTVIEW:               /* restore previous view */
334 >                new_view(NULL);
335 >                break;
336 >        case DC_PAUSE:                  /* pause the current calculation */
337 >        case DC_RESUME:                 /* resume the calculation */
338 >                /* handled in main() */
339 >                break;
340 >        case DC_REDRAW:                 /* redraw from server */
341 >                imm_mode = beam_sync(1) > 0;
342 >                dev_clear();
343 >                break;
344 >        case DC_KILL:                   /* kill rtrace process(es) */
345 >                serv_request(DR_KILL, 0, NULL);
346 >                break;
347 >        case DC_CLOBBER:                /* clobber holodeck */
348 >                serv_request(DR_CLOBBER, 0, NULL);
349 >                break;
350 >        case DC_RESTART:                /* restart rtrace */
351 >                serv_request(DR_RESTART, 0, NULL);
352 >                break;
353 >        case DC_QUIT:                   /* quit request */
354 >                serv_request(DR_SHUTDOWN, 0, NULL);
355 >                break;
356 >        default:
357 >                error(CONSISTENCY, "bad command id in usr_input");
358 >        }
359 >        return(i);
360   }
361  
362  
363 + printview()                     /* print our current view to server stdout */
364 + {
365 +        fputs(VIEWSTR, sstdout);
366 +        fprintview(&odev.v, sstdout);
367 +        fputc('\n', sstdout);
368 +        fflush(sstdout);
369 + }
370 +
371 +
372   int
373   serv_result()                   /* get next server result and process it */
374   {
# Line 201 | Line 403 | serv_result()                  /* get next server result and process
403                          error(INTERNAL, "bad holodeck record from server");
404                  add_holo((HDGRID *)buf);
405                  break;
406 +        case DS_OUTSECT:
407 +                do_outside = 1;
408 +                break;
409          case DS_STARTIMM:
410          case DS_ENDIMM:
411 + #ifdef DEBUG
412 +                if (imm_mode != (msg.type==DS_STARTIMM)) {
413 +                        time_t  tnow = time(NULL);
414 +                        if (imm_mode) timm += tnow - tmodesw;
415 +                        else tadd += tnow - tmodesw;
416 +                        tmodesw = tnow;
417 +                }
418 + #endif
419                  imm_mode = msg.type==DS_STARTIMM;
207                if (msg.type == DS_ENDIMM)
208                        dev_flush();            /* update display NOW */
420                  /* fall through */
421          case DS_ACKNOW:
422          case DS_SHUTDOWN:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines