ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/hd/rhd_x11.c
Revision: 3.23
Committed: Tue Jan 6 05:26:19 1998 UTC (26 years, 3 months ago) by gregl
Content type: text/plain
Branch: MAIN
Changes since 3.22: +10 -0 lines
Log Message:
created dev_clear() routine to clear device ray cache

File Contents

# User Rev Content
1 gregl 3.1 /* Copyright (c) 1997 Silicon Graphics, Inc. */
2    
3     #ifndef lint
4     static char SCCSid[] = "$SunId$ SGI";
5     #endif
6    
7     /*
8     * X11 driver for holodeck display.
9     * Based on rview driver.
10     */
11    
12     #include "standard.h"
13     #include "rhd_qtree.h"
14    
15     #include <X11/Xlib.h>
16     #include <X11/cursorfont.h>
17     #include <X11/Xutil.h>
18    
19     #include "x11icon.h"
20    
21 gregl 3.20 #ifndef RAYQLEN
22     #define RAYQLEN 50000 /* max. rays to queue before flush */
23     #endif
24    
25 gregl 3.11 #ifndef FEQ
26     #define FEQ(a,b) ((a)-(b) <= FTINY && (a)-(b) >= -FTINY)
27     #endif
28    
29 gregl 3.1 #define GAMMA 2.2 /* default gamma correction */
30    
31 gregl 3.13 #define MOVPCT 7 /* percent distance to move /frame */
32 gregl 3.2 #define MOVDIR(b) ((b)==Button1 ? 1 : (b)==Button2 ? 0 : -1)
33 gregl 3.13 #define MOVDEG (-5) /* degrees to orbit CW/down /frame */
34     #define MOVORB(s) ((s)&ShiftMask ? 1 : (s)&ControlMask ? -1 : 0)
35 gregl 3.2
36 gregl 3.1 #define MINWIDTH 480 /* minimum graphics window width */
37     #define MINHEIGHT 400 /* minimum graphics window height */
38    
39     #define VIEWDIST 356 /* assumed viewing distance (mm) */
40    
41     #define BORWIDTH 5 /* border width */
42    
43     #define ourscreen DefaultScreen(ourdisplay)
44     #define ourroot RootWindow(ourdisplay,ourscreen)
45     #define ourmask (StructureNotifyMask|ExposureMask|KeyPressMask|\
46 gregl 3.2 ButtonPressMask|ButtonReleaseMask)
47 gregl 3.1
48     #define levptr(etype) ((etype *)&currentevent)
49    
50     struct driver odev; /* global device driver structure */
51    
52     static XEvent currentevent; /* current event */
53    
54     static int ncolors = 0; /* color table size */
55     static int mapped = 0; /* window is mapped? */
56     static unsigned long *pixval = NULL; /* allocated pixels */
57     static unsigned long ourblack=0, ourwhite=1;
58    
59     static Display *ourdisplay = NULL; /* our display */
60     static XVisualInfo ourvinfo; /* our visual information */
61     static Window gwind = 0; /* our graphics window */
62     static GC ourgc = 0; /* our graphics context for drawing */
63     static Colormap ourmap = 0; /* our color map */
64    
65     static double pwidth, pheight; /* pixel dimensions (mm) */
66    
67     static int inpresflags; /* input result flags */
68    
69 gregl 3.2 static int headlocked = 0; /* lock vertical motion */
70 gregl 3.1
71     static int getpixels(), xnewcolr(), freepixels(), resizewindow(),
72 gregl 3.2 getevent(), getkey(), moveview(), getmove(), fixwindow();
73 gregl 3.1 static unsigned long true_pixel();
74    
75    
76     static int
77     mytmflags() /* figure out tone mapping flags */
78     {
79     extern char *progname;
80     register char *cp, *tail;
81     /* find basic name */
82     for (cp = tail = progname; *cp; cp++)
83     if (*cp == '/')
84     tail = cp+1;
85     for (cp = tail; *cp && *cp != '.'; cp++)
86     ;
87     if (cp-tail == 3 && !strncmp(tail, "x11", 3))
88 gregl 3.20 return(TM_F_CAMERA|TM_F_NOSTDERR);
89 gregl 3.1 if (cp-tail == 4 && !strncmp(tail, "x11h", 4))
90 gregl 3.20 return(TM_F_HUMAN|TM_F_NOSTDERR);
91 gregl 3.1 error(USER, "illegal driver name");
92     }
93    
94    
95     dev_open(id) /* initialize X11 driver */
96     char *id;
97     {
98     extern char *getenv();
99     char *gv;
100     double gamval = GAMMA;
101     int nplanes;
102     XSetWindowAttributes ourwinattr;
103     XWMHints ourxwmhints;
104     XSizeHints oursizhints;
105 gregl 3.2 /* set quadtree globals */
106 gregl 3.4 qtMinNodesiz = 2;
107 gregl 3.1 /* open display server */
108     ourdisplay = XOpenDisplay(NULL);
109     if (ourdisplay == NULL)
110     error(USER, "cannot open X-windows; DISPLAY variable set?\n");
111     /* find a usable visual */
112     nplanes = DisplayPlanes(ourdisplay, ourscreen);
113     if (XMatchVisualInfo(ourdisplay,ourscreen,
114     nplanes>12?nplanes:24,TrueColor,&ourvinfo) ||
115     XMatchVisualInfo(ourdisplay,ourscreen,
116     nplanes>12?nplanes:24,DirectColor,&ourvinfo)) {
117     ourblack = 0;
118     ourwhite = ourvinfo.red_mask |
119     ourvinfo.green_mask |
120     ourvinfo.blue_mask ;
121     } else {
122     if (nplanes < 4)
123     error(INTERNAL, "not enough colors\n");
124     if (!XMatchVisualInfo(ourdisplay,ourscreen,
125     nplanes,PseudoColor,&ourvinfo) &&
126     !XMatchVisualInfo(ourdisplay,ourscreen,
127     nplanes,GrayScale,&ourvinfo))
128     error(INTERNAL, "unsupported visual type\n");
129     ourblack = BlackPixel(ourdisplay,ourscreen);
130     ourwhite = WhitePixel(ourdisplay,ourscreen);
131     }
132     /* set gamma and tone mapping */
133     if ((gv = XGetDefault(ourdisplay, "radiance", "gamma")) != NULL
134     || (gv = getenv("DISPLAY_GAMMA")) != NULL)
135     gamval = atof(gv);
136     if (tmInit(mytmflags(), stdprims, gamval) == NULL)
137     error(SYSTEM, "not enough memory in dev_open");
138     /* open window */
139     ourwinattr.background_pixel = ourblack;
140     ourwinattr.border_pixel = ourblack;
141     ourwinattr.event_mask = ourmask;
142     /* this is stupid */
143     ourwinattr.colormap = XCreateColormap(ourdisplay, ourroot,
144     ourvinfo.visual, AllocNone);
145     gwind = XCreateWindow(ourdisplay, ourroot, 0, 0,
146     DisplayWidth(ourdisplay,ourscreen)-2*BORWIDTH,
147     DisplayHeight(ourdisplay,ourscreen)-2*BORWIDTH,
148     BORWIDTH, ourvinfo.depth, InputOutput, ourvinfo.visual,
149     CWBackPixel|CWBorderPixel|CWColormap|CWEventMask, &ourwinattr);
150     if (gwind == 0)
151     error(SYSTEM, "cannot create window\n");
152     XStoreName(ourdisplay, gwind, id);
153     /* get graphics context */
154     ourgc = XCreateGC(ourdisplay, gwind, 0, NULL);
155     /* set window manager hints */
156     ourxwmhints.flags = InputHint|IconPixmapHint;
157     ourxwmhints.input = True;
158     ourxwmhints.icon_pixmap = XCreateBitmapFromData(ourdisplay,
159     gwind, x11icon_bits, x11icon_width, x11icon_height);
160     XSetWMHints(ourdisplay, gwind, &ourxwmhints);
161     oursizhints.min_width = MINWIDTH;
162     oursizhints.min_height = MINHEIGHT;
163     oursizhints.flags = PMinSize;
164     XSetNormalHints(ourdisplay, gwind, &oursizhints);
165 gregl 3.18 /* figure out sensible view */
166     pwidth = (double)DisplayWidthMM(ourdisplay, ourscreen) /
167     DisplayWidth(ourdisplay, ourscreen);
168     pheight = (double)DisplayHeightMM(ourdisplay, ourscreen) /
169     DisplayHeight(ourdisplay, ourscreen);
170     copystruct(&odev.v, &stdview);
171     odev.v.type = VT_PER;
172 gregl 3.1 /* map the window and get its size */
173     XMapWindow(ourdisplay, gwind);
174 gregl 3.18 dev_input(); /* sets size and view angles */
175 gregl 3.2 /* allocate our leaf pile */
176     if (!qtAllocLeaves(DisplayWidth(ourdisplay,ourscreen) *
177 gregl 3.21 DisplayHeight(ourdisplay,ourscreen) * 3 /
178     (qtMinNodesiz*qtMinNodesiz*2)))
179 gregl 3.2 error(SYSTEM, "insufficient memory for leaf storage");
180 gregl 3.1 odev.name = id;
181     odev.ifd = ConnectionNumber(ourdisplay);
182     }
183    
184    
185     dev_close() /* close our display */
186     {
187     freepixels();
188     XFreeGC(ourdisplay, ourgc);
189     XDestroyWindow(ourdisplay, gwind);
190     gwind = 0;
191     ourgc = 0;
192     XCloseDisplay(ourdisplay);
193     ourdisplay = NULL;
194     qtFreeLeaves();
195     tmDone(NULL);
196     odev.v.type = 0;
197     odev.hres = odev.vres = 0;
198     odev.ifd = -1;
199     }
200    
201    
202 gregl 3.23
203     dev_clear() /* clear our quadtree */
204     {
205     qtCompost(100);
206     if (ncolors > 0)
207     new_ctab(ncolors);
208     rayqleft = 0; /* hold off update */
209     }
210    
211    
212 gregl 3.13 int
213 gregl 3.1 dev_view(nv) /* assign new driver view */
214     VIEW *nv;
215     {
216 gregl 3.13 if (nv->type == VT_PAR || /* check view legality */
217 gregl 3.17 nv->horiz > 160. || nv->vert > 160.) {
218 gregl 3.13 error(COMMAND, "illegal view type/angle");
219     nv->type = VT_PER;
220     nv->horiz = odev.v.horiz;
221     nv->vert = odev.v.vert;
222     return(0);
223     }
224     if (nv->vfore > FTINY) {
225     error(COMMAND, "cannot handle fore clipping");
226     nv->vfore = 0.;
227     return(0);
228     }
229 gregl 3.11 if (nv != &odev.v) {
230     if (!FEQ(nv->horiz,odev.v.horiz) || /* resize window? */
231     !FEQ(nv->vert,odev.v.vert)) {
232 gregl 3.13 int dw = DisplayWidth(ourdisplay,ourscreen);
233     int dh = DisplayHeight(ourdisplay,ourscreen);
234    
235     dw -= 25; /* for window frame */
236 gregl 3.16 dh -= 50;
237 gregl 3.12 odev.hres = 2.*VIEWDIST/pwidth *
238     tan(PI/180./2.*nv->horiz);
239     odev.vres = 2.*VIEWDIST/pheight *
240     tan(PI/180./2.*nv->vert);
241 gregl 3.13 if (odev.hres > dw) {
242     odev.vres = dw * odev.vres / odev.hres;
243     odev.hres = dw;
244     }
245     if (odev.vres > dh) {
246     odev.hres = dh * odev.hres / odev.vres;
247     odev.vres = dh;
248     }
249 gregl 3.11 XResizeWindow(ourdisplay, gwind, odev.hres, odev.vres);
250 gregl 3.18 dev_input(); /* wait for resize event */
251 gregl 3.11 }
252 gregl 3.1 copystruct(&odev.v, nv);
253 gregl 3.11 }
254 gregl 3.1 qtReplant();
255 gregl 3.13 return(1);
256 gregl 3.1 }
257    
258    
259     int
260     dev_input() /* get X11 input */
261     {
262     inpresflags = 0;
263 gregl 3.5
264 gregl 3.1 do
265     getevent();
266    
267     while (XQLength(ourdisplay) > 0);
268    
269     return(inpresflags);
270     }
271    
272    
273     dev_paintr(rgb, xmin, ymin, xmax, ymax) /* fill a rectangle */
274     BYTE rgb[3];
275     int xmin, ymin, xmax, ymax;
276     {
277     unsigned long pixel;
278    
279     if (!mapped)
280     return;
281     if (ncolors > 0)
282     pixel = pixval[get_pixel(rgb, xnewcolr)];
283     else
284     pixel = true_pixel(rgb);
285     XSetForeground(ourdisplay, ourgc, pixel);
286     XFillRectangle(ourdisplay, gwind,
287     ourgc, xmin, odev.vres-ymax, xmax-xmin, ymax-ymin);
288     }
289    
290    
291     int
292     dev_flush() /* flush output */
293     {
294     qtUpdate();
295 gregl 3.20 rayqleft = RAYQLEN;
296 gregl 3.1 return(XPending(ourdisplay));
297     }
298    
299    
300     static
301     xnewcolr(ndx, r, g, b) /* enter a color into hardware table */
302     int ndx;
303     int r, g, b;
304     {
305     XColor xcolor;
306    
307     xcolor.pixel = pixval[ndx];
308     xcolor.red = r << 8;
309     xcolor.green = g << 8;
310     xcolor.blue = b << 8;
311     xcolor.flags = DoRed|DoGreen|DoBlue;
312    
313     XStoreColor(ourdisplay, ourmap, &xcolor);
314     }
315    
316    
317     static int
318     getpixels() /* get the color map */
319     {
320     XColor thiscolor;
321     register int i, j;
322    
323     if (ncolors > 0)
324     return(ncolors);
325     if (ourvinfo.visual == DefaultVisual(ourdisplay,ourscreen)) {
326     ourmap = DefaultColormap(ourdisplay,ourscreen);
327     goto loop;
328     }
329     newmap:
330     ourmap = XCreateColormap(ourdisplay,gwind,ourvinfo.visual,AllocNone);
331     loop:
332     for (ncolors = ourvinfo.colormap_size;
333     ncolors > ourvinfo.colormap_size/3;
334     ncolors = ncolors*.937) {
335     pixval = (unsigned long *)malloc(ncolors*sizeof(unsigned long));
336     if (pixval == NULL)
337     return(ncolors = 0);
338     if (XAllocColorCells(ourdisplay,ourmap,0,NULL,0,pixval,ncolors))
339     break;
340     free((char *)pixval);
341     pixval = NULL;
342     }
343     if (pixval == NULL) {
344     if (ourmap == DefaultColormap(ourdisplay,ourscreen))
345     goto newmap; /* try it with our map */
346     else
347     return(ncolors = 0); /* failed */
348     }
349     if (ourmap != DefaultColormap(ourdisplay,ourscreen))
350     for (i = 0; i < ncolors; i++) { /* reset black and white */
351     if (pixval[i] != ourblack && pixval[i] != ourwhite)
352     continue;
353     thiscolor.pixel = pixval[i];
354     thiscolor.flags = DoRed|DoGreen|DoBlue;
355     XQueryColor(ourdisplay,
356     DefaultColormap(ourdisplay,ourscreen),
357     &thiscolor);
358     XStoreColor(ourdisplay, ourmap, &thiscolor);
359     for (j = i; j+1 < ncolors; j++)
360     pixval[j] = pixval[j+1];
361     ncolors--;
362     i--;
363     }
364     XSetWindowColormap(ourdisplay, gwind, ourmap);
365     return(ncolors);
366     }
367    
368    
369     static
370     freepixels() /* free our pixels */
371     {
372     if (ncolors == 0)
373     return;
374     XFreeColors(ourdisplay,ourmap,pixval,ncolors,0L);
375     free((char *)pixval);
376     pixval = NULL;
377     ncolors = 0;
378     if (ourmap != DefaultColormap(ourdisplay,ourscreen))
379     XFreeColormap(ourdisplay, ourmap);
380     ourmap = 0;
381     }
382    
383    
384     static unsigned long
385     true_pixel(rgb) /* return true pixel value for color */
386     register BYTE rgb[3];
387     {
388     register unsigned long rval;
389    
390     rval = ourvinfo.red_mask*rgb[RED]/255 & ourvinfo.red_mask;
391     rval |= ourvinfo.green_mask*rgb[GRN]/255 & ourvinfo.green_mask;
392     rval |= ourvinfo.blue_mask*rgb[BLU]/255 & ourvinfo.blue_mask;
393     return(rval);
394     }
395    
396    
397     static
398     getevent() /* get next event */
399     {
400     XNextEvent(ourdisplay, levptr(XEvent));
401     switch (levptr(XEvent)->type) {
402     case ConfigureNotify:
403     resizewindow(levptr(XConfigureEvent));
404     break;
405     case UnmapNotify:
406     mapped = 0;
407     freepixels();
408     break;
409     case MapNotify:
410     if (ourvinfo.class == PseudoColor ||
411     ourvinfo.class == GrayScale) {
412     if (getpixels() == 0)
413     error(SYSTEM, "cannot allocate colors\n");
414     new_ctab(ncolors);
415     }
416     mapped = 1;
417     break;
418     case Expose:
419     fixwindow(levptr(XExposeEvent));
420     break;
421     case KeyPress:
422     getkey(levptr(XKeyPressedEvent));
423     break;
424     case ButtonPress:
425 gregl 3.2 getmove(levptr(XButtonPressedEvent));
426 gregl 3.1 break;
427     }
428     }
429    
430    
431     static
432 gregl 3.9 ilclip(dp, wp) /* clip world coordinates to device */
433     int dp[2][2];
434     FVECT wp[2];
435     {
436     static FVECT vmin = {0.,0.,0.}, vmax = {1.,1.,FHUGE};
437     FVECT ip[2];
438     /* not exactly right, but who cares? */
439     viewloc(ip[0], &odev.v, wp[0]);
440     viewloc(ip[1], &odev.v, wp[1]);
441     if (!clip(ip[0], ip[1], vmin, vmax))
442     return(0);
443     dp[0][0] = ip[0][0]*odev.hres;
444     dp[0][1] = ip[0][1]*odev.vres;
445     dp[1][0] = ip[1][0]*odev.hres;
446     dp[1][1] = ip[1][1]*odev.vres;
447     return(1);
448     }
449    
450    
451     static
452     draw3dline(wp) /* draw 3d line in world coordinates */
453     FVECT wp[2];
454     {
455     int dp[2][2];
456    
457     if (!ilclip(dp, wp))
458     return;
459     XDrawLine(ourdisplay, gwind, ourgc,
460     dp[0][0], odev.vres-1 - dp[0][1],
461     dp[1][0], odev.vres-1 - dp[1][1]);
462     }
463    
464    
465     static
466     draw_grids() /* draw holodeck section grids */
467     {
468     static BYTE gridrgb[3] = {0x0, 0xff, 0xff};
469     unsigned long pixel;
470    
471 gregl 3.19 if (!mapped)
472 gregl 3.9 return;
473     if (ncolors > 0)
474     pixel = pixval[get_pixel(gridrgb, xnewcolr)];
475     else
476     pixel = true_pixel(gridrgb);
477     XSetForeground(ourdisplay, ourgc, pixel);
478     /* draw each grid line */
479     gridlines(draw3dline);
480     }
481    
482    
483     static
484 gregl 3.13 moveview(dx, dy, mov, orb) /* move our view */
485     int dx, dy, mov, orb;
486 gregl 3.2 {
487     VIEW nv;
488 gregl 3.17 FVECT odir, v1;
489 gregl 3.2 double d;
490 gregl 3.13 register int li;
491 gregl 3.2 /* start with old view */
492     copystruct(&nv, &odev.v);
493     /* change view direction */
494 gregl 3.13 if (mov | orb) {
495 gregl 3.4 if ((li = qtFindLeaf(dx, dy)) < 0)
496 gregl 3.2 return(0); /* not on window */
497 gregl 3.17 VSUM(odir, qtL.wp[li], nv.vp, -1.);
498 gregl 3.2 } else {
499     if (viewray(nv.vp, nv.vdir, &odev.v,
500     (dx+.5)/odev.hres, (dy+.5)/odev.vres) < -FTINY)
501     return(0); /* outside view */
502     }
503 gregl 3.13 if (orb && mov) { /* orbit left/right */
504 gregl 3.17 spinvector(odir, odir, nv.vup, d=MOVDEG*PI/180.*mov);
505     VSUM(nv.vp, qtL.wp[li], odir, -1.);
506     spinvector(nv.vdir, nv.vdir, nv.vup, d);
507 gregl 3.13 } else if (orb) { /* orbit up/down */
508 gregl 3.17 fcross(v1, odir, nv.vup);
509 gregl 3.13 if (normalize(v1) == 0.)
510     return(0);
511 gregl 3.17 spinvector(odir, odir, v1, d=MOVDEG*PI/180.*orb);
512     VSUM(nv.vp, qtL.wp[li], odir, -1.);
513     spinvector(nv.vdir, nv.vdir, v1, d);
514 gregl 3.13 } else if (mov) { /* move forward/backward */
515     d = MOVPCT/100. * mov;
516 gregl 3.17 VSUM(nv.vp, nv.vp, odir, d);
517 gregl 3.2 }
518 gregl 3.13 if (!mov ^ !orb && headlocked) { /* restore head height */
519     VSUM(v1, odev.v.vp, nv.vp, -1.);
520     d = DOT(v1, odev.v.vup);
521     VSUM(nv.vp, nv.vp, odev.v.vup, d);
522     }
523 gregl 3.2 if (setview(&nv) != NULL)
524     return(0); /* illegal view */
525     dev_view(&nv);
526 gregl 3.14 inpresflags |= DFL(DC_SETVIEW);
527 gregl 3.2 return(1);
528     }
529    
530    
531     static
532     getmove(ebut) /* get view change */
533     XButtonPressedEvent *ebut;
534     {
535 gregl 3.13 int movdir = MOVDIR(ebut->button);
536     int movorb = MOVORB(ebut->state);
537 gregl 3.2 int oldnodesiz = qtMinNodesiz;
538     Window rootw, childw;
539     int rootx, rooty, wx, wy;
540     unsigned int statemask;
541    
542     qtMinNodesiz = 16; /* for quicker update */
543 gregl 3.9 XNoOp(ourdisplay);
544 gregl 3.2
545 gregl 3.9 while (!XCheckMaskEvent(ourdisplay,
546     ButtonReleaseMask, levptr(XEvent))) {
547    
548 gregl 3.2 if (!XQueryPointer(ourdisplay, gwind, &rootw, &childw,
549     &rootx, &rooty, &wx, &wy, &statemask))
550     break; /* on another screen */
551    
552 gregl 3.13 if (!moveview(wx, odev.vres-1-wy, movdir, movorb)) {
553 gregl 3.2 sleep(1);
554 gregl 3.9 continue;
555     }
556     XClearWindow(ourdisplay, gwind);
557     qtUpdate();
558     draw_grids();
559     }
560 gregl 3.14 if (!(inpresflags & DFL(DC_SETVIEW))) { /* do final motion */
561 gregl 3.13 movdir = MOVDIR(levptr(XButtonReleasedEvent)->button);
562 gregl 3.2 wx = levptr(XButtonReleasedEvent)->x;
563     wy = levptr(XButtonReleasedEvent)->y;
564 gregl 3.13 moveview(wx, odev.vres-1-wy, movdir, movorb);
565 gregl 3.2 }
566 gregl 3.9 dev_flush();
567 gregl 3.2
568     qtMinNodesiz = oldnodesiz; /* restore quadtree resolution */
569     }
570    
571    
572     static
573 gregl 3.1 getkey(ekey) /* get input key */
574     register XKeyPressedEvent *ekey;
575     {
576     int n;
577     char buf[8];
578    
579     n = XLookupString(ekey, buf, sizeof(buf), NULL, NULL);
580     if (n != 1)
581     return;
582     switch (buf[0]) {
583     case 'h': /* turn on height motion lock */
584 gregl 3.2 headlocked = 1;
585 gregl 3.1 return;
586     case 'H': /* turn off height motion lock */
587 gregl 3.2 headlocked = 0;
588 gregl 3.13 return;
589     case 'l': /* retrieve last view */
590 gregl 3.14 inpresflags |= DFL(DC_LASTVIEW);
591 gregl 3.1 return;
592 gregl 3.2 case 'p': /* pause computation */
593 gregl 3.14 inpresflags |= DFL(DC_PAUSE);
594 gregl 3.2 return;
595 gregl 3.7 case 'v': /* spit out view */
596 gregl 3.14 inpresflags |= DFL(DC_GETVIEW);
597 gregl 3.7 return;
598 gregl 3.2 case '\n':
599 gregl 3.5 case '\r': /* resume computation */
600 gregl 3.14 inpresflags |= DFL(DC_RESUME);
601 gregl 3.2 return;
602 gregl 3.7 case CTRL('R'): /* redraw screen */
603     if (ncolors > 0)
604     new_ctab(ncolors);
605     qtRedraw(0, 0, odev.hres, odev.vres);
606     return;
607     case CTRL('L'): /* refresh from server */
608 gregl 3.14 if (inpresflags & DFL(DC_REDRAW))
609 gregl 3.8 return;
610 gregl 3.7 XClearWindow(ourdisplay, gwind);
611 gregl 3.9 draw_grids();
612 gregl 3.8 XFlush(ourdisplay);
613 gregl 3.6 qtCompost(100); /* unload the old tree */
614 gregl 3.3 if (ncolors > 0)
615     new_ctab(ncolors);
616 gregl 3.14 inpresflags |= DFL(DC_REDRAW); /* resend values from server */
617 gregl 3.22 rayqleft = 0; /* hold off update */
618 gregl 3.3 return;
619 gregl 3.15 case 'K': /* kill rtrace process(es) */
620     inpresflags |= DFL(DC_KILL);
621     break;
622     case 'R': /* restart rtrace */
623     inpresflags |= DFL(DC_RESTART);
624     break;
625     case 'C': /* clobber holodeck */
626     inpresflags |= DFL(DC_CLOBBER);
627     break;
628 gregl 3.1 case 'q': /* quit the program */
629 gregl 3.14 inpresflags |= DFL(DC_QUIT);
630 gregl 3.1 return;
631     default:
632     XBell(ourdisplay, 0);
633     return;
634     }
635     }
636    
637    
638     static
639     fixwindow(eexp) /* repair damage to window */
640     register XExposeEvent *eexp;
641     {
642     if (odev.hres == 0 || odev.vres == 0) { /* first exposure */
643     odev.hres = eexp->width;
644     odev.vres = eexp->height;
645     }
646     qtRedraw(eexp->x, odev.vres - eexp->y - eexp->height,
647     eexp->x + eexp->width, odev.vres - eexp->y);
648     }
649    
650    
651     static
652     resizewindow(ersz) /* resize window */
653     register XConfigureEvent *ersz;
654     {
655     if (ersz->width == odev.hres && ersz->height == odev.vres)
656     return;
657    
658     odev.hres = ersz->width;
659     odev.vres = ersz->height;
660    
661 gregl 3.12 odev.v.horiz = 2.*180./PI * atan(0.5/VIEWDIST*pwidth*odev.hres);
662     odev.v.vert = 2.*180./PI * atan(0.5/VIEWDIST*pheight*odev.vres);
663    
664 gregl 3.14 inpresflags |= DFL(DC_SETVIEW);
665 gregl 3.1 }