diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-10-31 14:50:37 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2014-10-31 14:50:37 +0100 |
commit | 9996d4a7592a658d17f53bdf9b31b954a9a0728e (patch) | |
tree | 3f0de80442917c3d2065febf0318055870c1c904 /core | |
parent | 4b04d054dc7662c6d250230cae7c38696e69368a (diff) | |
download | RustAndDust-9996d4a7592a658d17f53bdf9b31b954a9a0728e.zip RustAndDust-9996d4a7592a658d17f53bdf9b31b954a9a0728e.tar.gz |
PossiblePaths: Pawn, Tile, Orientation are public
Diffstat (limited to 'core')
-rw-r--r-- | core/src/ch/asynk/tankontank/engine/PossiblePaths.java | 36 | ||||
-rw-r--r-- | core/src/ch/asynk/tankontank/game/Map.java | 2 |
2 files changed, 19 insertions, 19 deletions
diff --git a/core/src/ch/asynk/tankontank/engine/PossiblePaths.java b/core/src/ch/asynk/tankontank/engine/PossiblePaths.java index 8a3879c..417856e 100644 --- a/core/src/ch/asynk/tankontank/engine/PossiblePaths.java +++ b/core/src/ch/asynk/tankontank/engine/PossiblePaths.java @@ -12,9 +12,9 @@ public class PossiblePaths implements Iterable<Vector3> { private final Board board; - private Pawn pawn; - private Tile to; - private Orientation lastO; + public Pawn pawn; + public Tile to; + public Orientation orientation; private List<Tile> stack; private List<Tile> ctrlTiles; private List<ArrayList<Tile>> paths; @@ -29,19 +29,16 @@ public class PossiblePaths implements Iterable<Vector3> this.ctrlTiles = new ArrayList<Tile>(ftSize); this.paths = new LinkedList<ArrayList<Tile>>(); this.filteredPaths = new LinkedList<ArrayList<Tile>>(); - this.lastO = Orientation.KEEP; - } - - public void setLastOrientation(Orientation lastO) - { - this.lastO = lastO; + this.to = null; + this.pawn = null; + this.orientation = Orientation.KEEP; } public int init(Pawn pawn, Tile to) { + clear(); this.pawn = pawn; this.to = to; - clear(); return build(); } @@ -55,6 +52,9 @@ public class PossiblePaths implements Iterable<Vector3> this.ctrlTiles.clear(); this.filteredPaths.clear(); this.tiles.clear(); + this.to = null; + this.pawn = null; + this.orientation = Orientation.KEEP; } public int size() @@ -211,7 +211,7 @@ public class PossiblePaths implements Iterable<Vector3> steps += 1; tile = next; } - if (lastO != Orientation.fromMove(tile.col, tile.row, to.col, to.row)) + if (orientation != Orientation.fromMove(tile.col, tile.row, to.col, to.row)) steps += 2; else steps +=1; @@ -222,7 +222,7 @@ public class PossiblePaths implements Iterable<Vector3> @Override public Iterator<Vector3> iterator() { - return new Vector3Iterator(pawn, to, lastO, getPath(0)); + return new Vector3Iterator(pawn, to, orientation, getPath(0)); } private void printToErr(String what, List<ArrayList<Tile>> paths) @@ -242,18 +242,18 @@ class Vector3Iterator implements Iterator<Vector3> private Pawn pawn; private Tile to; private Orientation o; - private Orientation lastO; + private Orientation orientation; private Tile tile; private Vector2 pos = new Vector2(); private Vector3 v = new Vector3(); private int i; private List<Tile> path; - public Vector3Iterator(Pawn pawn, Tile to, Orientation lastO, List<Tile> path) + public Vector3Iterator(Pawn pawn, Tile to, Orientation orientation, List<Tile> path) { this.pawn = pawn; this.to = to; - this.lastO = lastO; + this.orientation = orientation; this.path = path; this.tile = pawn.getTile(); this.o = pawn.getOrientation(); @@ -264,7 +264,7 @@ class Vector3Iterator implements Iterator<Vector3> @Override public boolean hasNext() { - if ((tile == to) && (o == lastO)) + if ((tile == to) && (o == orientation)) return false; return true; } @@ -273,8 +273,8 @@ class Vector3Iterator implements Iterator<Vector3> public Vector3 next() { if (tile == to) { - v.z = lastO.r(); - o = lastO; + v.z = orientation.r(); + o = orientation; return v; } Tile nextTile; diff --git a/core/src/ch/asynk/tankontank/game/Map.java b/core/src/ch/asynk/tankontank/game/Map.java index 6f38022..9411741 100644 --- a/core/src/ch/asynk/tankontank/game/Map.java +++ b/core/src/ch/asynk/tankontank/game/Map.java @@ -179,7 +179,7 @@ public abstract class Map extends Board public int movePawn(Pawn pawn, Orientation o) { System.err.println(" movePawn : " + pawn.getTile() + " " + o); - possiblePaths.setLastOrientation(o); + possiblePaths.orientation = o; movePawn(pawn, possiblePaths, notifyDoneAnimation(pawn)); return startMove(pawn); |