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.3 by greg, Fri Mar 2 12:22:37 1990 UTC vs.
Revision 1.23 by greg, Mon May 6 13:14:17 1991 UTC

# Line 37 | Line 37 | static char SCCSid[] = "$SunId$ LBL";
37  
38   #define  BORWIDTH       5               /* border width */
39  
40 + #define  ICONSIZ        (8*10)          /* maximum icon dimension (even 8) */
41 +
42   #define  ourscreen      DefaultScreen(thedisplay)
43   #define  ourblack       BlackPixel(thedisplay,ourscreen)
44   #define  ourwhite       WhitePixel(thedisplay,ourscreen)
45   #define  ourroot        RootWindow(thedisplay,ourscreen)
46   #define  ourgc          DefaultGC(thedisplay,ourscreen)
47  
48 + #define  revline(x0,y0,x1,y1)   XDrawLine(thedisplay,wind,revgc,x0,y0,x1,y1)
49 +
50   #define  redraw(x,y,w,h) patch_raster(wind,(x)-xoff,(y)-yoff,x,y,w,h,ourras)
51  
52   double  gamcor = 2.2;                   /* gamma correction */
# Line 75 | Line 79 | int  cury = 0;                         /* current scan location */
79  
80   double  exposure = 1.0;                 /* exposure compensation used */
81  
82 + int  wrongformat = 0;                   /* input in another format? */
83 +
84 + GC      revgc;                          /* graphics context with GXinvert */
85 +
86   XRASTER *ourras;                        /* our stored image */
87   unsigned char   *ourdata;               /* our image data */
88  
# Line 84 | Line 92 | struct {
92  
93   char  *geometry = NULL;                 /* geometry specification */
94  
95 + char  icondata[ICONSIZ*ICONSIZ/8];      /* icon bitmap data */
96 + int  iconwidth = 0, iconheight = 0;
97 +
98   char  *progname;
99  
100   char  errmsg[128];
# Line 152 | Line 163 | char  *argv[];
163          } else if (i != argc)
164                  goto userr;
165                                  /* get header */
166 <        getheader(fin, headline);
166 >        getheader(fin, headline, NULL);
167                                  /* get picture dimensions */
168 <        if (fgetresolu(&xmax, &ymax, fin) != (YMAJOR|YDECR))
169 <                quiterr("bad picture size");
168 >        if (wrongformat || fgetresolu(&xmax, &ymax, fin) != (YMAJOR|YDECR))
169 >                quiterr("bad picture format");
170                                  /* set view parameters */
171          if (gotview && setview(&ourview) != NULL)
172                  gotview = 0;
# Line 179 | Line 190 | char  *s;
190   {
191          static char  *altname[] = {"rview","rpict","pinterp",VIEWSTR,NULL};
192          register char  **an;
193 +        char  fmt[32];
194  
195          if (isexpos(s))
196                  exposure *= exposval(s);
197 <        else
197 >        else if (isformat(s)) {
198 >                formatval(fmt, s);
199 >                wrongformat = strcmp(fmt, COLRFMT);
200 >        } else
201                  for (an = altname; *an != NULL; an++)
202                          if (!strncmp(*an, s, strlen(*an))) {
203                                  if (sscanview(&ourview, s+strlen(*an)) > 0)
# Line 194 | Line 209 | char  *s;
209  
210   init()                  /* get data and open window */
211   {
212 +        XWMHints        ourxwmhints;
213 +        XSetWindowAttributes    ourwinattr;
214          XSizeHints  oursizhints;
215          register int  i;
216          
# Line 206 | Line 223 | init()                 /* get data and open window */
223          }
224          if ((thedisplay = XOpenDisplay(NULL)) == NULL)
225                  quiterr("can't open display; DISPLAY variable set?");
209        wind = XCreateSimpleWindow(thedisplay,
210                ourroot, 0, 0, xmax, ymax, BORWIDTH, ourblack, ourwhite);
211        if (wind == 0)
212                quiterr("can't create window");
226          if (maxcolors == 0) {           /* get number of available colors */
227                  i = DisplayPlanes(thedisplay,ourscreen);
228                  maxcolors = i > 8 ? 256 : 1<<i;
229                  if (maxcolors > 4) maxcolors -= 2;
230          }
231 +                                /* store image */
232 +        getras();
233 +                                /* open window */
234 +        ourwinattr.border_pixel = ourblack;
235 +        ourwinattr.background_pixel = ourwhite;
236 +        wind = XCreateWindow(thedisplay, ourroot, 0, 0, xmax, ymax, BORWIDTH,
237 +                        0, InputOutput, ourras->visual,
238 +                        CWBackPixel|CWBorderPixel, &ourwinattr);
239 +        if (wind == 0)
240 +                quiterr("can't create window");
241 +        width = xmax;
242 +        height = ymax;
243          fontid = XLoadFont(thedisplay, FONTNAME);
244          if (fontid == 0)
245                  quiterr("can't get font");
246          XSetFont(thedisplay, ourgc, fontid);
247 <        XStoreName(thedisplay, wind, fname == NULL ? progname : fname);
247 >        revgc = XCreateGC(thedisplay, wind, 0, 0);
248 >        XSetFunction(thedisplay, revgc, GXinvert);
249          XDefineCursor(thedisplay, wind, XCreateFontCursor(thedisplay,
250                          XC_diamond_cross));
251 +        XStoreName(thedisplay, wind, fname == NULL ? progname : fname);
252          if (geometry != NULL) {
253                  bzero((char *)&oursizhints, sizeof(oursizhints));
254                  i = XParseGeometry(geometry, &oursizhints.x, &oursizhints.y,
255 <                                &oursizhints.width, &oursizhints.height);
255 >                                (unsigned *)&oursizhints.width,
256 >                                (unsigned *)&oursizhints.height);
257                  if ((i&(WidthValue|HeightValue)) == (WidthValue|HeightValue))
258                          oursizhints.flags |= USSize;
259                  else {
# Line 244 | Line 272 | init()                 /* get data and open window */
272                  }
273                  XSetNormalHints(thedisplay, wind, &oursizhints);
274          }
275 <                                /* store image */
276 <        getras();
275 >        ourxwmhints.flags = InputHint|IconPixmapHint;
276 >        ourxwmhints.input = True;
277 >        ourxwmhints.icon_pixmap = XCreateBitmapFromData(thedisplay,
278 >                        wind, icondata, iconwidth, iconheight);
279 >        XSetWMHints(thedisplay, wind, &ourxwmhints);
280          XSelectInput(thedisplay, wind, ButtonPressMask|ButtonReleaseMask
281                          |ButtonMotionMask|StructureNotifyMask
282                          |KeyPressMask|ExposureMask);
# Line 295 | Line 326 | getras()                               /* get raster file */
326                  if (ourras == NULL)
327                          goto fail;
328                  getmono();
329 <        } else if (XMatchVisualInfo(thedisplay,ourscreen,24,TrueColor,&vinfo)) {
329 >        } else if (XMatchVisualInfo(thedisplay,ourscreen,24,TrueColor,&vinfo)
330 >                                                /* kludge for DirectColor */
331 >        || XMatchVisualInfo(thedisplay,ourscreen,24,DirectColor,&vinfo)) {
332                  ourdata = (unsigned char *)malloc(xmax*ymax*3);
333                  if (ourdata == NULL)
334                          goto fail;
# Line 321 | Line 354 | getras()                               /* get raster file */
354          }
355          return;
356   fail:
357 <        quit("could not create raster image");
357 >        quiterr("could not create raster image");
358   }
359  
360  
# Line 395 | Line 428 | XKeyPressedEvent  *ekey;
428                          sprintf(buf, "%.3f", intens(cval)/exposure);
429                          break;
430                  case 'l':                               /* luminance */
431 <                        sprintf(buf, "%.0fn", bright(cval)*683.0/exposure);
431 >                        sprintf(buf, "%.0fL", luminance(cval)/exposure);
432                          break;
433                  case 'c':                               /* color */
434                          comp = pow(2.0, (double)scale);
# Line 430 | Line 463 | XKeyPressedEvent  *ekey;
463                          XBell(thedisplay, 0);
464                          return(-1);
465                  }
466 <                viewray(rorg, rdir, &ourview,
466 >                if (viewray(rorg, rdir, &ourview,
467                                  (ekey->x-xoff+.5)/xmax,
468 <                                (ymax-1-ekey->y+yoff+.5)/ymax);
468 >                                (ymax-1-ekey->y+yoff+.5)/ymax) < 0)
469 >                        return(-1);
470                  printf("%e %e %e ", rorg[0], rorg[1], rorg[2]);
471                  printf("%e %e %e\n", rdir[0], rdir[1], rdir[2]);
472                  fflush(stdout);
# Line 480 | Line 514 | XButtonPressedEvent  *ebut;
514                  XButtonReleasedEvent  b;
515                  XPointerMovedEvent  m;
516          }  e;
517 <        int     nxo, nyo;
517 >        int     mxo, myo;
518  
519          XMaskEvent(thedisplay, ButtonReleaseMask|ButtonMotionMask, &e.u);
520          while (e.u.type == MotionNotify) {
521 <                nxo = xoff + e.m.x - ebut->x;
522 <                nyo = yoff + e.m.y - ebut->y;
523 <                revbox(nxo, nyo, nxo+xmax, nyo+ymax);
521 >                mxo = e.m.x;
522 >                myo = e.m.y;
523 >                revline(ebut->x, ebut->y, mxo, myo);
524 >                revbox(xoff+mxo-ebut->x, yoff+myo-ebut->y,
525 >                                xoff+mxo-ebut->x+xmax, yoff+myo-ebut->y+ymax);
526                  XMaskEvent(thedisplay,ButtonReleaseMask|ButtonMotionMask,&e.u);
527 <                revbox(nxo, nyo, nxo+xmax, nyo+ymax);
527 >                revline(ebut->x, ebut->y, mxo, myo);
528 >                revbox(xoff+mxo-ebut->x, yoff+myo-ebut->y,
529 >                                xoff+mxo-ebut->x+xmax, yoff+myo-ebut->y+ymax);
530          }
531          xoff += e.b.x - ebut->x;
532          yoff += e.b.y - ebut->y;
# Line 532 | Line 570 | XButtonPressedEvent  *ebut;
570   revbox(x0, y0, x1, y1)                  /* draw box with reversed lines */
571   int  x0, y0, x1, y1;
572   {
573 <        static GC       mygc = 0;
573 >        revline(x0, y0, x1, y0);
574 >        revline(x0, y1, x1, y1);
575 >        revline(x0, y0, x0, y1);
576 >        revline(x1, y0, x1, y1);
577 > }
578  
537        if (mygc == 0) {
538                mygc = XCreateGC(thedisplay, wind, 0, 0);
539                XSetFunction(thedisplay, mygc, GXinvert);
540        }
541        XDrawLine(thedisplay, wind, mygc, x0, y0, x1, y0);
542        XDrawLine(thedisplay, wind, mygc, x0, y1, x1, y1);
543        XDrawLine(thedisplay, wind, mygc, x0, y0, x0, y1);
544        XDrawLine(thedisplay, wind, mygc, x1, y0, x1, y1);
545 } /* end of revbox */
579  
547
580   avgbox(clr)                             /* average color over current box */
581   COLOR  clr;
582   {
# Line 589 | Line 621 | getmono()                      /* get monochrome data */
621   {
622          register unsigned char  *dp;
623          register int    x, err;
624 <        int     y;
593 <        rgbpixel        *inline;
624 >        int     y, errp;
625          short   *cerr;
626  
627 <        if ((inline = (rgbpixel *)malloc(xmax*sizeof(rgbpixel))) == NULL
628 <                        || (cerr = (short *)calloc(xmax,sizeof(short))) == NULL)
598 <                quit("out of memory in getmono");
627 >        if ((cerr = (short *)calloc(xmax,sizeof(short))) == NULL)
628 >                quiterr("out of memory in getmono");
629          dp = ourdata - 1;
630          for (y = 0; y < ymax; y++) {
631 <                picreadline3(y, inline);
631 >                if (getscan(y) < 0)
632 >                        quiterr("seek error in getmono");
633 >                normcolrs(scanline, xmax, scale);
634 >                add2icon(y, scanline);
635                  err = 0;
636                  for (x = 0; x < xmax; x++) {
637                          if (!(x&7))
638                                  *++dp = 0;
639 <                        err += rgb_bright(&inline[x]) + cerr[x];
639 >                        errp = err;
640 >                        err += normbright(scanline[x]) + cerr[x];
641                          if (err > 127)
642                                  err -= 255;
643                          else
644                                  *dp |= 1<<(7-(x&07));
645 <                        cerr[x] = err >>= 1;
645 >                        err /= 3;
646 >                        cerr[x] = err + errp;
647                  }
648          }
614        free((char *)inline);
649          free((char *)cerr);
650   }
651  
652  
653 + add2icon(y, scan)               /* add a scanline to our icon data */
654 + int  y;
655 + COLR  *scan;
656 + {
657 +        static short  cerr[ICONSIZ];
658 +        static int  ynext;
659 +        static char  *dp;
660 +        register int  err;
661 +        register int    x, ti;
662 +        int  errp;
663 +
664 +        if (iconheight == 0) {          /* initialize */
665 +                if (xmax <= ICONSIZ && ymax <= ICONSIZ) {
666 +                        iconwidth = xmax;
667 +                        iconheight = ymax;
668 +                } else if (xmax > ymax) {
669 +                        iconwidth = ICONSIZ;
670 +                        iconheight = ICONSIZ*ymax/xmax;
671 +                } else {
672 +                        iconwidth = ICONSIZ*xmax/ymax;
673 +                        iconheight = ICONSIZ;
674 +                }
675 +                ynext = 0;
676 +                dp = icondata - 1;
677 +        }
678 +        if (y < ynext*ymax/iconheight)  /* skip this one */
679 +                return;
680 +        err = 0;
681 +        for (x = 0; x < iconwidth; x++) {
682 +                if (!(x&7))
683 +                        *++dp = 0;
684 +                errp = err;
685 +                ti = x*xmax/iconwidth;
686 +                err += normbright(scan[ti]) + cerr[x];
687 +                if (err > 127)
688 +                        err -= 255;
689 +                else
690 +                        *dp |= 1<<(x&07);
691 +                err /= 3;
692 +                cerr[x] = err + errp;
693 +        }
694 +        ynext++;
695 + }
696 +
697 +
698   getfull()                       /* get full (24-bit) data */
699   {
700          int     y;
701 <
702 <        for (y = 0; y < ymax; y++)
703 <                picreadline3(y, (rgbpixel *)(ourdata+y*xmax*3));
701 >        register unsigned char  *dp;
702 >        register int    x;
703 >                                        /* set gamma correction */
704 >        setcolrgam(gamcor);
705 >                                        /* read and convert file */
706 >        dp = ourdata;
707 >        for (y = 0; y < ymax; y++) {
708 >                if (getscan(y) < 0)
709 >                        quiterr("seek error in getfull");
710 >                if (scale)
711 >                        shiftcolrs(scanline, xmax, scale);
712 >                colrs_gambs(scanline, xmax);
713 >                add2icon(y, scanline);
714 >                for (x = 0; x < xmax; x++) {
715 >                        *dp++ = scanline[x][RED];
716 >                        *dp++ = scanline[x][GRN];
717 >                        *dp++ = scanline[x][BLU];
718 >                }
719 >        }
720   }
721  
722  
# Line 660 | Line 755 | int  y;
755                  if (scanpos == NULL || scanpos[y] == -1)
756                          return(-1);
757                  if (fseek(fin, scanpos[y], 0) == -1)
758 <                        quit("fseek error");
758 >                        quiterr("fseek error");
759                  cury = y;
760          } else if (scanpos != NULL)
761                  scanpos[y] = ftell(fin);
# Line 683 | Line 778 | register rgbpixel  *l3;
778                  quiterr("cannot seek for picreadline");
779                                                          /* convert scanline */
780          normcolrs(scanline, xmax, scale);
781 +        add2icon(y, scanline);
782          for (i = 0; i < xmax; i++) {
783                  l3[i].r = scanline[i][RED];
784                  l3[i].g = scanline[i][GRN];
# Line 706 | Line 802 | colormap  map;
802          register int  i, val;
803  
804          for (i = 0; i < 256; i++) {
805 <                val = pow(i/256.0, 1.0/gamcor) * 256.0;
805 >                val = pow((i+0.5)/256.0, 1.0/gamcor) * 256.0;
806                  map[0][i] = map[1][i] = map[2][i] = val;
807          }
808   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines