X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2FSurface.java;h=e241742ec4d37f8ee84266746bddc57014010c3c;hb=02b644ef2b669218f0547c646c6d85a2a9ce917b;hp=182558c992dc3d752d3dbc43d62729ef0c104824;hpb=4923e8529bbd51d0d03387d2f08ae08b38d5ef4a;p=org.ibex.core.git diff --git a/src/org/xwt/Surface.java b/src/org/xwt/Surface.java index 182558c..e241742 100644 --- a/src/org/xwt/Surface.java +++ b/src/org/xwt/Surface.java @@ -2,6 +2,7 @@ package org.xwt; import org.bouncycastle.util.encoders.Base64; +import org.xwt.js.*; import org.xwt.util.*; import java.io.*; import java.util.*; @@ -14,126 +15,69 @@ import java.util.*; * * Note that the members in the section 'state variables' are either * in real-time (the actual size/position/state), or in - * MessageQueue-time (the size/position/state at the time that the + * Scheduler-time (the size/position/state at the time that the * now-executing message was enqueued). This distinction is important. */ -public abstract class Surface { +public abstract class Surface extends PixelBuffer implements Scheduler.Task { // Static Data //////////////////////////////////////////////////////////////////////////////// - /** true iff a user-created surface was created */ - static boolean refreshableSurfaceWasCreated = false; + private static Boolean T = Boolean.TRUE; + private static Boolean F = Boolean.FALSE; - /** a reference to the most recently enqueued Move message; used to throttle the message rate */ - private static Message lastMoveMessage = null; - - /** all instances of Surface which need to be refreshed by the MessageQueue */ + /** all instances of Surface which need to be refreshed by the Scheduler */ public static Vec allSurfaces = new Vec(); - - /** true iff the alt button is pressed down, in real time */ - public static boolean alt = false; - /** true iff the control button is pressed down, in real time */ - public static boolean control = false; - - /** true iff the shift button is pressed down, in real time */ - public static boolean shift = false; - - /** true iff button 1 is depressed, in MessageQueue-time */ - public static boolean button1 = false; - - /** true iff button 2 is depressed, in MessageQueue-time */ - public static boolean button2 = false; - - /** true iff button 3 is depressed, in MessageQueue-time */ - public static boolean button3 = false; - - /** true iff all surfaces created from now on should be scarred */ - public static boolean scarAllSurfacesFromNowOn = false; - - /** false if the surface has never been rendered; used to determine if the surface should be repositioned to be centered on the screen */ - public boolean centerSurfaceOnRender = true; - - /** the x position of the mouse, relative to this Surface, in MessageQueue-time */ - public int mousex; - - /** the y position of the mouse, relative to this Surface, in MessageQueue-time */ - public int mousey; - - /** True iff this surface is minimized, in real time */ - public boolean minimized = false; - - /** True iff this surface is maximized, in real time */ - public boolean maximized = false; - - /** The name of the cursor on this surface -- this value fluctuates during rendering, so it may not be accurate; - * syncCursor() is called once the value is stable, to prevent the "flickering cursor" phenomenon - */ - public String cursor = "default"; - - /** The Box at the root of this surface */ - public Box root; - - /** The number of SizeChange/PosChange traps triggered since the last successful render -- used to detect infinite loops */ - public int sizePosChangesSinceLastRender = 0; - + /** When set to true, render() should abort as soon as possible and restart the rendering process */ + volatile boolean abort = false; + volatile int pendingWidth = -1; + volatile int pendingHeight = -1; + + public static boolean alt = false; ///< true iff the alt button is pressed down, in real time + public static boolean control = false; ///< true iff the control button is pressed down, in real time + public static boolean shift = false; ///< true iff the shift button is pressed down, in real time + public static boolean button1 = false; ///< true iff button 1 is depressed, in Scheduler-time + public static boolean button2 = false; ///< true iff button 2 is depressed, in Scheduler-time + public static boolean button3 = false; ///< true iff button 3 is depressed, in Scheduler-tiem + + + + // Instance Data /////////////////////////////////////////////////////////////////////// + + public Box root; ///< The Box at the root of this surface + public String cursor = "default"; ///< The active cursor to switch to when syncCursor() is called + public int mousex; ///< x position of the mouse, in Scheduler-time + public int mousey; ///< y position of the mouse, in Scheduler-time + public int _mousex; ///< x position of the mouse, in Scheduler-time + public int _mousey; ///< y position of the mouse, in Scheduler-time + public int newmousex = -1; ///< x position of the mouse, in realtime + public int newmousey = -1; ///< y position of the mouse, in realtime + public boolean minimized = false; ///< True iff this surface is minimized, in real time + public boolean maximized = false; ///< True iff this surface is maximized, in real time + DirtyList dirtyRegions = new DirtyList(); ///< Dirty regions on the *screen* // Used For Simulating Clicks and DoubleClicks ///////////////////////////////////////////////// - /** the x-position of the mouse the last time a Press message was enqueued */ - int last_press_x = Integer.MAX_VALUE; - - /** the y-position of the mouse the last time a Press message was enqueued */ - int last_press_y = Integer.MAX_VALUE; - - /** the last button to recieve a Click message; used for simulating DoubleClick's */ - static int lastClickButton = 0; - - /** the last time a Click message was processed; used for simulating DoubleClick's */ - static long lastClickTime = 0; + int last_press_x = Integer.MAX_VALUE; ///< the x-position of the mouse the last time a Press message was enqueued + int last_press_y = Integer.MAX_VALUE; ///< the y-position of the mouse the last time a Press message was enqueued + static int lastClickButton = 0; ///< the last button to recieve a Click message; used for simulating DoubleClick's + static long lastClickTime = 0; ///< the last time a Click message was processed; used for simulating DoubleClick's // Methods to be overridden by subclasses /////////////////////////////////////////////////////// - /** when this method is invoked, the surface should push itself to the back of the stacking order */ - public abstract void toBack(); - - /** when this method is invoked, the surface should pull itself to the front of the stacking order */ - public abstract void toFront(); - - /** sets the actual cursor for this surface to the cursor referenced by cursor */ - public abstract void syncCursor(); - - /** If b == true, make the window invisible; otherwise, make it non-invisible. */ - public abstract void setInvisible(boolean b); - - /** If b == true, maximize the surface; otherwise, un-maximize it. */ - protected abstract void _setMaximized(boolean b); - - /** If b == true, minimize the surface; otherwise, un-minimize it. */ - protected abstract void _setMinimized(boolean b); - - /** Sets the surface's width and height. */ - protected abstract void setSize(int width, int height); - - /** Sets the surface's x and y position. */ - public abstract void setLocation(int x, int y); - public void setLocation() { setLocation(root.x, root.y); } - - /** Sets the surface's title bar text, if applicable */ - public abstract void setTitleBarText(String s); - - /** Sets the surface's title bar text, if applicable */ - public abstract void setIcon(Picture i); - - /** copies a region from the doublebuffer to this surface */ - public abstract void blit(DoubleBuffer source, int sx, int sy, int dx, int dy, int dx2, int dy2); - - /** Destroy the surface */ - public abstract void _dispose(); - - /** Notifies the surface that limits have been imposed on the surface's size */ - public void setLimits(int min_width, int min_height, int max_width, int max_height) { } + public abstract void toBack(); ///< should push surface to the back of the stacking order + public abstract void toFront(); ///< should pull surface to the front of the stacking order + public abstract void syncCursor(); ///< set the actual cursor to this.cursor if they do not match + public abstract void setInvisible(boolean b); ///< If b, make window invisible; otherwise, make it non-invisible. + protected abstract void _setMaximized(boolean b); ///< If b, maximize the surface; otherwise, un-maximize it. + protected abstract void _setMinimized(boolean b); ///< If b, minimize the surface; otherwise, un-minimize it. + public abstract void setLocation(); ///< Set the surface's x/y position to that of the root box + protected abstract void _setSize(int w, int h); ///< set the actual size of the surface + public abstract void setTitleBarText(String s); ///< Sets the surface's title bar text, if applicable + public abstract void setIcon(Picture i); ///< Sets the surface's title bar text, if applicable + public abstract void _dispose(); ///< Destroy the surface + public void setLimits(int min_width, int min_height, int max_width, int max_height) { /* FIXME */ } // Helper methods for subclasses //////////////////////////////////////////////////////////// @@ -146,14 +90,17 @@ public abstract class Surface { else if (button == 2) button2 = true; else if (button == 3) button3 = true; - if (button == 1) new SimpleMessage("Press1", Boolean.TRUE, Box.whoIs(root, mousex, mousey)); - else if (button == 2) new SimpleMessage("Press2", Boolean.TRUE, Box.whoIs(root, mousex, mousey)); + if (button == 1) new SimpleMessage("_Press1", T, root); + else if (button == 2) new SimpleMessage("_Press2", T, root); else if (button == 3) { - final Box who = Box.whoIs(root, mousex, mousey); - MessageQueue.add(new Message() { public void perform() { + final Box who = root; + Scheduler.add(new Scheduler.Task() { public void perform() throws JSExn { Platform.clipboardReadEnabled = true; - root.put("Press3", Boolean.TRUE); - Platform.clipboardReadEnabled = false; + try { + root.putAndTriggerTraps("_Press3", T); + } finally { + Platform.clipboardReadEnabled = false; + } }}); } } @@ -163,9 +110,9 @@ public abstract class Surface { else if (button == 2) button2 = false; else if (button == 3) button3 = false; - if (button == 1) new SimpleMessage("Release1", Boolean.TRUE, Box.whoIs(root, mousex, mousey)); - else if (button == 2) new SimpleMessage("Release2", Boolean.TRUE, Box.whoIs(root, mousex, mousey)); - else if (button == 3) new SimpleMessage("Release3", Boolean.TRUE, Box.whoIs(root, mousex, mousey)); + if (button == 1) new SimpleMessage("_Release1", T, root); + else if (button == 2) new SimpleMessage("_Release2", T, root); + else if (button == 3) new SimpleMessage("_Release3", T, root); if (Platform.needsAutoClick() && Math.abs(last_press_x - mousex) < 5 && Math.abs(last_press_y - mousey) < 5) Click(button); last_press_x = Integer.MAX_VALUE; @@ -173,9 +120,9 @@ public abstract class Surface { } protected final void Click(int button) { - if (button == 1) new SimpleMessage("Click1", Boolean.TRUE, Box.whoIs(root, mousex, mousey)); - else if (button == 2) new SimpleMessage("Click2", Boolean.TRUE, Box.whoIs(root, mousex, mousey)); - else if (button == 3) new SimpleMessage("Click3", Boolean.TRUE, Box.whoIs(root, mousex, mousey)); + if (button == 1) new SimpleMessage("_Click1", T, root); + else if (button == 2) new SimpleMessage("_Click2", T, root); + else if (button == 3) new SimpleMessage("_Click3", T, root); if (Platform.needsAutoDoubleClick()) { long now = System.currentTimeMillis(); if (lastClickButton == button && now - lastClickTime < 350) DoubleClick(button); @@ -184,59 +131,21 @@ public abstract class Surface { } } - protected final void DoubleClick(int button) { - if (button == 1) new SimpleMessage("DoubleClick1", Boolean.TRUE, Box.whoIs(root, mousex, mousey)); - else if (button == 2) new SimpleMessage("DoubleClick2", Boolean.TRUE, Box.whoIs(root, mousex, mousey)); - else if (button == 3) new SimpleMessage("DoubleClick3", Boolean.TRUE, Box.whoIs(root, mousex, mousey)); - } - - /** sends a KeyPressed message; subclasses should not add the C- or A- prefixes, nor should they capitalize alphabet characters */ - protected final void KeyPressed(String key) { - if (key == null) return; - - if (key.toLowerCase().endsWith("shift")) shift = true; - else if (shift) key = key.toUpperCase(); - - if (key.toLowerCase().equals("alt")) alt = true; - else if (alt) key = "A-" + key; - - if (key.toLowerCase().endsWith("control")) control = true; - else if (control) key = "C-" + key; - - final String fkey = key; - MessageQueue.add(new KMessage(key)); - } - - // This is implemented as a private static class instead of an anonymous class to work around a GCJ bug - private class KMessage implements Message { - String key = null; - public KMessage(String k) { key = k; } - public void perform() { - if (key.equals("C-v") || key.equals("A-v")) Platform.clipboardReadEnabled = true; - outer: for(int i=0; ib == true, maximize the surface; otherwise, un-maximize it. */ - public final void setMaximized(boolean b) { - if (b == maximized) return; - _setMaximized(b); - maximized = b; - } - - /** If b == true, minimize the surface; otherwise, un-minimize it. */ - public final void setMinimized(boolean b) { - if (b == minimized) return; - _setMinimized(b); - minimized = b; - } - - /** wrapper for setSize() which makes sure to dirty the place where the scar used to be */ - void setSize() { - if (scarred) { - root.width = Math.max(root.width, scarPicture.getWidth()); - root.height = Math.max(root.height, scarPicture.getHeight()); - dirty(hscar, - root.height - vscar - scarPicture.getHeight(), - scarPicture.getWidth(), - scarPicture.getHeight()); - } - setSize(root.width, root.height); - } - /** Indicates that the Surface is no longer needed */ public final void dispose(boolean quitIfAllSurfacesGone) { - if (root == null) return; - if (Log.on) Log.log(this, "disposing " + this); + if (Log.on) Log.info(this, "disposing " + this); allSurfaces.removeElement(this); _dispose(); - - // quit when all windows are closed - if (allSurfaces.size() == 0 && quitIfAllSurfacesGone && Main.doneInitializing) { - if (Log.on) { - if (refreshableSurfaceWasCreated) Log.log(this, "exiting because last remaining surface was disposed"); - else Log.log(this, "exiting because no surface was ever created"); - } - Platform.exit(); + if (allSurfaces.size() == 0) { + if (Log.on) Log.info(this, "exiting because last surface was destroyed"); + System.exit(0); } } - /** Indicates that the backbuffer region x,y,w,h is no longer correct and must be regenerated */ public void dirty(int x, int y, int w, int h) { - backbufferDirtyRegions.dirty(x, y, w, h); + dirtyRegions.dirty(x, y, w, h); Refresh(); } - public Surface(Box root) { - this.scarred = scarAllSurfacesFromNowOn; - scarAllSurfacesFromNowOn = true; - this.root = root; - if (root.surface != null && root.surface.root == root) { - root.surface.dispose(false); - } else { - root.remove(); + public static Surface fromBox(Box b) { + for(int i=0; i root.width) w = root.width - x; if (y+h > root.height) h = root.height - y; if (w <= 0 || h <= 0) continue; - root.render(0, 0, x, y, w, h, backbuffer); + root.render(0, 0, x, y, x + w, y + h, this, identity); + drawPicture(Main.scarImage, 0, root.height - Main.scarImage.height, x, y, w, h); - // if any area under the scar was repainted, rescar that area - if (scarred && x < hscar + scarPicture.getWidth() && - y + h > root.height - scarPicture.getHeight() - vscar) { - int _x1 = Math.max(x, hscar); - int _x2 = Math.min(x + w, hscar + scarPicture.getWidth()); - int _y1 = Math.max(y, root.height - scarPicture.getHeight() - vscar); - int _y2 = Math.min(y + h, root.height - vscar); - - backbuffer.drawPicture(scarPicture, _x1, _y1, _x2, _y2, - _x1 - (hscar), - _y1 - (root.height - scarPicture.getHeight() - vscar), - _x2 - (hscar), - _y2 - (root.height - scarPicture.getHeight() - vscar) - ); - } - if (abort) { // x,y,w,h is only partially reconstructed, so we must be careful not to re-blit it - blitDirtyScreenRegions(x, y, w, h); - screenDirtyRegions.dirty(x, y, w, h); + dirtyRegions.dirty(x, y, w, h); // put back all the dirty regions we haven't yet processed (including the current one) for(int j=i; j 0 && a == -1) - blit(backbuffer, 0, 0, 0, 0, root.width, root.height); - - for(int i = 0; dirt != null && i < dirt.length; i++) { - if (dirt[i] == null) continue; - int x = dirt[i][0]; - int y = dirt[i][1]; - int w = dirt[i][2]; - int h = dirt[i][3]; - if (x < 0) x = 0; - if (y < 0) y = 0; - if (x+w > root.width) w = root.width - x; - if (y+h > root.height) h = root.height - y; - if (w <= 0 || h <= 0) continue; - - // if any part of this region falls within the "bad region", just skip it - boolean hhit = (x >= a && x <= a + c) || (x+w >= a && x+w <= a + c); - boolean vhit = (y >= b && y <= b + d) || (y+h >= b && y+h <= b + d); - if (hhit && vhit) { - screenDirtyRegions.dirty(x, y, w, h); - continue; - } - - blit(backbuffer, x, y, x, y, w + x, h + y); - - if (Main.showRenders) { - if (showRenderBuf == null) { - showRenderBuf = Platform.createDoubleBuffer(10, 10, this); - showRenderBuf.fillRect(0, 0, 10, 10, 0x00FF0000); - showRenderBuf2 = Platform.createDoubleBuffer(100, 100, this); - for(int y1 = 0; y1<100; y1++) - for(int x1 = 0; x1<100; x1++) - if ((x1 + y1) % 5 == 0) - showRenderBuf2.fillRect(x1, y1, x1 + 1, y1 + 1, 0x00FF0000); - } - for(int x1 = x; x1 root.width) w = root.width - x; + if (y+h > root.height) h = root.height - y; + if (w <= 0 || h <= 0) continue; + if (abort) return; + blit(backbuffer, x, y, x, y, w + x, h + y); + } + } + + /** This is how subclasses signal a 'shallow dirty', indicating that although the backbuffer is valid, the screen is not */ + public final void Dirty(int x, int y, int w, int h) { + screenDirtyRegions.dirty(x, y, w, h); + Scheduler.renderAll(); + } + + public void dirty(int x, int y, int w, int h) { + screenDirtyRegions.dirty(x, y, w, h); + super.dirty(x, y, w, h); + } + + /** copies a region from the doublebuffer to this surface */ + public abstract void blit(PixelBuffer source, int sx, int sy, int dx, int dy, int dx2, int dy2); + + } }