1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
package ch.asynk.tankontank.engine;
import java.util.ArrayDeque;
import com.badlogic.gdx.utils.Disposable;
import com.badlogic.gdx.graphics.g2d.TextureRegion;
import com.badlogic.gdx.math.Vector3;
import ch.asynk.tankontank.engine.gfx.Image;
import ch.asynk.tankontank.engine.gfx.animations.MoveToAnimation;
import ch.asynk.tankontank.engine.gfx.animations.RunnableAnimation;
import ch.asynk.tankontank.engine.gfx.animations.AnimationSequence;
public abstract class Pawn extends Image implements Disposable
{
public enum Orientation
{
KEEP(0),
NORTH_WEST(30),
WEST(90),
SOUTH_WEST(150),
NORTH_EAST (-30),
EAST(-90),
SOUTH_EAST(-150);
public final int v;
Orientation(int v) { this.v = v; }
}
private static final float MOVE_TIME = 0.3f;
private ArrayDeque<Vector3> path = new ArrayDeque<Vector3>();
public Pawn(TextureRegion region)
{
super(region);
}
public Vector3 getLastPosition()
{
if ((path == null) || (path.size() == 0)) return null;
return path.getFirst();
}
public void moveDone()
{
Vector3 v = path.pop();
path.clear();
path.push(v);
}
public void pushMove(float x, float y, Pawn.Orientation o)
{
float r = ((o == Pawn.Orientation.KEEP) ? getRotation() : o.v);
setPosition(x, y, r);
Vector3 v = new Vector3(x, y, r);
if ((path.size() == 0) || (!v.equals(path.getFirst())))
path.push(new Vector3(x, y, r));
}
public AnimationSequence getResetMovesAnimation()
{
final Vector3 finalPos = path.getLast();
AnimationSequence seq = AnimationSequence.get(path.size() + 1);
while(path.size() != 0) {
seq.addAnimation(MoveToAnimation.get(this, path.pop(), MOVE_TIME));
}
seq.addAnimation(RunnableAnimation.get(this, new Runnable() {
@Override
public void run() {
path.push(finalPos);
}
}));
return seq;
}
}
|