removing unused local variables
[org.ibex.core.git] / src / org / ibex / Surface.java
1 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.ibex;
3
4 import org.ibex.js.*;
5 import org.ibex.util.*;
6
7 /** 
8  *  A Surface, as described in the Ibex Reference.
9  *
10  *  Platform subclasses should include an inner class subclass of
11  *  Surface to return from the Platform._createSurface() method
12  */
13 public abstract class Surface extends PixelBuffer implements Scheduler.Task {
14
15     // Static Data ////////////////////////////////////////////////////////////////////////////////
16
17     private static Boolean T = Boolean.TRUE;
18     private static Boolean F = Boolean.FALSE;
19
20     /** all instances of Surface which need to be refreshed by the Scheduler */
21     public static Vec allSurfaces = new Vec();
22     
23     /** When set to true, render() should abort as soon as possible and restart the rendering process */
24     volatile boolean abort = false;
25
26     // these three variables are used to ensure that user resizes trump programmatic resizes
27     volatile boolean syncRootBoxToSurface = false;
28     volatile int pendingWidth = 0;
29     volatile int pendingHeight = 0;
30
31     public static boolean alt = false;          ///< true iff the alt button is pressed down
32     public static boolean control = false;      ///< true iff the control button is pressed down
33     public static boolean shift = false;        ///< true iff the shift button is pressed down
34     public static boolean button1 = false;      ///< true iff button 1 is depressed
35     public static boolean button2 = false;      ///< true iff button 2 is depressed
36     public static boolean button3 = false;      ///< true iff button 3 is depressed
37
38
39     // Instance Data ///////////////////////////////////////////////////////////////////////
40
41     public Box root;                                   ///< The Box at the root of this surface
42     public String cursor = "default";                  ///< The active cursor to switch to when syncCursor() is called
43     public int mousex;                                 ///< x position of the mouse
44     public int mousey;                                 ///< y position of the mouse
45     public int _mousex;                                ///< x position of the mouse FIXME
46     public int _mousey;                                ///< y position of the mouse FIXME
47     public int newmousex = -1;                         ///< x position of the mouse, in real time; this lets us collapse Move's
48     public int newmousey = -1;                         ///< y position of the mouse, in real time; this lets us collapse Move's
49     public boolean minimized = false;                  ///< True iff this surface is minimized, in real time
50     public boolean maximized = false;                  ///< True iff this surface is maximized, in real time
51     DirtyList dirtyRegions = new DirtyList();          ///< Dirty regions on the surface
52
53     // Used For Simulating Clicks and DoubleClicks /////////////////////////////////////////////////
54
55     int last_press_x = Integer.MAX_VALUE;      ///< the x-position of the mouse the last time a Press message was enqueued
56     int last_press_y = Integer.MAX_VALUE;      ///< the y-position of the mouse the last time a Press message was enqueued
57     static int lastClickButton = 0;            ///< the last button to recieve a Click message; used for simulating DoubleClick's
58     static long lastClickTime = 0;             ///< the last time a Click message was processed; used for simulating DoubleClick's
59     
60     
61     // Methods to be overridden by subclasses ///////////////////////////////////////////////////////
62
63     public abstract void toBack();                     ///< should push surface to the back of the stacking order
64     public abstract void toFront();                    ///< should pull surface to the front of the stacking order
65     public abstract void syncCursor();                 ///< set the actual cursor to this.cursor if they do not match
66     public abstract void setInvisible(boolean b);      ///< If <tt>b</tt>, make window invisible; otherwise, make it non-invisible.
67     protected abstract void _setMaximized(boolean b);  ///< If <tt>b</tt>, maximize the surface; otherwise, un-maximize it.
68     protected abstract void _setMinimized(boolean b);  ///< If <tt>b</tt>, minimize the surface; otherwise, un-minimize it.
69     public abstract void setLocation();                ///< Set the surface's x/y position to that of the root box
70     protected abstract void _setSize(int w, int h);    ///< set the actual size of the surface
71     public abstract void setTitleBarText(String s);    ///< Sets the surface's title bar text, if applicable
72     public abstract void setIcon(Picture i);           ///< Sets the surface's title bar text, if applicable
73     public abstract void _dispose();                   ///< Destroy the surface
74     public void setMinimumSize(int minx, int miny, boolean resizable) { }
75     protected void setSize(int w, int h) { _setSize(w, h); }
76
77
78     // Helper methods for subclasses ////////////////////////////////////////////////////////////
79
80     protected final void Press(final int button) {
81         last_press_x = mousex;
82         last_press_y = mousey;
83
84         if (button == 1) button1 = true;
85         else if (button == 2) button2 = true;
86         else if (button == 3) button3 = true;
87
88         if (button == 1) new Message("_Press1", T, root);
89         else if (button == 2) new Message("_Press2", T, root);
90         else if (button == 3) {
91             Scheduler.add(new Scheduler.Task() { public void perform() throws JSExn {
92                 Platform.clipboardReadEnabled = true;
93                 try {
94                     root.putAndTriggerTraps("_Press3", T);
95                 } finally {
96                     Platform.clipboardReadEnabled = false;
97                 }
98             }});
99         }
100     }
101
102     protected final void Release(int button) {
103         if (button == 1) button1 = false;
104         else if (button == 2) button2 = false;
105         else if (button == 3) button3 = false;
106
107         if (button == 1) new Message("_Release1", T, root);
108         else if (button == 2) new Message("_Release2", T, root);
109         else if (button == 3) new Message("_Release3", T, root);
110
111         if (Platform.needsAutoClick() && Math.abs(last_press_x - mousex) < 5 && Math.abs(last_press_y - mousey) < 5) Click(button);
112         last_press_x = Integer.MAX_VALUE;
113         last_press_y = Integer.MAX_VALUE;
114     }
115
116     protected final void Click(int button) {
117         if (button == 1) new Message("_Click1", T, root);
118         else if (button == 2) new Message("_Click2", T, root);
119         else if (button == 3) new Message("_Click3", T, root);
120         if (Platform.needsAutoDoubleClick()) {
121             long now = System.currentTimeMillis();
122             if (lastClickButton == button && now - lastClickTime < 350) DoubleClick(button);
123             lastClickButton = button;
124             lastClickTime = now;
125         }
126     }
127
128     /** we enqueue ourselves in the Scheduler when we have a Move message to deal with */
129     public void perform() {
130         if (mousex == newmousex && mousey == newmousey) return;
131         int oldmousex = mousex;     mousex = newmousex;
132         int oldmousey = mousey;     mousey = newmousey;
133         String oldcursor = cursor;  cursor = "default";
134         // Root gets motion events outside itself (if trapped)
135         if (!root.inside(oldmousex, oldmousey) && !root.inside(mousex, mousey) && (button1 || button2 || button3))
136             root.putAndTriggerTrapsAndCatchExceptions("_Move", T);
137         if (!cursor.equals(oldcursor)) syncCursor();
138     }
139
140     /**
141      *  Notify Ibex that the mouse has moved. If the mouse leaves the
142      *  surface, but the host windowing system does not provide its new
143      *  position (for example, a Java MouseListener.mouseExited()
144      *  message), the subclass should use (-1,-1).
145      */
146     protected final void Move(final int newmousex, final int newmousey) {
147         this.newmousex = newmousex;
148         this.newmousey = newmousey;
149         Scheduler.add(this);
150     }
151
152     /** subclasses should invoke this method when the user resizes the window */
153     protected final void SizeChange(final int width, final int height) {
154         if (pendingWidth == width && pendingHeight == height) return;
155         pendingWidth = width;
156         pendingHeight = height;
157         syncRootBoxToSurface = true;
158         abort = true;
159         Scheduler.renderAll();
160     }
161
162     // FEATURE: can we avoid creating objects here?
163     protected final void PosChange(final int x, final int y) {
164         Scheduler.add(new Scheduler.Task() { public void perform() throws JSExn {
165             root.x = x;
166             root.y = y;
167             root.putAndTriggerTrapsAndCatchExceptions("PosChange", T);
168         }});
169     }
170
171     private final String[] doubleClick = new String[] { null, "_DoubleClick1", "_DoubleClick2", "_DoubleClick3" };
172     protected final void DoubleClick(int button) { new Message(doubleClick[button], T, root); }
173     protected final void KeyPressed(String key) { new Message("_KeyPressed", key, root); }
174     protected final void KeyReleased(String key) { new Message("_KeyReleased", key, root); }
175     protected final void Close() { new Message("Close", T, root); }
176     protected final void Minimized(boolean b) { minimized = b; new Message("Minimized", b ? T : F, root); }
177     protected final void Maximized(boolean b) { maximized = b; new Message("Maximized", b ? T : F, root); }
178     protected final void Focused(boolean b) { new Message("Focused", b ? T : F, root); }
179     public void Refresh() { Scheduler.add(new Scheduler.Task() { public void perform() { } }); }
180
181     public final void setMaximized(boolean b) { if (b != maximized) _setMaximized(maximized = b); }
182     public final void setMinimized(boolean b) { if (b != minimized) _setMinimized(minimized = b); }
183
184
185     // Other Methods ///////////////////////////////////////////////////////////////////////////////
186
187     /** Indicates that the Surface is no longer needed */
188     public final void dispose(boolean quitIfAllSurfacesGone) {
189         if (Log.on) Log.info(this, "disposing " + this);
190         allSurfaces.removeElement(this);
191         _dispose();
192         if (allSurfaces.size() == 0) {
193             if (Log.on) Log.info(this, "exiting because last surface was destroyed");
194             System.exit(0);
195         }
196     }
197
198     public void dirty(int x, int y, int w, int h) {
199         dirtyRegions.dirty(x, y, w, h);
200         Refresh();
201     }
202
203     public static Surface fromBox(Box b) {
204         // FIXME use a hash table here
205         for(int i=0; i<allSurfaces.size(); i++) {
206             Surface s = (Surface)allSurfaces.elementAt(i);
207             if (s.root == b) return s;
208         }
209         return null;
210     }
211
212     public Surface(Box root) {
213         this.root = root;
214         root.setMaxWidth(JS.N(Math.min(Platform.getScreenWidth(), root.maxwidth)));
215         root.setMaxHeight(JS.N(Math.min(Platform.getScreenHeight(), root.maxheight)));
216         Surface old = fromBox(root);
217         if (old != null) old.dispose(false);
218         else root.removeSelf();
219         Refresh();
220     }
221
222     private static VectorGraphics.Affine identity = VectorGraphics.Affine.identity();
223
224     /** runs the prerender() and render() pipelines in the root Box to regenerate the backbuffer, then blits it to the screen */
225     public synchronized void render() {
226
227         // make sure the root is properly sized
228         do {
229             abort = false;
230             root.repack();
231             if (syncRootBoxToSurface) {
232                 root.setMaxWidth(JS.N(pendingWidth));
233                 root.setMaxHeight(JS.N(pendingHeight));
234                 syncRootBoxToSurface = false;
235             }
236             if (root.maxwidth != root.width || root.maxheight != root.height) {
237                 // dirty the place where the scar used to be and where it is now
238                 dirty(0, root.height - Main.scarImage.height, Main.scarImage.width, Main.scarImage.height);
239                 dirty(0, root.maxheight - Main.scarImage.height, Main.scarImage.width, Main.scarImage.height);
240             }
241             root.resize(root.x, root.y, root.maxwidth, root.maxheight);
242             root.resize_children();
243             setSize(root.width, root.height);
244             String oldcursor = cursor;
245             cursor = "default";
246             root.putAndTriggerTrapsAndCatchExceptions("_Move", JS.T);
247             if (!cursor.equals(oldcursor)) syncCursor();
248         } while(abort);
249
250         int[][] dirt = dirtyRegions.flush();
251         for(int i = 0; dirt != null && i < dirt.length; i++) {
252             if (dirt[i] == null) continue;
253             int x = dirt[i][0], y = dirt[i][1], w = dirt[i][2], h = dirt[i][3];
254             if (x < 0) x = 0;
255             if (y < 0) y = 0;
256             if (x+w > root.width) w = root.width - x;
257             if (y+h > root.height) h = root.height - y;
258             if (w <= 0 || h <= 0) continue;
259
260             root.render(0, 0, x, y, x + w, y + h, this, identity);
261             drawPicture(Main.scarImage, 0, root.height - Main.scarImage.height, x, y, x+w, y+h);
262             
263             if (abort) {
264                 // x,y,w,h is only partially reconstructed, so we must be careful not to re-blit it
265                 dirtyRegions.dirty(x, y, w, h);
266                 // put back all the dirty regions we haven't yet processed (including the current one)
267                 for(int j=i; j<dirt.length; j++)
268                     if (dirt[j] != null)
269                         dirtyRegions.dirty(dirt[j][0], dirt[j][1], dirt[j][2], dirt[j][3]);
270                 return;
271             }
272         }
273     }
274
275     // FEATURE: reinstate recycler
276     public class Message implements Scheduler.Task {
277         
278         private Box boxContainingMouse;
279         private Object value;
280         public String name;
281         
282         Message(String name, Object value, Box boxContainingMouse) {
283             this.boxContainingMouse = boxContainingMouse;
284             this.name = name;
285             this.value = value;
286             Scheduler.add(this);
287         }
288         
289         public void perform() {
290             if (name.equals("_KeyPressed")) {
291                 String value = (String)this.value;
292                 if (value.toLowerCase().endsWith("shift")) shift = true;     else if (shift) value = value.toUpperCase();
293                 if (value.toLowerCase().equals("alt")) alt = true;           else if (alt) value = "A-" + value;
294                 if (value.toLowerCase().endsWith("control")) control = true; else if (control) value = "C-" + value;
295                 if (value.equals("C-v") || value.equals("A-v")) Platform.clipboardReadEnabled = true;
296                 this.value = value;
297             } else if (name.equals("_KeyReleased")) {
298                 String value = (String)this.value;
299                 if (value.toLowerCase().equals("alt")) alt = false;
300                 else if (value.toLowerCase().equals("control")) control = false;
301                 else if (value.toLowerCase().equals("shift")) shift = false;
302                 this.value = value;
303             }
304             try {
305                 boxContainingMouse.putAndTriggerTrapsAndCatchExceptions(name, value);
306             } finally {
307                 Platform.clipboardReadEnabled = false;
308             }
309         }
310         public String toString() { return "Message [name=" + name + ", value=" + value + "]"; }
311     }
312
313
314     // Default PixelBuffer implementation /////////////////////////////////////////////////////////
315
316     public static abstract class DoubleBufferedSurface extends Surface {
317
318         public DoubleBufferedSurface(Box root) { super(root); }
319         PixelBuffer backbuffer = Platform.createPixelBuffer(Platform.getScreenWidth(), Platform.getScreenHeight(), this);
320         DirtyList screenDirtyRegions = new DirtyList();
321
322         public void drawPicture(Picture source, int dx, int dy, int cx1, int cy1, int cx2, int cy2) {
323             screenDirtyRegions.dirty(cx1, cy1, cx2 - cx1, cy2 - cy1);
324             backbuffer.drawPicture(source, dx, dy, cx1, cy1, cx2, cy2);
325         }
326
327         public void drawGlyph(Font.Glyph source, int dx, int dy, int cx1, int cy1, int cx2, int cy2, int argb) {
328             screenDirtyRegions.dirty(cx1, cy1, cx2 - cx1, cy2 - cy1);
329             backbuffer.drawGlyph(source, dx, dy, cx1, cy1, cx2, cy2, argb);
330         }
331
332         public void fillTrapezoid(int x1, int x2, int y1, int x3, int x4, int y2, int color) {
333             screenDirtyRegions.dirty(Math.min(x1, x3), y1, Math.max(x2, x4) - Math.min(x1, x3), y2 - y1);
334             backbuffer.fillTrapezoid(x1, x2, y1, x3, x4, y2, color);
335         }
336
337         public void render() {
338             super.render();
339             if (abort) return;
340             int[][] dirt = screenDirtyRegions.flush();
341             for(int i = 0; dirt != null && i < dirt.length; i++) {
342                 if (dirt[i] == null) continue;
343                 int x = dirt[i][0];
344                 int y = dirt[i][1];
345                 int w = dirt[i][2];
346                 int h = dirt[i][3];
347                 if (x < 0) x = 0;
348                 if (y < 0) y = 0;
349                 if (x+w > root.width) w = root.width - x;
350                 if (y+h > root.height) h = root.height - y;
351                 if (w <= 0 || h <= 0) continue;
352                 if (abort) return;
353                 blit(backbuffer, x, y, x, y, w + x, h + y);
354             }
355         }
356
357         /** This is how subclasses signal a 'shallow dirty', indicating that although the backbuffer is valid, the screen is not */
358         public final void Dirty(int x, int y, int w, int h) {
359             screenDirtyRegions.dirty(x, y, w, h);
360             Scheduler.renderAll();
361         }
362
363         public void dirty(int x, int y, int w, int h) {
364             screenDirtyRegions.dirty(x, y, w, h);
365             super.dirty(x, y, w, h);
366         }
367
368         /** copies a region from the doublebuffer to this surface */
369         public abstract void blit(PixelBuffer source, int sx, int sy, int dx, int dy, int dx2, int dy2);
370
371     }
372
373 }