ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/x11.c
Revision: 2.10
Committed: Tue Mar 2 10:56:33 1993 UTC (31 years, 2 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.9: +3 -5 lines
Log Message:
fixed minor bug in mouse button handling

File Contents

# User Rev Content
1 greg 2.4 /* Copyright (c) 1992 Regents of the University of California */
2    
3 greg 1.1 #ifndef lint
4     static char SCCSid[] = "$SunId$ LBL";
5     #endif
6    
7     /*
8 greg 2.4 * x11.c - driver for X-windows version 11
9 greg 1.1 *
10 greg 1.4 * Jan 1990
11 greg 1.1 */
12    
13     #include <stdio.h>
14    
15     #include <sys/ioctl.h>
16    
17     #include <X11/Xlib.h>
18 greg 1.4 #include <X11/cursorfont.h>
19     #include <X11/Xutil.h>
20 greg 1.1
21     #include "color.h"
22     #include "driver.h"
23     #include "x11twind.h"
24 greg 1.18 #include "x11icon.h"
25 greg 1.1
26 greg 2.6 #define GAMMA 2.2 /* default exponent correction */
27 greg 1.1
28 greg 1.6 #define MINWIDTH (32*COMCW) /* minimum graphics window width */
29 greg 2.9 #define MINHEIGHT (MINWIDTH/2) /* minimum graphics window height */
30 greg 1.4
31 greg 1.1 #define BORWIDTH 5 /* border width */
32     #define COMHEIGHT (COMLH*COMCH) /* command line height (pixels) */
33    
34     #define COMFN "8x13" /* command line font name */
35     #define COMLH 3 /* number of command lines */
36     #define COMCW 8 /* approx. character width (pixels) */
37     #define COMCH 14 /* approx. character height (pixels) */
38    
39 greg 1.4 #define ourscreen DefaultScreen(ourdisplay)
40     #define ourroot RootWindow(ourdisplay,ourscreen)
41    
42     #define levptr(etype) ((etype *)&currentevent)
43 greg 1.1
44 greg 1.4 static XEvent currentevent; /* current event */
45 greg 1.1
46     static int ncolors = 0; /* color table size */
47 greg 2.8 static int mapped = 0; /* window is mapped? */
48 greg 1.17 static unsigned long *pixval = NULL; /* allocated pixels */
49 greg 2.3 static unsigned long ourblack=0, ourwhite=1;
50 greg 1.1
51     static Display *ourdisplay = NULL; /* our display */
52    
53 greg 2.2 static XVisualInfo ourvinfo; /* our visual information */
54 greg 1.6
55 greg 1.1 static Window gwind = 0; /* our graphics window */
56    
57     static Cursor pickcursor = 0; /* cursor used for picking */
58    
59 greg 1.4 static int gwidth, gheight; /* graphics window size */
60 greg 1.1
61     static TEXTWIND *comline = NULL; /* our command line */
62    
63     static char c_queue[64]; /* input queue */
64     static int c_first = 0; /* first character in queue */
65     static int c_last = 0; /* last character in queue */
66    
67     static GC ourgc = 0; /* our graphics context for drawing */
68    
69 greg 1.6 static Colormap ourmap = 0; /* our color map */
70 greg 1.1
71 greg 1.14 extern char *malloc(), *getcombuf();
72 greg 1.1
73 greg 1.14 static int x11_close(), x11_clear(), x11_paintr(), x11_errout(),
74 greg 1.5 x11_getcur(), x11_comout(), x11_comin(), x11_flush();
75 greg 1.1
76     static struct driver x11_driver = {
77     x11_close, x11_clear, x11_paintr, x11_getcur,
78 greg 1.5 x11_comout, x11_comin, x11_flush, 1.0
79 greg 1.1 };
80    
81    
82     struct driver *
83     x11_init(name, id) /* initialize driver */
84     char *name, *id;
85     {
86 greg 2.6 extern char *getenv();
87     char *gv;
88 greg 1.6 int nplanes;
89 greg 1.10 XSetWindowAttributes ourwinattr;
90 greg 1.4 XWMHints ourxwmhints;
91 greg 1.12 XSizeHints oursizhints;
92 greg 1.1
93     ourdisplay = XOpenDisplay(NULL);
94     if (ourdisplay == NULL) {
95     stderr_v("cannot open X-windows; DISPLAY variable set?\n");
96     return(NULL);
97     }
98 greg 2.2 /* find a usable visual */
99 greg 1.6 nplanes = DisplayPlanes(ourdisplay, ourscreen);
100 greg 2.4 if (XMatchVisualInfo(ourdisplay,ourscreen,
101     24,TrueColor,&ourvinfo) ||
102     XMatchVisualInfo(ourdisplay,ourscreen,
103     24,DirectColor,&ourvinfo)) {
104     ourblack = 0;
105     ourwhite = ourvinfo.red_mask |
106     ourvinfo.green_mask |
107     ourvinfo.blue_mask ;
108     } else {
109 greg 2.2 if (nplanes < 4) {
110     stderr_v("not enough colors\n");
111 greg 1.6 return(NULL);
112 greg 2.4 }
113     if (!XMatchVisualInfo(ourdisplay,ourscreen,
114 greg 2.2 nplanes,PseudoColor,&ourvinfo) &&
115     !XMatchVisualInfo(ourdisplay,ourscreen,
116     nplanes,GrayScale,&ourvinfo)) {
117     stderr_v("unsupported visual type\n");
118     return(NULL);
119 greg 1.6 }
120 greg 2.3 ourblack = BlackPixel(ourdisplay,ourscreen);
121     ourwhite = WhitePixel(ourdisplay,ourscreen);
122     }
123 greg 2.6 /* set gamma */
124     if ((gv = getenv("GAMMA")) != NULL)
125     make_gmap(atof(gv));
126     else
127     make_gmap(GAMMA);
128     /* open window */
129 greg 1.12 ourwinattr.background_pixel = ourblack;
130 greg 1.10 ourwinattr.border_pixel = ourblack;
131 greg 2.4 /* this is stupid */
132 greg 2.2 ourwinattr.colormap = XCreateColormap(ourdisplay, ourroot,
133     ourvinfo.visual, AllocNone);
134 greg 1.10 gwind = XCreateWindow(ourdisplay, ourroot, 0, 0,
135 greg 1.4 DisplayWidth(ourdisplay,ourscreen)-2*BORWIDTH,
136     DisplayHeight(ourdisplay,ourscreen)-2*BORWIDTH,
137 greg 2.2 BORWIDTH, ourvinfo.depth, InputOutput, ourvinfo.visual,
138     CWBackPixel|CWBorderPixel|CWColormap, &ourwinattr);
139 greg 1.4 if (gwind == 0) {
140     stderr_v("cannot create window\n");
141     return(NULL);
142     }
143 greg 2.4 XStoreName(ourdisplay, gwind, id);
144 greg 1.10 /* create a cursor */
145     pickcursor = XCreateFontCursor(ourdisplay, XC_diamond_cross);
146 greg 1.4 ourgc = XCreateGC(ourdisplay, gwind, 0, NULL);
147 greg 1.18 ourxwmhints.flags = InputHint|IconPixmapHint;
148 greg 1.4 ourxwmhints.input = True;
149 greg 1.18 ourxwmhints.icon_pixmap = XCreateBitmapFromData(ourdisplay,
150     gwind, x11icon_bits, x11icon_width, x11icon_height);
151 greg 1.4 XSetWMHints(ourdisplay, gwind, &ourxwmhints);
152 greg 1.12 oursizhints.min_width = MINWIDTH;
153     oursizhints.min_height = MINHEIGHT+COMHEIGHT;
154     oursizhints.flags = PMinSize;
155     XSetNormalHints(ourdisplay, gwind, &oursizhints);
156 greg 1.4 XSelectInput(ourdisplay, gwind, ExposureMask);
157     XMapWindow(ourdisplay, gwind);
158 greg 1.17 XWindowEvent(ourdisplay, gwind, ExposureMask, levptr(XEvent));
159 greg 1.4 gwidth = levptr(XExposeEvent)->width;
160     gheight = levptr(XExposeEvent)->height - COMHEIGHT;
161     x11_driver.xsiz = gwidth < MINWIDTH ? MINWIDTH : gwidth;
162     x11_driver.ysiz = gheight < MINHEIGHT ? MINHEIGHT : gheight;
163 greg 1.1 x11_driver.inpready = 0;
164 greg 2.8 mapped = 1;
165 greg 1.1 cmdvec = x11_comout; /* set error vectors */
166     if (wrnvec != NULL)
167     wrnvec = x11_errout;
168     return(&x11_driver);
169     }
170    
171    
172     static
173     x11_close() /* close our display */
174     {
175     cmdvec = NULL; /* reset error vectors */
176     if (wrnvec != NULL)
177     wrnvec = stderr_v;
178     if (ourdisplay == NULL)
179     return;
180     if (comline != NULL) {
181     xt_close(comline);
182     comline = NULL;
183     }
184 greg 1.8 freepixels();
185     XFreeGC(ourdisplay, ourgc);
186     XDestroyWindow(ourdisplay, gwind);
187     gwind = 0;
188     ourgc = 0;
189 greg 1.1 XFreeCursor(ourdisplay, pickcursor);
190     XCloseDisplay(ourdisplay);
191     ourdisplay = NULL;
192     }
193    
194    
195     static
196     x11_clear(xres, yres) /* clear our display */
197     int xres, yres;
198     {
199 greg 1.12 /* check limits */
200     if (xres < MINWIDTH)
201     xres = MINWIDTH;
202     if (yres < MINHEIGHT)
203     yres = MINHEIGHT;
204     /* resize window */
205     if (xres != gwidth || yres != gheight) {
206 greg 1.4 XSelectInput(ourdisplay, gwind, 0);
207     XResizeWindow(ourdisplay, gwind, xres, yres+COMHEIGHT);
208 greg 1.1 gwidth = xres;
209     gheight = yres;
210 greg 1.8 XFlush(ourdisplay);
211     sleep(2); /* wait for window manager */
212 greg 1.4 XSync(ourdisplay, 1); /* discard input */
213     }
214 greg 1.13 XClearWindow(ourdisplay, gwind);
215     /* reinitialize color table */
216 greg 2.2 if (ourvinfo.class == PseudoColor || ourvinfo.class == GrayScale)
217 greg 1.13 if (getpixels() == 0)
218     stderr_v("cannot allocate colors\n");
219     else
220     new_ctab(ncolors);
221 greg 1.12 /* get new command line */
222 greg 1.13 if (comline != NULL)
223     xt_close(comline);
224 greg 2.3 comline = xt_open(ourdisplay, gwind, 0, gheight,
225     gwidth, COMHEIGHT, 0, ourblack, ourwhite, COMFN);
226 greg 1.12 if (comline == NULL) {
227     stderr_v("Cannot open command line window\n");
228     quit(1);
229     }
230     XSelectInput(ourdisplay, comline->w, ExposureMask);
231     /* remove earmuffs */
232 greg 1.4 XSelectInput(ourdisplay, gwind,
233     StructureNotifyMask|ExposureMask|KeyPressMask|ButtonPressMask);
234 greg 1.1 }
235    
236    
237     static
238     x11_paintr(col, xmin, ymin, xmax, ymax) /* fill a rectangle */
239     COLOR col;
240     int xmin, ymin, xmax, ymax;
241     {
242     extern int xnewcolr(); /* pixel assignment routine */
243 greg 1.6 extern unsigned long true_pixel();
244     unsigned long pixel;
245 greg 1.1
246 greg 2.8 if (!mapped)
247     return;
248 greg 1.6 if (ncolors > 0)
249     pixel = pixval[get_pixel(col, xnewcolr)];
250 greg 2.8 else
251 greg 1.6 pixel = true_pixel(col);
252     XSetForeground(ourdisplay, ourgc, pixel);
253     XFillRectangle(ourdisplay, gwind,
254     ourgc, xmin, gheight-ymax, xmax-xmin, ymax-ymin);
255 greg 1.5 }
256    
257    
258     static
259     x11_flush() /* flush output */
260     {
261 greg 1.10 XNoOp(ourdisplay);
262 greg 1.5 while (XPending(ourdisplay) > 0)
263     getevent();
264 greg 1.1 }
265    
266    
267     static
268 greg 1.3 x11_comin(inp, prompt) /* read in a command line */
269     char *inp, *prompt;
270 greg 1.1 {
271 greg 1.14 extern int x11_getc();
272 greg 1.1
273 greg 1.3 if (prompt != NULL)
274 greg 1.4 if (fromcombuf(inp, &x11_driver))
275     return;
276     else
277     xt_puts(prompt, comline);
278 greg 1.1 xt_cursor(comline, TBLKCURS);
279     editline(inp, x11_getc, x11_comout);
280     xt_cursor(comline, TNOCURS);
281     }
282    
283    
284     static
285     x11_comout(out) /* output a string to command line */
286     char *out;
287     {
288 greg 1.11 if (comline == NULL)
289     return;
290     xt_puts(out, comline);
291     if (out[strlen(out)-1] == '\n')
292     XFlush(ourdisplay);
293 greg 1.1 }
294    
295    
296     static
297     x11_errout(msg) /* output an error message */
298     char *msg;
299     {
300 greg 1.9 stderr_v(msg); /* send to stderr also! */
301 greg 1.1 x11_comout(msg);
302     }
303    
304    
305     static int
306     x11_getcur(xp, yp) /* get cursor position */
307     int *xp, *yp;
308     {
309     while (XGrabPointer(ourdisplay, gwind, True, ButtonPressMask,
310     GrabModeAsync, GrabModeAsync, None, pickcursor,
311     CurrentTime) != GrabSuccess)
312     sleep(2);
313    
314     do
315     getevent();
316     while (c_last <= c_first && levptr(XEvent)->type != ButtonPress);
317     *xp = levptr(XButtonPressedEvent)->x;
318     *yp = gheight-1 - levptr(XButtonPressedEvent)->y;
319     XUngrabPointer(ourdisplay, CurrentTime);
320     XFlush(ourdisplay); /* insure release */
321     if (c_last > c_first) /* key pressed */
322     return(x11_getc());
323     /* button pressed */
324 greg 2.10 if (levptr(XButtonPressedEvent)->button == Button1)
325 greg 1.1 return(MB1);
326 greg 2.10 if (levptr(XButtonPressedEvent)->button == Button2)
327 greg 1.1 return(MB2);
328 greg 2.10 if (levptr(XButtonPressedEvent)->button == Button3)
329 greg 1.1 return(MB3);
330     return(ABORT);
331     }
332    
333    
334     static
335     xnewcolr(ndx, r, g, b) /* enter a color into hardware table */
336     int ndx;
337     int r, g, b;
338     {
339     XColor xcolor;
340    
341     xcolor.pixel = pixval[ndx];
342     xcolor.red = r << 8;
343     xcolor.green = g << 8;
344     xcolor.blue = b << 8;
345     xcolor.flags = DoRed|DoGreen|DoBlue;
346    
347     XStoreColor(ourdisplay, ourmap, &xcolor);
348     }
349    
350    
351     static int
352     getpixels() /* get the color map */
353     {
354 greg 1.16 XColor thiscolor;
355     register int i, j;
356    
357 greg 1.4 if (ncolors > 0)
358 greg 2.2 return(ncolors);
359     if (ourvinfo.visual == DefaultVisual(ourdisplay,ourscreen)) {
360 greg 1.6 ourmap = DefaultColormap(ourdisplay,ourscreen);
361     goto loop;
362     }
363     newmap:
364 greg 2.2 ourmap = XCreateColormap(ourdisplay,gwind,ourvinfo.visual,AllocNone);
365 greg 1.6 loop:
366 greg 2.2 for (ncolors = ourvinfo.colormap_size;
367     ncolors > ourvinfo.colormap_size/3;
368 greg 1.6 ncolors = ncolors*.937) {
369 greg 1.17 pixval = (unsigned long *)malloc(ncolors*sizeof(unsigned long));
370 greg 1.1 if (pixval == NULL)
371 greg 1.6 return(ncolors = 0);
372 greg 2.8 if (XAllocColorCells(ourdisplay,ourmap,0,NULL,0,pixval,ncolors))
373 greg 1.6 break;
374 greg 1.1 free((char *)pixval);
375 greg 1.6 pixval = NULL;
376 greg 1.1 }
377 greg 1.6 if (pixval == NULL) {
378     if (ourmap == DefaultColormap(ourdisplay,ourscreen))
379     goto newmap; /* try it with our map */
380     else
381     return(ncolors = 0); /* failed */
382     }
383 greg 1.16 if (ourmap != DefaultColormap(ourdisplay,ourscreen))
384     for (i = 0; i < ncolors; i++) { /* reset black and white */
385 greg 1.6 if (pixval[i] != ourblack && pixval[i] != ourwhite)
386     continue;
387     thiscolor.pixel = pixval[i];
388     thiscolor.flags = DoRed|DoGreen|DoBlue;
389     XQueryColor(ourdisplay,
390     DefaultColormap(ourdisplay,ourscreen),
391     &thiscolor);
392     XStoreColor(ourdisplay, ourmap, &thiscolor);
393     for (j = i; j+1 < ncolors; j++)
394     pixval[j] = pixval[j+1];
395     ncolors--;
396     i--;
397     }
398 greg 1.16 XSetWindowColormap(ourdisplay, gwind, ourmap);
399 greg 1.6 return(ncolors);
400 greg 1.1 }
401    
402    
403     static
404     freepixels() /* free our pixels */
405     {
406     if (ncolors == 0)
407     return;
408     XFreeColors(ourdisplay,ourmap,pixval,ncolors,0L);
409 greg 2.7 free((char *)pixval);
410     pixval = NULL;
411 greg 1.1 ncolors = 0;
412 greg 1.8 if (ourmap != DefaultColormap(ourdisplay,ourscreen))
413 greg 1.6 XFreeColormap(ourdisplay, ourmap);
414     ourmap = 0;
415 greg 1.1 }
416    
417    
418 greg 1.6 static unsigned long
419     true_pixel(col) /* return true pixel value for color */
420     COLOR col;
421     {
422     unsigned long rval;
423     BYTE rgb[3];
424    
425     map_color(rgb, col);
426 greg 2.2 rval = ourvinfo.red_mask*rgb[RED]/255 & ourvinfo.red_mask;
427     rval |= ourvinfo.green_mask*rgb[GRN]/255 & ourvinfo.green_mask;
428     rval |= ourvinfo.blue_mask*rgb[BLU]/255 & ourvinfo.blue_mask;
429 greg 1.6 return(rval);
430     }
431    
432    
433 greg 1.1 static int
434     x11_getc() /* get a command character */
435     {
436     while (c_last <= c_first) {
437     c_first = c_last = 0; /* reset */
438     getevent(); /* wait for key */
439     }
440     x11_driver.inpready--;
441     return(c_queue[c_first++]);
442     }
443    
444    
445     static
446     getevent() /* get next event */
447     {
448     XNextEvent(ourdisplay, levptr(XEvent));
449     switch (levptr(XEvent)->type) {
450 greg 1.4 case ConfigureNotify:
451     resizewindow(levptr(XConfigureEvent));
452     break;
453     case UnmapNotify:
454 greg 2.8 mapped = 0;
455 greg 1.4 freepixels();
456     break;
457     case MapNotify:
458 greg 2.2 if (ourvinfo.class == PseudoColor ||
459     ourvinfo.class == GrayScale)
460 greg 1.6 if (getpixels() == 0)
461     stderr_v("Cannot allocate colors\n");
462     else
463     new_ctab(ncolors);
464 greg 2.8 mapped = 1;
465 greg 1.4 break;
466     case Expose:
467     fixwindow(levptr(XExposeEvent));
468     break;
469 greg 1.1 case KeyPress:
470     getkey(levptr(XKeyPressedEvent));
471     break;
472     case ButtonPress:
473     break;
474     }
475     }
476    
477    
478     static
479     getkey(ekey) /* get input key */
480     register XKeyPressedEvent *ekey;
481     {
482 greg 1.8 register int n;
483 greg 1.7
484     n = XLookupString(ekey, c_queue+c_last, sizeof(c_queue)-c_last,
485 greg 1.1 NULL, NULL);
486 greg 1.7 c_last += n;
487     x11_driver.inpready += n;
488 greg 1.1 }
489    
490    
491     static
492     fixwindow(eexp) /* repair damage to window */
493     register XExposeEvent *eexp;
494     {
495 greg 1.4 if (eexp->window == gwind) {
496     sprintf(getcombuf(&x11_driver), "repaint %d %d %d %d\n",
497     eexp->x, gheight - eexp->y - eexp->height,
498 greg 1.1 eexp->x + eexp->width, gheight - eexp->y);
499 greg 1.4 } else if (eexp->window == comline->w) {
500     if (eexp->count == 0)
501     xt_redraw(comline);
502     }
503 greg 1.1 }
504 greg 1.4
505    
506     static
507     resizewindow(ersz) /* resize window */
508     register XConfigureEvent *ersz;
509     {
510     if (ersz->width == gwidth && ersz->height-COMHEIGHT == gheight)
511     return;
512    
513     gwidth = ersz->width;
514     gheight = ersz->height-COMHEIGHT;
515     x11_driver.xsiz = gwidth < MINWIDTH ? MINWIDTH : gwidth;
516     x11_driver.ysiz = gheight < MINHEIGHT ? MINHEIGHT : gheight;
517    
518     strcpy(getcombuf(&x11_driver), "new\n");
519     }