|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectrle.core.board.path.Path
public abstract class Path
A base class for classes that can construct a list of Board locations.
Constructor Summary | |
---|---|
Path()
|
Method Summary | |
---|---|
static RLPoint |
endPoint(RLPoint start,
java.lang.String dir,
int dist)
A utility method to find a grid that lies in a given cardinal direction from the supplied start grid with a minimum distance of dist. |
static Path |
fillCircle(RLPoint ctr,
int radius)
Create a Path that fills a circular area. |
static Path |
fillCircle(RLRectangle ctr,
int radius)
Create a Path that fills a circular area outside a rectangular area. |
static Path |
fillRect(RLRectangle r)
Create a Path that fills a rectangular area. |
static Path |
frameCircle(RLPoint ctr,
int radius)
Create a Path that frames a circular area. |
static Path |
frameCircle(RLRectangle ctr,
int radius)
Create a Path that frames a circular area outside a rectangular area. |
static Path |
frameRect(RLRectangle r)
Create a Path that frames a rectangular area. |
java.util.List<RLPoint> |
legalPoints(Board b)
Return the steps in this path that are legal for a Board. |
static Path |
linePath(RLPoint source,
RLPoint target)
Create a Path that forms a line between two points, inclusive. |
static Path |
listPath(java.util.List<RLPoint> points)
Create a Path for an arbitrary List of points. |
abstract java.util.List<RLPoint> |
points()
Return the steps in this path. |
java.util.Set<Thing> |
things(Board b)
Return the things in this path for a Board. |
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public Path()
Method Detail |
---|
public abstract java.util.List<RLPoint> points()
public java.util.List<RLPoint> legalPoints(Board b)
public java.util.Set<Thing> things(Board b)
public static Path listPath(java.util.List<RLPoint> points)
public static Path linePath(RLPoint source, RLPoint target)
public static Path frameRect(RLRectangle r)
public static Path fillRect(RLRectangle r)
public static Path frameCircle(RLPoint ctr, int radius)
public static Path fillCircle(RLPoint ctr, int radius)
public static Path frameCircle(RLRectangle ctr, int radius)
public static Path fillCircle(RLRectangle ctr, int radius)
public static RLPoint endPoint(RLPoint start, java.lang.String dir, int dist)
dir
- - one of sw,s,se,w,e,nw,n,ne referring to the 8 cardinal directionspublic java.lang.String toString()
toString
in class java.lang.Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |