Package | Description |
---|---|
simkit.smd |
Modifier and Type | Field and Description |
---|---|
protected java.util.ListIterator<WayPoint> |
PathMoverManager.nextWayPointIter
Points to next WayPoint if hasNext() is true.
|
private java.util.List<WayPoint> |
PathMoverManager.wayPoint
List of desired WayPoints the Mover is to traverse
|
Modifier and Type | Method and Description |
---|---|
WayPoint |
PathMoverManager.getNextWayPoint()
This is a derived state from waypoint and nextWayPointIter
|
Modifier and Type | Method and Description |
---|---|
java.util.ListIterator<WayPoint> |
PathMoverManager.getNextWayPointIter()
This is for purety and consistency since this is a state variable.
|
java.util.List<WayPoint> |
PathMoverManager.getWaypoint() |
Modifier and Type | Method and Description |
---|---|
void |
PathMoverManager.setWaypoint(java.util.List<WayPoint> waypoint) |
Constructor and Description |
---|
WayPoint(WayPoint wayPoint)
Copy Constructor
|
Constructor and Description |
---|
PathMoverManager(Mover mover,
java.util.LinkedList<WayPoint> waypoint)
startOnRun defaults to "false"
|
PathMoverManager(Mover mover,
java.util.List<WayPoint> waypoint,
boolean startOnRun)
Instantiate a PathMoverManager with the given Mover, WayPoints, and
whether to start immediately or wait.
|
PatrolMoverManager(Mover mover,
java.util.List<WayPoint> waypoint)
startOnRun defaults to "false"
|
PatrolMoverManager(Mover mover,
java.util.List<WayPoint> waypoint,
boolean startOnRun)
Instantiate a PatrolMoverManager with the indicated Mover instance, list
of WayPoints, and whether to start immediately.
|