ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/x11image.c
(Generate patch)

Comparing ray/src/px/x11image.c (file contents):
Revision 1.2 by greg, Thu Mar 1 18:13:31 1990 UTC vs.
Revision 1.8 by greg, Sat Oct 13 21:31:48 1990 UTC

# Line 43 | Line 43 | static char SCCSid[] = "$SunId$ LBL";
43   #define  ourroot        RootWindow(thedisplay,ourscreen)
44   #define  ourgc          DefaultGC(thedisplay,ourscreen)
45  
46 + #define  revline(x0,y0,x1,y1)   XDrawLine(thedisplay,wind,revgc,x0,y0,x1,y1)
47 +
48   #define  redraw(x,y,w,h) patch_raster(wind,(x)-xoff,(y)-yoff,x,y,w,h,ourras)
49  
50   double  gamcor = 2.2;                   /* gamma correction */
# Line 75 | Line 77 | int  cury = 0;                         /* current scan location */
77  
78   double  exposure = 1.0;                 /* exposure compensation used */
79  
80 + GC      revgc;                          /* graphics context with GXinvert */
81 +
82   XRASTER *ourras;                        /* our stored image */
83   unsigned char   *ourdata;               /* our image data */
84  
# Line 137 | Line 141 | char  *argv[];
141                          default:
142                                  goto userr;
143                          }
144 +                else if (argv[i][0] == '=')
145 +                        geometry = argv[i];
146                  else
147                          break;
148  
149 <        if (argc-i == 1) {
149 >        if (i == argc-1) {
150                  fname = argv[i];
151                  fin = fopen(fname, "r");
152                  if (fin == NULL) {
153                          sprintf(errmsg, "can't open file \"%s\"", fname);
154                          quiterr(errmsg);
155                  }
156 <        }
156 >        } else if (i != argc)
157 >                goto userr;
158                                  /* get header */
159          getheader(fin, headline);
160                                  /* get picture dimensions */
# Line 191 | Line 198 | char  *s;
198  
199   init()                  /* get data and open window */
200   {
201 +        XSetWindowAttributes    ourwinattr;
202          XSizeHints  oursizhints;
203          register int  i;
204          
# Line 203 | Line 211 | init()                 /* get data and open window */
211          }
212          if ((thedisplay = XOpenDisplay(NULL)) == NULL)
213                  quiterr("can't open display; DISPLAY variable set?");
206        wind = XCreateSimpleWindow(thedisplay,
207                ourroot, 0, 0, xmax, ymax, BORWIDTH, ourblack, ourwhite);
208        if (wind == 0)
209                quiterr("can't create window");
214          if (maxcolors == 0) {           /* get number of available colors */
215                  i = DisplayPlanes(thedisplay,ourscreen);
216                  maxcolors = i > 8 ? 256 : 1<<i;
217                  if (maxcolors > 4) maxcolors -= 2;
218          }
219 +                                /* store image */
220 +        getras();
221 +                                /* open window */
222 +        ourwinattr.border_pixel = ourblack;
223 +        ourwinattr.background_pixel = ourwhite;
224 +        wind = XCreateWindow(thedisplay, ourroot, 0, 0, xmax, ymax, BORWIDTH,
225 +                        0, InputOutput, ourras->visual,
226 +                        CWBackPixel|CWBorderPixel, &ourwinattr);
227 +        if (wind == 0)
228 +                quiterr("can't create window");
229 +        width = xmax;
230 +        height = ymax;
231          fontid = XLoadFont(thedisplay, FONTNAME);
232          if (fontid == 0)
233                  quiterr("can't get font");
234          XSetFont(thedisplay, ourgc, fontid);
235 +        revgc = XCreateGC(thedisplay, wind, 0, 0);
236 +        XSetFunction(thedisplay, revgc, GXinvert);
237          XStoreName(thedisplay, wind, fname == NULL ? progname : fname);
238          XDefineCursor(thedisplay, wind, XCreateFontCursor(thedisplay,
239                          XC_diamond_cross));
# Line 223 | Line 241 | init()                 /* get data and open window */
241                  bzero((char *)&oursizhints, sizeof(oursizhints));
242                  i = XParseGeometry(geometry, &oursizhints.x, &oursizhints.y,
243                                  &oursizhints.width, &oursizhints.height);
244 <                if (i & (XValue|YValue) == (XValue|YValue)) {
244 >                if ((i&(WidthValue|HeightValue)) == (WidthValue|HeightValue))
245 >                        oursizhints.flags |= USSize;
246 >                else {
247 >                        oursizhints.width = xmax;
248 >                        oursizhints.height = ymax;
249 >                        oursizhints.flags |= PSize;
250 >                }
251 >                if ((i&(XValue|YValue)) == (XValue|YValue)) {
252                          oursizhints.flags |= USPosition;
253                          if (i & XNegative)
254 <                                oursizhints.x += DisplayWidth(thedisplay,ourscreen)-1;
254 >                                oursizhints.x += DisplayWidth(thedisplay,
255 >                                ourscreen)-1-oursizhints.width-2*BORWIDTH;
256                          if (i & YNegative)
257 <                                oursizhints.y += DisplayHeight(thedisplay,ourscreen)-1;
257 >                                oursizhints.y += DisplayHeight(thedisplay,
258 >                                ourscreen)-1-oursizhints.height-2*BORWIDTH;
259                  }
233                if (i & (WidthValue|HeightValue) == (WidthValue|HeightValue))
234                        oursizhints.flags |= USSize;
260                  XSetNormalHints(thedisplay, wind, &oursizhints);
261          }
237                                /* store image */
238        getras();
262          XSelectInput(thedisplay, wind, ButtonPressMask|ButtonReleaseMask
263                          |ButtonMotionMask|StructureNotifyMask
264                          |KeyPressMask|ExposureMask);
# Line 274 | Line 297 | int  code;
297   getras()                                /* get raster file */
298   {
299          colormap        ourmap;
277        unsigned char   rmap[256], gmap[256], bmap[256];
300          XVisualInfo     vinfo;
279        register int  i;
301  
302          if (maxcolors <= 2) {           /* monochrome */
303                  ourdata = (unsigned char *)malloc(ymax*((xmax+7)/8));
# Line 287 | Line 308 | getras()                               /* get raster file */
308                  if (ourras == NULL)
309                          goto fail;
310                  getmono();
311 <        } else if (XMatchVisualInfo(thedisplay,ourscreen,24,TrueColor,&vinfo)) {
311 >        } else if (XMatchVisualInfo(thedisplay,ourscreen,24,TrueColor,&vinfo)
312 >                                                /* kludge for DirectColor */
313 >        || XMatchVisualInfo(thedisplay,ourscreen,24,DirectColor,&vinfo)) {
314                  ourdata = (unsigned char *)malloc(xmax*ymax*3);
315                  if (ourdata == NULL)
316                          goto fail;
# Line 308 | Line 331 | getras()                               /* get raster file */
331                          biq(dither,maxcolors,1,ourmap);
332                  else
333                          ciq(dither,maxcolors,1,ourmap);
334 <                for (i = 0; i < 256; i++) {
312 <                        rmap[i] = ourmap[0][i];
313 <                        gmap[i] = ourmap[1][i];
314 <                        bmap[i] = ourmap[2][i];
315 <                }
316 <                if (init_rcolors(ourras, rmap, gmap, bmap) == 0)
334 >                if (init_rcolors(ourras, ourmap[0], ourmap[1], ourmap[2]) == 0)
335                          goto fail;
336          }
337          return;
# Line 402 | Line 420 | XKeyPressedEvent  *ekey;
420                                          colval(cval,BLU)*comp);
421                          break;
422                  }
423 <                XDrawImageString(thedisplay, wind, ourgc, box.xmin, box.ymin,
424 <                                buf, strlen(buf));
423 >                XDrawImageString(thedisplay, wind, ourgc,
424 >                                box.xmin, box.ymin+box.ysiz, buf, strlen(buf));
425                  return(0);
426          case 'i':                               /* identify (contour) */
427                  if (ourras->pixels == NULL)
# Line 427 | Line 445 | XKeyPressedEvent  *ekey;
445                          XBell(thedisplay, 0);
446                          return(-1);
447                  }
448 <                viewray(rorg, rdir, &ourview,
448 >                if (viewray(rorg, rdir, &ourview,
449                                  (ekey->x-xoff+.5)/xmax,
450 <                                (ymax-1-ekey->y+yoff+.5)/ymax);
450 >                                (ymax-1-ekey->y+yoff+.5)/ymax) < 0)
451 >                        return(-1);
452                  printf("%e %e %e ", rorg[0], rorg[1], rorg[2]);
453                  printf("%e %e %e\n", rdir[0], rdir[1], rdir[2]);
454                  fflush(stdout);
# Line 443 | Line 462 | XKeyPressedEvent  *ekey;
462                  scale_rcolors(ourras, pow(2.0, (double)n));
463                  scale += n;
464                  sprintf(buf, "%+d", scale);
465 <                XDrawImageString(thedisplay, wind, ourgc, box.xmin, box.ymin,
466 <                                buf, strlen(buf));
465 >                XDrawImageString(thedisplay, wind, ourgc,
466 >                                box.xmin, box.ymin+box.ysiz, buf, strlen(buf));
467                  XFlush(thedisplay);
468                  free(ourdata);
469                  free_raster(ourras);
# Line 473 | Line 492 | moveimage(ebut)                                /* shift the image */
492   XButtonPressedEvent  *ebut;
493   {
494          union {
495 <                XEvent  u;
496 <                XButtonReleasedEvent    b;
497 <        } e;
495 >                XEvent  u;
496 >                XButtonReleasedEvent  b;
497 >                XPointerMovedEvent  m;
498 >        }  e;
499 >        int     mxo, myo;
500  
501 <        XMaskEvent(thedisplay, ButtonReleaseMask, &e.u);
501 >        XMaskEvent(thedisplay, ButtonReleaseMask|ButtonMotionMask, &e.u);
502 >        while (e.u.type == MotionNotify) {
503 >                mxo = e.m.x;
504 >                myo = e.m.y;
505 >                revline(ebut->x, ebut->y, mxo, myo);
506 >                revbox(xoff+mxo-ebut->x, yoff+myo-ebut->y,
507 >                                xoff+mxo-ebut->x+xmax, yoff+myo-ebut->y+ymax);
508 >                XMaskEvent(thedisplay,ButtonReleaseMask|ButtonMotionMask,&e.u);
509 >                revline(ebut->x, ebut->y, mxo, myo);
510 >                revbox(xoff+mxo-ebut->x, yoff+myo-ebut->y,
511 >                                xoff+mxo-ebut->x+xmax, yoff+myo-ebut->y+ymax);
512 >        }
513          xoff += e.b.x - ebut->x;
514          yoff += e.b.y - ebut->y;
515          XClearWindow(thedisplay, wind);
# Line 520 | Line 552 | XButtonPressedEvent  *ebut;
552   revbox(x0, y0, x1, y1)                  /* draw box with reversed lines */
553   int  x0, y0, x1, y1;
554   {
555 <        static GC       mygc = 0;
555 >        revline(x0, y0, x1, y0);
556 >        revline(x0, y1, x1, y1);
557 >        revline(x0, y0, x0, y1);
558 >        revline(x1, y0, x1, y1);
559 > }
560  
525        if (mygc == 0) {
526                mygc = XCreateGC(thedisplay, wind, 0, 0);
527                XSetFunction(thedisplay, mygc, GXinvert);
528        }
529        XDrawLine(thedisplay, wind, mygc, x0, y0, x1, y0);
530        XDrawLine(thedisplay, wind, mygc, x0, y1, x1, y1);
531        XDrawLine(thedisplay, wind, mygc, x0, y0, x0, y1);
532        XDrawLine(thedisplay, wind, mygc, x1, y0, x1, y1);
533 } /* end of revbox */
561  
535
562   avgbox(clr)                             /* average color over current box */
563   COLOR  clr;
564   {
# Line 578 | Line 604 | getmono()                      /* get monochrome data */
604          register unsigned char  *dp;
605          register int    x, err;
606          int     y;
607 <        rgbpixel        *inline;
607 >        rgbpixel        *inl;
608          short   *cerr;
609  
610 <        if ((inline = (rgbpixel *)malloc(xmax*sizeof(rgbpixel))) == NULL
610 >        if ((inl = (rgbpixel *)malloc(xmax*sizeof(rgbpixel))) == NULL
611                          || (cerr = (short *)calloc(xmax,sizeof(short))) == NULL)
612                  quit("out of memory in getmono");
613          dp = ourdata - 1;
614          for (y = 0; y < ymax; y++) {
615 <                picreadline3(y, inline);
615 >                picreadline3(y, inl);
616                  err = 0;
617                  for (x = 0; x < xmax; x++) {
618                          if (!(x&7))
619                                  *++dp = 0;
620 <                        err += rgb_bright(&inline[x]) + cerr[x];
620 >                        err += rgb_bright(&inl[x]) + cerr[x];
621                          if (err > 127)
622                                  err -= 255;
623                          else
624 <                                *dp |= 1<<(x&07);
624 >                                *dp |= 1<<(7-(x&07));
625                          cerr[x] = err >>= 1;
626                  }
627          }
628 <        free((char *)inline);
628 >        free((char *)inl);
629          free((char *)cerr);
630   }
631  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines