From http://www.jwz.org/xscreensaver/xscreensaver-5.22.tar.gz
[xscreensaver] / hacks / glx / texfont.c
index 4b15eb9346412c8d68e18f658c148498bc53f588..2305a937769d1a9e637147ee156af168e5b2bc76 100644 (file)
@@ -1,4 +1,4 @@
-/* texfonts, Copyright (c) 2005 Jamie Zawinski <jwz@jwz.org>
+/* texfonts, Copyright (c) 2005-2013 Jamie Zawinski <jwz@jwz.org>
  * Loads X11 fonts into textures for use with OpenGL.
  *
  * Permission to use, copy, modify, distribute, and sell this software and its
  */
 
 
-#include "config.h"
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
 #include <ctype.h>
-#include <GL/glx.h>
-#include <GL/glu.h>
+
+#ifdef HAVE_COCOA
+# ifdef USE_IPHONE
+#  include "jwzgles.h"
+# else
+#  include <OpenGL/glu.h>
+# endif
+#else
+# include <GL/glx.h>
+# include <GL/glu.h>
+#endif
+
+#ifdef HAVE_JWZGLES
+# include "jwzgles.h"
+#endif /* HAVE_JWZGLES */
+
 #include "resources.h"
 #include "texfont.h"
 
@@ -37,7 +54,7 @@ struct texture_font_data {
   int grid_mag;                        /* 1,  2,  4, or 8 */
   int ntextures;               /* 1,  4, 16, or 64 (grid_mag ^ 2) */
 
-  GLuint texid[32];
+  GLuint texid[64];            /* must hold ntextures */
 };
 
 
@@ -45,8 +62,9 @@ struct texture_font_data {
 static int
 to_pow2 (int i)
 {
-  static unsigned int pow2[] = { 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024,
-                                 2048, 4096, 8192, 16384, 32768, 65536 };
+  static const unsigned int pow2[] = { 
+    1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 
+    2048, 4096, 8192, 16384, 32768, 65536 };
   int j;
   for (j = 0; j < sizeof(pow2)/sizeof(*pow2); j++)
     if (pow2[j] >= i) return pow2[j];
@@ -54,13 +72,16 @@ to_pow2 (int i)
 }
 
 
-/* Given a Pixmap of depth 1, converts it to an OpenGL luminance mipmap.
-   The 1 bits are drawn, the 0 bits are alpha.
+/* Given a Pixmap (of screen depth), converts it to an OpenGL luminance mipmap.
+   RGB are averaged to grayscale, and the resulting value is treated as alpha.
    Pass in the size of the pixmap; the size of the texture is returned
    (it may be larger, since GL like powers of 2.)
+
+   We use a screen-depth pixmap instead of a 1bpp bitmap so that if the fonts
+   were drawn with antialiasing, that is preserved.
  */
 static void
-bitmap_to_texture (Display *dpy, Pixmap p, int *wP, int *hP)
+bitmap_to_texture (Display *dpy, Pixmap p, Visual *visual, int *wP, int *hP)
 {
   Bool mipmap_p = True;
   int ow = *wP;
@@ -68,17 +89,45 @@ bitmap_to_texture (Display *dpy, Pixmap p, int *wP, int *hP)
   int w2 = to_pow2 (ow);
   int h2 = to_pow2 (oh);
   int x, y;
-  XImage *image = XGetImage (dpy, p, 0, 0, ow, oh, ~0L, XYPixmap);
-  unsigned char *data = (unsigned char *) calloc (w2, (h2 + 1));
+  XImage *image = XGetImage (dpy, p, 0, 0, ow, oh, ~0L, ZPixmap);
+  unsigned char *data = (unsigned char *) calloc (w2 * 2, (h2 + 1));
   unsigned char *out = data;
+
+  /* OpenGLES doesn't support GL_INTENSITY, so instead of using a
+     texture with 1 byte per pixel, the intensity value, we have
+     to use 2 bytes per pixel: solid white, and an alpha value.
+   */
+# ifdef HAVE_JWZGLES
+#  undef GL_INTENSITY
+# endif
+
+# ifdef GL_INTENSITY
   GLuint iformat = GL_INTENSITY;
-  GLuint format = GL_LUMINANCE;
-  GLuint type = GL_UNSIGNED_BYTE;
+  GLuint format  = GL_LUMINANCE;
+# else
+  GLuint iformat = GL_LUMINANCE_ALPHA;
+  GLuint format  = GL_LUMINANCE_ALPHA;
+# endif
+  GLuint type    = GL_UNSIGNED_BYTE;
+
+# ifdef HAVE_JWZGLES
+  /* This would work, but it's wasteful for no benefit. */
+  mipmap_p = False;
+# endif
 
   for (y = 0; y < h2; y++)
-    for (x = 0; x < w2; x++)
-      *out++ = (x >= ow || y >= oh ? 0 :
-                XGetPixel (image, x, y) ? 255 : 0);
+    for (x = 0; x < w2; x++) {
+      unsigned long pixel = (x >= ow || y >= oh ? 0 : XGetPixel (image, x, y));
+      /* instead of averaging all three channels, let's just use red,
+         and assume it was already grayscale. */
+      unsigned long r = pixel & visual->red_mask;
+      /* This goofy trick is to make any of RGBA/ABGR/ARGB work. */
+      pixel = ((r >> 24) | (r >> 16) | (r >> 8) | r) & 0xFF;
+# ifndef GL_INTENSITY
+      *out++ = 0xFF;  /* 2 bytes per pixel */
+# endif
+      *out++ = pixel;
+    }
   XDestroyImage (image);
   image = 0;
 
@@ -116,25 +165,36 @@ bitmap_to_texture (Display *dpy, Pixmap p, int *wP, int *hP)
 texture_font_data *
 load_texture_font (Display *dpy, char *res)
 {
+  Screen *screen = DefaultScreenOfDisplay (dpy);
+  Window root = RootWindowOfScreen (screen);
+  XWindowAttributes xgwa;
+
   texture_font_data *data = 0;
-  const char *font = get_string_resource (res, "Font");
-  const char *def1 = "-*-times-bold-r-normal-*-240-*";
-  const char *def2 = "-*-times-bold-r-normal-*-180-*";
+  char *font = get_string_resource (dpy, res, "Font");
+  const char *def1 = "-*-helvetica-medium-r-normal-*-240-*";
+  const char *def2 = "-*-helvetica-medium-r-normal-*-180-*";
   const char *def3 = "fixed";
   XFontStruct *f;
   int which;
+  GLint old_texture = 0;
+
+  glGetIntegerv (GL_TEXTURE_BINDING_2D, &old_texture);
+
+  if (!strcmp (res, "fpsFont"))
+    def1 = "-*-courier-bold-r-normal-*-180-*";  /* Kludge. Sue me. */
 
-  check_gl_error ("stale texture font");
+  XGetWindowAttributes (dpy, root, &xgwa);
 
   if (!res || !*res) abort();
-  if (!font) font = def1;
+  if (!font) font = strdup(def1);
 
   f = XLoadQueryFont(dpy, font);
   if (!f && !!strcmp (font, def1))
     {
       fprintf (stderr, "%s: unable to load font \"%s\", using \"%s\"\n",
                progname, font, def1);
-      font = def1;
+      free (font);
+      font = strdup (def1);
       f = XLoadQueryFont(dpy, font);
     }
 
@@ -142,7 +202,8 @@ load_texture_font (Display *dpy, char *res)
     {
       fprintf (stderr, "%s: unable to load font \"%s\", using \"%s\"\n",
                progname, font, def2);
-      font = def2;
+      free (font);
+      font = strdup (def2);
       f = XLoadQueryFont(dpy, font);
     }
 
@@ -150,7 +211,8 @@ load_texture_font (Display *dpy, char *res)
     {
       fprintf (stderr, "%s: unable to load font \"%s\", using \"%s\"\n",
                progname, font, def3);
-      font = def3;
+      free (font);
+      font = strdup (def3);
       f = XLoadQueryFont(dpy, font);
     }
 
@@ -161,6 +223,9 @@ load_texture_font (Display *dpy, char *res)
       exit (1);
     }
 
+  free (font);
+  font = 0;
+
   data = (texture_font_data *) calloc (1, sizeof(*data));
   data->dpy = dpy;
   data->font = f;
@@ -198,8 +263,6 @@ load_texture_font (Display *dpy, char *res)
          (modulo the "ntextures" scaling.)
          Make it square-ish, since GL likes dimensions to be powers of 2.
        */
-      Screen *screen = DefaultScreenOfDisplay (dpy);
-      Window root = RootWindowOfScreen (screen);
       XGCValues gcv;
       GC gc;
       Pixmap p;
@@ -213,13 +276,13 @@ load_texture_font (Display *dpy, char *res)
       data->cell_width  = cw;
       data->cell_height = ch;
 
-      p = XCreatePixmap (dpy, root, w, h, 1);
+      p = XCreatePixmap (dpy, root, w, h, xgwa.depth);
       gcv.font = f->fid;
-      gcv.foreground = 0;
-      gcv.background = 0;
+      gcv.foreground = BlackPixelOfScreen (xgwa.screen);
+      gcv.background = BlackPixelOfScreen (xgwa.screen);
       gc = XCreateGC (dpy, p, (GCFont|GCForeground|GCBackground), &gcv);
       XFillRectangle (dpy, p, gc, 0, 0, w, h);
-      XSetForeground (dpy, gc, 1);
+      XSetForeground (dpy, gc, WhitePixelOfScreen (xgwa.screen));
       for (i = 0; i < 256 / data->ntextures; i++)
         {
           int ii = (i + (which * 256 / data->ntextures));
@@ -229,13 +292,13 @@ load_texture_font (Display *dpy, char *res)
 
           /* See comment in print_texture_string for bit layout explanation.
            */
-          int lbearing = (f->per_char
+          int lbearing = (f->per_char && ii >= f->min_char_or_byte2
                           ? f->per_char[ii - f->min_char_or_byte2].lbearing
                           : f->min_bounds.lbearing);
-          int ascent   = (f->per_char
+          int ascent   = (f->per_char && ii >= f->min_char_or_byte2
                           ? f->per_char[ii - f->min_char_or_byte2].ascent
                           : f->max_bounds.ascent);
-          int width    = (f->per_char
+          int width    = (f->per_char && ii >= f->min_char_or_byte2
                           ? f->per_char[ii - f->min_char_or_byte2].width
                           : f->max_bounds.width);
 
@@ -256,17 +319,44 @@ load_texture_font (Display *dpy, char *res)
         GC gc2 = XCreateGC (dpy, win, 0, &gcv);
         XSetForeground (dpy, gc2, BlackPixel (dpy, 0));
         XSetBackground (dpy, gc2, WhitePixel (dpy, 0));
-        XCopyPlane (dpy, p, win, gc2, 0, 0, w, h, 0, 0, 1);
+        XCopyArea (dpy, p, win, gc2, 0, 0, w, h, 0, 0);
         XFreeGC (dpy, gc2);
         XSync(dpy, False);
         usleep (100000);
       }
 #endif
 
-      bitmap_to_texture (dpy, p, &data->tex_width, &data->tex_height);
+#if 0  /* debugging: write the bitmap to a pgm file */
+      {
+        char file[255];
+        XImage *image;
+        int x, y;
+        FILE *f;
+        sprintf (file, "/tmp/%02d.pgm", which);
+        image = XGetImage (dpy, p, 0, 0, w, h, ~0L, ZPixmap);
+        f = fopen (file, "w");
+        fprintf (f, "P5\n%d %d\n255\n", w, h);
+        for (y = 0; y < h; y++)
+          for (x = 0; x < w; x++) {
+            unsigned long pix = XGetPixel (image, x, y);
+            unsigned long r = (pix & xgwa.visual->red_mask);
+            r = ((r >> 24) | (r >> 16) | (r >> 8) | r);
+            fprintf (f, "%c", (char) r);
+          }
+        fclose (f);
+        XDestroyImage (image);
+        fprintf (stderr, "%s: wrote %s\n", progname, file);
+      }
+#endif
+
+      bitmap_to_texture (dpy, p, xgwa.visual, 
+                         &data->tex_width, &data->tex_height);
       XFreePixmap (dpy, p);
     }
 
+  /* Reset to the caller's default */
+  glBindTexture (GL_TEXTURE_2D, old_texture);
+
   return data;
 }
 
@@ -275,26 +365,36 @@ load_texture_font (Display *dpy, char *res)
  */
 int
 texture_string_width (texture_font_data *data, const char *c,
-                      int *line_height_ret)
+                      int *height_ret)
 {
-  int w = 0;
+  int x = 0;
+  int max_w = 0;
   XFontStruct *f = data->font;
+  int h = f->ascent + f->descent;
   while (*c)
     {
       int cc = *((unsigned char *) c);
-      w += (f->per_char
-            ? f->per_char[cc-f->min_char_or_byte2].width
-            : f->max_bounds.width);
+      if (*c == '\n')
+        {
+          if (x > max_w) max_w = x;
+          x = 0;
+          h += f->ascent + f->descent;
+        }
+      else
+        x += (f->per_char && cc >= f->min_char_or_byte2
+              ? f->per_char[cc-f->min_char_or_byte2].width
+              : f->min_bounds.rbearing);
       c++;
     }
-  if (line_height_ret)
-    *line_height_ret = f->ascent + f->descent;
-  return w;
+  if (x > max_w) max_w = x;
+  if (height_ret) *height_ret = h;
+
+  return max_w;
 }
 
 
-/* Draws the string in the scene at the origin.
-   Newlines and tab stops are honored.
+/* Draws the string in the scene at the current point.
+   Newlines, tab stops and subscripts are honored.
  */
 void
 print_texture_string (texture_font_data *data, const char *string)
@@ -309,12 +409,24 @@ print_texture_string (texture_font_data *data, const char *string)
   int tabs = cw * 7;
   int x, y;
   unsigned int i;
+  GLint old_texture = 0;
+  GLfloat omatrix[16];
+  int ofront;
+
+  glGetIntegerv (GL_TEXTURE_BINDING_2D, &old_texture);
+  glGetIntegerv (GL_FRONT_FACE, &ofront);
+  glGetFloatv (GL_TEXTURE_MATRIX, omatrix);
 
   clear_gl_error ();
 
   glPushMatrix();
 
   glNormal3f (0, 0, 1);
+  glFrontFace (GL_CW);
+
+  glMatrixMode (GL_TEXTURE);
+  glLoadIdentity ();
+  glMatrixMode (GL_MODELVIEW);
 
   x = 0;
   y = 0;
@@ -328,7 +440,8 @@ print_texture_string (texture_font_data *data, const char *string)
         }
       else if (c == '\t')
         {
-          x = ((x + tabs) / tabs) * tabs;  /* tab to tab stop */
+          if (tabs)
+            x = ((x + tabs) / tabs) * tabs;  /* tab to tab stop */
         }
 # ifdef DO_SUBSCRIPTS
       else if (c == '[' && (isdigit (string[i+1])))
@@ -378,23 +491,23 @@ print_texture_string (texture_font_data *data, const char *string)
              We want to make a quad from point A to point C.
              We want to position that quad so that point B lies at x,y.
            */
-          int lbearing = (f->per_char
+          int lbearing = (f->per_char && c >= f->min_char_or_byte2
                           ? f->per_char[c - f->min_char_or_byte2].lbearing
                           : f->min_bounds.lbearing);
-          int rbearing = (f->per_char
+          int rbearing = (f->per_char && c >= f->min_char_or_byte2
                           ? f->per_char[c - f->min_char_or_byte2].rbearing
                           : f->max_bounds.rbearing);
-          int ascent   = (f->per_char
+          int ascent   = (f->per_char && c >= f->min_char_or_byte2
                           ? f->per_char[c - f->min_char_or_byte2].ascent
                           : f->max_bounds.ascent);
-          int descent  = (f->per_char
+          int descent  = (f->per_char && c >= f->min_char_or_byte2
                           ? f->per_char[c - f->min_char_or_byte2].descent
                           : f->max_bounds.descent);
-          int cwidth   = (f->per_char
+          int cwidth   = (f->per_char && c >= f->min_char_or_byte2
                           ? f->per_char[c - f->min_char_or_byte2].width
                           : f->max_bounds.width);
 
-          char cc = c % (256 / data->ntextures);
+          unsigned char cc = c % (256 / data->ntextures);
 
           int gs = (16 / data->grid_mag);                /* grid size */
 
@@ -447,6 +560,14 @@ print_texture_string (texture_font_data *data, const char *string)
       }
   glPopMatrix();
 
+  /* Reset to the caller's default */
+  glBindTexture (GL_TEXTURE_2D, old_texture);
+  glFrontFace (ofront);
+  
+  glMatrixMode (GL_TEXTURE);
+  glMultMatrixf (omatrix);
+  glMatrixMode (GL_MODELVIEW);
+
   check_gl_error ("texture font print");
 }