451672e4a3ad254ffdb6c3af31657b56e78e8f6c
[org.ibex.core.git] / src / org / ibex / graphics / Font.java
1 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.ibex;
3 import org.ibex.translators.*;
4 import org.ibex.util.*;
5 import java.io.*;
6 import java.util.Hashtable;
7
8 import org.ibex.js.JSExn;
9
10 // FEATURE: this could be cleaner
11 /** encapsulates a single font (a set of Glyphs) */
12 public class Font {
13
14     private Font(Stream stream, int pointsize) { this.stream = stream; this.pointsize = pointsize; }
15
16     private static boolean glyphRenderingTaskIsScheduled = false;
17
18     public final int pointsize;                 ///< the size of the font
19     public final Stream stream;                 ///< the stream from which this font was loaded
20     public int max_ascent;                      ///< the maximum ascent, in pixels
21     public int max_descent;                     ///< the maximum descent, in pixels
22     boolean latinCharsPreloaded = false;        ///< true if a request to preload ASCII 32-127 has begun
23     Glyph[] glyphs = new Glyph[65535];          ///< the glyphs that comprise this font
24
25     public abstract static class Glyph {
26         protected Glyph(Font font, char c) { this.font = font; this.c = c; }
27         public final Font font;
28         public final char c;
29         public int baseline;                    ///< within the alphamask, this is the y-coordinate of the baseline
30         public int advance;                     ///< amount to increment the x-coordinate
31         public boolean isLoaded = false;        ///< true iff the glyph is loaded
32         public int width = -1;                  ///< the width of the glyph
33         public int height = -1;                 ///< the height of the glyph
34         public byte[] data = null;              ///< the alpha channel samples for this font
35         void render() {
36             if (!isLoaded) try { freetype.renderGlyph(this); } catch (IOException e) { Log.info(Freetype.class, e); }
37             isLoaded = true;
38         }
39     }
40
41
42     // Statics //////////////////////////////////////////////////////////////////////
43
44     static final Freetype freetype = new Freetype();
45     static final Hashtable glyphsToBeCached = new Hashtable();
46     static final Hashtable glyphsToBeDisplayed = new Hashtable();
47     private static Cache fontCache = new Cache(100);
48     public static Font getFont(Stream stream, int pointsize) {
49         Font ret = (Font)fontCache.get(stream, new Integer(pointsize));
50         if (ret == null) fontCache.put(stream, new Integer(pointsize), ret = new Font(stream, pointsize));
51         return ret;
52     }
53
54
55     // Methods //////////////////////////////////////////////////////////////////////
56
57     /**
58      *  Rasterize the glyphs of <code>text</code>.
59      *  @returns <code>(width&lt;&lt;32)|height</code>
60      */
61     public long rasterizeGlyphs(String text, PixelBuffer pb, int textcolor, int x, int y, int cx1, int cy1, int cx2, int cy2) {
62         int width = 0, height = 0;
63         if (!latinCharsPreloaded) {       // preload the Latin-1 charset with low priority (we'll probably want it)
64             for(int i=48; i<57; i++) if (glyphs[i]==null) glyphsToBeCached.put(glyphs[i]=Platform.createGlyph(this, (char)i),"");
65             for(int i=32; i<47; i++) if (glyphs[i]==null) glyphsToBeCached.put(glyphs[i]=Platform.createGlyph(this, (char)i),"");
66             for(int i=57; i<128; i++) if (glyphs[i]==null) glyphsToBeCached.put(glyphs[i]=Platform.createGlyph(this, (char)i),"");
67             if (!glyphRenderingTaskIsScheduled) {
68                 Scheduler.add(glyphRenderingTask);
69                 glyphRenderingTaskIsScheduled = true;
70             }
71             latinCharsPreloaded = true;
72         }
73         for(int i=0; i<text.length(); i++) {
74             final char c = text.charAt(i);
75             Glyph g = glyphs[c];
76             if (g == null) glyphs[c] = g = Platform.createGlyph(this, c);
77             g.render();
78             if (pb != null) pb.drawGlyph(g, x + width, y + g.font.max_ascent - g.baseline, cx1, cy1, cx2, cy2, textcolor);
79             width += g.advance;
80             height = java.lang.Math.max(height, max_ascent + max_descent);
81         }
82         return ((((long)width) << 32) | (long)(height & 0xffffffffL));
83     }
84
85     // FEATURE do we really need to be caching sizes?
86     private static Cache sizeCache = new Cache(1000);
87     public int textwidth(String s) { return (int)((textsize(s) >>> 32) & 0xffffffff); }
88     public int textheight(String s) { return (int)(textsize(s) & 0xffffffffL); }
89     public long textsize(String s) {
90         Long l = (Long)sizeCache.get(s);
91         if (l != null) return ((Long)l).longValue();
92         long ret = rasterizeGlyphs(s, null, 0, 0, 0, 0, 0, 0, 0);
93         sizeCache.put(s, new Long(ret));
94         return ret;
95     }
96
97     static final Scheduler.Task glyphRenderingTask = new Scheduler.Task() { public void perform() {
98         // FIXME: this should be a low-priority task
99         glyphRenderingTaskIsScheduled = false;
100         if (glyphsToBeCached.isEmpty()) return;
101         Glyph g = (Glyph)glyphsToBeCached.keys().nextElement();
102         if (g == null) return;
103         glyphsToBeCached.remove(g);
104         Log.debug(Font.class, "glyphRenderingTask rendering " + g.c + " of " + g.font);
105         g.render();
106         Log.debug(Glyph.class, "   done rendering glyph " + g.c);
107         glyphRenderingTaskIsScheduled = true;
108         Scheduler.add(this);
109     } };
110 }