package mage.client.cards; import java.awt.Dimension; import java.awt.Graphics; import java.awt.Image; import java.awt.Rectangle; import java.awt.image.BufferedImage; import java.util.List; import java.util.UUID; import javax.swing.JComponent; import static mage.client.constants.Constants.CONTENT_MAX_XOFFSET; import static mage.client.constants.Constants.FRAME_MAX_HEIGHT; import static mage.client.constants.Constants.FRAME_MAX_WIDTH; import static mage.client.constants.Constants.TEXT_MAX_HEIGHT; import static mage.client.constants.Constants.TEXT_MAX_WIDTH; import static mage.client.constants.Constants.TEXT_MAX_YOFFSET; import mage.client.plugins.impl.Plugins; import mage.client.util.ImageHelper; import mage.constants.EnlargeMode; import org.jdesktop.swingx.JXPanel; import mage.client.util.TransformedImageCache; import org.mage.card.arcane.UI; /** * Class for displaying big image of the card * * @author BetaSteward_at_googlemail.com, nantuko */ public class BigCard extends JComponent { protected Image bigImage; protected BufferedImage source; protected volatile BufferedImage foil; protected UUID cardId; protected JXPanel panel; protected int oldWidth; protected boolean foilState; protected Thread foilThread; protected float hue = 0.005f; protected float dh = 0.005f; protected EnlargeMode enlargeMode; public BigCard() { this(false); } public BigCard(boolean rotated) { initComponents(); if (!Plugins.instance.isCardPluginLoaded()) { initBounds(rotated); } setDoubleBuffered(true); setOpaque(true); this.scrollPane.setOpaque(true); this.scrollPane.setVisible(false); UI.setHTMLEditorKit(text); text.setEditable(false); } private void initBounds(boolean rotated) { oldWidth = this.getWidth(); if (rotated) { scrollPane.setBounds(50, 50, 100, 100); } else { scrollPane.setBounds(this.getWidth()*1000/17777,this.getWidth()*1000/1150, this.getWidth()*1000/1130,this.getWidth()*1000/2100); } } public void clearUp() { } public void setCard(UUID cardId, EnlargeMode enlargeMode, Image image, List strings, boolean rotate) { if (rotate && getWidth() > getHeight()) { image = TransformedImageCache.getRotatedResizedImage((BufferedImage)image, getHeight(), getWidth(), Math.toRadians(90.0)); } else { image = TransformedImageCache.getResizedImage((BufferedImage)image, getWidth(), getHeight()); } if (this.cardId == null || enlargeMode != this.enlargeMode || !this.cardId.equals(cardId)) { if (this.panel != null) { remove(this.panel); } this.cardId = cardId; this.enlargeMode = enlargeMode; bigImage = image; synchronized (this) { source = null; hue = 0.000f; } StringBuilder displayedText = new StringBuilder(); for (String textLine: strings) { if (textLine != null && !textLine.replace(".", "").trim().isEmpty()) { displayedText.append("

").append(textLine).append("

"); } } this.text.setText(displayedText.toString()); repaint(); } } public UUID getCardId() { return cardId; } public void resetCardId() { this.cardId = null; } @Override public void paintComponent(Graphics graphics) { if (bigImage != null) { graphics.drawImage(bigImage, 0, 0, this); } super.paintComponent(graphics); } public void hideTextComponent() { this.scrollPane.setVisible(false); } public void showTextComponent() { if (oldWidth != this.getWidth()) { initBounds(false); } this.scrollPane.setVisible(true); } public void addJXPanel(UUID cardId, JXPanel jxPanel) { this.cardId = cardId; bigImage = null; synchronized (this) { if (this.panel != null) { remove(this.panel); } this.panel = jxPanel; add(jxPanel); } this.repaint(); } /** * This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // //GEN-BEGIN:initComponents private void initComponents() { scrollPane = new javax.swing.JScrollPane(); text = new javax.swing.JTextPane(); setFocusable(false); setMinimumSize(new Dimension(FRAME_MAX_WIDTH, FRAME_MAX_HEIGHT)); setName("bigCardPanel"); // NOI18N setPreferredSize(getMinimumSize()); setLayout(null); scrollPane.setBackground(new java.awt.Color(220, 220, 220)); scrollPane.setBorder(null); scrollPane.setHorizontalScrollBarPolicy(javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER); scrollPane.setViewportBorder(javax.swing.BorderFactory.createEtchedBorder()); text.setFocusable(false); scrollPane.setViewportView(text); add(scrollPane); scrollPane.setBounds(20, 220, 210, 130); scrollPane.setBounds(new Rectangle(CONTENT_MAX_XOFFSET, TEXT_MAX_YOFFSET, TEXT_MAX_WIDTH, TEXT_MAX_HEIGHT)); }// //GEN-END:initComponents public void setDefaultImage() { bigImage = ImageHelper.getImageFromResources("/empty.png"); bigImage = ImageHelper.getResizedImage((BufferedImage) bigImage, getWidth(), getHeight()); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JScrollPane scrollPane; private javax.swing.JTextPane text; // End of variables declaration//GEN-END:variables }