diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-12-10 17:23:19 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2014-12-10 17:23:19 +0100 |
commit | e7feaf4125bfe6b3a0c0319011dab9ee534ad65f (patch) | |
tree | e54381a5a92b3b03a849dc948463e6259dd1659e | |
parent | 8ac53a0e9561258b093270d3a9bdaa3d28fff604 (diff) | |
download | RustAndDust-e7feaf4125bfe6b3a0c0319011dab9ee534ad65f.zip RustAndDust-e7feaf4125bfe6b3a0c0319011dab9ee534ad65f.tar.gz |
Statistics: use typewriter bg, own padding
-rw-r--r-- | core/src/ch/asynk/tankontank/game/hud/Statistics.java | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/core/src/ch/asynk/tankontank/game/hud/Statistics.java b/core/src/ch/asynk/tankontank/game/hud/Statistics.java index 71e3b0d..19b5018 100644 --- a/core/src/ch/asynk/tankontank/game/hud/Statistics.java +++ b/core/src/ch/asynk/tankontank/game/hud/Statistics.java @@ -7,25 +7,28 @@ import com.badlogic.gdx.graphics.glutils.ShapeRenderer; import ch.asynk.tankontank.game.Player; -public class Statistics extends Bg +public class Statistics extends Patch { - public float padding; + public static int OK_OFFSET = 10; + public static int PADDING = 20; + public static int VSPACING = 10; + public static int HSPACING = 10; + private Label title; private Label header; private Label stats1; private Label stats2; private Bg okBtn; - public Statistics(BitmapFont font, TextureAtlas atlas, float padding) + public Statistics(BitmapFont font, TextureAtlas atlas) { - super(atlas.findRegion("disabled")); + super(atlas.createPatch("typewriter")); this.title = new Label(font); this.header = new Label(font); this.stats1 = new Label(font); this.stats2 = new Label(font); this.okBtn = new Bg(atlas.findRegion("ok")); this.visible = false; - this.padding = padding; this.header.write("\nActions\nUnits Left\nCasualties\nWon Attacks\nLost Attacks"); } @@ -35,22 +38,22 @@ public class Statistics extends Bg stats1.write(winner.getStats()); stats2.write(loser.getStats()); - float height = (title.getHeight() + header.getHeight() + okBtn.getHeight() + (4 * padding)); - float width = (header.getWidth() + stats1.getWidth() + stats2.getWidth() + (6 * padding)); - float w2 = (title.getWidth() + (2 * padding)); + float height = (title.getHeight() + header.getHeight() + (2 * PADDING) + (1 * VSPACING)); + float width = (header.getWidth() + stats1.getWidth() + stats2.getWidth() + (2 * PADDING) + (4 * HSPACING)); + float w2 = (title.getWidth() + (2 * PADDING)); if (w2 > width) width = w2; float x = position.getX(width); float y = position.getY(height); set(x, y, width, height); - y += padding; - okBtn.setPosition((x + width - okBtn.getWidth() - padding), y); - x += padding; - y += (okBtn.getHeight() + padding); + okBtn.setPosition((x + width - okBtn.getWidth() + OK_OFFSET), (y - OK_OFFSET)); + + y += PADDING; + x += PADDING; header.setPosition(x, y); - stats1.setPosition((x + header.getWidth() + (2 * padding)), y); - stats2.setPosition((stats1.getX() + stats1.getWidth() + (2 * padding)), y); - y += (header.getHeight() + padding); + stats1.setPosition((x + header.getWidth() + (2 * HSPACING)), y); + stats2.setPosition((stats1.getX() + stats1.getWidth() + (2 * HSPACING)), y); + y += (header.getHeight() + VSPACING); title.setPosition(x, y); visible = true; } |