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.14 by greg, Mon Mar 12 11:08:48 1990 UTC vs.
Revision 2.3 by greg, Fri May 29 15:42:49 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 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 unsigned long  *pixval = NULL;   /* allocated pixels */
48 > static unsigned long  ourblack=0, ourwhite=1;
49  
50   static Display  *ourdisplay = NULL;     /* our display */
51  
52 < static Visual  *ourvisual;              /* our visual structure */
52 > static XVisualInfo  ourvinfo;           /* our visual information */
53  
54   static Window  gwind = 0;               /* our graphics window */
55  
# Line 83 | Line 83 | x11_init(name, id)             /* initialize driver */
83   char  *name, *id;
84   {
85          int  nplanes;
86        XVisualInfo  ourvinfo;
86          XSetWindowAttributes    ourwinattr;
87          XWMHints  ourxwmhints;
88          XSizeHints      oursizhints;
# Line 93 | Line 92 | char  *name, *id;
92                  stderr_v("cannot open X-windows; DISPLAY variable set?\n");
93                  return(NULL);
94          }
95 +                                        /* find a usable visual */
96          nplanes = DisplayPlanes(ourdisplay, ourscreen);
97 <        if (nplanes < 4) {
98 <                stderr_v("not enough colors\n");
99 <                return(NULL);
100 <        } else if (nplanes <= 12) {
101 <                if (!XMatchVisualInfo(ourdisplay,ourscreen,
102 <                                nplanes,PseudoColor,&ourvinfo)) {
103 <                        stderr_v("PseudoColor not supported\n");
97 >        if (    !XMatchVisualInfo(ourdisplay,ourscreen,
98 >                        24,TrueColor,&ourvinfo) &&
99 >                !XMatchVisualInfo(ourdisplay,ourscreen,
100 >                        24,DirectColor,&ourvinfo)       ) {
101 >                if (nplanes < 4) {
102 >                        stderr_v("not enough colors\n");
103                          return(NULL);
104 +                } else if (!XMatchVisualInfo(ourdisplay,ourscreen,
105 +                                        nplanes,PseudoColor,&ourvinfo) &&
106 +                                !XMatchVisualInfo(ourdisplay,ourscreen,
107 +                                        nplanes,GrayScale,&ourvinfo)) {
108 +                        stderr_v("unsupported visual type\n");
109 +                        return(NULL);
110                  }
111 <        } else if (!XMatchVisualInfo(ourdisplay,ourscreen,
112 <                        nplanes,TrueColor,&ourvinfo)) {
113 <                stderr_v("TrueColor not supported\n");
114 <                return(NULL);
111 >                ourblack = BlackPixel(ourdisplay,ourscreen);
112 >                ourwhite = WhitePixel(ourdisplay,ourscreen);
113 >        } else {
114 >                ourblack = 0;
115 >                ourwhite = ~0;
116          }
111        ourvisual = ourvinfo.visual;
117          make_gmap(GAMMA);
118          /* open window */
119          ourwinattr.background_pixel = ourblack;
120          ourwinattr.border_pixel = ourblack;
121 +                                        /* this is a waste! */
122 +        ourwinattr.colormap = XCreateColormap(ourdisplay, ourroot,
123 +                                ourvinfo.visual, AllocNone);
124          gwind = XCreateWindow(ourdisplay, ourroot, 0, 0,
125                  DisplayWidth(ourdisplay,ourscreen)-2*BORWIDTH,
126                  DisplayHeight(ourdisplay,ourscreen)-2*BORWIDTH,
127 <                BORWIDTH, nplanes, InputOutput, ourvisual,
128 <                CWBackPixel|CWBorderPixel, &ourwinattr);
127 >                BORWIDTH, ourvinfo.depth, InputOutput, ourvinfo.visual,
128 >                CWBackPixel|CWBorderPixel|CWColormap, &ourwinattr);
129          if (gwind == 0) {
130                  stderr_v("cannot create window\n");
131                  return(NULL);
# Line 126 | Line 134 | char  *name, *id;
134          /* create a cursor */
135          pickcursor = XCreateFontCursor(ourdisplay, XC_diamond_cross);
136          ourgc = XCreateGC(ourdisplay, gwind, 0, NULL);
137 <        ourxwmhints.flags = InputHint;
137 >        ourxwmhints.flags = InputHint|IconPixmapHint;
138          ourxwmhints.input = True;
139 +        ourxwmhints.icon_pixmap = XCreateBitmapFromData(ourdisplay,
140 +                        gwind, x11icon_bits, x11icon_width, x11icon_height);
141          XSetWMHints(ourdisplay, gwind, &ourxwmhints);
142          oursizhints.min_width = MINWIDTH;
143          oursizhints.min_height = MINHEIGHT+COMHEIGHT;
# Line 135 | Line 145 | char  *name, *id;
145          XSetNormalHints(ourdisplay, gwind, &oursizhints);
146          XSelectInput(ourdisplay, gwind, ExposureMask);
147          XMapWindow(ourdisplay, gwind);
148 <        XWindowEvent(ourdisplay, gwind, ExposureMask, levptr(XExposeEvent));
148 >        XWindowEvent(ourdisplay, gwind, ExposureMask, levptr(XEvent));
149          gwidth = levptr(XExposeEvent)->width;
150          gheight = levptr(XExposeEvent)->height - COMHEIGHT;
151          x11_driver.xsiz = gwidth < MINWIDTH ? MINWIDTH : gwidth;
# Line 192 | Line 202 | int  xres, yres;
202          }
203          XClearWindow(ourdisplay, gwind);
204                                                  /* reinitialize color table */
205 <        if (ourvisual->class == PseudoColor)
205 >        if (ourvinfo.class == PseudoColor || ourvinfo.class == GrayScale)
206                  if (getpixels() == 0)
207                          stderr_v("cannot allocate colors\n");
208                  else
# Line 200 | Line 210 | int  xres, yres;
210                                                  /* get new command line */
211          if (comline != NULL)
212                  xt_close(comline);
213 <        comline = xt_open(ourdisplay,
214 <                        DefaultGC(ourdisplay,ourscreen),
205 <                        gwind, 0, gheight, gwidth, COMHEIGHT, 0, COMFN);
213 >        comline = xt_open(ourdisplay, gwind, 0, gheight,
214 >                        gwidth, COMHEIGHT, 0, ourblack, ourwhite, COMFN);
215          if (comline == NULL) {
216                  stderr_v("Cannot open command line window\n");
217                  quit(1);
# Line 225 | Line 234 | int  xmin, ymin, xmax, ymax;
234  
235          if (ncolors > 0)
236                  pixel = pixval[get_pixel(col, xnewcolr)];
237 <        else if (ourvisual->class == TrueColor)
237 >        else if (ourvinfo.class == TrueColor || ourvinfo.class == DirectColor)
238                  pixel = true_pixel(col);
239          else
240                  return;
# Line 333 | Line 342 | int  r, g, b;
342   static int
343   getpixels()                             /* get the color map */
344   {
345 +        XColor  thiscolor;
346 +        register int  i, j;
347 +
348          if (ncolors > 0)
349                  return(ncolors);
350 <        if (ourvisual == DefaultVisual(ourdisplay,ourscreen)) {
350 >        if (ourvinfo.visual == DefaultVisual(ourdisplay,ourscreen)) {
351                  ourmap = DefaultColormap(ourdisplay,ourscreen);
352                  goto loop;
353          }
354   newmap:
355 <        ourmap = XCreateColormap(ourdisplay,gwind,ourvisual,AllocNone);
355 >        ourmap = XCreateColormap(ourdisplay,gwind,ourvinfo.visual,AllocNone);
356   loop:
357 <        for (ncolors = ourvisual->map_entries;
358 <                        ncolors > ourvisual->map_entries/3;
357 >        for (ncolors = ourvinfo.colormap_size;
358 >                        ncolors > ourvinfo.colormap_size/3;
359                          ncolors = ncolors*.937) {
360 <                pixval = (int *)malloc(ncolors*sizeof(int));
360 >                pixval = (unsigned long *)malloc(ncolors*sizeof(unsigned long));
361                  if (pixval == NULL)
362                          return(ncolors = 0);
363                  if (XAllocColorCells(ourdisplay,ourmap,0,NULL,0,
# Line 360 | Line 372 | loop:
372                  else
373                          return(ncolors = 0);    /* failed */
374          }
375 <        if (ourmap != DefaultColormap(ourdisplay,ourscreen)) {
376 <                XColor  thiscolor;
365 <                register int  i, j;
366 <                                                /* reset black and white */
367 <                for (i = 0; i < ncolors; i++) {
375 >        if (ourmap != DefaultColormap(ourdisplay,ourscreen))
376 >                for (i = 0; i < ncolors; i++) { /* reset black and white */
377                          if (pixval[i] != ourblack && pixval[i] != ourwhite)
378                                  continue;
379                          thiscolor.pixel = pixval[i];
# Line 378 | Line 387 | loop:
387                          ncolors--;
388                          i--;
389                  }
381        }
390          XSetWindowColormap(ourdisplay, gwind, ourmap);
391          return(ncolors);
392   }
# Line 405 | Line 413 | COLOR  col;
413          BYTE  rgb[3];
414  
415          map_color(rgb, col);
416 <        rval = ourvisual->red_mask*rgb[RED]/255 & ourvisual->red_mask;
417 <        rval |= ourvisual->green_mask*rgb[GRN]/255 & ourvisual->green_mask;
418 <        rval |= ourvisual->blue_mask*rgb[BLU]/255 & ourvisual->blue_mask;
416 >        rval = ourvinfo.red_mask*rgb[RED]/255 & ourvinfo.red_mask;
417 >        rval |= ourvinfo.green_mask*rgb[GRN]/255 & ourvinfo.green_mask;
418 >        rval |= ourvinfo.blue_mask*rgb[BLU]/255 & ourvinfo.blue_mask;
419          return(rval);
420   }
421  
# Line 436 | Line 444 | getevent()                     /* get next event */
444                  freepixels();
445                  break;
446          case MapNotify:
447 <                if (ourvisual->class == PseudoColor)
447 >                if (ourvinfo.class == PseudoColor ||
448 >                                ourvinfo.class == GrayScale)
449                          if (getpixels() == 0)
450                                  stderr_v("Cannot allocate colors\n");
451                          else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines