2015-06-15 218 views
0

我正在試圖製作一個簡單的GUI程序而不使用JComponents。 目前,我有一個BufferedImage,我畫在屏幕外,以便它不閃爍(或者我想)。設置背景時屏幕閃爍

我做了一個新的節目在這裏複製的問題:

package Main; 

import java.awt.Color; 
import java.awt.Dimension; 
import java.awt.Graphics; 

import java.awt.image.BufferedImage; 
import javax.swing.*; 

public class Main { 

private final static JFrame frame = new JFrame(); 
private final static Panel panel = new Panel(); 

public static void main(String[] args) { 
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
    panel.setPreferredSize(new Dimension(1000, 750)); 
    frame.setContentPane(panel); 
    frame.pack(); 
    frame.setVisible(true); 

    while (true) { 
     panel.setBackgroundColour(Color.WHITE); 
     panel.setBackgroundColour(Color.BLACK); 
     panel.repaint(); 
    } 
} 

private static class Panel extends JPanel { 

    private final BufferedImage offScreen = new BufferedImage(1000, 750, BufferedImage.TYPE_INT_ARGB); 
    private final Graphics graphics = offScreen.getGraphics(); 

    @Override 
    protected void paintComponent(Graphics graphics) { 
     graphics.drawImage(offScreen, 0, 0, null); 
    } 

    public void setBackgroundColour(Color colour) { 
     graphics.setColor(colour); 
     graphics.fillRect(0, 0, 1000, 750); 
    } 
} 

}

在上面的例子中,我做了屏幕變黑,然後白(屏幕外)。 我期望的是paintComponent()只顯示白色屏幕。 而是顯示黑屏,但一切都閃爍。

我只是不正確地使用Graphics2D,或者我應該只使用BufferStrategy來合併我的雙緩衝需求?

+0

在做任何自定義繪畫之前調用'super.paintComponent' – MadProgrammer

+0

你的while循環有點瘋狂 – MadProgrammer

+0

我只是作爲一個例子在這裏做了(true)。在我的實際計劃中,並非如此。 :p我會盡力。 – asdfaweglkelkr

回答

2

我最好的猜測是你有一個競賽條件,你的while-loop正在嘗試更新BufferedImage,但Swing也試圖描繪它,這意味着它們正在越來越髒的更新。此外,您可能會顛簸事件調度線程,這可能是它自己的長期問題。

經過一番玩弄,我能夠得到這樣的工作...

import java.awt.Color; 
import java.awt.Dimension; 
import java.awt.EventQueue; 
import java.awt.Graphics; 
import java.awt.GraphicsConfiguration; 
import java.awt.GraphicsEnvironment; 
import java.awt.image.BufferedImage; 
import java.util.logging.Level; 
import java.util.logging.Logger; 
import javax.swing.JFrame; 
import javax.swing.JPanel; 
import javax.swing.UIManager; 
import javax.swing.UnsupportedLookAndFeelException; 

public class Main { 

    private final static JFrame frame = new JFrame(); 
    private final static Panel panel = new Panel(); 

    public static void main(String[] args) { 
     new Main(); 
    } 

    public Main() { 
     EventQueue.invokeLater(new Runnable() { 
      @Override 
      public void run() { 
       try { 
        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); 
       } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) { 
        ex.printStackTrace(); 
       } 

       frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
       panel.setPreferredSize(new Dimension(1000, 750)); 
       frame.setContentPane(panel); 
       frame.pack(); 
       frame.setVisible(true); 
      } 
     }); 

     while (true) { 
      panel.setBackgroundColour(Color.WHITE); 
      panel.setBackgroundColour(Color.BLACK); 
      panel.repaint(); 
      try { 
       Thread.sleep(40); 
      } catch (InterruptedException ex) { 
       Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex); 
      } 
     } 

    } 

    private static class Panel extends JPanel { 

     private BufferedImage offScreen = new BufferedImage(1000, 700, BufferedImage.TYPE_INT_ARGB); 

     @Override 
     protected void paintComponent(Graphics graphics) { 
      super.paintComponent(graphics); 
      graphics.drawImage(offScreen, 0, 0, this); 
     } 

     public void setBackgroundColour(Color colour) { 
      Graphics graphics = offScreen.getGraphics(); 
      graphics.setColor(colour); 
      graphics.fillRect(0, 0, 1000, 700); 
      graphics.dispose(); 
     } 

    } 

    public static BufferedImage createCompatibleImage(int width, int height, int transparency) { 

     BufferedImage image = getGraphicsConfiguration().createCompatibleImage(width, height, transparency); 
     image.coerceData(true); 
     return image; 

    } 

    public static GraphicsConfiguration getGraphicsConfiguration() { 

     return GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDefaultConfiguration(); 

    } 
} 

它所做的就是注入更新之間有一個小的延遲(25fps的),允許轉時間呈現結果。

你必須記住Swing的兩件事情,repaint不會立即發生,根本不可能發生,具體取決於RepaintManager決定做什麼。其次,你不控制繪畫過程。

Swing使用被動渲染算法,這意味着繪畫將在需要時發生,多次在您不知情或不介入的情況下進行。你可以做的最好的是當你想要更新某些東西時向框架提出建議

有關更多詳細信息,請參見Painting in AWT and SwingPerforming Custom Painting