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.15 by greg, Tue Jul 10 08:47:07 1990 UTC vs.
Revision 2.2 by greg, Fri May 29 10:57:15 1992 UTC

# 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 */
27  
# Line 45 | Line 46 | static char SCCSid[] = "$SunId$ LBL";
46   static XEvent  currentevent;            /* current event */
47  
48   static int  ncolors = 0;                /* color table size */
49 < static int  *pixval = NULL;             /* allocated pixels */
49 > static unsigned long  *pixval = NULL;   /* allocated pixels */
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 83 | Line 84 | x11_init(name, id)             /* initialize driver */
84   char  *name, *id;
85   {
86          int  nplanes;
86        XVisualInfo  ourvinfo;
87          XSetWindowAttributes    ourwinattr;
88          XWMHints  ourxwmhints;
89          XSizeHints      oursizhints;
# Line 93 | Line 93 | char  *name, *id;
93                  stderr_v("cannot open X-windows; DISPLAY variable set?\n");
94                  return(NULL);
95          }
96 +                                        /* find a usable visual */
97          nplanes = DisplayPlanes(ourdisplay, ourscreen);
98 <        if (nplanes < 4) {
99 <                stderr_v("not enough colors\n");
100 <                return(NULL);
101 <        } else if (nplanes <= 12) {
102 <                if (!XMatchVisualInfo(ourdisplay,ourscreen,
103 <                                nplanes,PseudoColor,&ourvinfo)) {
103 <                        stderr_v("PseudoColor server required\n");
98 >        if (    !XMatchVisualInfo(ourdisplay,ourscreen,
99 >                        24,TrueColor,&ourvinfo) &&
100 >                !XMatchVisualInfo(ourdisplay,ourscreen,
101 >                        24,DirectColor,&ourvinfo)       )
102 >                if (nplanes < 4) {
103 >                        stderr_v("not enough colors\n");
104                          return(NULL);
105 +                } else if (!XMatchVisualInfo(ourdisplay,ourscreen,
106 +                                        nplanes,PseudoColor,&ourvinfo) &&
107 +                                !XMatchVisualInfo(ourdisplay,ourscreen,
108 +                                        nplanes,GrayScale,&ourvinfo)) {
109 +                        stderr_v("unsupported visual type\n");
110 +                        return(NULL);
111                  }
106        } else if (!XMatchVisualInfo(ourdisplay,ourscreen,
107                        nplanes,TrueColor,&ourvinfo) &&
108                                                /* kludge for DirectColor */
109                        !XMatchVisualInfo(ourdisplay,ourscreen,
110                        nplanes,DirectColor,&ourvinfo)) {
111                stderr_v("TrueColor server required\n");
112                return(NULL);
113        }
114        ourvisual = ourvinfo.visual;
112          make_gmap(GAMMA);
113          /* open window */
114          ourwinattr.background_pixel = ourblack;
115          ourwinattr.border_pixel = ourblack;
116 +                                        /* this is a waste! */
117 +        ourwinattr.colormap = XCreateColormap(ourdisplay, ourroot,
118 +                                ourvinfo.visual, AllocNone);
119          gwind = XCreateWindow(ourdisplay, ourroot, 0, 0,
120                  DisplayWidth(ourdisplay,ourscreen)-2*BORWIDTH,
121                  DisplayHeight(ourdisplay,ourscreen)-2*BORWIDTH,
122 <                BORWIDTH, nplanes, InputOutput, ourvisual,
123 <                CWBackPixel|CWBorderPixel, &ourwinattr);
122 >                BORWIDTH, ourvinfo.depth, InputOutput, ourvinfo.visual,
123 >                CWBackPixel|CWBorderPixel|CWColormap, &ourwinattr);
124          if (gwind == 0) {
125                  stderr_v("cannot create window\n");
126                  return(NULL);
# Line 129 | Line 129 | char  *name, *id;
129          /* create a cursor */
130          pickcursor = XCreateFontCursor(ourdisplay, XC_diamond_cross);
131          ourgc = XCreateGC(ourdisplay, gwind, 0, NULL);
132 <        ourxwmhints.flags = InputHint;
132 >        ourxwmhints.flags = InputHint|IconPixmapHint;
133          ourxwmhints.input = True;
134 +        ourxwmhints.icon_pixmap = XCreateBitmapFromData(ourdisplay,
135 +                        gwind, x11icon_bits, x11icon_width, x11icon_height);
136          XSetWMHints(ourdisplay, gwind, &ourxwmhints);
137          oursizhints.min_width = MINWIDTH;
138          oursizhints.min_height = MINHEIGHT+COMHEIGHT;
# Line 138 | Line 140 | char  *name, *id;
140          XSetNormalHints(ourdisplay, gwind, &oursizhints);
141          XSelectInput(ourdisplay, gwind, ExposureMask);
142          XMapWindow(ourdisplay, gwind);
143 <        XWindowEvent(ourdisplay, gwind, ExposureMask, levptr(XExposeEvent));
143 >        XWindowEvent(ourdisplay, gwind, ExposureMask, levptr(XEvent));
144          gwidth = levptr(XExposeEvent)->width;
145          gheight = levptr(XExposeEvent)->height - COMHEIGHT;
146          x11_driver.xsiz = gwidth < MINWIDTH ? MINWIDTH : gwidth;
# Line 195 | Line 197 | int  xres, yres;
197          }
198          XClearWindow(ourdisplay, gwind);
199                                                  /* reinitialize color table */
200 <        if (ourvisual->class == PseudoColor)
200 >        if (ourvinfo.class == PseudoColor || ourvinfo.class == GrayScale)
201                  if (getpixels() == 0)
202                          stderr_v("cannot allocate colors\n");
203                  else
# Line 228 | Line 230 | int  xmin, ymin, xmax, ymax;
230  
231          if (ncolors > 0)
232                  pixel = pixval[get_pixel(col, xnewcolr)];
233 <        else if (ourvisual->class != PseudoColor)
233 >        else if (ourvinfo.class == TrueColor || ourvinfo.class == DirectColor)
234                  pixel = true_pixel(col);
235          else
236                  return;
# Line 336 | Line 338 | int  r, g, b;
338   static int
339   getpixels()                             /* get the color map */
340   {
341 +        XColor  thiscolor;
342 +        register int  i, j;
343 +
344          if (ncolors > 0)
345                  return(ncolors);
346 <        if (ourvisual == DefaultVisual(ourdisplay,ourscreen)) {
346 >        if (ourvinfo.visual == DefaultVisual(ourdisplay,ourscreen)) {
347                  ourmap = DefaultColormap(ourdisplay,ourscreen);
348                  goto loop;
349          }
350   newmap:
351 <        ourmap = XCreateColormap(ourdisplay,gwind,ourvisual,AllocNone);
351 >        ourmap = XCreateColormap(ourdisplay,gwind,ourvinfo.visual,AllocNone);
352   loop:
353 <        for (ncolors = ourvisual->map_entries;
354 <                        ncolors > ourvisual->map_entries/3;
353 >        for (ncolors = ourvinfo.colormap_size;
354 >                        ncolors > ourvinfo.colormap_size/3;
355                          ncolors = ncolors*.937) {
356 <                pixval = (int *)malloc(ncolors*sizeof(int));
356 >                pixval = (unsigned long *)malloc(ncolors*sizeof(unsigned long));
357                  if (pixval == NULL)
358                          return(ncolors = 0);
359                  if (XAllocColorCells(ourdisplay,ourmap,0,NULL,0,
# Line 363 | Line 368 | loop:
368                  else
369                          return(ncolors = 0);    /* failed */
370          }
371 <        if (ourmap != DefaultColormap(ourdisplay,ourscreen)) {
372 <                XColor  thiscolor;
368 <                register int  i, j;
369 <                                                /* reset black and white */
370 <                for (i = 0; i < ncolors; i++) {
371 >        if (ourmap != DefaultColormap(ourdisplay,ourscreen))
372 >                for (i = 0; i < ncolors; i++) { /* reset black and white */
373                          if (pixval[i] != ourblack && pixval[i] != ourwhite)
374                                  continue;
375                          thiscolor.pixel = pixval[i];
# Line 381 | Line 383 | loop:
383                          ncolors--;
384                          i--;
385                  }
384        }
386          XSetWindowColormap(ourdisplay, gwind, ourmap);
387          return(ncolors);
388   }
# Line 408 | Line 409 | COLOR  col;
409          BYTE  rgb[3];
410  
411          map_color(rgb, col);
412 <        rval = ourvisual->red_mask*rgb[RED]/255 & ourvisual->red_mask;
413 <        rval |= ourvisual->green_mask*rgb[GRN]/255 & ourvisual->green_mask;
414 <        rval |= ourvisual->blue_mask*rgb[BLU]/255 & ourvisual->blue_mask;
412 >        rval = ourvinfo.red_mask*rgb[RED]/255 & ourvinfo.red_mask;
413 >        rval |= ourvinfo.green_mask*rgb[GRN]/255 & ourvinfo.green_mask;
414 >        rval |= ourvinfo.blue_mask*rgb[BLU]/255 & ourvinfo.blue_mask;
415          return(rval);
416   }
417  
# Line 439 | Line 440 | getevent()                     /* get next event */
440                  freepixels();
441                  break;
442          case MapNotify:
443 <                if (ourvisual->class == PseudoColor)
443 >                if (ourvinfo.class == PseudoColor ||
444 >                                ourvinfo.class == GrayScale)
445                          if (getpixels() == 0)
446                                  stderr_v("Cannot allocate colors\n");
447                          else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines