Double ist das neue float
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@377 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
41786cb842
commit
682357b584
7 changed files with 170 additions and 148 deletions
|
@ -110,7 +110,8 @@ public class HumanTurnControl extends AbstractTurnControl {
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
|
||||||
connections.add(view.getPlayerPanel().getRedealEvent().add(new IListener() {
|
connections.add(view.getPlayerPanel().getRedealEvent()
|
||||||
|
.add(new IListener() {
|
||||||
@Override
|
@Override
|
||||||
public void handle() {
|
public void handle() {
|
||||||
endOfTurn(true);
|
endOfTurn(true);
|
||||||
|
@ -233,9 +234,10 @@ public class HumanTurnControl extends AbstractTurnControl {
|
||||||
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for (Stone s : handStones) {
|
for (Stone s : handStones) {
|
||||||
float x = Math.max(0,
|
double x = Math.max(0,
|
||||||
Math.min(13, pos.getX() - handStones.size() / 2.0f + i));
|
Math.min(13, pos.getX() - handStones.size() / 2.0f + i));
|
||||||
player.getHand().drop(s, new Position(x, (float) Math.floor(pos.getY())));
|
player.getHand().drop(s,
|
||||||
|
new Position(x, (float) Math.floor(pos.getY())));
|
||||||
selectedStones.remove(s);
|
selectedStones.remove(s);
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
@ -432,13 +434,15 @@ public class HumanTurnControl extends AbstractTurnControl {
|
||||||
table.drop(joinedSet, newPos);
|
table.drop(joinedSet, newPos);
|
||||||
} else {
|
} else {
|
||||||
StoneSet joinedSet = new StoneSet(selectedStones).join(newSet);
|
StoneSet joinedSet = new StoneSet(selectedStones).join(newSet);
|
||||||
table.drop(joinedSet,
|
table.drop(joinedSet, new Position(newPos.getX()
|
||||||
new Position(newPos.getX() - selectedStones.size(), newPos.getY()));
|
- selectedStones.size(), newPos.getY()));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
table.drop(new StoneSet(selectedStones),
|
table.drop(
|
||||||
new Position(pos.getX() + (set.getSize() - selectedStones.size())
|
new StoneSet(selectedStones),
|
||||||
* 0.5f, pos.getY()));
|
new Position(pos.getX()
|
||||||
|
+ (set.getSize() - selectedStones.size()) * 0.5f,
|
||||||
|
pos.getY()));
|
||||||
}
|
}
|
||||||
|
|
||||||
selectedStones.clear();
|
selectedStones.clear();
|
||||||
|
@ -533,7 +537,8 @@ public class HumanTurnControl extends AbstractTurnControl {
|
||||||
static class HandStonePositionComparator implements
|
static class HandStonePositionComparator implements
|
||||||
Comparator<Pair<Stone, Position>> {
|
Comparator<Pair<Stone, Position>> {
|
||||||
@Override
|
@Override
|
||||||
public int compare(Pair<Stone, Position> pair1, Pair<Stone, Position> pair2) {
|
public int compare(Pair<Stone, Position> pair1,
|
||||||
|
Pair<Stone, Position> pair2) {
|
||||||
Position pos1 = pair1.getSecond(), pos2 = pair2.getSecond();
|
Position pos1 = pair1.getSecond(), pos2 = pair2.getSecond();
|
||||||
if (pos1.getY() < pos2.getY()) {
|
if (pos1.getY() < pos2.getY()) {
|
||||||
return -1;
|
return -1;
|
||||||
|
|
|
@ -43,10 +43,10 @@ public class Hand extends StoneTray<Stone> implements IHand {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Pair<Position, Direction> fixInvalidDrop(Stone stone, Position pos,
|
protected Pair<Position, Direction> fixInvalidDrop(Stone stone,
|
||||||
Direction dir) {
|
Position pos, Direction dir) {
|
||||||
float x = pos.getX();
|
double x = pos.getX();
|
||||||
float y = pos.getY();
|
double y = pos.getY();
|
||||||
|
|
||||||
if (x >= 0 && x <= WIDTH - 1) {
|
if (x >= 0 && x <= WIDTH - 1) {
|
||||||
return null;
|
return null;
|
||||||
|
@ -55,9 +55,11 @@ public class Hand extends StoneTray<Stone> implements IHand {
|
||||||
return new Pair<Position, Direction>(new Position(0, y), RIGHT);
|
return new Pair<Position, Direction>(new Position(0, y), RIGHT);
|
||||||
} else {
|
} else {
|
||||||
if (getFreeRowSpace((int) y) == 0) {
|
if (getFreeRowSpace((int) y) == 0) {
|
||||||
return new Pair<Position, Direction>(new Position(0, y + 1), RIGHT);
|
return new Pair<Position, Direction>(new Position(0, y + 1),
|
||||||
|
RIGHT);
|
||||||
} else {
|
} else {
|
||||||
return new Pair<Position, Direction>(new Position(WIDTH - 1, y), LEFT);
|
return new Pair<Position, Direction>(
|
||||||
|
new Position(WIDTH - 1, y), LEFT);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -83,7 +85,8 @@ public class Hand extends StoneTray<Stone> implements IHand {
|
||||||
|
|
||||||
List<Stone> stones = new ArrayList<Stone>();
|
List<Stone> stones = new ArrayList<Stone>();
|
||||||
|
|
||||||
for (Iterator<Pair<Stone, Position>> iter = this.iterator(); iter.hasNext();) {
|
for (Iterator<Pair<Stone, Position>> iter = this.iterator(); iter
|
||||||
|
.hasNext();) {
|
||||||
stones.add(iter.next().getFirst());
|
stones.add(iter.next().getFirst());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,7 +104,8 @@ public class Hand extends StoneTray<Stone> implements IHand {
|
||||||
public int getIdenticalStoneCount() {
|
public int getIdenticalStoneCount() {
|
||||||
List<Stone> stones = new ArrayList<Stone>();
|
List<Stone> stones = new ArrayList<Stone>();
|
||||||
|
|
||||||
for (Iterator<Pair<Stone, Position>> iter = this.iterator(); iter.hasNext();) {
|
for (Iterator<Pair<Stone, Position>> iter = this.iterator(); iter
|
||||||
|
.hasNext();) {
|
||||||
stones.add(iter.next().getFirst());
|
stones.add(iter.next().getFirst());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ package jrummikub.model;
|
||||||
|
|
||||||
public class Position {
|
public class Position {
|
||||||
|
|
||||||
private float x;
|
private double x;
|
||||||
private float y;
|
private double y;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new position by specifying the coordinates
|
* Create a new position by specifying the coordinates
|
||||||
|
@ -18,7 +18,7 @@ public class Position {
|
||||||
* @param y
|
* @param y
|
||||||
* y coordinate
|
* y coordinate
|
||||||
*/
|
*/
|
||||||
public Position(float x, float y) {
|
public Position(double x, double y) {
|
||||||
this.x = x;
|
this.x = x;
|
||||||
this.y = y;
|
this.y = y;
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@ public class Position {
|
||||||
*
|
*
|
||||||
* @return x coordinate
|
* @return x coordinate
|
||||||
*/
|
*/
|
||||||
public float getX() {
|
public double getX() {
|
||||||
return x;
|
return x;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ public class Position {
|
||||||
*
|
*
|
||||||
* @return y coordinate
|
* @return y coordinate
|
||||||
*/
|
*/
|
||||||
public float getY() {
|
public double getY() {
|
||||||
return y;
|
return y;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,9 +55,9 @@ public class Position {
|
||||||
if (getClass() != obj.getClass())
|
if (getClass() != obj.getClass())
|
||||||
return false;
|
return false;
|
||||||
Position other = (Position) obj;
|
Position other = (Position) obj;
|
||||||
if (Float.floatToIntBits(x) != Float.floatToIntBits(other.x))
|
if (Double.doubleToLongBits(x) != Double.doubleToLongBits(other.x))
|
||||||
return false;
|
return false;
|
||||||
if (Float.floatToIntBits(y) != Float.floatToIntBits(other.y))
|
if (Double.doubleToLongBits(y) != Double.doubleToLongBits(other.y))
|
||||||
return false;
|
return false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -66,8 +66,8 @@ public class Position {
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
final int prime = 31;
|
final int prime = 31;
|
||||||
int result = 1;
|
int result = 1;
|
||||||
result = prime * result + Float.floatToIntBits(x);
|
result = (int) (prime * result + Double.doubleToLongBits(x));
|
||||||
result = prime * result + Float.floatToIntBits(y);
|
result = (int) (prime * result + Double.doubleToLongBits(y));
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -100,17 +100,17 @@ public class StoneTray<E extends Sizeable> implements IStoneTray<E> {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean lessOrEqual(float x, float y) {
|
private static boolean lessOrEqual(double d, double e) {
|
||||||
if (-0.000001f < y && y < 0.000001f) {
|
if (-0.000001 < e && e < 0.000001) {
|
||||||
return (x < y + 0.000001f);
|
return (d < e + 0.000001);
|
||||||
}
|
}
|
||||||
|
|
||||||
float q = x / y;
|
double q = d / e;
|
||||||
if (0.999999f < q && q < 1.000001f) {
|
if (0.999999 < q && q < 1.000001) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return x < y;
|
return d < e;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Tests whether two objects overlap **/
|
/** Tests whether two objects overlap **/
|
||||||
|
@ -137,11 +137,11 @@ public class StoneTray<E extends Sizeable> implements IStoneTray<E> {
|
||||||
private Direction getMoveDirection(E object, Position position,
|
private Direction getMoveDirection(E object, Position position,
|
||||||
Pair<E, Position> blocking) {
|
Pair<E, Position> blocking) {
|
||||||
boolean isVertical = getMoveOrientation(object, position, blocking);
|
boolean isVertical = getMoveOrientation(object, position, blocking);
|
||||||
float objectMidpointX = position.getX() + object.getWidth() / 2;
|
double objectMidpointX = position.getX() + object.getWidth() / 2;
|
||||||
float objectMidpointY = position.getY() + object.getHeight() / 2;
|
double objectMidpointY = position.getY() + object.getHeight() / 2;
|
||||||
float blockingMidpointX = blocking.getSecond().getX()
|
double blockingMidpointX = blocking.getSecond().getX()
|
||||||
+ blocking.getFirst().getWidth() / 2;
|
+ blocking.getFirst().getWidth() / 2;
|
||||||
float blockingMidpointY = blocking.getSecond().getY()
|
double blockingMidpointY = blocking.getSecond().getY()
|
||||||
+ blocking.getFirst().getHeight() / 2;
|
+ blocking.getFirst().getHeight() / 2;
|
||||||
if (isVertical) {
|
if (isVertical) {
|
||||||
if (objectMidpointY < blockingMidpointY) {
|
if (objectMidpointY < blockingMidpointY) {
|
||||||
|
@ -165,20 +165,20 @@ public class StoneTray<E extends Sizeable> implements IStoneTray<E> {
|
||||||
*/
|
*/
|
||||||
private boolean getMoveOrientation(E object, Position position,
|
private boolean getMoveOrientation(E object, Position position,
|
||||||
Pair<E, Position> blocking) {
|
Pair<E, Position> blocking) {
|
||||||
float objectRight = position.getX() + object.getWidth();
|
double objectRight = position.getX() + object.getWidth();
|
||||||
float blockingRight = blocking.getSecond().getX()
|
double blockingRight = blocking.getSecond().getX()
|
||||||
+ blocking.getFirst().getWidth();
|
+ blocking.getFirst().getWidth();
|
||||||
float overlapRight = Math.min(objectRight, blockingRight);
|
double overlapRight = Math.min(objectRight, blockingRight);
|
||||||
float overlapLeft = Math.max(position.getX(), blocking.getSecond()
|
double overlapLeft = Math.max(position.getX(), blocking.getSecond()
|
||||||
.getX());
|
.getX());
|
||||||
float overlapX = overlapRight - overlapLeft;
|
double overlapX = overlapRight - overlapLeft;
|
||||||
float objectBottom = position.getY() + object.getHeight();
|
double objectBottom = position.getY() + object.getHeight();
|
||||||
float blockingBottom = blocking.getSecond().getY()
|
double blockingBottom = blocking.getSecond().getY()
|
||||||
+ blocking.getFirst().getHeight();
|
+ blocking.getFirst().getHeight();
|
||||||
float overlapBottom = Math.min(objectBottom, blockingBottom);
|
double overlapBottom = Math.min(objectBottom, blockingBottom);
|
||||||
float overlapTop = Math.max(position.getY(), blocking.getSecond()
|
double overlapTop = Math.max(position.getY(), blocking.getSecond()
|
||||||
.getY());
|
.getY());
|
||||||
float overlapY = overlapBottom - overlapTop;
|
double overlapY = overlapBottom - overlapTop;
|
||||||
// vertical or horizontal Shift
|
// vertical or horizontal Shift
|
||||||
// TODO magic factor
|
// TODO magic factor
|
||||||
return overlapX > overlapY;
|
return overlapX > overlapY;
|
||||||
|
|
|
@ -174,7 +174,7 @@ abstract class AbstractStonePanel extends JPanel implements IStonePanel,
|
||||||
for (Pair<Stone, Position> entry : stones) {
|
for (Pair<Stone, Position> entry : stones) {
|
||||||
Stone stone = entry.getFirst();
|
Stone stone = entry.getFirst();
|
||||||
Position p = entry.getSecond();
|
Position p = entry.getSecond();
|
||||||
Rectangle2D rect = new Rectangle2D.Float(p.getX(), p.getY(), 1, 1);
|
Rectangle2D rect = new Rectangle2D.Double(p.getX(), p.getY(), 1, 1);
|
||||||
|
|
||||||
if (rect.contains(pos.getX(), pos.getY()))
|
if (rect.contains(pos.getX(), pos.getY()))
|
||||||
return stone;
|
return stone;
|
||||||
|
|
|
@ -23,17 +23,17 @@ import jrummikub.model.StoneColor;
|
||||||
* coordinates
|
* coordinates
|
||||||
*/
|
*/
|
||||||
class StonePainter {
|
class StonePainter {
|
||||||
private static final float ASPECT_RATIO = 0.75f;
|
private static final double ASPECT_RATIO = 0.75f;
|
||||||
private static final float DEFAULT_WIDTH = 40;
|
private static final double DEFAULT_WIDTH = 40;
|
||||||
private static final float TEXT_POS = 0.275f;
|
private static final double TEXT_POS = 0.275f;
|
||||||
private static final float FACE_WIDTH = 0.475f;
|
private static final double FACE_WIDTH = 0.475f;
|
||||||
private static final float CIRCLE_POS = 0.725f;
|
private static final double CIRCLE_POS = 0.725f;
|
||||||
private static final float CIRCLE_WIDTH = 0.45f;
|
private static final double CIRCLE_WIDTH = 0.45f;
|
||||||
|
|
||||||
private static final Color BACKGROUND_COLOR = new Color(0.9f, 0.9f, 0.6f);
|
private static final Color BACKGROUND_COLOR = new Color(0.9f, 0.9f, 0.6f);
|
||||||
|
|
||||||
private static final float BRIGHTER_SCALE = 1.15f;
|
private static final double BRIGHTER_SCALE = 1.15f;
|
||||||
private static final float HOVER_RATIO = 0.7f;
|
private static final double HOVER_RATIO = 0.7f;
|
||||||
|
|
||||||
private Map<StoneColor, Map<Integer, BufferedImage>> defaultStones;
|
private Map<StoneColor, Map<Integer, BufferedImage>> defaultStones;
|
||||||
private Map<StoneColor, Map<Integer, BufferedImage>> selectedStones;
|
private Map<StoneColor, Map<Integer, BufferedImage>> selectedStones;
|
||||||
|
@ -43,15 +43,15 @@ class StonePainter {
|
||||||
/**
|
/**
|
||||||
* The width of one pixel in the scale of 1.0
|
* The width of one pixel in the scale of 1.0
|
||||||
*/
|
*/
|
||||||
public static final float WIDTH_SCALE = 1 / DEFAULT_WIDTH;
|
public static final double WIDTH_SCALE = 1 / DEFAULT_WIDTH;
|
||||||
/**
|
/**
|
||||||
* The height of one pixel in the scale of 1.0
|
* The height of one pixel in the scale of 1.0
|
||||||
*/
|
*/
|
||||||
public static final float HEIGHT_SCALE = ASPECT_RATIO / DEFAULT_WIDTH;
|
public static final double HEIGHT_SCALE = ASPECT_RATIO / DEFAULT_WIDTH;
|
||||||
|
|
||||||
private float scale;
|
private double scale;
|
||||||
|
|
||||||
private static int even(float f) {
|
private static int even(double f) {
|
||||||
return 2 * (int) (f / 2);
|
return 2 * (int) (f / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -60,7 +60,8 @@ class StonePainter {
|
||||||
int g = (int) (color.getGreen() * BRIGHTER_SCALE);
|
int g = (int) (color.getGreen() * BRIGHTER_SCALE);
|
||||||
int b = (int) (color.getBlue() * BRIGHTER_SCALE);
|
int b = (int) (color.getBlue() * BRIGHTER_SCALE);
|
||||||
|
|
||||||
return new Color(r > 255 ? 255 : r, g > 255 ? 255 : g, b > 255 ? 255 : b);
|
return new Color(r > 255 ? 255 : r, g > 255 ? 255 : g, b > 255 ? 255
|
||||||
|
: b);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Color hover(Color color) {
|
private static Color hover(Color color) {
|
||||||
|
@ -68,7 +69,8 @@ class StonePainter {
|
||||||
int g = (int) (color.getGreen() * HOVER_RATIO + 255 * (1 - HOVER_RATIO));
|
int g = (int) (color.getGreen() * HOVER_RATIO + 255 * (1 - HOVER_RATIO));
|
||||||
int b = (int) (color.getBlue() * HOVER_RATIO + 255 * (1 - HOVER_RATIO));
|
int b = (int) (color.getBlue() * HOVER_RATIO + 255 * (1 - HOVER_RATIO));
|
||||||
|
|
||||||
return new Color(r > 255 ? 255 : r, g > 255 ? 255 : g, b > 255 ? 255 : b);
|
return new Color(r > 255 ? 255 : r, g > 255 ? 255 : g, b > 255 ? 255
|
||||||
|
: b);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Color getColor(StoneColor color) {
|
public static Color getColor(StoneColor color) {
|
||||||
|
@ -100,7 +102,7 @@ class StonePainter {
|
||||||
* @param scale
|
* @param scale
|
||||||
* the new scale
|
* the new scale
|
||||||
*/
|
*/
|
||||||
public void setScale(float scale) {
|
public void setScale(double scale) {
|
||||||
this.scale = scale;
|
this.scale = scale;
|
||||||
|
|
||||||
if (this.scale == 0) {
|
if (this.scale == 0) {
|
||||||
|
@ -118,8 +120,8 @@ class StonePainter {
|
||||||
* @return position in grid coordinates
|
* @return position in grid coordinates
|
||||||
*/
|
*/
|
||||||
public Position calculatePosition(int x, int y) {
|
public Position calculatePosition(int x, int y) {
|
||||||
float width = getStoneWidth();
|
double width = getStoneWidth();
|
||||||
float height = getStoneHeight();
|
double height = getStoneHeight();
|
||||||
|
|
||||||
return new Position(x / width, y / height);
|
return new Position(x / width, y / height);
|
||||||
}
|
}
|
||||||
|
@ -209,7 +211,8 @@ class StonePainter {
|
||||||
defaultStones.put(color, new HashMap<Integer, BufferedImage>());
|
defaultStones.put(color, new HashMap<Integer, BufferedImage>());
|
||||||
selectedStones.put(color, new HashMap<Integer, BufferedImage>());
|
selectedStones.put(color, new HashMap<Integer, BufferedImage>());
|
||||||
hoveredStones.put(color, new HashMap<Integer, BufferedImage>());
|
hoveredStones.put(color, new HashMap<Integer, BufferedImage>());
|
||||||
hoveredSelectedStones.put(color, new HashMap<Integer, BufferedImage>());
|
hoveredSelectedStones.put(color,
|
||||||
|
new HashMap<Integer, BufferedImage>());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -217,11 +220,12 @@ class StonePainter {
|
||||||
* @param scale
|
* @param scale
|
||||||
* the scaling factor for the grid coordinates
|
* the scaling factor for the grid coordinates
|
||||||
*/
|
*/
|
||||||
StonePainter(float scale) {
|
StonePainter(double scale) {
|
||||||
setScale(scale);
|
setScale(scale);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void paintStoneBackground(Graphics2D g, Rectangle r, Color background) {
|
private void paintStoneBackground(Graphics2D g, Rectangle r,
|
||||||
|
Color background) {
|
||||||
// Paint background
|
// Paint background
|
||||||
g.setColor(background);
|
g.setColor(background);
|
||||||
g.fillRect(r.x, r.y, r.width, r.height);
|
g.fillRect(r.x, r.y, r.width, r.height);
|
||||||
|
@ -322,8 +326,9 @@ class StonePainter {
|
||||||
pos + (fm.getAscent() - fm.getDescent()) / 2 + 1);
|
pos + (fm.getAscent() - fm.getDescent()) / 2 + 1);
|
||||||
}
|
}
|
||||||
g.setColor(color);
|
g.setColor(color);
|
||||||
g.drawString(value, (int) (r.x + r.width / 2 - stringRect.getWidth() / 2),
|
g.drawString(value,
|
||||||
pos + (fm.getAscent() - fm.getDescent()) / 2);
|
(int) (r.x + r.width / 2 - stringRect.getWidth() / 2), pos
|
||||||
|
+ (fm.getAscent() - fm.getDescent()) / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void paintCircle(Graphics2D g, Rectangle r, Color background) {
|
private void paintCircle(Graphics2D g, Rectangle r, Color background) {
|
||||||
|
@ -332,11 +337,12 @@ class StonePainter {
|
||||||
|
|
||||||
// Paint circle
|
// Paint circle
|
||||||
g.setColor(background.darker());
|
g.setColor(background.darker());
|
||||||
g.drawArc(r.x + r.width / 2 - size / 2, pos - size / 2, size, size, 50, 170);
|
g.drawArc(r.x + r.width / 2 - size / 2, pos - size / 2, size, size, 50,
|
||||||
|
170);
|
||||||
|
|
||||||
g.setColor(brighter(background));
|
g.setColor(brighter(background));
|
||||||
g.drawArc((int) (r.x + r.width / 2 - size / 2), pos - size / 2, size, size,
|
g.drawArc((int) (r.x + r.width / 2 - size / 2), pos - size / 2, size,
|
||||||
-130, 170);
|
size, -130, 170);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -357,15 +363,16 @@ class StonePainter {
|
||||||
boolean selected, boolean hovered) {
|
boolean selected, boolean hovered) {
|
||||||
int width = getStoneWidth();
|
int width = getStoneWidth();
|
||||||
int height = getStoneHeight();
|
int height = getStoneHeight();
|
||||||
int x = Math.round(p.getX() * width), y = Math.round(p.getY() * height);
|
int x = (int) Math.round(p.getX() * width), y = (int) Math.round(p
|
||||||
|
.getY() * height);
|
||||||
|
|
||||||
if (stone.isJoker()) {
|
if (stone.isJoker()) {
|
||||||
g.drawImage(getStoneImage(stone.getColor(), 0, selected, hovered), x, y,
|
g.drawImage(getStoneImage(stone.getColor(), 0, selected, hovered),
|
||||||
null);
|
x, y, null);
|
||||||
} else {
|
} else {
|
||||||
g.drawImage(
|
g.drawImage(
|
||||||
getStoneImage(stone.getColor(), stone.getValue(), selected, hovered),
|
getStoneImage(stone.getColor(), stone.getValue(), selected,
|
||||||
x, y, null);
|
hovered), x, y, null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,17 +39,18 @@ class TablePanel extends AbstractStonePanel implements ITablePanel {
|
||||||
private final static ImageIcon BRIGHT_BACKGROUND = new ImageIcon(
|
private final static ImageIcon BRIGHT_BACKGROUND = new ImageIcon(
|
||||||
HandPanel.class.getResource("/jrummikub/resource/bright_felt.png"));
|
HandPanel.class.getResource("/jrummikub/resource/bright_felt.png"));
|
||||||
|
|
||||||
private final static float MIN_VISIBLE_WIDTH = 15;
|
private final static double MIN_VISIBLE_WIDTH = 15;
|
||||||
private final static float MIN_VISIBLE_HEIGHT = 7.5f;
|
private final static double MIN_VISIBLE_HEIGHT = 7.5f;
|
||||||
private final static float HORIZONTAL_MARGIN = 1;
|
private final static double HORIZONTAL_MARGIN = 1;
|
||||||
private final static float VERTICAL_MARGIN = 0.7f;
|
private final static double VERTICAL_MARGIN = 0.7f;
|
||||||
private final static float CONNECTOR_WIDTH = 0.25f;
|
private final static double CONNECTOR_WIDTH = 0.25f;
|
||||||
private final float COLLECTION_RATIO = 0.12f;
|
private final double COLLECTION_RATIO = 0.12f;
|
||||||
private final int COLLECTION_GAP = 5;
|
private final int COLLECTION_GAP = 5;
|
||||||
|
|
||||||
private StoneCollectionPanel stoneCollection;
|
private StoneCollectionPanel stoneCollection;
|
||||||
|
|
||||||
private Iterable<Pair<StoneSet, Position>> stoneSets = Collections.emptySet();
|
private Iterable<Pair<StoneSet, Position>> stoneSets = Collections
|
||||||
|
.emptySet();
|
||||||
private Collection<Stone> selectedStones = Collections.emptyList();
|
private Collection<Stone> selectedStones = Collections.emptyList();
|
||||||
|
|
||||||
private Event1<StoneSet> leftConnectorClickEvent = new Event1<StoneSet>();
|
private Event1<StoneSet> leftConnectorClickEvent = new Event1<StoneSet>();
|
||||||
|
@ -73,7 +74,7 @@ class TablePanel extends AbstractStonePanel implements ITablePanel {
|
||||||
List<Pair<Stone, Position>> stones = new ArrayList<Pair<Stone, Position>>();
|
List<Pair<Stone, Position>> stones = new ArrayList<Pair<Stone, Position>>();
|
||||||
|
|
||||||
for (Pair<StoneSet, Position> entry : stoneSets) {
|
for (Pair<StoneSet, Position> entry : stoneSets) {
|
||||||
float x = entry.getSecond().getX(), y = entry.getSecond().getY();
|
double x = entry.getSecond().getX(), y = entry.getSecond().getY();
|
||||||
|
|
||||||
for (Stone stone : entry.getFirst()) {
|
for (Stone stone : entry.getFirst()) {
|
||||||
stones.add(new Pair<Stone, Position>(stone, new Position(x, y)));
|
stones.add(new Pair<Stone, Position>(stone, new Position(x, y)));
|
||||||
|
@ -134,8 +135,8 @@ class TablePanel extends AbstractStonePanel implements ITablePanel {
|
||||||
}
|
}
|
||||||
|
|
||||||
private Rectangle2D calculateTableExtent() {
|
private Rectangle2D calculateTableExtent() {
|
||||||
float minx = -MIN_VISIBLE_WIDTH / 2, maxx = MIN_VISIBLE_WIDTH / 2;
|
double minx = -MIN_VISIBLE_WIDTH / 2, maxx = MIN_VISIBLE_WIDTH / 2;
|
||||||
float miny = -MIN_VISIBLE_HEIGHT / 2, maxy = MIN_VISIBLE_HEIGHT / 2;
|
double miny = -MIN_VISIBLE_HEIGHT / 2, maxy = MIN_VISIBLE_HEIGHT / 2;
|
||||||
|
|
||||||
for (Pair<StoneSet, Position> entry : stoneSets) {
|
for (Pair<StoneSet, Position> entry : stoneSets) {
|
||||||
Position p = entry.getSecond();
|
Position p = entry.getSecond();
|
||||||
|
@ -154,20 +155,20 @@ class TablePanel extends AbstractStonePanel implements ITablePanel {
|
||||||
maxy = p.getY() + 1;
|
maxy = p.getY() + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return new Rectangle2D.Float(minx - HORIZONTAL_MARGIN, miny
|
return new Rectangle2D.Double(minx - HORIZONTAL_MARGIN, miny
|
||||||
- VERTICAL_MARGIN, maxx - minx + 2 * HORIZONTAL_MARGIN, maxy - miny + 2
|
- VERTICAL_MARGIN, maxx - minx + 2 * HORIZONTAL_MARGIN, maxy
|
||||||
* VERTICAL_MARGIN);
|
- miny + 2 * VERTICAL_MARGIN);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void rescale() {
|
private void rescale() {
|
||||||
Insets insets = getInsets();
|
Insets insets = getInsets();
|
||||||
int x = insets.left, y = insets.top, width = getWidth() - insets.left
|
int x = insets.left, y = insets.top, width = getWidth() - insets.left
|
||||||
- insets.right, height = getHeight() - insets.top - insets.bottom;
|
- insets.right, height = getHeight() - insets.top
|
||||||
|
- insets.bottom;
|
||||||
|
|
||||||
int collectionHeight = (int) (height * COLLECTION_RATIO);
|
int collectionHeight = (int) (height * COLLECTION_RATIO);
|
||||||
stoneCollection
|
stoneCollection.setBounds(x, y + height - collectionHeight
|
||||||
.setBounds(x, y + height - collectionHeight - COLLECTION_GAP, width,
|
- COLLECTION_GAP, width, collectionHeight);
|
||||||
collectionHeight);
|
|
||||||
|
|
||||||
setScale();
|
setScale();
|
||||||
|
|
||||||
|
@ -180,10 +181,10 @@ class TablePanel extends AbstractStonePanel implements ITablePanel {
|
||||||
- insets.top - insets.bottom;
|
- insets.top - insets.bottom;
|
||||||
Rectangle2D extent = calculateTableExtent();
|
Rectangle2D extent = calculateTableExtent();
|
||||||
|
|
||||||
float widthScale = width / (float) extent.getWidth()
|
double widthScale = width / (double) extent.getWidth()
|
||||||
* StonePainter.WIDTH_SCALE;
|
* StonePainter.WIDTH_SCALE;
|
||||||
float heightScale = height * (1 - COLLECTION_RATIO)
|
double heightScale = height * (1 - COLLECTION_RATIO)
|
||||||
/ (float) extent.getHeight() * StonePainter.HEIGHT_SCALE;
|
/ (double) extent.getHeight() * StonePainter.HEIGHT_SCALE;
|
||||||
|
|
||||||
getStonePainter().setScale(Math.min(widthScale, heightScale));
|
getStonePainter().setScale(Math.min(widthScale, heightScale));
|
||||||
}
|
}
|
||||||
|
@ -193,10 +194,10 @@ class TablePanel extends AbstractStonePanel implements ITablePanel {
|
||||||
for (Pair<StoneSet, Position> entry : stoneSets) {
|
for (Pair<StoneSet, Position> entry : stoneSets) {
|
||||||
Position p = entry.getSecond();
|
Position p = entry.getSecond();
|
||||||
StoneSet stoneSet = entry.getFirst();
|
StoneSet stoneSet = entry.getFirst();
|
||||||
float x = p.getX(), y = p.getY();
|
double x = p.getX(), y = p.getY();
|
||||||
|
|
||||||
// left connector
|
// left connector
|
||||||
Rectangle2D rect = new Rectangle2D.Float(x - CONNECTOR_WIDTH, y,
|
Rectangle2D rect = new Rectangle2D.Double(x - CONNECTOR_WIDTH, y,
|
||||||
CONNECTOR_WIDTH, 1);
|
CONNECTOR_WIDTH, 1);
|
||||||
if (rect.contains(pos.getX(), pos.getY())) {
|
if (rect.contains(pos.getX(), pos.getY())) {
|
||||||
leftConnectorClickEvent.emit(stoneSet);
|
leftConnectorClickEvent.emit(stoneSet);
|
||||||
|
@ -204,7 +205,8 @@ class TablePanel extends AbstractStonePanel implements ITablePanel {
|
||||||
}
|
}
|
||||||
|
|
||||||
// right connector
|
// right connector
|
||||||
rect = new Rectangle2D.Float(x + stoneSet.getSize(), y, CONNECTOR_WIDTH, 1);
|
rect = new Rectangle2D.Double(x + stoneSet.getSize(), y,
|
||||||
|
CONNECTOR_WIDTH, 1);
|
||||||
if (rect.contains(pos.getX(), pos.getY())) {
|
if (rect.contains(pos.getX(), pos.getY())) {
|
||||||
rightConnectorClickEvent.emit(stoneSet);
|
rightConnectorClickEvent.emit(stoneSet);
|
||||||
return true;
|
return true;
|
||||||
|
@ -224,10 +226,10 @@ class TablePanel extends AbstractStonePanel implements ITablePanel {
|
||||||
for (Pair<StoneSet, Position> entry : stoneSets) {
|
for (Pair<StoneSet, Position> entry : stoneSets) {
|
||||||
Position p = entry.getSecond();
|
Position p = entry.getSecond();
|
||||||
StoneSet stoneSet = entry.getFirst();
|
StoneSet stoneSet = entry.getFirst();
|
||||||
float x = p.getX(), y = p.getY();
|
double x = p.getX(), y = p.getY();
|
||||||
|
|
||||||
// left connector
|
// left connector
|
||||||
Rectangle2D rect = new Rectangle2D.Float(x - CONNECTOR_WIDTH, y,
|
Rectangle2D rect = new Rectangle2D.Double(x - CONNECTOR_WIDTH, y,
|
||||||
CONNECTOR_WIDTH, 1);
|
CONNECTOR_WIDTH, 1);
|
||||||
if (rect.contains(pos.getX(), pos.getY())) {
|
if (rect.contains(pos.getX(), pos.getY())) {
|
||||||
leftHoveredConnector = stoneSet;
|
leftHoveredConnector = stoneSet;
|
||||||
|
@ -235,7 +237,8 @@ class TablePanel extends AbstractStonePanel implements ITablePanel {
|
||||||
}
|
}
|
||||||
|
|
||||||
// right connector
|
// right connector
|
||||||
rect = new Rectangle2D.Float(x + stoneSet.getSize(), y, CONNECTOR_WIDTH, 1);
|
rect = new Rectangle2D.Double(x + stoneSet.getSize(), y,
|
||||||
|
CONNECTOR_WIDTH, 1);
|
||||||
if (rect.contains(pos.getX(), pos.getY())) {
|
if (rect.contains(pos.getX(), pos.getY())) {
|
||||||
rightHoveredConnector = stoneSet;
|
rightHoveredConnector = stoneSet;
|
||||||
break;
|
break;
|
||||||
|
@ -257,15 +260,15 @@ class TablePanel extends AbstractStonePanel implements ITablePanel {
|
||||||
.getStoneHeight();
|
.getStoneHeight();
|
||||||
Rectangle2D extent = calculateTableExtent();
|
Rectangle2D extent = calculateTableExtent();
|
||||||
|
|
||||||
return new Pair<Integer, Integer>((int) (width / 2 - extent.getCenterX()
|
return new Pair<Integer, Integer>(
|
||||||
* stoneWidth),
|
(int) (width / 2 - extent.getCenterX() * stoneWidth),
|
||||||
(int) ((height * (1 - COLLECTION_RATIO)) / 2 - extent.getCenterY()
|
(int) ((height * (1 - COLLECTION_RATIO)) / 2 - extent
|
||||||
* stoneHeight));
|
.getCenterY() * stoneHeight));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void paintStoneSet(Graphics2D g, StoneSet stoneSet, Position pos,
|
private void paintStoneSet(Graphics2D g, StoneSet stoneSet, Position pos,
|
||||||
Area connectorArea, Area hoveredConnectorArea) {
|
Area connectorArea, Area hoveredConnectorArea) {
|
||||||
float x = pos.getX();
|
double x = pos.getX();
|
||||||
int width = getStonePainter().getStoneWidth(), height = getStonePainter()
|
int width = getStonePainter().getStoneWidth(), height = getStonePainter()
|
||||||
.getStoneHeight();
|
.getStoneHeight();
|
||||||
Area leftConnectorArea = (stoneSet == leftHoveredConnector ? hoveredConnectorArea
|
Area leftConnectorArea = (stoneSet == leftHoveredConnector ? hoveredConnectorArea
|
||||||
|
@ -275,9 +278,10 @@ class TablePanel extends AbstractStonePanel implements ITablePanel {
|
||||||
|
|
||||||
// Left connector
|
// Left connector
|
||||||
|
|
||||||
leftConnectorArea.add(new Area(new Rectangle2D.Float(Math.round(x * width)
|
leftConnectorArea.add(new Area(new Rectangle2D.Double(Math.round(x
|
||||||
- (int) width * CONNECTOR_WIDTH + 1, Math.round(pos.getY() * height),
|
* width)
|
||||||
(int) (width * CONNECTOR_WIDTH), height)));
|
- (int) width * CONNECTOR_WIDTH + 1, Math.round(pos.getY()
|
||||||
|
* height), (int) (width * CONNECTOR_WIDTH), height)));
|
||||||
|
|
||||||
for (Stone stone : stoneSet) {
|
for (Stone stone : stoneSet) {
|
||||||
getStonePainter().paintStone(g, stone, new Position(x, pos.getY()),
|
getStonePainter().paintStone(g, stone, new Position(x, pos.getY()),
|
||||||
|
@ -286,8 +290,8 @@ class TablePanel extends AbstractStonePanel implements ITablePanel {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Right connector
|
// Right connector
|
||||||
rightConnectorArea.add(new Area(new Rectangle2D.Float(
|
rightConnectorArea.add(new Area(new Rectangle2D.Double(Math.round(x
|
||||||
Math.round(x * width), Math.round(pos.getY() * height),
|
* width), Math.round(pos.getY() * height),
|
||||||
(int) (width * CONNECTOR_WIDTH), height)));
|
(int) (width * CONNECTOR_WIDTH), height)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -311,15 +315,16 @@ class TablePanel extends AbstractStonePanel implements ITablePanel {
|
||||||
Area hoveredConnectorArea = new Area();
|
Area hoveredConnectorArea = new Area();
|
||||||
|
|
||||||
for (Pair<StoneSet, Position> entry : stoneSets) {
|
for (Pair<StoneSet, Position> entry : stoneSets) {
|
||||||
paintStoneSet(g, entry.getFirst(), entry.getSecond(), connectorArea,
|
paintStoneSet(g, entry.getFirst(), entry.getSecond(),
|
||||||
hoveredConnectorArea);
|
connectorArea, hoveredConnectorArea);
|
||||||
}
|
}
|
||||||
|
|
||||||
g.setClip(connectorArea);
|
g.setClip(connectorArea);
|
||||||
g.setTransform(oldTransform);
|
g.setTransform(oldTransform);
|
||||||
|
|
||||||
for (int x = 0; x < getWidth(); x += DARK_BACKGROUND.getIconWidth()) {
|
for (int x = 0; x < getWidth(); x += DARK_BACKGROUND.getIconWidth()) {
|
||||||
for (int y = 0; y < getHeight(); y += DARK_BACKGROUND.getIconHeight()) {
|
for (int y = 0; y < getHeight(); y += DARK_BACKGROUND
|
||||||
|
.getIconHeight()) {
|
||||||
DARK_BACKGROUND.paintIcon(this, g, x, y);
|
DARK_BACKGROUND.paintIcon(this, g, x, y);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -335,7 +340,8 @@ class TablePanel extends AbstractStonePanel implements ITablePanel {
|
||||||
g.setTransform(oldTransform);
|
g.setTransform(oldTransform);
|
||||||
|
|
||||||
for (int x = 0; x < getWidth(); x += BRIGHT_BACKGROUND.getIconWidth()) {
|
for (int x = 0; x < getWidth(); x += BRIGHT_BACKGROUND.getIconWidth()) {
|
||||||
for (int y = 0; y < getHeight(); y += BRIGHT_BACKGROUND.getIconHeight()) {
|
for (int y = 0; y < getHeight(); y += BRIGHT_BACKGROUND
|
||||||
|
.getIconHeight()) {
|
||||||
BRIGHT_BACKGROUND.paintIcon(this, g, x, y);
|
BRIGHT_BACKGROUND.paintIcon(this, g, x, y);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue