Make cluster extend Rectangle so that we get all of its lovely methods.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2337 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,34 +1,27 @@
|
|||||||
//
|
//
|
||||||
// $Id: Cluster.java,v 1.5 2003/03/26 23:42:41 mdb Exp $
|
// $Id: Cluster.java,v 1.6 2003/03/27 15:57:47 mdb Exp $
|
||||||
|
|
||||||
package com.threerings.whirled.spot.data;
|
package com.threerings.whirled.spot.data;
|
||||||
|
|
||||||
import java.awt.Rectangle;
|
import java.awt.Rectangle;
|
||||||
|
|
||||||
|
import com.samskivert.util.StringUtil;
|
||||||
|
|
||||||
import com.threerings.io.SimpleStreamableObject;
|
import com.threerings.io.SimpleStreamableObject;
|
||||||
|
import com.threerings.io.Streamable;
|
||||||
|
|
||||||
import com.threerings.presents.dobj.DSet;
|
import com.threerings.presents.dobj.DSet;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Contains information on clusters.
|
* Contains information on clusters.
|
||||||
*/
|
*/
|
||||||
public class Cluster extends SimpleStreamableObject
|
public class Cluster extends Rectangle
|
||||||
implements DSet.Entry
|
implements DSet.Entry, Streamable
|
||||||
{
|
{
|
||||||
/** A unique identifier for this cluster (also the distributed object
|
/** A unique identifier for this cluster (also the distributed object
|
||||||
* id of the cluster chat object). */
|
* id of the cluster chat object). */
|
||||||
public int clusterOid;
|
public int clusterOid;
|
||||||
|
|
||||||
/** The bounds of the cluster in the scene. */
|
|
||||||
public int x, y, width, height;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the "footprint" of this cluster in tile coordinates.
|
|
||||||
*/
|
|
||||||
public Rectangle getFootprint ()
|
|
||||||
{
|
|
||||||
return new Rectangle(x, y, width, height);
|
|
||||||
}
|
|
||||||
|
|
||||||
// documentation inherited
|
// documentation inherited
|
||||||
public Comparable getKey ()
|
public Comparable getKey ()
|
||||||
{
|
{
|
||||||
@@ -54,6 +47,14 @@ public class Cluster extends SimpleStreamableObject
|
|||||||
return clusterOid;
|
return clusterOid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates a string representation of this instance.
|
||||||
|
*/
|
||||||
|
public String toString ()
|
||||||
|
{
|
||||||
|
return StringUtil.fieldsToString(this);
|
||||||
|
}
|
||||||
|
|
||||||
/** Used for {@link #geyKey}. */
|
/** Used for {@link #geyKey}. */
|
||||||
protected transient Integer _key;
|
protected transient Integer _key;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user