使用JWindow进行双缓冲

时间:2015-08-20 07:40:32

标签: java doublebuffered double-buffering jwindow

我正在尝试对缓冲区JWindow进行双重缓冲,但似乎使用的技术不起作用(不同的循环值相互绘制)。

public final class Overlay extends JWindow {

    public static final Color TRANSPARENT = new Color(0, true);
    public static Font standardFont = null;

    public static Overlay open() {
        return new Overlay();
    }

    private Overlay() {
        Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
        setAlwaysOnTop(true);
        setBounds(0, 0, screenSize.width, screenSize.height);
        setBackground(TRANSPARENT);
    }

    @Override
    public void paint(Graphics g) {
        BufferedImage bufferedImage = new BufferedImage(getWidth(), getHeight(), BufferedImage.TYPE_4BYTE_ABGR);
        Graphics2D g2d = bufferedImage.createGraphics();
        paintUs(g2d);

        Graphics2D g2dComponent = (Graphics2D) g;
        g2dComponent.drawImage(bufferedImage, null, 0, 0);
    }

    private void paintUs(Graphics2D g) {
        int height = 420;
        int x = 20;
        g.setColor(TRANSPARENT);
        g.fillRect(0, 0, getWidth(), getHeight());
        g.setFont(standardFont == null ? standardFont = g.getFont().deriveFont(17f) : standardFont);
        for (Plugin plugin : Abendigo.plugins()) {
            g.setColor(Abendigo.plugins().isEnabled(plugin) ? Color.GREEN : Color.RED);
            g.drawString(plugin.toString(), x + 5, getHeight() - height);
            height += 20;
        }
        height += 20;
        g.setColor(Color.YELLOW);
        g.drawString("Cycle: " + Abendigo.elapsed + "ms", x, getHeight() - height);
    }

    @Override
    public void update(Graphics g) {
        paint(g);
    }

}

1 个答案:

答案 0 :(得分:1)

为什么!?!? Swing组件已经是双缓冲的?简单地创建一个自定义组件,从JPanel扩展,覆盖它的paintComponent并在那里执行自定义绘制。确保将组件设置为透明(setOpaque(false))并将其添加到JWindow的实例

有关详细信息,请参阅Painting in AWT and SwingPerforming Custom Painting

您面临的一个直接问题是Swing窗口已经附加了一系列复合组件(JRootPanecontentPane等),所有这些都可以独立绘制你的窗户,这意味着他们可以覆盖你试图直接在窗户上画的东西。相反,请避免直接绘制到窗口并使用自定义组件。