我创建了一个java游戏并实现了一个GameOver方法。这是我对游戏方法的代码:
public void gameOver() throws IOException {
String message = "Game, Want to try Again?";
String title = "Game Over";
int reply = JOptionPane.showConfirmDialog(frame, message, title, JOptionPane.YES_NO_OPTION);
if (reply == JOptionPane.YES_OPTION){
new Game();
} else {
this.getSoundEffect().stopAllMusic();
new Main().setVisible(true);
}
}
我遇到的问题是关闭原始框架。对于例如如果我单击是,游戏框架将打开,但是,它已经打开,所以我将有两个游戏实例工作。
只是为了让你们知道,我尝试了以下选项:
frame.dispose();
WindowEvent wev = new WindowEvent(this, WindowEvent.WINDOW_CLOSING);
Toolkit.getDefaultToolkit().getSystemEventQueue().postEvent(wev);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
我也在考虑做一个actionperformed事件,然而,由于JOptionPane是一个int,我无法做到。
答案 0 :(得分:0)
您的gameOver
方法应该是这样的:
Main mMain ;
public void gameOver() throws IOException {
String message = "Game, Want to try Again?";
String title = "Game Over";
int reply = JOptionPane.showConfirmDialog(frame, message, title, JOptionPane.YES_NO_OPTION);
if (reply == JOptionPane.YES_OPTION){
frame.dispose();
frame.setVisible(true);
} else {
this.getSoundEffect().stopAllMusic();
if(mMain==null)
{
mMain = new Main();
}
mMain.setVisible(true);
}
}
修改强>
除此之外,您有两个名为frame
的变量,第一个是实例变量frame = new JFrame("Game");
,另一个是final JFrame frame = new JFrame("The Birds Game");
您应该更改其他JFrame
的变量名称..