7b6f8e25492923fba4b0510b5352451c19d0e35d
[org.ibex.core.git] / src / org / xwt / XWF.java
1 // Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.xwt;
3
4 import java.io.*;
5 import java.util.*;
6 import org.xwt.util.*;
7
8 /** encapsulates a single XWF font */
9 public class XWF {
10
11     /** all instances of XWF */
12     private static Hash xwtfonts = new Hash();
13
14     /** the int array comprising the XWF */
15     int[] data = null;
16
17     /** the width of the XWF's PNG */
18     int w = 0;
19
20     /** the height of the XWF's PNG */
21     int h = 0;
22
23     /** the full resource name of this font */
24     String name = null;
25
26     /** minimum descent of all glyphs */
27     int maxascent = 0;
28
29     /** maximum descent of all glyphs */
30     int maxdescent = 0;
31
32     /** hash containing all Picture instances created, keyed on an Integer object containing the argb color of the font */
33     Hash pictures = new Hash();
34
35     /** each element corresponds to a single glyph; <br>
36      *  metrics[glyphnum][0] == x position of left edge of glyph<br>
37      *  metrics[glyphnum][1] == x position of right edge of glyph<br>
38      *  metrics[glyphnum][2] == y position of top edge of glyph<br>
39      *  metrics[glyphnum][3] == y position of bottom edge of glyph<br>
40      *  metrics[glyphnum][4] == advance amount<br>
41      *  metrics[glyphnum][5] == baseline
42      */
43     int[][] metrics = null;
44
45     /** drop all cached fonts when the theme mapping changes */
46     public static void flushXWFs() { xwtfonts.clear(); }
47
48     /** retrieve an XWF instance, creating it if needed */
49     public static XWF getXWF(String resourcename) {
50         XWF ret = (XWF)xwtfonts.get(resourcename);
51         if (ret != null) return ret;
52
53         String resolved = Resources.resolve(resourcename + ".xwf", null);
54         byte[] bytes = Resources.getResource(resolved);
55         if (bytes != null) {
56             PNG png = PNG.decode(new ByteArrayInputStream(bytes), resourcename);
57             if (png != null) return new XWF(resourcename, png);
58         }
59         return null;
60     }
61
62     public int getMaxAscent() { return maxascent; }
63     public int getMaxDescent() { return maxdescent; }
64
65     /** draws <tt>text</tt> on <tt>buf</tt> in this font, with color <tt>argb</tt> */
66     public void drawString(DoubleBuffer buf, String text, int x, int y, int argb) {
67
68         Integer color = new Integer(argb | 0xFF000000);
69         Picture pg = (Picture)pictures.get(color);
70         if (pg == null) {
71             for(int i=0; i<data.length; i++)
72                 data[i] = (data[i] & 0xFF000000) | (argb & 0x00FFFFFF);
73             pg = Platform.createPicture(data, w, h);
74             pictures.put(color, pg);
75         }
76
77         int left = x;
78         for(int i=0; i<text.length(); i++) {
79             int c = "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~".indexOf(text.charAt(i));
80             if (c == -1 || metrics[c] == null) { left += metrics[64][4]; continue; }
81             buf.drawPicture(pg,
82                             left,
83                             y - (metrics[c][5] - metrics[c][2]),
84                             left + metrics[c][1] - metrics[c][0],
85                             y - (metrics[c][5] - metrics[c][2]) + metrics[c][3] - metrics[c][2],
86                             metrics[c][0], metrics[c][2], metrics[c][1], metrics[c][3]);
87             
88             left += metrics[c][4];
89         }
90     }
91
92     /** returns the width of <tt>text</tt> when rendered in this font */
93     public int stringWidth(String text) {
94         int ret = 0;
95         for(int i=0; i<text.length(); i++) {
96             // what a hack...
97             int c = "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~".indexOf(text.charAt(i));
98             if (c == -1 || metrics[c] == null) { ret += metrics[64][4]; continue; }
99             ret += metrics[c][4];
100         }
101         return ret;
102     }
103
104     private XWF(String name, PNG png) {
105         this.name = name;
106         xwtfonts.put(name, this);
107
108         data = png.getData();
109         w = png.getWidth();
110         h = png.getHeight();
111
112         int x, y, y1;
113         boolean breakout;
114
115         int start_x, start_y, end_x, end_y, advance;
116
117         int[] rows = new int[120];
118
119         int baseline = 0;
120
121         metrics = new int[96][];
122         int numglyphs = 0;
123
124         for(y=0; y<h; y++) {
125
126             // search for the next non-empty row
127             for(breakout = false; y<h && !breakout; y++)
128                 for(x = 0; x<w; x++)
129                     if ((data[x + y * w] & 0x00FFFFFF) != 0x00FFFFFF) breakout = true;
130
131             start_y = y - 2;
132
133             // search for the next empty row
134             for(breakout = false; y<h && !breakout; y++)
135                 for(x = 0, breakout = true; x<w; x++)
136                     if ((data[x + y * w] & 0x00FFFFFF) != 0x00FFFFFF) breakout = false;
137
138             end_y = y;
139
140             if (start_y == end_y) continue;
141
142             for(x=0; x<w; x++) {
143
144                 // search for the next column with a non-grayscale pixel in it
145                 for(breakout = false; x<w && !breakout; x++)
146                     for(y1 = start_y; y1<end_y; y1++)
147                         if (Math.abs(((data[x + y1 * w] & 0x00FF0000) >> 16) - ((data[x + y1 * w] & 0x0000FF00) >> 8)) > 10 ||
148                             Math.abs(((data[x + y1 * w] & 0x0000FF00) >> 8) - ((data[x + y1 * w] & 0x000000FF))) > 10) {
149                             breakout = true;
150                             baseline = y1;
151                         }
152                 
153                 // search for the next column without a non-grayscale pixel in it
154                 for(breakout = false; x<w && !breakout; x++)
155                     for(y1 = start_y, breakout = true; y1<end_y; y1++)
156                         if (Math.abs(((data[x + y1 * w] & 0x00FF0000) >> 16) - ((data[x + y1 * w] & 0x0000FF00) >> 8)) > 10 ||
157                             Math.abs(((data[x + y1 * w] & 0x0000FF00) >> 8) - ((data[x + y1 * w] & 0x000000FF))) > 10) {
158                             breakout = false;
159                         }
160
161                 x--;
162                 start_x = x;
163
164                 // search for the next column with a non-grayscale pixel in it
165                 for(breakout = false; x<w && !breakout; x++)
166                     for(y1 = start_y; y1<end_y; y1++)
167                         if (Math.abs(((data[x + y1 * w] & 0x00FF0000) >> 16) - ((data[x + y1 * w] & 0x0000FF00) >> 8)) > 10 ||
168                             Math.abs(((data[x + y1 * w] & 0x0000FF00) >> 8) - ((data[x + y1 * w] & 0x000000FF))) > 10) {
169                             breakout = true;
170                             baseline = y1;
171                         }
172                 
173                 x--;
174                 advance = x - start_x;
175
176                 // search for the next column without a grayscale pixel in it
177                 for(breakout = false; x<w && !breakout; x++)
178                     for(y1 = start_y, breakout = true; y1<end_y; y1++)
179                         if (Math.abs(((data[x + y1 * w] & 0x00FF0000) >> 16) - ((data[x + y1 * w] & 0x0000FF00) >> 8)) > 10 ||
180                             Math.abs(((data[x + y1 * w] & 0x0000FF00) >> 8) - ((data[x + y1 * w] & 0x000000FF))) > 10) {
181                             breakout = false;
182                         }
183
184                 x--;
185                 end_x = x;
186
187                 if (start_x == end_x) break;
188
189                 metrics[numglyphs] = new int[6];
190                 metrics[numglyphs][0] = start_x;
191                 metrics[numglyphs][1] = end_x;
192                 metrics[numglyphs][2] = start_y;
193                 metrics[numglyphs][3] = end_y;
194                 metrics[numglyphs][4] = advance;
195                 metrics[numglyphs][5] = baseline;
196                 numglyphs++;
197
198                 if (numglyphs >= metrics.length) break;
199
200             }
201
202             if (numglyphs >= metrics.length) break;
203         }
204
205         for(int i=0; i<data.length; i++)
206             if (Math.abs(((data[i] & 0x00FF0000) >> 16) - ((data[i] & 0x0000FF00) >> 8)) > 10 ||
207                 Math.abs(((data[i] & 0x0000FF00) >> 8) - ((data[i] & 0x000000FF))) > 10)
208                 data[i] = 0x00;
209             else
210                 data[i] = (0xFF - (data[i] & 0xFF)) << 24;
211
212         for(int i=33; i<=126; i++)
213             if (metrics[i - 33] != null)
214                 maxascent = Math.max(maxascent, metrics[i - 33][5] - metrics[i - 33][2]);
215
216         for(int i=33; i<=126; i++)
217             if (metrics[i - 33] != null)
218                 maxdescent = Math.max(maxdescent, metrics[i - 33][3] - metrics[i - 33][5]);
219        
220     }
221
222 }