1

我有一个乒乓球项目(有点),它可以工作,但是 run() 函数有问题。如果我用我写给面板的函数绘制框架(它们工作,我检查过)它会出现图形问题,如果我使用重绘(我想)它会绘制框架并立即删除它,每个解决方案都会有帮助(在我的代码级别上最好是一个简单的):

import java.awt.*;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JPanel;
import java.util.Random;
import javax.swing.*;
import sun.org.mozilla.javascript.internal.Kit;



public class Picture extends JPanel implements MouseListener, Runnable{

    private int k = 0;
    Thread MyThread;
    private DrawPic img;
 
    private Rectangle r1, r3;

    public Picture(DrawPic img, Rectangle rect1, Rectangle rect3) {
        super();
        this.setLocation(0, 85);
        this.setLayout(new FlowLayout());
        this.setSize(1280, 1024);
          
        this.addMouseListener(this);
        this.setFocusable(true);
      
        this.r1 = rect1;
    
        this.r3 = rect3;
        this.img = img;
        this.MyThread = new Thread(this);
        MyThread.start();
        this.setVisible(true);
    
    }
    
    

 
    public void paintRectangleL(Rectangle rect, Graphics g) {
        k = 3;
        
        rect.DrawRectangle(g);
        rect.FillRectangle(g);


    }
    public void paintRectangleR(Rectangle rect, Graphics g) {
        k = 1;
      
        rect.DrawRectangle(g);
        rect.FillRectangle(g);

    }
    public void paintImage(DrawPic img, Graphics g) {
        k = 2;
     
        //g.clearRect(0, 0, this.getWidth(), this.getHeight());
        img.DrawImg(g, this);
        


    }
    public void changeK(int k1){
        k = k1;
    }

    @Override
    public void mouseClicked(MouseEvent e) {
        // throw new UnsupportedOperationException("Not supported yet.");
      
        
       
    }

    @Override
    public void mousePressed(MouseEvent e) {
        //throw new UnsupportedOperationException("Not supported yet.");
        
            Point p = r3.FindCenter();
            double dx, dy;

            dy = e.getY() - p.getY();
            r3.Move(0, dy);
              this.getGraphics().clearRect(0, 0, this.getWidth(), this.getHeight());
            this.paintRectangleL(r3, this.getGraphics());
            this.paintRectangleR(r1, this.getGraphics());
            this.paintImage(img, this.getGraphics());
    }

    @Override
    public void mouseReleased(MouseEvent e) {
        //throw new UnsupportedOperationException("Not supported yet.");
    
    }

    @Override
    public void mouseEntered(MouseEvent e) {
        //throw new UnsupportedOperationException("Not supported yet.");
    }

    @Override
    public void mouseExited(MouseEvent e) {
        //   throw new UnsupportedOperationException("Not supported yet.");
    }
    public void animate(){
        double dx = 0, dy = 2;
        if ((this.img.getX() + 160 + this.r1.RightPoint().getX() - this.r1.LeftPoint().getX() > this.getWidth() || this.img.getX() < this.r3.RightPoint().getX() - this.r3.LeftPoint().getX())) {
                    dx = -1 * dx;
                    

                }
                if (this.img.getY() + 120> this.getHeight() || this.img.getY() < 0 ) {
                    dy = -1 * dy;
                }
                img.Move(dx, dy);
             //   this.getGraphics().clearRect(0, 0, this.getWidth(), this.getHeight());
              //  this.paintImage(img, this.getGraphics());
              //  this.paintRectangleL(r3, this.getGraphics());
              //  this.paintRectangleR(r1, this.getGraphics());
                repaint();            
    }

    @Override
    public void run() {
        
        Color col;
        while (true) {
                 animate();

                try {
                    MyThread.sleep(35);
                } catch (InterruptedException ex) {
                    Logger.getLogger(Picture.class.getName()).log(Level.SEVERE, null, ex);
                }
            }
        }
        //   throw new UnsupportedOperationException("Not supported yet.");
    }
4

1 回答 1

5

您不应该getGraphics()用于自定义绘画,因为它是一个临时缓冲区,在下次重新绘画时会被回收。你在画paintComponent()

有关更多信息和示例,请参阅执行自定义绘画。Section A Closer Look at the Paint Mechanism有很好的总结paint()paintComponent()方法。另请参阅AWT 和 Swing 中的绘画

编辑:

您的程序的逻辑和结构不适合 Swing 的绘制过程。您需要重构您的程序,以便它可以插入该过程并在正确的时间绘制正确的东西。通常,您通过覆盖其paintComponent(). 在这种方法中,所有的绘画都发生了。这种方法应该尽可能快,避免在其中放置任何/过多的应用程序逻辑。

一旦状态改变 issue ,您应该维护已绘制对象的某种状态(即坐标、颜色等)repaint()。这将安排重绘,最终 Swing 将paint()在将调用的组件上执行paintComponent()

在您的情况下,您有一个定期触发的计时器。您可以覆盖您使用paintComponent的。JPanel您已经有了计算坐标的逻辑。将这些坐标存储在成员变量中。然后,发出repaint(). 在paintComponent中,根据计算出的坐标绘制图像。

编辑:

关于线程的另一个说明。Swing 有一个单线程绘画模型。所有 UI 交互和绘制都在 Swing 的事件调度线程(EDT) 上进行。有关 EDT 的更多信息,请查看Swing 中的并发。请注意,该方法animate()不在 EDT 上执行。你没有展示什么img.Move(dx, dy),但以这种方式执行可能是不安全的。invokeLater在这里可能有助于确保代码在 EDT 上执行。但是,在这种特殊情况下,使用Swing 计时器可能更容易,它可以确保在 EDT 上执行操作。

于 2013-03-26T23:16:21.987 回答