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.12 by gregl, Thu Dec 11 09:37:43 1997 UTC vs.
Revision 3.16 by gregl, Thu Dec 18 18:14:15 1997 UTC

# Line 15 | Line 15 | static char SCCSid[] = "$SunId$ SGI";
15   #include <ctype.h>
16  
17   #ifndef VIEWHISTLEN
18 < #define VIEWHISTLEN     2       /* number of remembered views */
18 > #define VIEWHISTLEN     4       /* number of remembered views */
19   #endif
20  
21   HOLO    *hdlist[HDMAX+1];       /* global holodeck list */
# Line 58 | Line 58 | char   *argv[];
58                  rdy = disp_wait();
59                  if (rdy & RDY_DEV) {            /* user input from driver */
60                          inp = dev_input();
61 <                        if (inp & DEV_PUTVIEW)
62 <                                printview();
63 <                        if (inp & DEV_NEWVIEW)
61 >                        if (inp & DFL(DC_SETVIEW))
62                                  new_view(&odev.v);
63 <                        if (inp & DEV_LASTVIEW)
63 >                        if (inp & DFL(DC_GETVIEW))
64 >                                printview();
65 >                        if (inp & DFL(DC_LASTVIEW))
66                                  new_view(NULL);
67 <                        if (inp & DEV_SHUTDOWN)
68 <                                serv_request(DR_SHUTDOWN, 0, NULL);
69 <                        if (inp & DEV_REDRAW)
70 <                                imm_mode = beam_sync() > 0;
71 <                        if (inp & DEV_WAIT)
72 <                                pause = 1;
73 <                        if (inp & DEV_RESUME) {
67 >                        if (inp & DFL(DC_RESUME)) {
68                                  serv_request(DR_NOOP, 0, NULL);
69                                  pause = 0;
70                          }
71 +                        if (inp & DFL(DC_PAUSE))
72 +                                pause = 1;
73 +                        if (inp & DFL(DC_REDRAW))
74 +                                imm_mode = beam_sync() > 0;
75 +                        if (inp & DFL(DC_KILL)) {
76 +                                serv_request(DR_KILL, 0, NULL);
77 +                                pause = 0;
78 +                        }
79 +                        if (inp & DFL(DC_CLOBBER))
80 +                                serv_request(DR_CLOBBER, 0, NULL);
81 +                        if (inp & DFL(DC_RESTART)) {
82 +                                serv_request(DR_RESTART, 0, NULL);
83 +                                pause = 0;
84 +                        }
85 +                        if (inp & DFL(DC_QUIT))
86 +                                serv_request(DR_SHUTDOWN, 0, NULL);
87                  }
88                  if (rdy & RDY_SIN)              /* user input from sstdin */
89                          switch (usr_input()) {
# Line 82 | Line 92 | char   *argv[];
92                                  break;
93                          case DC_RESUME:
94                                  serv_request(DR_NOOP, 0, NULL);
95 +                                /* fall through */
96 +                        case DC_KILL:
97 +                        case DC_RESTART:
98                                  pause = 0;
99                                  break;
100                          }
# Line 201 | Line 214 | register VIEW  *v;
214          char    *err;
215                                  /* restore previous view? */
216          if (v == NULL) {
217 <                if (nhist < 2) {
218 <                        error(COMMAND, "no previous view");
219 <                        return;
220 <                }
221 <                nhist--;        /* get one before last setting */
217 >                if (nhist > 1)          /* get one before last setting */
218 >                        nhist--;
219 >                else                    /* else go to end of list */
220 >                        while (nhist < VIEWHISTLEN && viewhist[nhist].type)
221 >                                nhist++;
222                  v = viewhist + ((nhist-1)%VIEWHISTLEN);
223          } else if ((err = setview(v)) != NULL) {
224                  error(COMMAND, err);
# Line 272 | Line 285 | usr_input()                    /* get user input and process it */
285          case DC_PAUSE:                  /* pause the current calculation */
286          case DC_RESUME:                 /* resume the calculation */
287                  /* handled in main() */
288 +                break;
289 +        case DC_REDRAW:                 /* redraw from server */
290 +                imm_mode = beam_sync() > 0;
291 +                break;
292 +        case DC_KILL:                   /* kill rtrace process(es) */
293 +                serv_request(DR_KILL, 0, NULL);
294 +                break;
295 +        case DC_CLOBBER:                /* clobber holodeck */
296 +                serv_request(DR_CLOBBER, 0, NULL);
297 +                break;
298 +        case DC_RESTART:                /* restart rtrace */
299 +                serv_request(DR_RESTART, 0, NULL);
300                  break;
301          case DC_QUIT:                   /* quit request */
302                  serv_request(DR_SHUTDOWN, 0, NULL);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines