X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2Ftranslators%2FFreetype.java;h=a7020e97f3668fdcb1aeae6f1988cec53d3d6f47;hb=3591b88b94a6bb378af3d4abe6eb5233ce583104;hp=55dbf6886ca6b80c53131b588698af8ab3532461;hpb=8d5c8bc003e624cb59618a516367e1f1e68382fe;p=org.ibex.core.git diff --git a/src/org/xwt/translators/Freetype.java b/src/org/xwt/translators/Freetype.java index 55dbf68..a7020e9 100644 --- a/src/org/xwt/translators/Freetype.java +++ b/src/org/xwt/translators/Freetype.java @@ -1,10 +1,9 @@ package org.xwt.translators; -import org.xwt.*; -import org.xwt.util.*; +import org.ibex.*; +import org.ibex.util.*; import java.io.*; -import java.util.zip.*; -import java.util.*; -import org.bouncycastle.util.encoders.Base64; + +import org.xwt.mips.Runtime; // FEATURE: use streams, not memoryfont's // FEATURE: kerning pairs @@ -12,36 +11,34 @@ public class Freetype { public Freetype() { } - private static byte[] image = null; - private int mem_allocated = 0; - private org.xwt.mips.Runtime vm = null; + private Runtime vm = null; - private Res loadedStream = null; + private Stream loadedStream = null; - public void loadFontByteStream(Res res) { + public void loadFontByteStream(Stream res) { try { - Log.log(this, "loading font " + res); + Log.info(this, "loading font " + res); loadedStream = res; - InputStream is = res.getInputStream(); + InputStream is = Stream.getInputStream(res); byte[] fontstream = InputStreamToByteArray.convert(is); - if (image == null) image = InputStreamToByteArray.convert(Main.builtin.getInputStream("freetype.mips")); - //vm = new org.xwt.mips.Interpreter(image); - vm = new FreetypeVM(); + vm = (Runtime)Class.forName("org.xwt.translators.MIPSApps").newInstance(); int baseAddr = vm.sbrk(fontstream.length); vm.copyout(fontstream, baseAddr, fontstream.length); vm.setUserInfo(0, baseAddr); vm.setUserInfo(1, fontstream.length); - vm.start(new String[]{ "freetype.mips" }); + vm.start(new String[]{ "freetype" }); vm.execute(); + if(vm.getState() == Runtime.DONE) throw new Error("Freetype VM exited: " + vm.exitStatus()); } catch (Exception e) { - Log.log(this, e); + Log.info(this, e); } } public synchronized void renderGlyph(Font.Glyph glyph) throws IOException { try { - if (loadedStream != glyph.font.res) loadFontByteStream(glyph.font.res); + Log.debug(this, "rasterizing glyph " + glyph.c + " of font " + glyph.font); + if (loadedStream != glyph.font.stream) loadFontByteStream(glyph.font.stream); vm.setUserInfo(2, (int)glyph.c); vm.setUserInfo(3, (int)glyph.c); vm.setUserInfo(4, glyph.font.pointsize); @@ -58,9 +55,10 @@ public class Freetype { glyph.data = new byte[glyph.width * glyph.height]; int addr = vm.getUserInfo(5); vm.copyin(addr, glyph.data, glyph.width * glyph.height); + glyph.isLoaded = true; } catch (Exception e) { - Log.log(this, e); + Log.info(this, e); } } }