package jrummikub.view.impl; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Insets; import java.awt.event.ComponentAdapter; import java.awt.event.ComponentEvent; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.List; import javax.swing.ImageIcon; import javax.swing.border.EmptyBorder; import jrummikub.model.Position; import jrummikub.model.Stone; import jrummikub.util.Pair; import jrummikub.view.IStoneCollectionPanel; /** * Implementation of the stone collection (selection) */ @SuppressWarnings("serial") class StoneCollectionPanel extends AbstractStonePanel implements IStoneCollectionPanel { private final static ImageIcon BACKGROUND = new ImageIcon( HandPanel.class.getResource("/jrummikub/resource/dark_felt.png")); /** * The width of the border of the collection panel */ public final static int INSET = 7; private Collection selectedStones = Collections.emptyList(); /** * Creates a new StoneCollection instance */ StoneCollectionPanel() { setOpaque(false); setBorder(new EmptyBorder(INSET, INSET, INSET, INSET)); addComponentListener(new ComponentAdapter() { @Override public void componentResized(ComponentEvent e) { rescale(); } }); } private void rescale() { Insets insets = getInsets(); int height = getHeight() - insets.top - insets.bottom; getStonePainter().setScale(height * StonePainter.HEIGHT_SCALE); repaint(); /* * setSize(getStonePainter().getStoneWidth() * selectedStones.size() + 2 * INSET, getStonePainter().getStoneHeight() + 2 * INSET); */ } /** * Sets the height to paint the collected stones in * * @param height * the height in pixels */ /* * void setStoneHeight(int height) { getStonePainter().setScale(height * * StonePainter.HEIGHT_SCALE); * * rescale(); repaint(); //} */ /** * Sets the stones to be shown in the collection * * @param selectedStones * the selected stones */ void setSelectedStones(Collection selectedStones) { this.selectedStones = selectedStones; List> stones = new ArrayList>(); float x = 0; for (Stone stone : selectedStones) { stones.add(new Pair(stone, new Position(x, 0))); x++; } setStones(stones); repaint(); } @Override protected Pair getTranslation() { int width = getStonePainter().getStoneWidth() * selectedStones.size() + 2 * INSET; int x = (getWidth() - width) / 2; return new Pair(x + INSET, INSET); } @Override public void paintComponent(Graphics g1) { int width = getStonePainter().getStoneWidth() * selectedStones.size() + 2 * INSET, height = getHeight(); int x = (getWidth() - width) / 2; Graphics2D g = (Graphics2D) g1.create(x, 0, width, height); if (!selectedStones.isEmpty()) { for (int xpos = 0; xpos < getWidth(); xpos += BACKGROUND.getIconWidth()) { for (int ypos = 0; ypos < getHeight(); ypos += BACKGROUND .getIconHeight()) { BACKGROUND.paintIcon(this, g, xpos, ypos); } } g.translate(INSET, INSET); float xpos = 0; for (Stone stone : selectedStones) { getStonePainter().paintStone(g, stone, new Position(xpos, 0), false); xpos++; } } } }