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.2 by greg, Fri May 29 10:57:15 1992 UTC vs.
Revision 2.15 by greg, Fri Sep 9 16:16:06 1994 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  
# 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;
93          XSetWindowAttributes    ourwinattr;
94          XWMHints  ourxwmhints;
# Line 95 | Line 101 | char  *name, *id;
101          }
102                                          /* find a usable visual */
103          nplanes = DisplayPlanes(ourdisplay, ourscreen);
104 <        if (    !XMatchVisualInfo(ourdisplay,ourscreen,
105 <                        24,TrueColor,&ourvinfo) &&
106 <                !XMatchVisualInfo(ourdisplay,ourscreen,
107 <                        24,DirectColor,&ourvinfo)       )
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 <                } else if (!XMatchVisualInfo(ourdisplay,ourscreen,
116 >                }
117 >                if (!XMatchVisualInfo(ourdisplay,ourscreen,
118                                          nplanes,PseudoColor,&ourvinfo) &&
119                                  !XMatchVisualInfo(ourdisplay,ourscreen,
120                                          nplanes,GrayScale,&ourvinfo)) {
121                          stderr_v("unsupported visual type\n");
122                          return(NULL);
123                  }
124 <        make_gmap(GAMMA);
125 <        /* open window */
124 >                ourblack = BlackPixel(ourdisplay,ourscreen);
125 >                ourwhite = WhitePixel(ourdisplay,ourscreen);
126 >        }
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 a waste! */
136 >                                        /* this is stupid */
137          ourwinattr.colormap = XCreateColormap(ourdisplay, ourroot,
138                                  ourvinfo.visual, AllocNone);
139          gwind = XCreateWindow(ourdisplay, ourroot, 0, 0,
# Line 125 | Line 145 | char  *name, *id;
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 146 | 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 205 | 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),
210 <                        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 224 | Line 244 | x11_paintr(col, xmin, ymin, xmax, ymax)                /* fill a rec
244   COLOR  col;
245   int  xmin, ymin, xmax, ymax;
246   {
227        extern int  xnewcolr();         /* pixel assignment routine */
228        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)];
233        else if (ourvinfo.class == TrueColor || ourvinfo.class == DirectColor)
234                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 243 | Line 261 | int  xmin, ymin, xmax, ymax;
261   static
262   x11_flush()                     /* flush output */
263   {
264 +        int     n;
265 +        register char   *buf;
266 +
267          XNoOp(ourdisplay);
268          while (XPending(ourdisplay) > 0)
269                  getevent();
270 + #ifdef FIONREAD
271 +        if (ioctl(0, FIONREAD, &n) == 0 && n) {         /* from stdin */
272 +                buf = getcombuf(&x11_driver);
273 +                n = read(0, buf, n);
274 +                buf[n] = '\0';
275 +        }
276 + #endif
277   }
278  
279  
# Line 253 | Line 281 | static
281   x11_comin(inp, prompt)          /* read in a command line */
282   char  *inp, *prompt;
283   {
284 <        extern int  x11_getc();
285 <
258 <        if (prompt != NULL)
284 >        if (prompt != NULL) {
285 >                x11_flush();            /* make sure we get everything */
286                  if (fromcombuf(inp, &x11_driver))
287                          return;
288 <                else
289 <                        xt_puts(prompt, comline);
288 >                xt_puts(prompt, comline);
289 >        }
290          xt_cursor(comline, TBLKCURS);
291          editline(inp, x11_getc, x11_comout);
292          xt_cursor(comline, TNOCURS);
# Line 306 | Line 333 | int  *xp, *yp;
333          if (c_last > c_first)                   /* key pressed */
334                  return(x11_getc());
335                                                  /* button pressed */
336 <        if (levptr(XButtonPressedEvent)->button & Button1)
336 >        if (levptr(XButtonPressedEvent)->button == Button1)
337                  return(MB1);
338 <        if (levptr(XButtonPressedEvent)->button & Button2)
338 >        if (levptr(XButtonPressedEvent)->button == Button2)
339                  return(MB2);
340 <        if (levptr(XButtonPressedEvent)->button & Button3)
340 >        if (levptr(XButtonPressedEvent)->button == Button3)
341                  return(MB3);
315        if (levptr(XButtonPressedEvent)->button & (Button4|Button5))
316                return(MB1);
342          return(ABORT);
343   }
344  
# Line 356 | Line 381 | loop:
381                  pixval = (unsigned long *)malloc(ncolors*sizeof(unsigned long));
382                  if (pixval == NULL)
383                          return(ncolors = 0);
384 <                if (XAllocColorCells(ourdisplay,ourmap,0,NULL,0,
360 <                                pixval,ncolors) != 0)
384 >                if (XAllocColorCells(ourdisplay,ourmap,0,NULL,0,pixval,ncolors))
385                          break;
386                  free((char *)pixval);
387                  pixval = NULL;
# Line 394 | Line 418 | freepixels()                           /* free our pixels */
418          if (ncolors == 0)
419                  return;
420          XFreeColors(ourdisplay,ourmap,pixval,ncolors,0L);
421 +        free((char *)pixval);
422 +        pixval = NULL;
423          ncolors = 0;
424          if (ourmap != DefaultColormap(ourdisplay,ourscreen))
425                  XFreeColormap(ourdisplay, ourmap);
# Line 437 | Line 463 | getevent()                     /* get next event */
463                  resizewindow(levptr(XConfigureEvent));
464                  break;
465          case UnmapNotify:
466 +                mapped = 0;
467                  freepixels();
468                  break;
469          case MapNotify:
# Line 446 | Line 473 | getevent()                     /* get next event */
473                                  stderr_v("Cannot allocate colors\n");
474                          else
475                                  new_ctab(ncolors);
476 +                mapped = 1;
477                  break;
478          case Expose:
479                  fixwindow(levptr(XExposeEvent));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines