summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/tankontank/engine/HeadedPawn.java
blob: 36eb2a2d6d8ea18339cf0909be1e578472cce0fd (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
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;

    public HeadedPawn(TextureRegion region, TextureRegion head, TextureAtlas atlas)
    {
        super(region, atlas);
        this.head = new Image(head);
    }

    @Override
    public void dispose()
    {
        super.dispose();
        head.dispose();
    }

    @Override
    public float getRotation()
    {
        return head.getRotation();
    }

    @Override
    public void translate(float dx, float dy)
    {
        super.translate(dx, dy);
        head.translate(dx, dy);
    }

    @Override
    public void setPosition(float x, float y, float z)
    {
        super.setPosition(x, y);
        float cx = x + (getWidth() / 2f) - (head.getWidth() / 2f);
        float cy = y + (getHeight() / 2f) - (head.getHeight() / 2f);
        head.setPosition(cx, cy);
        head.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);
    }
}