blob: ca08e26363edac2bce53aca2badaa366d8f22d45 (
plain)
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
83
84
85
86
|
package ch.asynk.tankontank.engine;
import com.badlogic.gdx.graphics.g2d.Batch;
import com.badlogic.gdx.graphics.g2d.TextureAtlas;
import com.badlogic.gdx.graphics.g2d.TextureRegion;
import com.badlogic.gdx.graphics.glutils.ShapeRenderer;
import ch.asynk.tankontank.engine.gfx.Image;
import com.badlogic.gdx.math.Vector3;
public abstract class HeadedPawn extends Pawn
{
private Image head;
protected Orientation orientation;
public HeadedPawn(TextureAtlas atlas, String pawn, String head)
{
super(atlas, pawn);
this.head = new Image(atlas.findRegion(head));
this.orientation = Orientation.KEEP;
}
@Override
public String toString()
{
return super.toString() + " " + orientation;
}
@Override
public void dispose()
{
super.dispose();
head.dispose();
}
@Override
public float getRotation()
{
return orientation.r();
}
@Override
public Orientation getOrientation()
{
return orientation;
}
@Override
public void setPosition(float x, float y)
{
super.setPosition(x, y);
float cx = x + (getWidth() / 2f);
float cy = y + (getHeight() / 2f);
head.centerOn(cx, cy);
}
@Override
public void setRotation(float z)
{
getPosition().z = z;
head.setRotation(z);
this.orientation = Orientation.fromRotation(z);
}
@Override
public void setPosition(float x, float y, float z)
{
setPosition(x, y);
setRotation(z);
}
@Override
public void draw(Batch batch)
{
head.draw(batch);
super.draw(batch);
}
@Override
public void drawDebug(ShapeRenderer debugShapes)
{
head.drawDebug(debugShapes);
super.drawDebug(debugShapes);
}
}
|