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 2.1 by greg, Tue Nov 12 17:10:04 1991 UTC vs.
Revision 2.14 by greg, Mon Nov 22 11:33:02 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 23 | Line 23 | static char SCCSid[] = "$SunId$ LBL";
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 38 | Line 38 | static char SCCSid[] = "$SunId$ LBL";
38  
39   #define  ourscreen      DefaultScreen(ourdisplay)
40   #define  ourroot        RootWindow(ourdisplay,ourscreen)
41 #define  ourwhite       WhitePixel(ourdisplay,ourscreen)
42 #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  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 78 | Line 78 | static struct driver  x11_driver = {
78          x11_comout, x11_comin, x11_flush, 1.0
79   };
80  
81 + static int  getpixels(), xnewcolr(), freepixels(), resizewindow(),
82 +                getevent(), getkey(), fixwindow(), x11_getc();
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;
87        XVisualInfo  ourvinfo;
93          XSetWindowAttributes    ourwinattr;
94          XWMHints  ourxwmhints;
95          XSizeHints      oursizhints;
# Line 94 | Line 99 | char  *name, *id;
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 server required\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) &&
109 <                                                /* kludge for DirectColor */
110 <                        !XMatchVisualInfo(ourdisplay,ourscreen,
111 <                        nplanes,DirectColor,&ourvinfo)) {
112 <                stderr_v("TrueColor server required\n");
113 <                return(NULL);
124 >                ourblack = BlackPixel(ourdisplay,ourscreen);
125 >                ourwhite = WhitePixel(ourdisplay,ourscreen);
126          }
127 <        ourvisual = ourvinfo.visual;
128 <        make_gmap(GAMMA);
129 <        /* open window */
127 >                                        /* set gamma */
128 >        if ((gv = XGetDefault(ourdisplay, "radiance", "gamma")) != NULL
129 >                        || (gv = getenv("GAMMA")) != NULL)
130 >                make_gmap(atof(gv));
131 >        else
132 >                make_gmap(GAMMA);
133 >                                        /* open window */
134          ourwinattr.background_pixel = ourblack;
135          ourwinattr.border_pixel = ourblack;
136 +                                        /* this is stupid */
137 +        ourwinattr.colormap = XCreateColormap(ourdisplay, ourroot,
138 +                                ourvinfo.visual, AllocNone);
139          gwind = XCreateWindow(ourdisplay, ourroot, 0, 0,
140                  DisplayWidth(ourdisplay,ourscreen)-2*BORWIDTH,
141                  DisplayHeight(ourdisplay,ourscreen)-2*BORWIDTH,
142 <                BORWIDTH, nplanes, InputOutput, ourvisual,
143 <                CWBackPixel|CWBorderPixel, &ourwinattr);
142 >                BORWIDTH, ourvinfo.depth, InputOutput, ourvinfo.visual,
143 >                CWBackPixel|CWBorderPixel|CWColormap, &ourwinattr);
144          if (gwind == 0) {
145                  stderr_v("cannot create window\n");
146                  return(NULL);
147          }
148 <        XStoreName(ourdisplay, gwind, id);
148 >        XStoreName(ourdisplay, gwind, id);
149          /* create a cursor */
150          pickcursor = XCreateFontCursor(ourdisplay, XC_diamond_cross);
151          ourgc = XCreateGC(ourdisplay, gwind, 0, NULL);
# Line 147 | Line 166 | char  *name, *id;
166          x11_driver.xsiz = gwidth < MINWIDTH ? MINWIDTH : gwidth;
167          x11_driver.ysiz = gheight < MINHEIGHT ? MINHEIGHT : gheight;
168          x11_driver.inpready = 0;
169 +        mapped = 1;
170          cmdvec = x11_comout;                    /* set error vectors */
171          if (wrnvec != NULL)
172                  wrnvec = x11_errout;
# Line 198 | Line 218 | int  xres, yres;
218          }
219          XClearWindow(ourdisplay, gwind);
220                                                  /* reinitialize color table */
221 <        if (ourvisual->class == PseudoColor)
221 >        if (ourvinfo.class == PseudoColor || ourvinfo.class == GrayScale)
222                  if (getpixels() == 0)
223                          stderr_v("cannot allocate colors\n");
224                  else
# Line 206 | Line 226 | int  xres, yres;
226                                                  /* get new command line */
227          if (comline != NULL)
228                  xt_close(comline);
229 <        comline = xt_open(ourdisplay,
230 <                        DefaultGC(ourdisplay,ourscreen),
211 <                        gwind, 0, gheight, gwidth, COMHEIGHT, 0, COMFN);
229 >        comline = xt_open(ourdisplay, gwind, 0, gheight,
230 >                        gwidth, COMHEIGHT, 0, ourblack, ourwhite, COMFN);
231          if (comline == NULL) {
232                  stderr_v("Cannot open command line window\n");
233                  quit(1);
# Line 225 | Line 244 | x11_paintr(col, xmin, ymin, xmax, ymax)                /* fill a rec
244   COLOR  col;
245   int  xmin, ymin, xmax, ymax;
246   {
228        extern int  xnewcolr();         /* pixel assignment routine */
229        extern unsigned long  true_pixel();
247          unsigned long  pixel;
248  
249 +        if (!mapped)
250 +                return;
251          if (ncolors > 0)
252                  pixel = pixval[get_pixel(col, xnewcolr)];
234        else if (ourvisual->class != PseudoColor)
235                pixel = true_pixel(col);
253          else
254 <                return;
254 >                pixel = true_pixel(col);
255          XSetForeground(ourdisplay, ourgc, pixel);
256          XFillRectangle(ourdisplay, gwind,
257                  ourgc, xmin, gheight-ymax, xmax-xmin, ymax-ymin);
# Line 254 | Line 271 | static
271   x11_comin(inp, prompt)          /* read in a command line */
272   char  *inp, *prompt;
273   {
257        extern int  x11_getc();
258
274          if (prompt != NULL)
275                  if (fromcombuf(inp, &x11_driver))
276                          return;
# Line 307 | Line 322 | int  *xp, *yp;
322          if (c_last > c_first)                   /* key pressed */
323                  return(x11_getc());
324                                                  /* button pressed */
325 <        if (levptr(XButtonPressedEvent)->button & Button1)
325 >        if (levptr(XButtonPressedEvent)->button == Button1)
326                  return(MB1);
327 <        if (levptr(XButtonPressedEvent)->button & Button2)
327 >        if (levptr(XButtonPressedEvent)->button == Button2)
328                  return(MB2);
329 <        if (levptr(XButtonPressedEvent)->button & Button3)
329 >        if (levptr(XButtonPressedEvent)->button == Button3)
330                  return(MB3);
316        if (levptr(XButtonPressedEvent)->button & (Button4|Button5))
317                return(MB1);
331          return(ABORT);
332   }
333  
# Line 343 | Line 356 | getpixels()                            /* get the color map */
356          register int  i, j;
357  
358          if (ncolors > 0)
359 <                goto donecolors;
360 <        if (ourvisual == DefaultVisual(ourdisplay,ourscreen)) {
359 >                return(ncolors);
360 >        if (ourvinfo.visual == DefaultVisual(ourdisplay,ourscreen)) {
361                  ourmap = DefaultColormap(ourdisplay,ourscreen);
362                  goto loop;
363          }
364   newmap:
365 <        ourmap = XCreateColormap(ourdisplay,gwind,ourvisual,AllocNone);
365 >        ourmap = XCreateColormap(ourdisplay,gwind,ourvinfo.visual,AllocNone);
366   loop:
367 <        for (ncolors = ourvisual->map_entries;
368 <                        ncolors > ourvisual->map_entries/3;
367 >        for (ncolors = ourvinfo.colormap_size;
368 >                        ncolors > ourvinfo.colormap_size/3;
369                          ncolors = ncolors*.937) {
370                  pixval = (unsigned long *)malloc(ncolors*sizeof(unsigned long));
371                  if (pixval == NULL)
372                          return(ncolors = 0);
373 <                if (XAllocColorCells(ourdisplay,ourmap,0,NULL,0,
361 <                                pixval,ncolors) != 0)
373 >                if (XAllocColorCells(ourdisplay,ourmap,0,NULL,0,pixval,ncolors))
374                          break;
375                  free((char *)pixval);
376                  pixval = NULL;
# Line 385 | Line 397 | loop:
397                          i--;
398                  }
399          XSetWindowColormap(ourdisplay, gwind, ourmap);
388 donecolors:
389 #ifdef  DEBUG
390        thiscolor.flags = DoRed|DoGreen|DoBlue;
391        thiscolor.red = thiscolor.green = thiscolor.blue = 0;
392        for (i = 0; i < ncolors; i++) {
393                thiscolor.pixel = pixval[i];
394                XStoreColor(ourdisplay, ourmap, &thiscolor);
395        }
396 #endif
400          return(ncolors);
401   }
402  
# Line 404 | Line 407 | freepixels()                           /* free our pixels */
407          if (ncolors == 0)
408                  return;
409          XFreeColors(ourdisplay,ourmap,pixval,ncolors,0L);
410 +        free((char *)pixval);
411 +        pixval = NULL;
412          ncolors = 0;
413          if (ourmap != DefaultColormap(ourdisplay,ourscreen))
414                  XFreeColormap(ourdisplay, ourmap);
# Line 419 | Line 424 | COLOR  col;
424          BYTE  rgb[3];
425  
426          map_color(rgb, col);
427 <        rval = ourvisual->red_mask*rgb[RED]/255 & ourvisual->red_mask;
428 <        rval |= ourvisual->green_mask*rgb[GRN]/255 & ourvisual->green_mask;
429 <        rval |= ourvisual->blue_mask*rgb[BLU]/255 & ourvisual->blue_mask;
427 >        rval = ourvinfo.red_mask*rgb[RED]/255 & ourvinfo.red_mask;
428 >        rval |= ourvinfo.green_mask*rgb[GRN]/255 & ourvinfo.green_mask;
429 >        rval |= ourvinfo.blue_mask*rgb[BLU]/255 & ourvinfo.blue_mask;
430          return(rval);
431   }
432  
# Line 447 | Line 452 | getevent()                     /* get next event */
452                  resizewindow(levptr(XConfigureEvent));
453                  break;
454          case UnmapNotify:
455 +                mapped = 0;
456                  freepixels();
457                  break;
458          case MapNotify:
459 <                if (ourvisual->class == PseudoColor)
459 >                if (ourvinfo.class == PseudoColor ||
460 >                                ourvinfo.class == GrayScale)
461                          if (getpixels() == 0)
462                                  stderr_v("Cannot allocate colors\n");
463                          else
464                                  new_ctab(ncolors);
465 +                mapped = 1;
466                  break;
467          case Expose:
468                  fixwindow(levptr(XExposeEvent));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines