2003/11/03 06:32:56
[org.ibex.core.git] / src / org / xwt / Picture.java
index 3f60854..38f9c0a 100644 (file)
@@ -1,10 +1,14 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt;
+import java.io.*;
+import org.xwt.js.*;
+import org.xwt.util.*;
+import org.xwt.translators.*;
 
 /** 
  *    <p>
  *    The in-memory representation of a PNG or GIF image. It is
- *    read-only. It is usually passed to DoubleBuffer.drawPicture()
+ *    read-only. It is usually passed to PixelBuffer.drawPicture()
  *    </p>
  *
  *    <p>
@@ -14,7 +18,47 @@ package org.xwt;
  *    example, using a Pixmap on X11).
  *    </p>
  */
-public interface Picture {
-    public int getHeight();
-    public int getWidth();
+public abstract class Picture {
+
+    /** the resource that created this Picture */
+    public Res res = null;
+
+    /** the height of the picture */
+    public abstract int getHeight();
+    
+    /** the width of the picture */
+    public abstract int getWidth();
+
+    /** Pictures, cache keyed by Res instance */
+    private static Cache cache = new Cache();
+    private static GIF gif = new GIF();
+    
+    // FIXME: return a Picture that gets filled in later
+    /** turns a resource into a Picture.Source and passes it to the callback */
+    public static Picture fromRes(final Res r, final Callback callback) {
+        Picture ret = (Picture)cache.get(r);
+        if (ret != null) return ret;
+        try {
+            Platform.inputStreamToByteArray(r.getInputStream(), new Callback() { public Object call(Object o) {
+                try {
+                    Picture ret = null;
+                    byte[] b = (byte[])o;
+                    InputStream pbis = new ByteArrayInputStream(b);
+                    if ((b[0] & 0xff) == 'G') ret = gif.fromInputStream(pbis, r.getDescriptiveName());
+                    else if ((b[0] & 0xff) == 137) ret = new PNG().fromInputStream(pbis, r.getDescriptiveName());
+                    else if ((b[0] & 0xff) == 0xff) ret = Platform.decodeJPEG(pbis, r.getDescriptiveName());
+                    else throw new JS.Exn("couldn't figure out image type from first byte");
+                    ret.res = r;
+                    cache.put(r, ret);
+                    callback.call(ret);
+                } catch (Exception e) {
+                    Log.log(Picture.class, e);
+                }
+                return null;
+            }});
+        } catch (Exception e) {
+            Log.log(Picture.class, e);
+        }
+        return null;
+    }
 }