From 344d63598afa6aea19e1975d4253bb11dfef6182 Mon Sep 17 00:00:00 2001 From: Bennet Gerlach Date: Tue, 3 May 2011 20:39:21 +0200 Subject: Added connector click events git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@94 72836036-5685-4462-b002-a69064685172 --- src/jrummikub/JRummikub.java | 17 ++ src/jrummikub/model/StoneColor.java | 2 +- src/jrummikub/view/ITablePanel.java | 95 +++--- src/jrummikub/view/impl/AbstractStonePanel.java | 234 ++++++++------- src/jrummikub/view/impl/StoneCollectionPanel.java | 132 ++++---- src/jrummikub/view/impl/TablePanel.java | 350 ++++++++++++---------- 6 files changed, 457 insertions(+), 373 deletions(-) diff --git a/src/jrummikub/JRummikub.java b/src/jrummikub/JRummikub.java index e02008e..1c2ef63 100644 --- a/src/jrummikub/JRummikub.java +++ b/src/jrummikub/JRummikub.java @@ -139,6 +139,22 @@ public class JRummikub { } }); + + view.getTablePanel().getLeftConnectorClickEvent() + .add(new IListener1() { + @Override + public void handle(StoneSet s) { + System.out.println("Left connector clicked on " + s); + } + }); + + view.getTablePanel().getRightConnectorClickEvent() + .add(new IListener1() { + @Override + public void handle(StoneSet s) { + System.out.println("Right connector clicked on " + s); + } + }); view.getTablePanel().getStoneCollectionPanel().getStoneClickEvent() .add(new IListener2() { @@ -149,6 +165,7 @@ public class JRummikub { } }); + view.getTablePanel().getStoneCollectionPanel().getRangeClickEvent() .add(new IListener2() { @Override diff --git a/src/jrummikub/model/StoneColor.java b/src/jrummikub/model/StoneColor.java index a08b38c..23f66a0 100644 --- a/src/jrummikub/model/StoneColor.java +++ b/src/jrummikub/model/StoneColor.java @@ -1,6 +1,6 @@ package jrummikub.model; -/** Class specifing possible StoneColors */ +/** Class specifying possible StoneColors */ public enum StoneColor { BLACK, ORANGE, BLUE, RED } diff --git a/src/jrummikub/view/ITablePanel.java b/src/jrummikub/view/ITablePanel.java index ec7f3ea..f17d1fe 100644 --- a/src/jrummikub/view/ITablePanel.java +++ b/src/jrummikub/view/ITablePanel.java @@ -4,48 +4,65 @@ import java.util.Map; import jrummikub.model.Position; import jrummikub.model.StoneSet; +import jrummikub.util.Event1; /** * The view of the table, where the stone sets lie */ public interface ITablePanel extends IStonePanel, IClickable { - /** - * Sets the player name on the left label - * - * @param playerName - * the name to set - */ - public void setLeftPlayerName(String playerName); - - /** - * Sets the player name on the top label - * - * @param playerName - * the name to set - */ - public void setTopPlayerName(String playerName); - - /** - * Sets the player name on the right label - * - * @param playerName - * the name to set - */ - public void setRightPlayerName(String playerName); - - /** - * Sets the stone sets lying on the table - * - * @param stoneSets - * set stone sets on the table - */ - public void setStoneSets(Map stoneSets); - - /** - * Returns the stone collection (the panel showing the stones currently - * selected) - * - * @return the stone collection - */ - IStoneCollectionPanel getStoneCollectionPanel(); + /** + * Sets the player name on the left label + * + * @param playerName + * the name to set + */ + public void setLeftPlayerName(String playerName); + + /** + * Sets the player name on the top label + * + * @param playerName + * the name to set + */ + public void setTopPlayerName(String playerName); + + /** + * Sets the player name on the right label + * + * @param playerName + * the name to set + */ + public void setRightPlayerName(String playerName); + + /** + * Sets the stone sets lying on the table + * + * @param stoneSets + * set stone sets on the table + */ + public void setStoneSets(Map stoneSets); + + /** + * Returns the stone collection (the panel showing the stones currently + * selected) + * + * @return the stone collection + */ + public IStoneCollectionPanel getStoneCollectionPanel(); + + /** + * the left connector click event is emitted when the player clicks on a left + * connector of a stone set on the table . + * + * @return the event + */ + public Event1 getLeftConnectorClickEvent(); + + /** + * the right connector click event is emitted when the player clicks on a + * right connector of a stone set on the table . + * + * @return the event + */ + public Event1 getRightConnectorClickEvent(); } diff --git a/src/jrummikub/view/impl/AbstractStonePanel.java b/src/jrummikub/view/impl/AbstractStonePanel.java index a19ea1f..855b40a 100644 --- a/src/jrummikub/view/impl/AbstractStonePanel.java +++ b/src/jrummikub/view/impl/AbstractStonePanel.java @@ -21,117 +21,127 @@ import jrummikub.view.IStonePanel; */ @SuppressWarnings("serial") abstract class AbstractStonePanel extends JPanel implements IStonePanel, - IClickable { - private StonePainter stonePainter; - - private Event1 clickEvent = new Event1(); - private Event2 stoneClickEvent = new Event2(); - private Event2 rangeClickEvent = new Event2(); - private Event2 setClickEvent = new Event2(); - - private Map stones = Collections.emptyMap(); - - /** - * @return the stone painter - */ - protected StonePainter getStonePainter() { - return stonePainter; - } - - /** - * Create a new StonePanel with default scale factor - */ - public AbstractStonePanel() { - this(1); - } - - /** - * Create a new StonePanel with a given scale factor - * - * @param scale - * the grid scale - */ - public AbstractStonePanel(float scale) { - super(true); // Set double buffered - - stonePainter = new StonePainter(scale); - - addMouseListener(new MouseAdapter() { - @Override - public void mouseClicked(MouseEvent e) { - Insets insets = getInsets(); - Position pos = stonePainter.calculatePosition(e.getX() - insets.left, - e.getY() - insets.top); - Stone stone = getStoneAt(pos); - - if (stone == null) { - clickEvent.emit(pos); - return; - } - - Event2 event = stoneClickEvent; - - if (e.isShiftDown()) - event = rangeClickEvent; - else if (e.getClickCount() >= 2) - event = setClickEvent; - - event.emit(stone, e.isControlDown()); - } - }); - } - - private Stone getStoneAt(Position pos) { - for (Map.Entry entry : stones.entrySet()) { - Stone stone = entry.getKey(); - Position p = entry.getValue(); - Rectangle2D rect = new Rectangle2D.Float(p.getX(), p.getY(), - stone.getWidth(), stone.getHeight()); - - if (rect.contains(pos.getX(), pos.getY())) - return stone; - } - - return null; - } - - /** - * Sets the list of stones that can be clicked on - * - * @param stones - * the stones and positions - */ - protected void setStones(Map stones) { - this.stones = stones; - } - - /** - * Returns the list of stones and positions currently set - * - * @return the stones - */ - protected Map getStones() { - return stones; - } - - @Override - public Event1 getClickEvent() { - return clickEvent; - } - - @Override - public Event2 getStoneClickEvent() { - return stoneClickEvent; - } - - @Override - public Event2 getRangeClickEvent() { - return rangeClickEvent; - } - - @Override - public Event2 getSetClickEvent() { - return setClickEvent; - } + IClickable { + private StonePainter stonePainter; + + private Event1 clickEvent = new Event1(); + private Event2 stoneClickEvent = new Event2(); + private Event2 rangeClickEvent = new Event2(); + private Event2 setClickEvent = new Event2(); + + private Map stones = Collections.emptyMap(); + + /** + * @return the stone painter + */ + protected StonePainter getStonePainter() { + return stonePainter; + } + + /** + * Create a new StonePanel with default scale factor + */ + public AbstractStonePanel() { + this(1); + } + + /** + * Create a new StonePanel with a given scale factor + * + * @param scale + * the grid scale + */ + public AbstractStonePanel(float scale) { + super(true); // Set double buffered + + stonePainter = new StonePainter(scale); + + addMouseListener(new MouseAdapter() { + @Override + public void mouseClicked(MouseEvent e) { + Insets insets = getInsets(); + Position pos = stonePainter.calculatePosition(e.getX() - insets.left, + e.getY() - insets.top); + Stone stone = getStoneAt(pos); + + if (stone == null) { + if (!handleOtherClickEvent(pos)) + clickEvent.emit(pos); + + return; + } + + Event2 event = stoneClickEvent; + + if (e.isShiftDown()) + event = rangeClickEvent; + else if (e.getClickCount() >= 2) + event = setClickEvent; + + event.emit(stone, e.isControlDown()); + } + }); + } + + /* + * *Overwrite this method* to signal if special zone was clicked + * + * @return special zone clicked + */ + protected boolean handleOtherClickEvent(Position pos) { + return false; + } + + private Stone getStoneAt(Position pos) { + for (Map.Entry entry : stones.entrySet()) { + Stone stone = entry.getKey(); + Position p = entry.getValue(); + Rectangle2D rect = new Rectangle2D.Float(p.getX(), p.getY(), 1, 1); + + if (rect.contains(pos.getX(), pos.getY())) + return stone; + } + + return null; + } + + /** + * Sets the list of stones that can be clicked on + * + * @param stones + * the stones and positions + */ + protected void setStones(Map stones) { + this.stones = stones; + } + + /** + * Returns the list of stones and positions currently set + * + * @return the stones + */ + protected Map getStones() { + return stones; + } + + @Override + public Event1 getClickEvent() { + return clickEvent; + } + + @Override + public Event2 getStoneClickEvent() { + return stoneClickEvent; + } + + @Override + public Event2 getRangeClickEvent() { + return rangeClickEvent; + } + + @Override + public Event2 getSetClickEvent() { + return setClickEvent; + } } diff --git a/src/jrummikub/view/impl/StoneCollectionPanel.java b/src/jrummikub/view/impl/StoneCollectionPanel.java index 8729170..9548b3b 100644 --- a/src/jrummikub/view/impl/StoneCollectionPanel.java +++ b/src/jrummikub/view/impl/StoneCollectionPanel.java @@ -20,70 +20,70 @@ import jrummikub.view.IStoneCollectionPanel; */ @SuppressWarnings("serial") class StoneCollectionPanel extends AbstractStonePanel implements - IStoneCollectionPanel { - private final static int INSET = 7; - private final static float STONE_SCALE = 1.1f; - - private Collection selectedStones = Collections.emptyList(); - - /** - * Creates a new StoneCollection instance - */ - StoneCollectionPanel() { - super(STONE_SCALE); - - setOpaque(false); - setVisible(false); - setBorder(new EmptyBorder(INSET, INSET, INSET, INSET)); - } - - /** - * Sets the stones to be shown in the collection - * - * @param selectedStones - * the selected stones - */ - void setSelectedStones(Collection selectedStones) { - this.selectedStones = selectedStones; - - Map stones = new HashMap(); - float x = 0; - - for (Stone stone : selectedStones) { - stones.put(stone, new Position(x, 0)); - x += stone.getWidth(); - } - - setStones(stones); - - if (selectedStones.isEmpty()) { - setVisible(false); - } else { - setSize(getStonePainter().getStoneWidth() * selectedStones.size() + 2 - * INSET, getStonePainter().getStoneHeight() + 2 * INSET); - setVisible(true); - - repaint(); - } - } - - @Override - public void paintComponent(Graphics g1) { - Insets insets = getInsets(); - int x = insets.left, y = insets.top, width = getWidth() - insets.left - - insets.right, height = getHeight() - insets.top - insets.bottom; - Graphics2D g = (Graphics2D) g1.create(x, y, width, height); - - if (!selectedStones.isEmpty()) { - g1.setColor(new Color(0, 0, 0, 0.25f)); - g1.fillRoundRect(0, 0, getWidth(), getHeight(), INSET, INSET); - - float xpos = 0; - - for (Stone stone : selectedStones) { - getStonePainter().paintStone(g, stone, new Position(xpos, 0), false); - xpos++; - } - } - } + IStoneCollectionPanel { + private final static int INSET = 7; + private final static float STONE_SCALE = 1.1f; + + private Collection selectedStones = Collections.emptyList(); + + /** + * Creates a new StoneCollection instance + */ + StoneCollectionPanel() { + super(STONE_SCALE); + + setOpaque(false); + setVisible(false); + setBorder(new EmptyBorder(INSET, INSET, INSET, INSET)); + } + + /** + * Sets the stones to be shown in the collection + * + * @param selectedStones + * the selected stones + */ + void setSelectedStones(Collection selectedStones) { + this.selectedStones = selectedStones; + + Map stones = new HashMap(); + float x = 0; + + for (Stone stone : selectedStones) { + stones.put(stone, new Position(x, 0)); + x++; + } + + setStones(stones); + + if (selectedStones.isEmpty()) { + setVisible(false); + } else { + setSize(getStonePainter().getStoneWidth() * selectedStones.size() + 2 + * INSET, getStonePainter().getStoneHeight() + 2 * INSET); + setVisible(true); + + repaint(); + } + } + + @Override + public void paintComponent(Graphics g1) { + Insets insets = getInsets(); + int x = insets.left, y = insets.top, width = getWidth() - insets.left + - insets.right, height = getHeight() - insets.top - insets.bottom; + Graphics2D g = (Graphics2D) g1.create(x, y, width, height); + + if (!selectedStones.isEmpty()) { + g1.setColor(new Color(0, 0, 0, 0.25f)); + g1.fillRoundRect(0, 0, getWidth(), getHeight(), INSET, INSET); + + float xpos = 0; + + for (Stone stone : selectedStones) { + getStonePainter().paintStone(g, stone, new Position(xpos, 0), false); + xpos++; + } + } + } } diff --git a/src/jrummikub/view/impl/TablePanel.java b/src/jrummikub/view/impl/TablePanel.java index 3eb33d8..6a91b41 100644 --- a/src/jrummikub/view/impl/TablePanel.java +++ b/src/jrummikub/view/impl/TablePanel.java @@ -8,6 +8,7 @@ import java.awt.RenderingHints; import java.awt.event.ComponentAdapter; import java.awt.event.ComponentEvent; import java.awt.event.ComponentListener; +import java.awt.geom.Rectangle2D; import java.util.Collection; import java.util.Collections; import java.util.HashMap; @@ -19,6 +20,7 @@ import javax.swing.JLabel; import jrummikub.model.Position; import jrummikub.model.Stone; import jrummikub.model.StoneSet; +import jrummikub.util.Event1; import jrummikub.view.IStoneCollectionPanel; import jrummikub.view.ITablePanel; @@ -27,159 +29,197 @@ import jrummikub.view.ITablePanel; */ @SuppressWarnings("serial") class TablePanel extends AbstractStonePanel implements ITablePanel { - private final static ImageIcon background = new ImageIcon( - HandPanel.class.getResource("/jrummikub/resource/felt.png")); - - private final static float DEFAULT_SCALE = 1; - private final int COLLECTION_GAP = 5; - - private JLabel leftPlayerLabel, topPlayerLabel, rightPlayerLabel; - private StoneCollectionPanel stoneCollection; - - private Map stoneSets = Collections.emptyMap(); - private Collection selectedStones = Collections.emptyList(); - - @Override - public void setLeftPlayerName(String playerName) { - leftPlayerLabel.setText(playerName); - } - - @Override - public void setTopPlayerName(String playerName) { - topPlayerLabel.setText(playerName); - } - - @Override - public void setRightPlayerName(String playerName) { - rightPlayerLabel.setText(playerName); - } - - @Override - public void setStoneSets(Map stoneSets) { - Map stones = new HashMap(); - - for (Map.Entry entry : stoneSets.entrySet()) { - float x = entry.getValue().getX(), y = entry.getValue().getY(); - - for (Stone stone : entry.getKey()) { - stones.put(stone, new Position(x, y)); - x += stone.getWidth(); - } - } - - setStones(stones); - this.stoneSets = stoneSets; - - repaint(); - } - - @Override - public IStoneCollectionPanel getStoneCollectionPanel() { - return stoneCollection; - } - - /** - * Sets the currently selected stones - * - * @param stones - * the selected stones - */ - void setSelectedStones(Collection stones) { - selectedStones = stones; - stoneCollection.setSelectedStones(stones); - repaint(); - } - - private void rescale() { - Insets insets = getInsets(); - int x = insets.left, y = insets.top, width = getWidth() - insets.left - - insets.right, height = getHeight() - insets.top - insets.bottom; - - leftPlayerLabel.setBounds(x, y, width, height); - topPlayerLabel.setBounds(x, y, width, height); - rightPlayerLabel.setBounds(x, y, width, height); - - stoneCollection.setLocation(x + width / 2 - stoneCollection.getWidth() / 2, - y + height - stoneCollection.getHeight() - COLLECTION_GAP); - } - - /** - * Creates a new Table instance - */ - TablePanel() { - super(DEFAULT_SCALE); - - setLayout(null); - - leftPlayerLabel = new JLabel(); - leftPlayerLabel.setForeground(Color.WHITE); - leftPlayerLabel.setHorizontalAlignment(JLabel.LEFT); - leftPlayerLabel.setHorizontalTextPosition(JLabel.LEFT); - add(leftPlayerLabel); - - topPlayerLabel = new JLabel(); - topPlayerLabel.setHorizontalAlignment(JLabel.CENTER); - topPlayerLabel.setHorizontalTextPosition(JLabel.CENTER); - topPlayerLabel.setVerticalAlignment(JLabel.TOP); - topPlayerLabel.setVerticalTextPosition(JLabel.TOP); - topPlayerLabel.setForeground(Color.WHITE); - add(topPlayerLabel); - - rightPlayerLabel = new JLabel(); - rightPlayerLabel.setForeground(Color.WHITE); - rightPlayerLabel.setHorizontalAlignment(JLabel.RIGHT); - rightPlayerLabel.setHorizontalTextPosition(JLabel.RIGHT); - add(rightPlayerLabel); - - stoneCollection = new StoneCollectionPanel(); - add(stoneCollection); - - ComponentListener rescaleListener = new ComponentAdapter() { - @Override - public void componentResized(ComponentEvent e) { - rescale(); - } - }; - - addComponentListener(rescaleListener); - stoneCollection.addComponentListener(rescaleListener); - } - - private void paintStoneSet(Graphics2D g, StoneSet stoneSet, Position pos) { - float x = pos.getX(); - int width = getStonePainter().getStoneWidth(), height = getStonePainter() - .getStoneHeight(); - - g.setColor(new Color(0, 0, 0, 0.25f)); - g.fillRect((int) (x * width) - width / 4, (int) (pos.getY() * height), - width / 4, height); - - for (Stone stone : stoneSet) { - getStonePainter().paintStone(g, stone, new Position(x, pos.getY()), - selectedStones.contains(stone)); - x++; - } - - g.setColor(new Color(0, 0, 0, 0.25f)); - g.fillRect((int) (x * width), (int) (pos.getY() * height), width / 4, - height); - } - - @Override - protected void paintComponent(Graphics g1) { - Graphics2D g = (Graphics2D) g1; - - for (int x = 0; x < getWidth(); x += background.getIconWidth()) { - for (int y = 0; y < getHeight(); y += background.getIconHeight()) { - background.paintIcon(this, g, x, y); - } - } - - g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, - RenderingHints.VALUE_ANTIALIAS_ON); - - for (Map.Entry stoneSet : stoneSets.entrySet()) { - paintStoneSet(g, stoneSet.getKey(), stoneSet.getValue()); - } - } + private final static ImageIcon background = new ImageIcon( + HandPanel.class.getResource("/jrummikub/resource/felt.png")); + + private final static float DEFAULT_SCALE = 1; + private final static float CONNECTOR_WIDTH = 0.25f; + private final int COLLECTION_GAP = 5; + + private JLabel leftPlayerLabel, topPlayerLabel, rightPlayerLabel; + private StoneCollectionPanel stoneCollection; + + private Map stoneSets = Collections.emptyMap(); + private Collection selectedStones = Collections.emptyList(); + + private Event1 leftConnectorClickEvent = new Event1(); + private Event1 rightConnectorClickEvent = new Event1(); + + @Override + public void setLeftPlayerName(String playerName) { + leftPlayerLabel.setText(playerName); + } + + @Override + public void setTopPlayerName(String playerName) { + topPlayerLabel.setText(playerName); + } + + @Override + public void setRightPlayerName(String playerName) { + rightPlayerLabel.setText(playerName); + } + + @Override + public Event1 getLeftConnectorClickEvent() { + return leftConnectorClickEvent; + } + + @Override + public Event1 getRightConnectorClickEvent() { + return rightConnectorClickEvent; + } + + @Override + public void setStoneSets(Map stoneSets) { + Map stones = new HashMap(); + + for (Map.Entry entry : stoneSets.entrySet()) { + float x = entry.getValue().getX(), y = entry.getValue().getY(); + + for (Stone stone : entry.getKey()) { + stones.put(stone, new Position(x, y)); + x++; + } + } + + setStones(stones); + this.stoneSets = stoneSets; + + repaint(); + } + + @Override + public IStoneCollectionPanel getStoneCollectionPanel() { + return stoneCollection; + } + + /** + * Sets the currently selected stones + * + * @param stones + * the selected stones + */ + void setSelectedStones(Collection stones) { + selectedStones = stones; + stoneCollection.setSelectedStones(stones); + repaint(); + } + + private void rescale() { + Insets insets = getInsets(); + int x = insets.left, y = insets.top, width = getWidth() - insets.left + - insets.right, height = getHeight() - insets.top - insets.bottom; + + leftPlayerLabel.setBounds(x, y, width, height); + topPlayerLabel.setBounds(x, y, width, height); + rightPlayerLabel.setBounds(x, y, width, height); + + stoneCollection.setLocation(x + width / 2 - stoneCollection.getWidth() / 2, + y + height - stoneCollection.getHeight() - COLLECTION_GAP); + } + + /** + * Creates a new Table instance + */ + TablePanel() { + super(DEFAULT_SCALE); + + setLayout(null); + + leftPlayerLabel = new JLabel(); + leftPlayerLabel.setForeground(Color.WHITE); + leftPlayerLabel.setHorizontalAlignment(JLabel.LEFT); + leftPlayerLabel.setHorizontalTextPosition(JLabel.LEFT); + add(leftPlayerLabel); + + topPlayerLabel = new JLabel(); + topPlayerLabel.setHorizontalAlignment(JLabel.CENTER); + topPlayerLabel.setHorizontalTextPosition(JLabel.CENTER); + topPlayerLabel.setVerticalAlignment(JLabel.TOP); + topPlayerLabel.setVerticalTextPosition(JLabel.TOP); + topPlayerLabel.setForeground(Color.WHITE); + add(topPlayerLabel); + + rightPlayerLabel = new JLabel(); + rightPlayerLabel.setForeground(Color.WHITE); + rightPlayerLabel.setHorizontalAlignment(JLabel.RIGHT); + rightPlayerLabel.setHorizontalTextPosition(JLabel.RIGHT); + add(rightPlayerLabel); + + stoneCollection = new StoneCollectionPanel(); + add(stoneCollection); + + ComponentListener rescaleListener = new ComponentAdapter() { + @Override + public void componentResized(ComponentEvent e) { + rescale(); + } + }; + + addComponentListener(rescaleListener); + stoneCollection.addComponentListener(rescaleListener); + } + + protected boolean handleOtherClickEvent(Position pos) { + for (Map.Entry entry : stoneSets.entrySet()) { + Position p = entry.getValue(); + StoneSet stoneSet = entry.getKey(); + float x = p.getX(), y = p.getY(); + + // left connector + Rectangle2D rect = new Rectangle2D.Float(x - CONNECTOR_WIDTH, y, + CONNECTOR_WIDTH, 1); + if (rect.contains(pos.getX(), pos.getY())) { + leftConnectorClickEvent.emit(stoneSet); + return true; + } + + // right connector + rect = new Rectangle2D.Float(x + stoneSet.size(), y, CONNECTOR_WIDTH, 1); + if (rect.contains(pos.getX(), pos.getY())) { + rightConnectorClickEvent.emit(stoneSet); + return true; + } + } + return false; + } + + private void paintStoneSet(Graphics2D g, StoneSet stoneSet, Position pos) { + float x = pos.getX(); + int width = getStonePainter().getStoneWidth(), height = getStonePainter() + .getStoneHeight(); + + g.setColor(new Color(0, 0, 0, 0.25f)); + g.fillRect((int) (x * width - width * CONNECTOR_WIDTH), + (int) (pos.getY() * height), (int) (width * CONNECTOR_WIDTH), height); + + for (Stone stone : stoneSet) { + getStonePainter().paintStone(g, stone, new Position(x, pos.getY()), + selectedStones.contains(stone)); + x++; + } + + g.setColor(new Color(0, 0, 0, 0.25f)); + g.fillRect((int) (x * width), (int) (pos.getY() * height), + (int) (width * CONNECTOR_WIDTH), height); + } + + @Override + protected void paintComponent(Graphics g1) { + Graphics2D g = (Graphics2D) g1; + + for (int x = 0; x < getWidth(); x += background.getIconWidth()) { + for (int y = 0; y < getHeight(); y += background.getIconHeight()) { + background.paintIcon(this, g, x, y); + } + } + + g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, + RenderingHints.VALUE_ANTIALIAS_ON); + + for (Map.Entry entry : stoneSets.entrySet()) { + paintStoneSet(g, entry.getKey(), entry.getValue()); + } + } } -- cgit v1.2.3