我正在做一个项目,我已经尽可能多地阅读了 java 中的双缓冲。我想要做的是向我的 JFrame 添加一个组件或面板或其他东西,其中包含要绘制的双缓冲表面。如果可能,我想使用硬件加速,否则使用常规软件渲染器。到目前为止,我的代码如下所示:
public class JFrameGame extends Game {
protected final JFrame frame;
protected final GamePanel panel;
protected Graphics2D g2;
public class GamePanel extends JPanel {
public GamePanel() {
super(true);
}
@Override
public void paintComponent(Graphics g) {
g2 = (Graphics2D)g;
g2.clearRect(0, 0, getWidth(), getHeight());
}
}
public JFrameGame() {
super();
gameLoop = new FixedGameLoop();
frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
panel = new GamePanel();
panel.setIgnoreRepaint(true);
frame.add(panel);
panel.setVisible(true);
frame.setVisible(true);
}
@Override
protected void Draw() {
panel.repaint(); // aquire the graphics - can I acquire the graphics another way?
super.Draw(); // draw components
// draw stuff here
// is the buffer automatically swapped?
}
@Override
public void run() {
super.run();
}
}
我创建了一个抽象游戏类和一个调用 Update 和 Draw 的游戏循环。现在,如果您看到我的评论,那是我主要关心的领域。有没有办法获得一次图形,而不是通过重绘和paintComponent,然后在每次重绘时分配一个变量?另外,这个硬件是默认加速的吗?如果不是,我应该怎么做才能使其硬件加速?