From 32d07341a5399f83968c698bb0fac3d8349caf57 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Tue, 10 May 2011 05:53:30 +0200 Subject: Define hand size constants in model git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@225 72836036-5685-4462-b002-a69064685172 --- src/jrummikub/model/Hand.java | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'src/jrummikub/model') diff --git a/src/jrummikub/model/Hand.java b/src/jrummikub/model/Hand.java index 8864a17..62531f4 100644 --- a/src/jrummikub/model/Hand.java +++ b/src/jrummikub/model/Hand.java @@ -6,6 +6,14 @@ import static jrummikub.model.StoneTray.Direction.*; /** Class managing a {@link Player}'s {@link Stone}s */ public class Hand extends StoneTray implements IHand { + /** + * The width of the hand + */ + public final static int WIDTH = 14; + /** + * The height of the hand + */ + public final static int HEIGHT = 2; @Override protected Pair fixInvalidDrop(Stone stone, Position pos, @@ -13,20 +21,20 @@ public class Hand extends StoneTray implements IHand { float x = pos.getX(); float y = pos.getY(); - if (x >= 0 && x <= 13) { + if (x >= 0 && x <= WIDTH - 1) { return null; } if (x < 0) { if (y == 0) { return new Pair(new Position(0, 0), RIGHT); } else { - return new Pair(new Position(13, 0), LEFT); + return new Pair(new Position(WIDTH - 1, 0), LEFT); } } else { if (y == 0) { return new Pair(new Position(0, 1), RIGHT); } else { - return new Pair(new Position(13, 1), LEFT); + return new Pair(new Position(WIDTH - 1, 1), LEFT); } } } -- cgit v1.2.3