2003/10/16 05:39:20
[org.ibex.core.git] / src / org / xwt / translators / Freetype.java
1 package org.xwt.translators;
2 import org.xwt.*;
3 import org.xwt.util.*;
4 import java.io.*;
5 import java.util.zip.*;
6
7 // FEATURE: use streams, not memoryfont's
8 // FEATURE: kerning pairs
9 public class Freetype {
10
11     Freetype() { }
12
13     private static org.xwt.mips.Interpreter vm = null;
14
15     public static synchronized void renderGlyphs(Res res, int pointsize, int firstGlyph, int lastGlyph, Cache glyphCache) {
16         try {
17            
18             if (vm == null) {
19
20                 InputStream bis = Platform.getBuiltinInputStream();
21                 ZipInputStream zis = new ZipInputStream(bis);
22                 for(ZipEntry ze = zis.getNextEntry(); ze != null && !ze.getName().equals("freetype.mips"); ze = zis.getNextEntry()) { }
23                 byte[] image = InputStreamToByteArray.convert(zis);
24                 vm = new org.xwt.mips.Interpreter(image);
25                 vm.start(new String[]{ "freetype.mips" });
26                 vm.execute();
27             }
28
29             int FONT_RESERVED = 256*1024;
30             int baseAddr = vm.sbrk(FONT_RESERVED);
31             
32             byte[] fontstream = InputStreamToByteArray.convert(res.getInputStream());
33             vm.copyout(fontstream, baseAddr, fontstream.length);
34             vm.setUserInfo(0, baseAddr);
35             vm.setUserInfo(1, fontstream.length);
36             vm.setUserInfo(2, firstGlyph);
37             vm.setUserInfo(3, lastGlyph);
38             vm.setUserInfo(4, pointsize);
39             
40             long start = System.currentTimeMillis();
41             
42             for(int g = firstGlyph; g <= lastGlyph; g++) {
43                 vm.execute();
44                 
45                 Glyph glyph = new Glyph();
46                 glyph.max_ascent = vm.getUserInfo(8);
47                 glyph.max_descent = vm.getUserInfo(9) - glyph.max_ascent;
48                 glyph.baseline = vm.getUserInfo(10);
49                 glyph.advance = vm.getUserInfo(11);
50                 glyph.c = (char)g;
51                 
52                 int width = vm.getUserInfo(6);
53                 int height = vm.getUserInfo(7);
54                 byte[] data = new byte[width * height];
55                 int addr = vm.getUserInfo(5);
56
57                 vm.copyin(addr,data,width*height);
58                 
59                 /*for(int i=0; i<width * height; i += 4) {
60                     int val = vm.memRead(addr + i);
61                     for (int k = 3; k >= 0; k--) {
62                         if (i + k < width * height)
63                             data[i + k] = (val & 0xff) << 24;
64                         val >>>= 8;
65                     }
66                 }*/
67                 
68                 glyph.p = Platform.createAlphaOnlyPicture(data, width, height);
69                 glyphCache.put(res, new Integer((g << 16) | pointsize), glyph);
70             }
71         } catch (Exception e) {
72             Log.log(Freetype.class, e);
73         }
74     }
75 }