ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/x11.c
(Generate patch)

Comparing ray/src/rt/x11.c (file contents):
Revision 1.8 by greg, Thu Mar 1 08:22:44 1990 UTC vs.
Revision 2.12 by greg, Fri Jun 4 14:48:52 1993 UTC

# Line 1 | Line 1
1 + /* Copyright (c) 1992 Regents of the University of California */
2 +
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
5   #endif
6  
5 /* Copyright (c) 1989 Regents of the University of California */
6
7   /*
8 < *  x11.c - driver for X-windows version 11.3
8 > *  x11.c - driver for X-windows version 11
9   *
10   *     Jan 1990
11   */
12  
13   #include  <stdio.h>
14 <
14 > #include  <math.h>
15   #include  <sys/ioctl.h>
16  
17   #include  <X11/Xlib.h>
# Line 21 | Line 21 | static char SCCSid[] = "$SunId$ LBL";
21   #include  "color.h"
22   #include  "driver.h"
23   #include  "x11twind.h"
24 + #include  "x11icon.h"
25  
26 < #define GAMMA           2.2             /* exponent for color correction */
26 > #define GAMMA           2.2             /* default exponent correction */
27  
28   #define MINWIDTH        (32*COMCW)      /* minimum graphics window width */
29 < #define MINHEIGHT       MINWIDTH        /* minimum graphics window height */
29 > #define MINHEIGHT       (MINWIDTH/2)    /* minimum graphics window height */
30  
31   #define BORWIDTH        5               /* border width */
32   #define COMHEIGHT       (COMLH*COMCH)   /* command line height (pixels) */
# Line 37 | Line 38 | static char SCCSid[] = "$SunId$ LBL";
38  
39   #define  ourscreen      DefaultScreen(ourdisplay)
40   #define  ourroot        RootWindow(ourdisplay,ourscreen)
40 #define  ourwhite       WhitePixel(ourdisplay,ourscreen)
41 #define  ourblack       BlackPixel(ourdisplay,ourscreen)
41  
42   #define  levptr(etype)  ((etype *)&currentevent)
43  
44   static XEvent  currentevent;            /* current event */
45  
46   static int  ncolors = 0;                /* color table size */
47 < static int  *pixval = NULL;             /* allocated pixels */
47 > static int  mapped = 0;                 /* window is mapped? */
48 > static unsigned long  *pixval = NULL;   /* allocated pixels */
49 > static unsigned long  ourblack=0, ourwhite=1;
50  
51   static Display  *ourdisplay = NULL;     /* our display */
52  
53 < static Visual  *ourvisual;              /* our visual structure */
53 > static XVisualInfo  ourvinfo;           /* our visual information */
54  
55   static Window  gwind = 0;               /* our graphics window */
56  
# Line 67 | Line 68 | static GC  ourgc = 0;                  /* our graphics context for dr
68  
69   static Colormap ourmap = 0;             /* our color map */
70  
71 < extern char  *malloc();
71 > extern char  *malloc(), *getcombuf();
72  
73 < int  x11_close(), x11_clear(), x11_paintr(), x11_errout(),
73 > static int  x11_close(), x11_clear(), x11_paintr(), x11_errout(),
74                  x11_getcur(), x11_comout(), x11_comin(), x11_flush();
75  
76   static struct driver  x11_driver = {
# Line 77 | Line 78 | static struct driver  x11_driver = {
78          x11_comout, x11_comin, x11_flush, 1.0
79   };
80  
81 + static int  getpixels(), xnewcolr(), freepixels(),
82 +                getevent(), getkey(), fixwindow();
83 + static unsigned long  true_pixel();
84  
85 +
86   struct driver *
87   x11_init(name, id)              /* initialize driver */
88   char  *name, *id;
89   {
90 +        extern char  *getenv();
91 +        char  *gv;
92          int  nplanes;
93 <        XVisualInfo  ourvinfo;
93 >        XSetWindowAttributes    ourwinattr;
94          XWMHints  ourxwmhints;
95 +        XSizeHints      oursizhints;
96  
97          ourdisplay = XOpenDisplay(NULL);
98          if (ourdisplay == NULL) {
99                  stderr_v("cannot open X-windows; DISPLAY variable set?\n");
100                  return(NULL);
101          }
102 +                                        /* find a usable visual */
103          nplanes = DisplayPlanes(ourdisplay, ourscreen);
104 <        if (nplanes < 4) {
105 <                stderr_v("not enough colors\n");
106 <                return(NULL);
107 <        } else if (nplanes <= 12) {
104 >        if (XMatchVisualInfo(ourdisplay,ourscreen,
105 >                                24,TrueColor,&ourvinfo) ||
106 >                        XMatchVisualInfo(ourdisplay,ourscreen,
107 >                                24,DirectColor,&ourvinfo)) {
108 >                ourblack = 0;
109 >                ourwhite = ourvinfo.red_mask |
110 >                                ourvinfo.green_mask |
111 >                                ourvinfo.blue_mask ;
112 >        } else {
113 >                if (nplanes < 4) {
114 >                        stderr_v("not enough colors\n");
115 >                        return(NULL);
116 >                }
117                  if (!XMatchVisualInfo(ourdisplay,ourscreen,
118 <                                nplanes,PseudoColor,&ourvinfo)) {
119 <                        stderr_v("PseudoColor not supported\n");
118 >                                        nplanes,PseudoColor,&ourvinfo) &&
119 >                                !XMatchVisualInfo(ourdisplay,ourscreen,
120 >                                        nplanes,GrayScale,&ourvinfo)) {
121 >                        stderr_v("unsupported visual type\n");
122                          return(NULL);
123                  }
124 <        } else if (!XMatchVisualInfo(ourdisplay,ourscreen,
125 <                        nplanes,TrueColor,&ourvinfo)) {
106 <                stderr_v("TrueColor not supported\n");
107 <                return(NULL);
124 >                ourblack = BlackPixel(ourdisplay,ourscreen);
125 >                ourwhite = WhitePixel(ourdisplay,ourscreen);
126          }
127 <        ourvisual = ourvinfo.visual;
128 <        make_gmap(GAMMA);
129 <        /* create a cursor */
130 <        pickcursor = XCreateFontCursor (ourdisplay, XC_diamond_cross);
131 <        /* open window */
132 <        gwind = XCreateSimpleWindow(ourdisplay, ourroot, 0, 0,
127 >                                        /* set gamma */
128 >        if ((gv = getenv("GAMMA")) != NULL)
129 >                make_gmap(atof(gv));
130 >        else
131 >                make_gmap(GAMMA);
132 >                                        /* open window */
133 >        ourwinattr.background_pixel = ourblack;
134 >        ourwinattr.border_pixel = ourblack;
135 >                                        /* this is stupid */
136 >        ourwinattr.colormap = XCreateColormap(ourdisplay, ourroot,
137 >                                ourvinfo.visual, AllocNone);
138 >        gwind = XCreateWindow(ourdisplay, ourroot, 0, 0,
139                  DisplayWidth(ourdisplay,ourscreen)-2*BORWIDTH,
140                  DisplayHeight(ourdisplay,ourscreen)-2*BORWIDTH,
141 <                BORWIDTH, ourblack, ourwhite);
141 >                BORWIDTH, ourvinfo.depth, InputOutput, ourvinfo.visual,
142 >                CWBackPixel|CWBorderPixel|CWColormap, &ourwinattr);
143          if (gwind == 0) {
144                  stderr_v("cannot create window\n");
145                  return(NULL);
146          }
147 <        XStoreName(ourdisplay, gwind, id);
147 >        XStoreName(ourdisplay, gwind, id);
148 >        /* create a cursor */
149 >        pickcursor = XCreateFontCursor(ourdisplay, XC_diamond_cross);
150          ourgc = XCreateGC(ourdisplay, gwind, 0, NULL);
151 <        ourxwmhints.flags = InputHint;
151 >        ourxwmhints.flags = InputHint|IconPixmapHint;
152          ourxwmhints.input = True;
153 +        ourxwmhints.icon_pixmap = XCreateBitmapFromData(ourdisplay,
154 +                        gwind, x11icon_bits, x11icon_width, x11icon_height);
155          XSetWMHints(ourdisplay, gwind, &ourxwmhints);
156 +        oursizhints.min_width = MINWIDTH;
157 +        oursizhints.min_height = MINHEIGHT+COMHEIGHT;
158 +        oursizhints.flags = PMinSize;
159 +        XSetNormalHints(ourdisplay, gwind, &oursizhints);
160          XSelectInput(ourdisplay, gwind, ExposureMask);
161          XMapWindow(ourdisplay, gwind);
162 <        XWindowEvent(ourdisplay, gwind, ExposureMask, levptr(XExposeEvent));
162 >        XWindowEvent(ourdisplay, gwind, ExposureMask, levptr(XEvent));
163          gwidth = levptr(XExposeEvent)->width;
164          gheight = levptr(XExposeEvent)->height - COMHEIGHT;
165          x11_driver.xsiz = gwidth < MINWIDTH ? MINWIDTH : gwidth;
166          x11_driver.ysiz = gheight < MINHEIGHT ? MINHEIGHT : gheight;
167          x11_driver.inpready = 0;
168 +        mapped = 1;
169          cmdvec = x11_comout;                    /* set error vectors */
170          if (wrnvec != NULL)
171                  wrnvec = x11_errout;
# Line 166 | Line 200 | static
200   x11_clear(xres, yres)                   /* clear our display */
201   int  xres, yres;
202   {
203 <        if (xres != gwidth || yres != gheight) {        /* change window */
204 <                if (comline != NULL)
205 <                        xt_close(comline);
203 >                                                /* check limits */
204 >        if (xres < MINWIDTH)
205 >                xres = MINWIDTH;
206 >        if (yres < MINHEIGHT)
207 >                yres = MINHEIGHT;
208 >                                                /* resize window */
209 >        if (xres != gwidth || yres != gheight) {
210                  XSelectInput(ourdisplay, gwind, 0);
211                  XResizeWindow(ourdisplay, gwind, xres, yres+COMHEIGHT);
174                comline = xt_open(ourdisplay,
175                                DefaultGC(ourdisplay,ourscreen),
176                                gwind, 0, yres, xres, COMHEIGHT, 0, COMFN);
177                if (comline == NULL) {
178                        stderr_v("Cannot open command line window\n");
179                        quit(1);
180                }
181                XSelectInput(ourdisplay, comline->w, ExposureMask);
212                  gwidth = xres;
213                  gheight = yres;
214                  XFlush(ourdisplay);
# Line 186 | Line 216 | int  xres, yres;
216                  XSync(ourdisplay, 1);           /* discard input */
217          }
218          XClearWindow(ourdisplay, gwind);
219 <        if (ourvisual->class == PseudoColor)    /* reinitialize color table */
219 >                                                /* reinitialize color table */
220 >        if (ourvinfo.class == PseudoColor || ourvinfo.class == GrayScale)
221                  if (getpixels() == 0)
222                          stderr_v("cannot allocate colors\n");
223                  else
224                          new_ctab(ncolors);
225 <
225 >                                                /* get new command line */
226 >        if (comline != NULL)
227 >                xt_close(comline);
228 >        comline = xt_open(ourdisplay, gwind, 0, gheight,
229 >                        gwidth, COMHEIGHT, 0, ourblack, ourwhite, COMFN);
230 >        if (comline == NULL) {
231 >                stderr_v("Cannot open command line window\n");
232 >                quit(1);
233 >        }
234 >        XSelectInput(ourdisplay, comline->w, ExposureMask);
235 >                                                /* remove earmuffs */
236          XSelectInput(ourdisplay, gwind,
237                  StructureNotifyMask|ExposureMask|KeyPressMask|ButtonPressMask);
238   }
# Line 202 | Line 243 | x11_paintr(col, xmin, ymin, xmax, ymax)                /* fill a rec
243   COLOR  col;
244   int  xmin, ymin, xmax, ymax;
245   {
205        extern int  xnewcolr();         /* pixel assignment routine */
206        extern unsigned long  true_pixel();
246          unsigned long  pixel;
247  
248 +        if (!mapped)
249 +                return;
250          if (ncolors > 0)
251                  pixel = pixval[get_pixel(col, xnewcolr)];
211        else if (ourvisual->class == TrueColor)
212                pixel = true_pixel(col);
252          else
253 <                return;
253 >                pixel = true_pixel(col);
254          XSetForeground(ourdisplay, ourgc, pixel);
255          XFillRectangle(ourdisplay, gwind,
256                  ourgc, xmin, gheight-ymax, xmax-xmin, ymax-ymin);
# Line 221 | Line 260 | int  xmin, ymin, xmax, ymax;
260   static
261   x11_flush()                     /* flush output */
262   {
263 <        if (ncolors <= 0 && ourvisual->class != TrueColor)      /* dummy */
225 <                XFillRectangle(ourdisplay, gwind, ourgc, 0, 0, 1 ,1);
263 >        XNoOp(ourdisplay);
264          while (XPending(ourdisplay) > 0)
265                  getevent();
266   }
# Line 232 | Line 270 | static
270   x11_comin(inp, prompt)          /* read in a command line */
271   char  *inp, *prompt;
272   {
273 <        int  x11_getc(), x11_comout();
273 >        extern int  x11_getc();
274  
275          if (prompt != NULL)
276                  if (fromcombuf(inp, &x11_driver))
# Line 249 | Line 287 | static
287   x11_comout(out)                 /* output a string to command line */
288   char  *out;
289   {
290 <        if (comline != NULL)
291 <                xt_puts(out, comline);
290 >        if (comline == NULL)
291 >                return;
292 >        xt_puts(out, comline);
293 >        if (out[strlen(out)-1] == '\n')
294 >                XFlush(ourdisplay);
295   }
296  
297  
# Line 258 | Line 299 | static
299   x11_errout(msg)                 /* output an error message */
300   char  *msg;
301   {
261        x11_comout(msg);
302          stderr_v(msg);          /* send to stderr also! */
303 +        x11_comout(msg);
304   }
305  
306  
# Line 282 | Line 323 | int  *xp, *yp;
323          if (c_last > c_first)                   /* key pressed */
324                  return(x11_getc());
325                                                  /* button pressed */
326 <        if (levptr(XButtonPressedEvent)->button & Button1)
326 >        if (levptr(XButtonPressedEvent)->button == Button1)
327                  return(MB1);
328 <        if (levptr(XButtonPressedEvent)->button & Button2)
328 >        if (levptr(XButtonPressedEvent)->button == Button2)
329                  return(MB2);
330 <        if (levptr(XButtonPressedEvent)->button & Button3)
330 >        if (levptr(XButtonPressedEvent)->button == Button3)
331                  return(MB3);
291        if (levptr(XButtonPressedEvent)->button & (Button4|Button5))
292                return(MB1);
332          return(ABORT);
333   }
334  
# Line 314 | Line 353 | int  r, g, b;
353   static int
354   getpixels()                             /* get the color map */
355   {
356 +        XColor  thiscolor;
357 +        register int  i, j;
358 +
359          if (ncolors > 0)
360                  return(ncolors);
361 <        if (ourvisual == DefaultVisual(ourdisplay,ourscreen)) {
361 >        if (ourvinfo.visual == DefaultVisual(ourdisplay,ourscreen)) {
362                  ourmap = DefaultColormap(ourdisplay,ourscreen);
363                  goto loop;
364          }
365   newmap:
366 <        ourmap = XCreateColormap(ourdisplay,gwind,ourvisual,AllocNone);
366 >        ourmap = XCreateColormap(ourdisplay,gwind,ourvinfo.visual,AllocNone);
367   loop:
368 <        for (ncolors = ourvisual->map_entries;
369 <                        ncolors > ourvisual->map_entries/3;
368 >        for (ncolors = ourvinfo.colormap_size;
369 >                        ncolors > ourvinfo.colormap_size/3;
370                          ncolors = ncolors*.937) {
371 <                pixval = (int *)malloc(ncolors*sizeof(int));
371 >                pixval = (unsigned long *)malloc(ncolors*sizeof(unsigned long));
372                  if (pixval == NULL)
373                          return(ncolors = 0);
374 <                if (XAllocColorCells(ourdisplay,ourmap,0,NULL,0,
333 <                                pixval,ncolors) != 0)
374 >                if (XAllocColorCells(ourdisplay,ourmap,0,NULL,0,pixval,ncolors))
375                          break;
376                  free((char *)pixval);
377                  pixval = NULL;
# Line 341 | Line 382 | loop:
382                  else
383                          return(ncolors = 0);    /* failed */
384          }
385 <        if (ourmap != DefaultColormap(ourdisplay,ourscreen)) {
386 <                XColor  thiscolor;
346 <                register int  i, j;
347 <                                                /* reset black and white */
348 <                for (i = 0; i < ncolors; i++) {
385 >        if (ourmap != DefaultColormap(ourdisplay,ourscreen))
386 >                for (i = 0; i < ncolors; i++) { /* reset black and white */
387                          if (pixval[i] != ourblack && pixval[i] != ourwhite)
388                                  continue;
389                          thiscolor.pixel = pixval[i];
# Line 359 | Line 397 | loop:
397                          ncolors--;
398                          i--;
399                  }
362        }
400          XSetWindowColormap(ourdisplay, gwind, ourmap);
401          return(ncolors);
402   }
# Line 371 | Line 408 | freepixels()                           /* free our pixels */
408          if (ncolors == 0)
409                  return;
410          XFreeColors(ourdisplay,ourmap,pixval,ncolors,0L);
411 +        free((char *)pixval);
412 +        pixval = NULL;
413          ncolors = 0;
414          if (ourmap != DefaultColormap(ourdisplay,ourscreen))
415                  XFreeColormap(ourdisplay, ourmap);
# Line 386 | Line 425 | COLOR  col;
425          BYTE  rgb[3];
426  
427          map_color(rgb, col);
428 <        rval = ourvisual->red_mask*rgb[RED]/255 & ourvisual->red_mask;
429 <        rval |= ourvisual->green_mask*rgb[GRN]/255 & ourvisual->green_mask;
430 <        rval |= ourvisual->blue_mask*rgb[BLU]/255 & ourvisual->blue_mask;
428 >        rval = ourvinfo.red_mask*rgb[RED]/255 & ourvinfo.red_mask;
429 >        rval |= ourvinfo.green_mask*rgb[GRN]/255 & ourvinfo.green_mask;
430 >        rval |= ourvinfo.blue_mask*rgb[BLU]/255 & ourvinfo.blue_mask;
431          return(rval);
432   }
433  
# Line 414 | Line 453 | getevent()                     /* get next event */
453                  resizewindow(levptr(XConfigureEvent));
454                  break;
455          case UnmapNotify:
456 +                mapped = 0;
457                  freepixels();
458                  break;
459          case MapNotify:
460 <                if (ourvisual->class == PseudoColor)
460 >                if (ourvinfo.class == PseudoColor ||
461 >                                ourvinfo.class == GrayScale)
462                          if (getpixels() == 0)
463                                  stderr_v("Cannot allocate colors\n");
464                          else
465                                  new_ctab(ncolors);
466 +                mapped = 1;
467                  break;
468          case Expose:
469                  fixwindow(levptr(XExposeEvent));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines