e203c56483
large. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1982 542714f4-19e9-0310-aa3c-eee0fc999fb1
148 lines
4.4 KiB
Java
148 lines
4.4 KiB
Java
//
|
|
// $Id: RegionManager.java,v 1.10 2002/11/22 01:54:59 mdb Exp $
|
|
|
|
package com.threerings.media;
|
|
|
|
import java.awt.EventQueue;
|
|
import java.awt.Rectangle;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
import com.samskivert.util.StringUtil;
|
|
|
|
/**
|
|
* Manages regions (rectangles) that are invalidated in the process of
|
|
* ticking animations and sprites and generally doing other display
|
|
* related business.
|
|
*/
|
|
public class RegionManager
|
|
{
|
|
/**
|
|
* Invalidates the specified region.
|
|
*/
|
|
public void invalidateRegion (int x, int y, int width, int height)
|
|
{
|
|
if (isValidSize(width, height)) {
|
|
addDirtyRegion(new Rectangle(x, y, width, height));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Invalidates the specified region (the supplied rectangle will be
|
|
* cloned as the region manager fiddles with the rectangles it uses
|
|
* internally).
|
|
*/
|
|
public void invalidateRegion (Rectangle rect)
|
|
{
|
|
if (isValidSize(rect.width, rect.height)) {
|
|
addDirtyRegion((Rectangle)rect.clone());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Adds the supplied rectangle to the dirty regions. Control of the
|
|
* rectangle is given to the region manager as it may choose to bend,
|
|
* fold or mutilate it later. If you don't want the region manager
|
|
* messing with your rectangle, use {@link #invalidateRegion}.
|
|
*/
|
|
public void addDirtyRegion (Rectangle rect)
|
|
{
|
|
// make sure we're on an AWT thread
|
|
if (!EventQueue.isDispatchThread()) {
|
|
Log.warning("Oi! Region dirtied on non-AWT thread " +
|
|
"[rect=" + rect + "].");
|
|
Thread.dumpStack();
|
|
}
|
|
|
|
// sanity check
|
|
if (rect == null) {
|
|
Log.warning("Attempt to dirty a null rect!?");
|
|
Thread.dumpStack();
|
|
return;
|
|
}
|
|
|
|
// more sanity checking
|
|
long x = rect.x, y = rect.y;
|
|
if ((Math.abs(x) > Integer.MAX_VALUE/2) ||
|
|
(Math.abs(y) > Integer.MAX_VALUE/2)) {
|
|
Log.warning("Requested to dirty questionable region " +
|
|
"[rect=" + StringUtil.toString(rect) + "].");
|
|
if (Log.getLevel() == Log.log.DEBUG) {
|
|
Thread.dumpStack();
|
|
}
|
|
}
|
|
|
|
if (isValidSize(rect.width, rect.height)) {
|
|
// Log.info("Invalidating " + StringUtil.toString(rect));
|
|
_dirty.add(rect);
|
|
}
|
|
}
|
|
|
|
/** Used to ensure our dirty regions are not invalid. */
|
|
protected final boolean isValidSize (int width, int height)
|
|
{
|
|
if (width < 0 || height < 0) {
|
|
Log.warning("Attempt to add invalid dirty region?! " +
|
|
"[size=" + width + "x" + height + "].");
|
|
Thread.dumpStack();
|
|
return false;
|
|
|
|
} else if (width == 0 || height == 0) {
|
|
// no need to complain about zero sized rectangles, just
|
|
// ignore them
|
|
return false;
|
|
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns true if dirty regions have been accumulated since the last
|
|
* call to {@link #getDirtyRegions}.
|
|
*/
|
|
public boolean haveDirtyRegions ()
|
|
{
|
|
return (_dirty.size() > 0);
|
|
}
|
|
|
|
/**
|
|
* Merges all outstanding dirty regions into a single list of
|
|
* rectangles and returns that to the caller. Interally, the list of
|
|
* accumulated dirty regions is cleared out and prepared for the next
|
|
* frame.
|
|
*/
|
|
public Rectangle[] getDirtyRegions ()
|
|
{
|
|
ArrayList merged = new ArrayList();
|
|
|
|
for (int ii = _dirty.size() - 1; ii >= 0; ii--) {
|
|
// pop the next rectangle from the dirty list
|
|
Rectangle mr = (Rectangle)_dirty.remove(ii);
|
|
|
|
// merge in any overlapping rectangles
|
|
for (int jj = ii - 1; jj >= 0; jj--) {
|
|
Rectangle r = (Rectangle)_dirty.get(jj);
|
|
if (mr.intersects(r)) {
|
|
// remove the overlapping rectangle from the list
|
|
_dirty.remove(jj);
|
|
ii--;
|
|
// grow the merged dirty rectangle
|
|
mr.add(r);
|
|
}
|
|
}
|
|
|
|
// add the merged rectangle to the list
|
|
merged.add(mr);
|
|
}
|
|
|
|
Rectangle[] rects = new Rectangle[merged.size()];
|
|
merged.toArray(rects);
|
|
return rects;
|
|
}
|
|
|
|
/** A list of dirty rectangles. */
|
|
protected ArrayList _dirty = new ArrayList();
|
|
}
|