X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2Ftranslators%2FFreetype.java;h=4d14852809a9254dd9fe2e6cab04bfe717152302;hb=77cc991245b9b4c76887004dd9ce0e57425911e9;hp=f1e11fe57617cd4a8e6e35ec93b6cdda2715398c;hpb=ff3815a13aa6a57852f28c789f8a8d22f2a1f26e;p=org.ibex.core.git diff --git a/src/org/xwt/translators/Freetype.java b/src/org/xwt/translators/Freetype.java index f1e11fe..4d14852 100644 --- a/src/org/xwt/translators/Freetype.java +++ b/src/org/xwt/translators/Freetype.java @@ -6,44 +6,39 @@ 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 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(); 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 = new MIPSApps(); 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 { - int width = 0; - int height = 0; - byte[] data = null; - try { if (loadedStream != glyph.font.res) loadFontByteStream(glyph.font.res); vm.setUserInfo(2, (int)glyph.c); @@ -56,17 +51,15 @@ public class Freetype { glyph.baseline = vm.getUserInfo(10); glyph.advance = vm.getUserInfo(11); - width = vm.getUserInfo(6); - height = vm.getUserInfo(7); + glyph.width = vm.getUserInfo(6); + glyph.height = vm.getUserInfo(7); - data = new byte[width * height]; + glyph.data = new byte[glyph.width * glyph.height]; int addr = vm.getUserInfo(5); - vm.copyin(addr,data,width*height); + vm.copyin(addr, glyph.data, glyph.width * glyph.height); - if (width == 0 || height == 0) Log.log(Freetype.class, "warning glyph has zero width/height"); - glyph.p = Platform.createAlphaOnlyPicture(data, width, height); } catch (Exception e) { - Log.log(this, e); + Log.info(this, e); } } }