Package | Description |
---|---|
simkit.smdx |
Contains basic classes to represent the entities in a combat simulation.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.Iterator<WayPoint> |
PathMoverManager.nextWayPoint
Iterates over the wayPoints.
|
protected java.util.List<WayPoint> |
PathMoverManager.wayPoints
The path for the Mover to follow.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<WayPoint> |
PathMoverManager.getWayPoints()
Creates a shallow copy of the current path
|
Modifier and Type | Method and Description |
---|---|
void |
PathMoverManager.addWayPoint(WayPoint wayPoint)
Adds the given WayPoint to the end of the current path.
|
Modifier and Type | Method and Description |
---|---|
void |
PathMoverManager.setWayPoints(java.util.List<WayPoint> path)
Takes the given list of waypoints and makes them the path
for this MoverManager.
|
Constructor and Description |
---|
PathMoverManager(Mover m,
WayPoint[] path)
Constructs a new PathMoverManager.
|
PatrolMoverManager(Mover mover,
WayPoint[] wayPoints) |
WayPoint(WayPoint wayPoint)
Copy Constructor
|
Constructor and Description |
---|
PathMoverManager(Mover m,
java.util.List<WayPoint> path)
Constructs a new PathMoverManager.
|
PatrolMoverManager(Mover mover,
java.util.List<WayPoint> wayPoints) |