3

我正在编写一些代码来创建文本的彩色可视化。以下管理可视化面板,并且从程序的其他地方(正确)调用了 setCT(String c) 方法。

不幸的是,所需的可视化仅在调整窗口大小时发生。在那之前,可见面板只是保持黑色!到底是怎么回事?我已经尝试使用 validate() 方法并根据其他地方的指南创建一个新的 Runnable() ,但无济于事。这是我的代码:

import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;

import javax.swing.JPanel;
import javax.swing.SwingUtilities;
import javax.swing.Timer;

public class Visualiser extends JPanel implements ActionListener {

    /**
     * 
     */
    private static final long serialVersionUID = -3936526023655045114L;
    public static final Color DEFAULT_BG_COL = Color.black;
    private static Color bgCol;
    private static String ct;
    private static BufferedImage stat;
    private static boolean doVis=false;
    private Timer refreshTimer=new Timer(100, this);

    public Visualiser() {
        this(200, 250);
    }

    public Visualiser(int w, int h) {

        super.setSize(new Dimension(w, h));
        super.setPreferredSize(new Dimension(w, h));
        bgCol = Visualiser.DEFAULT_BG_COL;      
        super.setBackground(bgCol);
        stat = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB);
        refreshTimer.start();


    }


    /*public void paint(Graphics g) {
     * REPLACED BY paintComponent() METHOD AS PER SUGGESTION
        super.paint(g);
        if (Visualiser.doVis==true) {
            System.out.println("passed doVis test");
            doVis(g);
        }

    }*/

    public void paintComponent(Graphics g) {
        if(Visualiser.doVis) {
            doVis(g);
        }
    }

    public Color getBGCol() {
        return bgCol;
    }

    public void setBGCol(Color b) {
        bgCol = b;
        super.setBackground(bgCol);
    }

    public void doVis(Graphics g) {
        // all of my code to actually paint the visualisation is here
        //doStatic(g);
        // establish the block size and height using length of the string
        int numBlocks = 3*ct.length();
        if (numBlocks != 0) {
            int blockSize = (int) Math.sqrt((this.getWidth()*this.getHeight())/numBlocks) ;
            Graphics2D g2 = stat.createGraphics();
            int blocksX=Math.round(this.getWidth()/blockSize);
            int blocksY=Math.round(this.getHeight()/blockSize);
            char chars[]=ct.toCharArray();
            int c=0;
            int cc=0;
            for(int i = 1; i< blocksX; i++) {
                for(int j=1; j<blocksY; j++) {
                    cc=c+4;
                    if(cc < chars.length) {
                        //System.out.println("char length is: " + chars.length + " and c is: " + c);
                        g2.setColor(new Color((int) chars[c]%255, (int) chars[c+1]%255, (int)chars[c+2]%255));
                        //System.out.println("color: " + g2.getColor().toString());
                    }
                    g2.fill(new Rectangle2D.Double(i*blockSize, j*blockSize, blockSize, blockSize));
                    c++;
                }
            }

            g.drawImage(stat, 0, 0, this);
        }




    }

    private void doStatic(Graphics g) {
        Graphics2D g2 = stat.createGraphics();
        int x=this.getWidth();
        int y=this.getHeight();
        //System.out.println("x, y: " + x + " " + y);
        for (int i=1; i<x; i++) {
            for(int j=1; j<y; j++) {
                g2.setColor(new Color(getRandom(0, 255), getRandom(0,255), getRandom(0,255)));
                g2.fill(new Rectangle2D.Double(i, j, 1, 1));
            }
        }
        g.drawImage(stat,  0, 0, this);

    }


    private int getRandom(int min, int max) {
        int random = min + (int) (Math.random() * (max - min));

        return random;

    }


    public void setCT(String c) {
        Visualiser.doVis=true;
        ct=c;
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                System.out.println("got to the new runnable thingie");

                repaint();
            }
        });


    }

    public void actionPerformed(ActionEvent e) {
        if(e.getSource().equals(this.refreshTimer)) {
            // the timer is the source so do some refreshing!

            repaint();
        }

    }




}

doVis 和 ct 变量都是这个(Visualiser)类的公共静态布尔值和字符串,并且paint方法在决定绘制什么之前检查doVis值。这部分没问题。它迫使 Java 进行适当的重绘,这就是问题所在!

4

1 回答 1

2

当您扩展 aJPanel时,实现您想要的快速、简单和干净的方法是覆盖JPanel.paintComponent()您进行渲染的方法。

如果您想自动刷新您的 GUI,那么我建议您使用不时调用的摇摆计时器JPanel.validate()。您的面板可能如下所示:

public class TextRendererPanel extends JPanel{
   protected void paintComponent(Graphics g){
       // Do your rendering stuff here.
   }
}

创建后,面板可以像这样刷新:

TextRendererPanel textRendererPanel = new TextRendererPanel();
textRendererPanel.invalidate();

这里有一个关于摇摆计时器的教程,你可以从它开始。

于 2012-07-08T10:45:26.953 回答