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.6 by greg, Wed Jun 24 09:12:50 1992 UTC vs.
Revision 2.18 by greg, Tue Sep 20 15:46:34 1994 UTC

# Line 11 | Line 11 | static char SCCSid[] = "$SunId$ LBL";
11   */
12  
13   #include  <stdio.h>
14 <
14 > #include  <math.h>
15   #include  <sys/ioctl.h>
16  
17   #include  <X11/Xlib.h>
# Line 26 | Line 26 | static char SCCSid[] = "$SunId$ LBL";
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 44 | Line 44 | static char SCCSid[] = "$SunId$ LBL";
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  
# Line 57 | Line 58 | static Cursor  pickcursor = 0;         /* cursor used for pic
58  
59   static int  gwidth, gheight;            /* graphics window size */
60  
61 + static int  comheight;                  /* desired comline height */
62   static TEXTWIND  *comline = NULL;       /* our command line */
63  
64   static char  c_queue[64];               /* input queue */
# Line 72 | Line 74 | extern char  *malloc(), *getcombuf();
74   static int  x11_close(), x11_clear(), x11_paintr(), x11_errout(),
75                  x11_getcur(), x11_comout(), x11_comin(), x11_flush();
76  
77 + static int  std_comin(), std_comout();
78 +
79   static struct driver  x11_driver = {
80          x11_close, x11_clear, x11_paintr, x11_getcur,
81 <        x11_comout, x11_comin, x11_flush, 1.0
81 >        NULL, NULL, x11_flush, 1.0
82   };
83  
84 + static int  getpixels(), xnewcolr(), freepixels(), resizewindow(),
85 +                getevent(), getkey(), fixwindow(), x11_getc();
86 + static unsigned long  true_pixel();
87  
88 +
89   struct driver *
90   x11_init(name, id)              /* initialize driver */
91   char  *name, *id;
# Line 88 | Line 96 | char  *name, *id;
96          XSetWindowAttributes    ourwinattr;
97          XWMHints  ourxwmhints;
98          XSizeHints      oursizhints;
99 <
99 >                                        /* open display server */
100          ourdisplay = XOpenDisplay(NULL);
101          if (ourdisplay == NULL) {
102                  stderr_v("cannot open X-windows; DISPLAY variable set?\n");
# Line 120 | Line 128 | char  *name, *id;
128                  ourwhite = WhitePixel(ourdisplay,ourscreen);
129          }
130                                          /* set gamma */
131 <        if ((gv = getenv("GAMMA")) != NULL)
131 >        if ((gv = XGetDefault(ourdisplay, "radiance", "gamma")) != NULL
132 >                        || (gv = getenv("DISPLAY_GAMMA")) != NULL)
133                  make_gmap(atof(gv));
134          else
135                  make_gmap(GAMMA);
136 +                                        /* X11 command line or no? */
137 +        if (!strcmp(name, "x11"))
138 +                comheight = COMHEIGHT;
139 +        else /* "x11d" */
140 +                comheight = 0;
141                                          /* open window */
142          ourwinattr.background_pixel = ourblack;
143          ourwinattr.border_pixel = ourblack;
# Line 149 | Line 163 | char  *name, *id;
163                          gwind, x11icon_bits, x11icon_width, x11icon_height);
164          XSetWMHints(ourdisplay, gwind, &ourxwmhints);
165          oursizhints.min_width = MINWIDTH;
166 <        oursizhints.min_height = MINHEIGHT+COMHEIGHT;
166 >        oursizhints.min_height = MINHEIGHT+comheight;
167          oursizhints.flags = PMinSize;
168          XSetNormalHints(ourdisplay, gwind, &oursizhints);
169          XSelectInput(ourdisplay, gwind, ExposureMask);
170          XMapWindow(ourdisplay, gwind);
171          XWindowEvent(ourdisplay, gwind, ExposureMask, levptr(XEvent));
172          gwidth = levptr(XExposeEvent)->width;
173 <        gheight = levptr(XExposeEvent)->height - COMHEIGHT;
173 >        gheight = levptr(XExposeEvent)->height - comheight;
174          x11_driver.xsiz = gwidth < MINWIDTH ? MINWIDTH : gwidth;
175          x11_driver.ysiz = gheight < MINHEIGHT ? MINHEIGHT : gheight;
176          x11_driver.inpready = 0;
177 <        cmdvec = x11_comout;                    /* set error vectors */
178 <        if (wrnvec != NULL)
179 <                wrnvec = x11_errout;
177 >        mapped = 1;
178 >                                        /* set i/o vectors */
179 >        if (comheight) {
180 >                x11_driver.comin = x11_comin;
181 >                x11_driver.comout = x11_comout;
182 >                cmdvec = x11_comout;
183 >                if (wrnvec != NULL)
184 >                        wrnvec = x11_errout;
185 >        } else {
186 >                x11_driver.comin = std_comin;
187 >                x11_driver.comout = std_comout;
188 >                cmdvec = std_comout;
189 >        }
190          return(&x11_driver);
191   }
192  
# Line 202 | Line 226 | int  xres, yres;
226                                                  /* resize window */
227          if (xres != gwidth || yres != gheight) {
228                  XSelectInput(ourdisplay, gwind, 0);
229 <                XResizeWindow(ourdisplay, gwind, xres, yres+COMHEIGHT);
229 >                XResizeWindow(ourdisplay, gwind, xres, yres+comheight);
230                  gwidth = xres;
231                  gheight = yres;
232                  XFlush(ourdisplay);
# Line 219 | Line 243 | int  xres, yres;
243                                                  /* get new command line */
244          if (comline != NULL)
245                  xt_close(comline);
246 <        comline = xt_open(ourdisplay, gwind, 0, gheight,
247 <                        gwidth, COMHEIGHT, 0, ourblack, ourwhite, COMFN);
248 <        if (comline == NULL) {
249 <                stderr_v("Cannot open command line window\n");
250 <                quit(1);
251 <        }
252 <        XSelectInput(ourdisplay, comline->w, ExposureMask);
246 >        if (comheight) {
247 >                comline = xt_open(ourdisplay, gwind, 0, gheight, gwidth,
248 >                                comheight, 0, ourblack, ourwhite, COMFN);
249 >                if (comline == NULL) {
250 >                        stderr_v("Cannot open command line window\n");
251 >                        quit(1);
252 >                }
253 >                XSelectInput(ourdisplay, comline->w, ExposureMask);
254                                                  /* remove earmuffs */
255 <        XSelectInput(ourdisplay, gwind,
255 >                XSelectInput(ourdisplay, gwind,
256                  StructureNotifyMask|ExposureMask|KeyPressMask|ButtonPressMask);
257 +        } else                                  /* remove earmuffs */
258 +                XSelectInput(ourdisplay, gwind,
259 +                        StructureNotifyMask|ExposureMask|ButtonPressMask);
260   }
261  
262  
# Line 237 | Line 265 | x11_paintr(col, xmin, ymin, xmax, ymax)                /* fill a rec
265   COLOR  col;
266   int  xmin, ymin, xmax, ymax;
267   {
240        extern int  xnewcolr();         /* pixel assignment routine */
241        extern unsigned long  true_pixel();
268          unsigned long  pixel;
269  
270 +        if (!mapped)
271 +                return;
272          if (ncolors > 0)
273                  pixel = pixval[get_pixel(col, xnewcolr)];
246        else if (ourvinfo.class == TrueColor || ourvinfo.class == DirectColor)
247                pixel = true_pixel(col);
274          else
275 <                return;
275 >                pixel = true_pixel(col);
276          XSetForeground(ourdisplay, ourgc, pixel);
277          XFillRectangle(ourdisplay, gwind,
278                  ourgc, xmin, gheight-ymax, xmax-xmin, ymax-ymin);
# Line 256 | Line 282 | int  xmin, ymin, xmax, ymax;
282   static
283   x11_flush()                     /* flush output */
284   {
285 +        int     n;
286 +                                                /* check for input */
287          XNoOp(ourdisplay);
288 <        while (XPending(ourdisplay) > 0)
288 >        n = XPending(ourdisplay);                       /* from X server */
289 >        while (n-- > 0)
290                  getevent();
291 +        if (x11_driver.comin == std_comin) {            /* from stdin */
292 +                if (ioctl(fileno(stdin), FIONREAD, &n) < 0) {
293 +                        stderr_v("ioctl error on stdin\n");
294 +                        quit(1);
295 +                }
296 +                x11_driver.inpready += n;
297 +        }
298   }
299  
300  
# Line 266 | Line 302 | static
302   x11_comin(inp, prompt)          /* read in a command line */
303   char  *inp, *prompt;
304   {
305 <        extern int  x11_getc();
306 <
271 <        if (prompt != NULL)
305 >        if (prompt != NULL) {
306 >                x11_flush();            /* make sure we get everything */
307                  if (fromcombuf(inp, &x11_driver))
308                          return;
309 <                else
310 <                        xt_puts(prompt, comline);
309 >                xt_puts(prompt, comline);
310 >        }
311          xt_cursor(comline, TBLKCURS);
312          editline(inp, x11_getc, x11_comout);
313          xt_cursor(comline, TNOCURS);
# Line 280 | Line 315 | char  *inp, *prompt;
315  
316  
317   static
318 < x11_comout(out)                 /* output a string to command line */
319 < char  *out;
318 > x11_comout(outp)                /* output a string to command line */
319 > char  *outp;
320   {
321          if (comline == NULL)
322                  return;
323 <        xt_puts(out, comline);
324 <        if (out[strlen(out)-1] == '\n')
323 >        xt_puts(outp, comline);
324 >        if (outp[strlen(outp)-1] == '\n')
325                  XFlush(ourdisplay);
326   }
327  
# Line 300 | Line 335 | char  *msg;
335   }
336  
337  
338 + static
339 + std_comin(inp, prompt)          /* read in command line from stdin */
340 + char  *inp, *prompt;
341 + {
342 +        extern char     *gets();
343 +
344 +        if (prompt != NULL) {
345 +                if (fromcombuf(inp, &x11_driver))
346 +                        return;
347 +                if (!x11_driver.inpready)
348 +                        fputs(prompt, stdout);
349 +        }
350 +        if (gets(inp) == NULL) {
351 +                strcpy(inp, "quit");
352 +                return;
353 +        }
354 +        x11_driver.inpready -= strlen(inp) + 1;
355 +        if (x11_driver.inpready < 0)
356 +                x11_driver.inpready = 0;
357 + }
358 +
359 +
360 + static
361 + std_comout(outp)                /* write out string to stdout */
362 + char    *outp;
363 + {
364 +        fputs(outp, stdout);
365 + }
366 +
367 +
368   static int
369   x11_getcur(xp, yp)              /* get cursor position */
370   int  *xp, *yp;
# Line 319 | Line 384 | int  *xp, *yp;
384          if (c_last > c_first)                   /* key pressed */
385                  return(x11_getc());
386                                                  /* button pressed */
387 <        if (levptr(XButtonPressedEvent)->button & Button1)
387 >        if (levptr(XButtonPressedEvent)->button == Button1)
388                  return(MB1);
389 <        if (levptr(XButtonPressedEvent)->button & Button2)
389 >        if (levptr(XButtonPressedEvent)->button == Button2)
390                  return(MB2);
391 <        if (levptr(XButtonPressedEvent)->button & Button3)
391 >        if (levptr(XButtonPressedEvent)->button == Button3)
392                  return(MB3);
328        if (levptr(XButtonPressedEvent)->button & (Button4|Button5))
329                return(MB1);
393          return(ABORT);
394   }
395  
# Line 369 | Line 432 | loop:
432                  pixval = (unsigned long *)malloc(ncolors*sizeof(unsigned long));
433                  if (pixval == NULL)
434                          return(ncolors = 0);
435 <                if (XAllocColorCells(ourdisplay,ourmap,0,NULL,0,
373 <                                pixval,ncolors) != 0)
435 >                if (XAllocColorCells(ourdisplay,ourmap,0,NULL,0,pixval,ncolors))
436                          break;
437                  free((char *)pixval);
438                  pixval = NULL;
# Line 407 | Line 469 | freepixels()                           /* free our pixels */
469          if (ncolors == 0)
470                  return;
471          XFreeColors(ourdisplay,ourmap,pixval,ncolors,0L);
472 +        free((char *)pixval);
473 +        pixval = NULL;
474          ncolors = 0;
475          if (ourmap != DefaultColormap(ourdisplay,ourscreen))
476                  XFreeColormap(ourdisplay, ourmap);
# Line 450 | Line 514 | getevent()                     /* get next event */
514                  resizewindow(levptr(XConfigureEvent));
515                  break;
516          case UnmapNotify:
517 +                mapped = 0;
518                  freepixels();
519                  break;
520          case MapNotify:
# Line 459 | Line 524 | getevent()                     /* get next event */
524                                  stderr_v("Cannot allocate colors\n");
525                          else
526                                  new_ctab(ncolors);
527 +                mapped = 1;
528                  break;
529          case Expose:
530                  fixwindow(levptr(XExposeEvent));
# Line 504 | Line 570 | static
570   resizewindow(ersz)                      /* resize window */
571   register XConfigureEvent  *ersz;
572   {
573 <        if (ersz->width == gwidth && ersz->height-COMHEIGHT == gheight)
573 >        if (ersz->width == gwidth && ersz->height-comheight == gheight)
574                  return;
575  
576          gwidth = ersz->width;
577 <        gheight = ersz->height-COMHEIGHT;
577 >        gheight = ersz->height-comheight;
578          x11_driver.xsiz = gwidth < MINWIDTH ? MINWIDTH : gwidth;
579          x11_driver.ysiz = gheight < MINHEIGHT ? MINHEIGHT : gheight;
580  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines