diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2015-01-18 17:31:12 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2015-01-18 17:31:12 +0100 |
commit | 28ebacf54e013690337a754522616ca909a440f5 (patch) | |
tree | 9d2dd65df76e00c56baa95a5f03b3909e0e2db62 /core | |
parent | 024055e8ab018868fc4d4f91517a695f6d5faf58 (diff) | |
download | RustAndDust-28ebacf54e013690337a754522616ca909a440f5.zip RustAndDust-28ebacf54e013690337a754522616ca909a440f5.tar.gz |
add engine/Move extends Path
Diffstat (limited to 'core')
-rw-r--r-- | core/src/ch/asynk/tankontank/engine/Move.java | 143 | ||||
-rw-r--r-- | core/src/ch/asynk/tankontank/engine/Path.java | 2 |
2 files changed, 144 insertions, 1 deletions
diff --git a/core/src/ch/asynk/tankontank/engine/Move.java b/core/src/ch/asynk/tankontank/engine/Move.java new file mode 100644 index 0000000..b12b8da --- /dev/null +++ b/core/src/ch/asynk/tankontank/engine/Move.java @@ -0,0 +1,143 @@ +package ch.asynk.tankontank.engine; + +import java.util.Iterator; + +import com.badlogic.gdx.utils.Pool; +import com.badlogic.gdx.math.Vector3; + +public class Move extends Path implements Iterable<Vector3> +{ + public enum MoveType + { + REGULAR, + SET, + ENTER, + EXIT; + } + + private static final Pool<Move> movePool = new Pool<Move>() { + @Override + protected Move newObject() { + return new Move(); + } + }; + + public static Move get(Pawn pawn, Tile from, Tile to, Orientation orientation, Path path) + { + Move m = movePool.obtain(); + m.pawn = pawn; + m.from = from; + m.to = to; + m.orientation = orientation; + if (path != null) { + m.init(path.tiles.size()); + m.cost = path.cost; + m.roadMarch = path.roadMarch; + for (Tile tile : path.tiles) + m.tiles.add(tile); + } else { + m.init(0); + } + + return m; + } + + public Pawn pawn; + public Tile from; + public Tile to; + public Orientation orientation; + public MoveType type; + + public Move() + { + super(); + this.pawn = null; + this.from = null; + this.to = null; + this.orientation = Orientation.KEEP; + this.type = MoveType.REGULAR; + } + + @Override + public void reset() + { + pawn = null; + from = null; + to = null; + orientation = Orientation.KEEP; + type = MoveType.REGULAR; + super.reset(); + } + + @Override + public void dispose() + { + tiles.clear(); + movePool.free(this); + } + + public boolean isEntry() + { + return (type == MoveType.ENTER); + } + + public boolean isComplete() + { + return (type != MoveType.ENTER); + } + + public void setSet() + { + type = MoveType.SET; + cost = 0; + } + + public void setEnter() + { + type = MoveType.ENTER; + cost = to.costFrom(pawn, orientation); + } + + public void setExit() + { + type = MoveType.EXIT; + } + + public int steps() + { + int steps = 0; + + Tile tile = from; + Orientation o = pawn.getOrientation(); + for (Tile next : tiles) { + Orientation nextO = Orientation.fromMove(tile.col, tile.row, next.col, next.row); + if (nextO != o) { + steps += 2; + o = nextO; + } else + steps += 1; + tile = next; + } + if (orientation != Orientation.fromMove(tile.col, tile.row, to.col, to.row)) + steps += 2; + else + steps +=1; + + return steps; + } + + @Override + public String toString() + { + if (from == null) + return String.format("%s %s c:%d", to.toShort(), orientation, cost); + else + return String.format("%s->%s %s c:%d", from.toShort(), to.toShort(), orientation, cost); + } + + @Override + public Iterator<Vector3> iterator() + { + return new PathIterator(pawn, from, to, orientation, tiles); + } +} diff --git a/core/src/ch/asynk/tankontank/engine/Path.java b/core/src/ch/asynk/tankontank/engine/Path.java index 7c6a75f..393a0a5 100644 --- a/core/src/ch/asynk/tankontank/engine/Path.java +++ b/core/src/ch/asynk/tankontank/engine/Path.java @@ -18,7 +18,7 @@ public class Path implements Disposable, Pool.Poolable this.tiles = null; } - private void init(int size) + protected void init(int size) { if (tiles == null) tiles = new ArrayList<Tile>(size); |