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.16 by greg, Wed May 1 12:40:00 1991 UTC vs.
Revision 1.23 by greg, Mon May 6 13:14:17 1991 UTC

# Line 30 | Line 30 | static char SCCSid[] = "$SunId$ LBL";
30   #include  "pic.h"
31   #include  "x11raster.h"
32   #include  "random.h"
33 #include  "x11icon.h"
33  
34   #define  FONTNAME       "8x13"          /* text font we'll use */
35  
# Line 38 | 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)
# Line 91 | 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 242 | Line 246 | init()                 /* get data and open window */
246          XSetFont(thedisplay, ourgc, fontid);
247          revgc = XCreateGC(thedisplay, wind, 0, 0);
248          XSetFunction(thedisplay, revgc, GXinvert);
245        XStoreName(thedisplay, wind, fname == NULL ? progname : fname);
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,
# Line 271 | Line 275 | init()                 /* get data and open window */
275          ourxwmhints.flags = InputHint|IconPixmapHint;
276          ourxwmhints.input = True;
277          ourxwmhints.icon_pixmap = XCreateBitmapFromData(thedisplay,
278 <                        wind, x11icon_bits, x11icon_width, x11icon_height);
278 >                        wind, icondata, iconwidth, iconheight);
279          XSetWMHints(thedisplay, wind, &ourxwmhints);
280          XSelectInput(thedisplay, wind, ButtonPressMask|ButtonReleaseMask
281                          |ButtonMotionMask|StructureNotifyMask
# Line 617 | Line 621 | getmono()                      /* get monochrome data */
621   {
622          register unsigned char  *dp;
623          register int    x, err;
624 <        int     y;
624 >        int     y, errp;
625          short   *cerr;
626  
627          if ((cerr = (short *)calloc(xmax,sizeof(short))) == NULL)
# Line 627 | Line 631 | getmono()                      /* get monochrome data */
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 +                        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          }
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;
# Line 658 | Line 710 | getfull()                      /* get full (24-bit) data */
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];
# Line 725 | 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];

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines