gentexfont.c
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:16k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1997. */
  2. /* This program is freely distributable without licensing fees  and is
  3.    provided without guarantee or warrantee expressed or  implied. This
  4.    program is -not- in the public domain. */
  5. /* X compile line: cc -o gentexfont gentexfont.c -lX11 */
  6. #include <assert.h>
  7. #include <stdlib.h>
  8. #include <stdio.h>
  9. #include <string.h>
  10. #include <unistd.h>
  11. #include <X11/Xlib.h>
  12. #include <X11/Xutil.h>
  13. #include <math.h>
  14. #include "TexFont.h"
  15. typedef struct {
  16.   short width;
  17.   short height;
  18.   short xoffset;
  19.   short yoffset;
  20.   short advance;
  21.   unsigned char *bitmap;
  22. } PerGlyphInfo, *PerGlyphInfoPtr;
  23. typedef struct {
  24.   int min_char;
  25.   int max_char;
  26.   int max_ascent;
  27.   int max_descent;
  28.   PerGlyphInfo glyph[1];
  29. } FontInfo, *FontInfoPtr;
  30. Display *dpy;
  31. FontInfoPtr fontinfo;
  32. int format = TXF_FORMAT_BITMAP;
  33. int gap = 1;
  34. /* #define REPORT_GLYPHS */
  35. #ifdef REPORT_GLYPHS
  36. #define DEBUG_GLYPH4(msg,a,b,c,d) printf(msg,a,b,c,d)
  37. #define DEBUG_GLYPH(msg) printf(msg)
  38. #else
  39. #define DEBUG_GLYPH4(msg,a,b,c,d) { /* nothing */ }
  40. #define DEBUG_GLYPH(msg) { /* nothing */ }
  41. #endif
  42. #define MAX_GLYPHS_PER_GRAB 512  /* this is big enough for 2^9 glyph
  43.                                     character sets */
  44. FontInfoPtr
  45. SuckGlyphsFromServer(Display * dpy, Font font)
  46. {
  47.   Pixmap offscreen;
  48.   XFontStruct *fontinfo;
  49.   XImage *image;
  50.   GC xgc;
  51.   XGCValues values;
  52.   int numchars;
  53.   int width, height, pixwidth;
  54.   int i, j;
  55.   XCharStruct *charinfo;
  56.   XChar2b character;
  57.   unsigned char *bitmapData;
  58.   int x, y;
  59.   int spanLength;
  60.   int charWidth, charHeight, maxSpanLength;
  61.   int grabList[MAX_GLYPHS_PER_GRAB];
  62.   int glyphsPerGrab = MAX_GLYPHS_PER_GRAB;
  63.   int numToGrab, thisglyph;
  64.   FontInfoPtr myfontinfo;
  65.   fontinfo = XQueryFont(dpy, font);
  66.   if (!fontinfo)
  67.     return NULL;
  68.   numchars = fontinfo->max_char_or_byte2 - fontinfo->min_char_or_byte2 + 1;
  69.   if (numchars < 1)
  70.     return NULL;
  71.   myfontinfo = (FontInfoPtr) malloc(sizeof(FontInfo) + (numchars - 1) * sizeof(PerGlyphInfo));
  72.   if (!myfontinfo)
  73.     return NULL;
  74.   myfontinfo->min_char = fontinfo->min_char_or_byte2;
  75.   myfontinfo->max_char = fontinfo->max_char_or_byte2;
  76.   myfontinfo->max_ascent = fontinfo->max_bounds.ascent;
  77.   myfontinfo->max_descent = fontinfo->max_bounds.descent;
  78.   width = fontinfo->max_bounds.rbearing - fontinfo->min_bounds.lbearing;
  79.   height = fontinfo->max_bounds.ascent + fontinfo->max_bounds.descent;
  80.   maxSpanLength = (width + 7) / 8;
  81.   /* Be careful determining the width of the pixmap; the X protocol allows
  82.      pixmaps of width 2^16-1 (unsigned short size) but drawing coordinates
  83.      max out at 2^15-1 (signed short size).  If the width is too large, we
  84.      need to limit the glyphs per grab.  */
  85.   if ((glyphsPerGrab * 8 * maxSpanLength) >= (1 << 15)) {
  86.     glyphsPerGrab = (1 << 15) / (8 * maxSpanLength);
  87.   }
  88.   pixwidth = glyphsPerGrab * 8 * maxSpanLength;
  89.   offscreen = XCreatePixmap(dpy, RootWindow(dpy, DefaultScreen(dpy)),
  90.     pixwidth, height, 1);
  91.   values.font = font;
  92.   values.background = 0;
  93.   values.foreground = 0;
  94.   xgc = XCreateGC(dpy, offscreen, GCFont | GCBackground | GCForeground, &values);
  95.   XFillRectangle(dpy, offscreen, xgc, 0, 0, 8 * maxSpanLength * glyphsPerGrab, height);
  96.   XSetForeground(dpy, xgc, 1);
  97.   numToGrab = 0;
  98.   if (fontinfo->per_char == NULL) {
  99.     charinfo = &(fontinfo->min_bounds);
  100.     charWidth = charinfo->rbearing - charinfo->lbearing;
  101.     charHeight = charinfo->ascent + charinfo->descent;
  102.     spanLength = (charWidth + 7) / 8;
  103.   }
  104.   for (i = 0; i < numchars; i++) {
  105.     if (fontinfo->per_char != NULL) {
  106.       charinfo = &(fontinfo->per_char[i]);
  107.       charWidth = charinfo->rbearing - charinfo->lbearing;
  108.       charHeight = charinfo->ascent + charinfo->descent;
  109.       if (charWidth == 0 || charHeight == 0) {
  110.         /* Still must move raster pos even if empty character */
  111.         myfontinfo->glyph[i].width = 0;
  112.         myfontinfo->glyph[i].height = 0;
  113.         myfontinfo->glyph[i].xoffset = 0;
  114.         myfontinfo->glyph[i].yoffset = 0;
  115.         myfontinfo->glyph[i].advance = charinfo->width;
  116.         myfontinfo->glyph[i].bitmap = NULL;
  117.         goto PossiblyDoGrab;
  118.       }
  119.     }
  120.     grabList[numToGrab] = i;
  121.     /* XXX is this right for large fonts? */
  122.     character.byte2 = (i + fontinfo->min_char_or_byte2) & 255;
  123.     character.byte1 = (i + fontinfo->min_char_or_byte2) >> 8;
  124.     /* XXX we could use XDrawImageString16 which would also paint the backing 
  125.        rectangle but X server bugs in some scalable font rasterizers makes it 
  126.        more effective to do XFillRectangles to clear the pixmap and
  127.        XDrawImage16 for the text.  */
  128.     XDrawString16(dpy, offscreen, xgc,
  129.       -charinfo->lbearing + 8 * maxSpanLength * numToGrab,
  130.       charinfo->ascent, &character, 1);
  131.     numToGrab++;
  132.   PossiblyDoGrab:
  133.     if (numToGrab >= glyphsPerGrab || i == numchars - 1) {
  134.       image = XGetImage(dpy, offscreen,
  135.         0, 0, pixwidth, height, 1, XYPixmap);
  136.       for (j = 0; j < numToGrab; j++) {
  137.         thisglyph = grabList[j];
  138.         if (fontinfo->per_char != NULL) {
  139.           charinfo = &(fontinfo->per_char[thisglyph]);
  140.           charWidth = charinfo->rbearing - charinfo->lbearing;
  141.           charHeight = charinfo->ascent + charinfo->descent;
  142.           spanLength = (charWidth + 7) / 8;
  143.         }
  144.         bitmapData = calloc(height * spanLength, sizeof(char));
  145.         if (!bitmapData)
  146.           goto FreeFontAndReturn;
  147.         DEBUG_GLYPH4("index %d, glyph %d (%d by %d)n",
  148.           j, thisglyph + fontinfo->min_char_or_byte2, charWidth, charHeight);
  149.         for (y = 0; y < charHeight; y++) {
  150.           for (x = 0; x < charWidth; x++) {
  151.             /* XXX The algorithm used to suck across the font ensures that
  152.                each glyph begins on a byte boundary.  In theory this would
  153.                make it convienent to copy the glyph into a byte oriented
  154.                bitmap.  We actually use the XGetPixel function to extract
  155.                each pixel from the image which is not that efficient.  We
  156.                could either do tighter packing in the pixmap or more
  157.                efficient extraction from the image.  Oh well.  */
  158.             if (XGetPixel(image, j * maxSpanLength * 8 + x, charHeight - 1 - y)) {
  159.               DEBUG_GLYPH("x");
  160.               bitmapData[y * spanLength + x / 8] |= (1 << (x & 7));
  161.             } else {
  162.               DEBUG_GLYPH(" ");
  163.             }
  164.           }
  165.           DEBUG_GLYPH("n");
  166.         }
  167.         myfontinfo->glyph[thisglyph].width = charWidth;
  168.         myfontinfo->glyph[thisglyph].height = charHeight;
  169.         myfontinfo->glyph[thisglyph].xoffset = charinfo->lbearing;
  170.         myfontinfo->glyph[thisglyph].yoffset = -charinfo->descent;
  171.         myfontinfo->glyph[thisglyph].advance = charinfo->width;
  172.         myfontinfo->glyph[thisglyph].bitmap = bitmapData;
  173.       }
  174.       XDestroyImage(image);
  175.       numToGrab = 0;
  176.       /* do we need to clear the offscreen pixmap to get more? */
  177.       if (i < numchars - 1) {
  178.         XSetForeground(dpy, xgc, 0);
  179.         XFillRectangle(dpy, offscreen, xgc, 0, 0, 8 * maxSpanLength * glyphsPerGrab, height);
  180.         XSetForeground(dpy, xgc, 1);
  181.       }
  182.     }
  183.   }
  184.   XFreeGC(dpy, xgc);
  185.   XFreePixmap(dpy, offscreen);
  186.   return myfontinfo;
  187. FreeFontAndReturn:
  188.   XDestroyImage(image);
  189.   XFreeGC(dpy, xgc);
  190.   XFreePixmap(dpy, offscreen);
  191.   for (j = i - 1; j >= 0; j--) {
  192.     if (myfontinfo->glyph[j].bitmap)
  193.       free(myfontinfo->glyph[j].bitmap);
  194.   }
  195.   free(myfontinfo);
  196.   return NULL;
  197. }
  198. void
  199. printGlyph(FontInfoPtr font, int c)
  200. {
  201.   PerGlyphInfoPtr glyph;
  202.   unsigned char *bitmapData;
  203.   int width, height, spanLength;
  204.   int x, y;
  205.   if (c < font->min_char || c > font->max_char) {
  206.     printf("out of range glyphn");
  207.     return;
  208.   }
  209.   glyph = &font->glyph[c - font->min_char];
  210.   bitmapData = glyph->bitmap;
  211.   if (bitmapData) {
  212.     width = glyph->width;
  213.     spanLength = (width + 7) / 8;
  214.     height = glyph->height;
  215.     for (y = 0; y < height; y++) {
  216.       for (x = 0; x < width; x++) {
  217.         if (bitmapData[y * spanLength + x / 8] & (1 << (x & 7))) {
  218.           putchar('X');
  219.         } else {
  220.           putchar('.');
  221.         }
  222.       }
  223.       putchar('n');
  224.     }
  225.   }
  226. }
  227. void
  228. getMetric(FontInfoPtr font, int c, TexGlyphInfo * tgi)
  229. {
  230.   PerGlyphInfoPtr glyph;
  231.   unsigned char *bitmapData;
  232.   tgi->c = c;
  233.   if (c < font->min_char || c > font->max_char) {
  234.     tgi->width = 0;
  235.     tgi->height = 0;
  236.     tgi->xoffset = 0;
  237.     tgi->yoffset = 0;
  238.     tgi->dummy = 0;
  239.     tgi->advance = 0;
  240.     return;
  241.   }
  242.   glyph = &font->glyph[c - font->min_char];
  243.   bitmapData = glyph->bitmap;
  244.   if (bitmapData) {
  245.     tgi->width = glyph->width;
  246.     tgi->height = glyph->height;
  247.     tgi->xoffset = glyph->xoffset;
  248.     tgi->yoffset = glyph->yoffset;
  249.   } else {
  250.     tgi->width = 0;
  251.     tgi->height = 0;
  252.     tgi->xoffset = 0;
  253.     tgi->yoffset = 0;
  254.   }
  255.   tgi->dummy = 0;
  256.   tgi->advance = glyph->advance;
  257. }
  258. int
  259. glyphCompare(const void *a, const void *b)
  260. {
  261.   unsigned char *c1 = (unsigned char *) a;
  262.   unsigned char *c2 = (unsigned char *) b;
  263.   TexGlyphInfo tgi1;
  264.   TexGlyphInfo tgi2;
  265.   getMetric(fontinfo, *c1, &tgi1);
  266.   getMetric(fontinfo, *c2, &tgi2);
  267.   return tgi2.height - tgi1.height;
  268. }
  269. int
  270. getFontel(unsigned char *bitmapData, int spanLength, int i, int j)
  271. {
  272.   return bitmapData[i * spanLength + j / 8] & (1 << (j & 7)) ? 255 : 0;
  273. }
  274. void
  275. placeGlyph(FontInfoPtr font, int c, unsigned char *texarea, int stride, int x, int y)
  276. {
  277.   PerGlyphInfoPtr glyph;
  278.   unsigned char *bitmapData;
  279.   int width, height, spanLength;
  280.   int i, j;
  281.   if (c < font->min_char || c > font->max_char) {
  282.     printf("out of range glyphn");
  283.     return;
  284.   }
  285.   glyph = &font->glyph[c - font->min_char];
  286.   bitmapData = glyph->bitmap;
  287.   if (bitmapData) {
  288.     width = glyph->width;
  289.     spanLength = (width + 7) / 8;
  290.     height = glyph->height;
  291.     for (i = 0; i < height; i++) {
  292.       for (j = 0; j < width; j++) {
  293.         texarea[stride * (y + i) + x + j] =
  294.           getFontel(bitmapData, spanLength, i, j);
  295.       }
  296.     }
  297.   }
  298. }
  299. char *
  300. nodupstring(char *s)
  301. {
  302.   int len, i, p;
  303.   char *string;
  304.   len = (int) strlen(s);
  305.   string = (char *) calloc(len + 1, 1);
  306.   p = 0;
  307.   for (i = 0; i < len; i++) {
  308.     if (!strchr(string, s[i])) {
  309.       string[p] = s[i];
  310.       p++;
  311.     }
  312.   }
  313.   string = realloc(string, p + 1);
  314.   return string;
  315. }
  316. void
  317. main(int argc, char *argv[])
  318. {
  319.   int texw, texh;
  320.   unsigned char *texarea, *texbitmap;
  321.   FILE *file;
  322.   int len, stride;
  323.   unsigned char *glist;
  324.   int width, height;
  325.   int px, py, maxheight;
  326.   TexGlyphInfo tgi;
  327.   int usageError = 0;
  328.   char *fontname, *filename;
  329.   XFontStruct *xfont;
  330.   int endianness;
  331.   int i, j;
  332.   texw = texh = 256;
  333.   glist = " ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890abcdefghijmklmnopqrstuvwxyz?.;,!*:"/+@#$%^&()";
  334.   fontname = "-adobe-courier-bold-r-normal--46-*-100-100-m-*-iso8859-1";
  335.   filename = "default.txf";
  336.   for (i = 1; i < argc; i++) {
  337.     if (!strcmp(argv[i], "-w")) {
  338.       i++;
  339.       texw = atoi(argv[i]);
  340.     } else if (!strcmp(argv[i], "-h")) {
  341.       i++;
  342.       texh = atoi(argv[i]);
  343.     } else if (!strcmp(argv[i], "-gap")) {
  344.       i++;
  345.       gap = atoi(argv[i]);
  346.     } else if (!strcmp(argv[i], "-byte")) {
  347.       format = TXF_FORMAT_BYTE;
  348.       break;
  349.     } else if (!strcmp(argv[i], "-bitmap")) {
  350.       format = TXF_FORMAT_BITMAP;
  351.     } else if (!strcmp(argv[i], "-glist")) {
  352.       i++;
  353.       glist = (unsigned char *) argv[i];
  354.     } else if (!strcmp(argv[i], "-fn")) {
  355.       i++;
  356.       fontname = argv[i];
  357.     } else if (!strcmp(argv[i], "-file")) {
  358.       i++;
  359.       filename = argv[i];
  360.     } else {
  361.       usageError = 1;
  362.     }
  363.   }
  364.   if (usageError) {
  365.     putchar('n');
  366.     printf("usage: texfontgen [options] txf-filen");
  367.     printf(" -w #          textureWidth (def=%d)n", texw);
  368.     printf(" -h #          textureHeight (def=%d)n", texh);
  369.     printf(" -gap #        gap between glyphs (def=%d)n", gap);
  370.     printf(" -bitmap       use a bitmap encoding (default)n");
  371.     printf(" -byte         use a byte encoding (less compact)n");
  372.     printf(" -glist ABC    glyph list (def=%s)n", glist);
  373.     printf(" -fn name      X font name (def=%s)n", fontname);
  374.     printf(" -file name    output file for textured font (def=%s)n", fontname);
  375.     putchar('n');
  376.     exit(1);
  377.   }
  378.   texarea = calloc(texw * texh, sizeof(unsigned char));
  379.   glist = (unsigned char *) nodupstring((char *) glist);
  380.   dpy = XOpenDisplay(NULL);
  381.   if (!dpy) {
  382.     printf("could not open displayn");
  383.     exit(1);
  384.   }
  385.   /* find an OpenGL-capable RGB visual with depth buffer */
  386.   xfont = XLoadQueryFont(dpy, fontname);
  387.   if (!xfont) {
  388.     printf("could not get load X font: %sn", fontname);
  389.     exit(1);
  390.   }
  391.   fontinfo = SuckGlyphsFromServer(dpy, xfont->fid);
  392.   if (!fontinfo) {
  393.     printf("could not get font glyphsn");
  394.     exit(1);
  395.   }
  396.   len = (int) strlen((char *) glist);
  397.   qsort(glist, len, sizeof(unsigned char), glyphCompare);
  398.   file = fopen(filename, "wb");
  399.   if (!file) {
  400.     printf("could not open %s for writingn", filename);
  401.     exit(1);
  402.   }
  403.   fwrite("377txf", 1, 4, file);
  404.   endianness = 0x12345678;
  405.   /*CONSTANTCONDITION*/
  406.   assert(sizeof(int) == 4);  /* Ensure external file format size. */
  407.   fwrite(&endianness, sizeof(int), 1, file);
  408.   fwrite(&format, sizeof(int), 1, file);
  409.   fwrite(&texw, sizeof(int), 1, file);
  410.   fwrite(&texh, sizeof(int), 1, file);
  411.   fwrite(&fontinfo->max_ascent, sizeof(int), 1, file);
  412.   fwrite(&fontinfo->max_descent, sizeof(int), 1, file);
  413.   fwrite(&len, sizeof(int), 1, file);
  414.   px = gap;
  415.   py = gap;
  416.   maxheight = 0;
  417.   for (i = 0; i < len; i++) {
  418.     if (glist[i] != 0) {  /* If not already processed... */
  419.       /* Try to find a character from the glist that will fit on the
  420.          remaining space on the current row. */
  421.       int foundWidthFit = 0;
  422.       int c;
  423.       getMetric(fontinfo, glist[i], &tgi);
  424.       width = tgi.width;
  425.       height = tgi.height;
  426.       if (height > 0 && width > 0) {
  427.         for (j = i; j < len;) {
  428.           if (height > 0 && width > 0) {
  429.             if (px + width + gap < texw) {
  430.               foundWidthFit = 1;
  431.       if (j != i) {
  432. i--;  /* Step back so i loop increment leaves us at same character. */
  433.       }
  434.               break;
  435.             }
  436.   }
  437.           j++;
  438.           getMetric(fontinfo, glist[j], &tgi);
  439.           width = tgi.width;
  440.           height = tgi.height;
  441.         }
  442.         /* If a fit was found, use that character; otherwise, advance a line
  443.            in  the texture. */
  444.         if (foundWidthFit) {
  445.           if (height > maxheight) {
  446.             maxheight = height;
  447.           }
  448.           c = j;
  449.         } else {
  450.           getMetric(fontinfo, glist[i], &tgi);
  451.           width = tgi.width;
  452.           height = tgi.height;
  453.           py += maxheight + gap;
  454.           px = gap;
  455.           maxheight = height;
  456.           if (py + height + gap >= texh) {
  457.             printf("Overflowed texture space.n");
  458.             exit(1);
  459.           }
  460.           c = i;
  461.         }
  462.         /* Place the glyph in the texture image. */
  463.         placeGlyph(fontinfo, glist[c], texarea, texw, px, py);
  464.         /* Assign glyph's texture coordinate. */
  465.         tgi.x = px;
  466.         tgi.y = py;
  467. /* Advance by glyph width, remaining in the current line. */
  468.         px += width + gap;
  469.       } else {
  470. /* No texture image; assign invalid bogus texture coordinates. */
  471.         tgi.x = -1;
  472.         tgi.y = -1;
  473.       }
  474.       glist[c] = 0;     /* Mark processed; don't process again. */
  475.       /*CONSTANTCONDITION*/
  476.       assert(sizeof(tgi) == 12);  /* Ensure external file format size. */
  477.       fwrite(&tgi, sizeof(tgi), 1, file);
  478.     }
  479.   }
  480.   switch (format) {
  481.   case TXF_FORMAT_BYTE:
  482.     fwrite(texarea, texw * texh, 1, file);
  483.     break;
  484.   case TXF_FORMAT_BITMAP:
  485.     stride = (texw + 7) >> 3;
  486.     texbitmap = (unsigned char *) calloc(stride * texh, 1);
  487.     for (i = 0; i < texh; i++) {
  488.       for (j = 0; j < texw; j++) {
  489.         if (texarea[i * texw + j] >= 128) {
  490.           texbitmap[i * stride + (j >> 3)] |= 1 << (j & 7);
  491.         }
  492.       }
  493.     }
  494.     fwrite(texbitmap, stride * texh, 1, file);
  495.     free(texbitmap);
  496.     break;
  497.   default:
  498.     printf("Unknown texture font format.n");
  499.     exit(1);
  500.   }
  501.   free(texarea);
  502.   fclose(file);
  503. }