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.22 by greg, Mon Dec 12 11:22:20 1994 UTC vs.
Revision 2.30 by greg, Tue Feb 25 02:47:23 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1992 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  x11.c - driver for X-windows version 11
9 *
10 *     Jan 1990
6   */
7  
8 < #include  <stdio.h>
9 < #include  <math.h>
8 > #include "copyright.h"
9 >
10 > #include  "standard.h"
11   #include  <sys/ioctl.h>
12 < #include  <fcntl.h>
12 > #ifdef sparc
13 > #include  <sys/conf.h>
14 > #include  <sys/file.h>
15 > #include  <sys/filio.h>
16 > #endif
17 > #if  !defined(FNDELAY) && defined(O_NONBLOCK)
18 > #define  FNDELAY  O_NONBLOCK
19 > #endif
20  
21   #include  <X11/Xlib.h>
22   #include  <X11/cursorfont.h>
# Line 76 | Line 79 | static Colormap ourmap = 0;            /* our color map */
79  
80   static int  inpcheck;                   /* whence to check input */
81  
82 < extern char  *malloc();
82 > static int      x11_getcur();
83  
84 < static int  x11_close(), x11_clear(), x11_paintr(), x11_errout(),
85 <                x11_getcur(), x11_comout(), x11_comin(), x11_flush();
84 > static void  x11_close(), x11_clear(), x11_paintr(), x11_errout(),
85 >                x11_comout(), x11_comin(), x11_flush();
86  
87 < static int  std_comin(), std_comout();
87 > static void  std_comin(), std_comout();
88  
89   static struct driver  x11_driver = {
90          x11_close, x11_clear, x11_paintr, x11_getcur,
91          NULL, NULL, x11_flush, 1.0
92   };
93  
94 < static int  getpixels(), xnewcolr(), freepixels(), resizewindow(),
95 <                getevent(), getkey(), fixwindow(), x11_getc();
94 > static int  getpixels(), x11_getc();
95 > static void  xnewcolr(), freepixels(), resizewindow(),
96 >                getevent(), getkey(), fixwindow();
97   static unsigned long  true_pixel();
98  
99  
# Line 97 | Line 101 | struct driver *
101   x11_init(name, id)              /* initialize driver */
102   char  *name, *id;
103   {
100        extern char  *getenv();
104          char  *gv;
105          int  nplanes;
106          XSetWindowAttributes    ourwinattr;
# Line 106 | Line 109 | char  *name, *id;
109                                          /* open display server */
110          ourdisplay = XOpenDisplay(NULL);
111          if (ourdisplay == NULL) {
112 <                stderr_v("cannot open X-windows; DISPLAY variable set?\n");
112 >                eputs("cannot open X-windows; DISPLAY variable set?\n");
113                  return(NULL);
114          }
115                                          /* find a usable visual */
116          nplanes = DisplayPlanes(ourdisplay, ourscreen);
117          if (XMatchVisualInfo(ourdisplay,ourscreen,
118 <                                24,TrueColor,&ourvinfo) ||
118 >                                nplanes>12?nplanes:24,TrueColor,&ourvinfo) ||
119                          XMatchVisualInfo(ourdisplay,ourscreen,
120 <                                24,DirectColor,&ourvinfo)) {
120 >                                nplanes>12?nplanes:24,DirectColor,&ourvinfo)) {
121                  ourblack = 0;
122                  ourwhite = ourvinfo.red_mask |
123                                  ourvinfo.green_mask |
124                                  ourvinfo.blue_mask ;
125          } else {
126                  if (nplanes < 4) {
127 <                        stderr_v("not enough colors\n");
127 >                        eputs("not enough colors\n");
128                          return(NULL);
129                  }
130                  if (!XMatchVisualInfo(ourdisplay,ourscreen,
131                                          nplanes,PseudoColor,&ourvinfo) &&
132                                  !XMatchVisualInfo(ourdisplay,ourscreen,
133                                          nplanes,GrayScale,&ourvinfo)) {
134 <                        stderr_v("unsupported visual type\n");
134 >                        eputs("unsupported visual type\n");
135                          return(NULL);
136                  }
137                  ourblack = BlackPixel(ourdisplay,ourscreen);
# Line 143 | Line 146 | char  *name, *id;
146                                          /* X11 command line or no? */
147          if (!strcmp(name, "x11"))
148                  comheight = COMHEIGHT;
149 <        else /* "x11d" */
149 >        else /* "x11d" */ {
150                  comheight = 0;
151 + #ifndef  FNDELAY
152 +                eputs("warning: x11d driver not fully functional on this machine\n");
153 + #endif
154 +        }
155                                          /* open window */
156          ourwinattr.background_pixel = ourblack;
157          ourwinattr.border_pixel = ourblack;
# Line 157 | Line 164 | char  *name, *id;
164                  BORWIDTH, ourvinfo.depth, InputOutput, ourvinfo.visual,
165                  CWBackPixel|CWBorderPixel|CWColormap, &ourwinattr);
166          if (gwind == 0) {
167 <                stderr_v("cannot create window\n");
167 >                eputs("cannot create window\n");
168                  return(NULL);
169          }
170          XStoreName(ourdisplay, gwind, id);
# Line 186 | Line 193 | char  *name, *id;
193          if (comheight) {
194                  x11_driver.comin = x11_comin;
195                  x11_driver.comout = x11_comout;
196 <                cmdvec = x11_comout;
197 <                if (wrnvec != NULL)
198 <                        wrnvec = x11_errout;
196 >                erract[COMMAND].pf = x11_comout;
197 >                if (erract[WARNING].pf != NULL)
198 >                        erract[WARNING].pf = x11_errout;
199                  inpcheck = IC_X11;
200          } else {
201                  x11_driver.comin = std_comin;
202                  x11_driver.comout = std_comout;
203 <                cmdvec = std_comout;
203 >                erract[COMMAND].pf = std_comout;
204                  inpcheck = IC_IOCTL;
205          }
206          return(&x11_driver);
207   }
208  
209  
210 < static
210 > static void
211   x11_close()                     /* close our display */
212   {
213 <        cmdvec = NULL;                          /* reset error vectors */
214 <        if (wrnvec != NULL)
215 <                wrnvec = stderr_v;
213 >        erract[COMMAND].pf = NULL;              /* reset error vectors */
214 >        if (erract[WARNING].pf != NULL)
215 >                erract[WARNING].pf = wputs;
216          if (ourdisplay == NULL)
217                  return;
218          if (comline != NULL) {
# Line 223 | Line 230 | x11_close()                    /* close our display */
230   }
231  
232  
233 < static
233 > static void
234   x11_clear(xres, yres)                   /* clear our display */
235   int  xres, yres;
236   {
# Line 246 | Line 253 | int  xres, yres;
253                                                  /* reinitialize color table */
254          if (ourvinfo.class == PseudoColor || ourvinfo.class == GrayScale)
255                  if (getpixels() == 0)
256 <                        stderr_v("cannot allocate colors\n");
256 >                        eputs("cannot allocate colors\n");
257                  else
258                          new_ctab(ncolors);
259                                                  /* get new command line */
# Line 256 | Line 263 | int  xres, yres;
263                  comline = xt_open(ourdisplay, gwind, 0, gheight, gwidth,
264                                  comheight, 0, ourblack, ourwhite, COMFN);
265                  if (comline == NULL) {
266 <                        stderr_v("Cannot open command line window\n");
266 >                        eputs("cannot open command line window\n");
267                          quit(1);
268                  }
269                  XSelectInput(ourdisplay, comline->w, ExposureMask);
# Line 269 | Line 276 | int  xres, yres;
276   }
277  
278  
279 < static
279 > static void
280   x11_paintr(col, xmin, ymin, xmax, ymax)         /* fill a rectangle */
281   COLOR  col;
282   int  xmin, ymin, xmax, ymax;
# Line 288 | Line 295 | int  xmin, ymin, xmax, ymax;
295   }
296  
297  
298 < static
298 > static void
299   x11_flush()                     /* flush output */
300   {
301          char    buf[256];
# Line 306 | Line 313 | x11_flush()                    /* flush output */
313                  if (1) {
314   #endif
315                          if (fcntl(fileno(stdin), F_SETFL, FNDELAY) < 0) {
316 <                                stderr_v("Cannot change input mode\n");
316 >                                eputs("cannot change input mode\n");
317                                  quit(1);
318                          }
319                          inpcheck = IC_READ;
# Line 324 | Line 331 | x11_flush()                    /* flush output */
331   }
332  
333  
334 < static
334 > static void
335   x11_comin(inp, prompt)          /* read in a command line */
336   char  *inp, *prompt;
337   {
# Line 340 | Line 347 | char  *inp, *prompt;
347   }
348  
349  
350 < static
350 > static void
351   x11_comout(outp)                /* output a string to command line */
352   char  *outp;
353   {
354 <        if (comline == NULL)
354 >        if (comline == NULL || outp == NULL || !outp[0])
355                  return;
356          xt_puts(outp, comline);
357          if (outp[strlen(outp)-1] == '\n')
# Line 352 | Line 359 | char  *outp;
359   }
360  
361  
362 < static
362 > static void
363   x11_errout(msg)                 /* output an error message */
364   char  *msg;
365   {
366 <        stderr_v(msg);          /* send to stderr also! */
366 >        eputs(msg);             /* send to stderr also! */
367          x11_comout(msg);
368   }
369  
370  
371 < static
371 > static void
372   std_comin(inp, prompt)          /* read in command line from stdin */
373   char  *inp, *prompt;
374   {
368        extern char     *gets();
369
375          if (prompt != NULL) {
376                  if (fromcombuf(inp, &x11_driver))
377                          return;
378                  if (!x11_driver.inpready)
379 <                        fputs(prompt, stdout);
379 >                        std_comout(prompt);
380          }
381 + #ifdef FNDELAY
382 +        if (inpcheck == IC_READ) {      /* turn off FNDELAY */
383 +                if (fcntl(fileno(stdin), F_SETFL, 0) < 0) {
384 +                        eputs("cannot change input mode\n");
385 +                        quit(1);
386 +                }
387 +                inpcheck = IC_IOCTL;
388 +        }
389 + #endif
390          if (gets(inp) == NULL) {
391                  strcpy(inp, "quit");
392                  return;
# Line 383 | Line 397 | char  *inp, *prompt;
397   }
398  
399  
400 < static
400 > static void
401   std_comout(outp)                /* write out string to stdout */
402   char    *outp;
403   {
# Line 421 | Line 435 | int  *xp, *yp;
435   }
436  
437  
438 < static
438 > static void
439   xnewcolr(ndx, r, g, b)          /* enter a color into hardware table */
440   int  ndx;
441   int  r, g, b;
# Line 461 | Line 475 | loop:
475                          return(ncolors = 0);
476                  if (XAllocColorCells(ourdisplay,ourmap,0,NULL,0,pixval,ncolors))
477                          break;
478 <                free((char *)pixval);
478 >                free((void *)pixval);
479                  pixval = NULL;
480          }
481          if (pixval == NULL) {
# Line 490 | Line 504 | loop:
504   }
505  
506  
507 < static
507 > static void
508   freepixels()                            /* free our pixels */
509   {
510          if (ncolors == 0)
511                  return;
512          XFreeColors(ourdisplay,ourmap,pixval,ncolors,0L);
513 <        free((char *)pixval);
513 >        free((void *)pixval);
514          pixval = NULL;
515          ncolors = 0;
516          if (ourmap != DefaultColormap(ourdisplay,ourscreen))
# Line 532 | Line 546 | x11_getc()                     /* get a command character */
546   }
547  
548  
549 < static
549 > static void
550   getevent()                      /* get next event */
551   {
552          XNextEvent(ourdisplay, levptr(XEvent));
# Line 548 | Line 562 | getevent()                     /* get next event */
562                  if (ourvinfo.class == PseudoColor ||
563                                  ourvinfo.class == GrayScale)
564                          if (getpixels() == 0)
565 <                                stderr_v("Cannot allocate colors\n");
565 >                                eputs("cannot allocate colors\n");
566                          else
567                                  new_ctab(ncolors);
568                  mapped = 1;
# Line 565 | Line 579 | getevent()                     /* get next event */
579   }
580  
581  
582 < static
582 > static void
583   getkey(ekey)                            /* get input key */
584   register XKeyPressedEvent  *ekey;
585   {
# Line 578 | Line 592 | register XKeyPressedEvent  *ekey;
592   }
593  
594  
595 < static
595 > static void
596   fixwindow(eexp)                         /* repair damage to window */
597   register XExposeEvent  *eexp;
598   {
# Line 596 | Line 610 | register XExposeEvent  *eexp;
610   }
611  
612  
613 < static
613 > static void
614   resizewindow(ersz)                      /* resize window */
615   register XConfigureEvent  *ersz;
616   {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines