标题可能有点模糊,所以请允许我更好地定义它。我有一段工作代码(下面是):我正在处理的游戏的简单主菜单。除了“开始”按钮外,一切正常。
我希望能够做的是单击“开始”按钮,并在同一个舞台(窗口)上显示一个新场景。我不想看到一个新窗口打开。我和一些经验丰富的人谈过,他们告诉我要为MenuFX和GameFX创建单独的类。如果是这种情况,我需要从MenuFX类调用GameFX类的一些启动或启动方法,对吗?这是最好的方法,还是我想将所有与FX相关的代码保存在一个类中?此外,我应该为所有外汇工作保持同一阶段,不是吗?
This帖子揭示了一些事情,但我并不精通所讨论的一些术语 - 例如,我仍然不理解Root的概念。
另外,this发表了关于类似应用程序的讨论,但我没有使用FXML或SceneBuilder ......我不知道其中是否有任何相关的。
MenuFX.java - 我已删除了一些工作代码,只是为了简洁起见。你可以看到我需要帮助的是将“开始”按钮与一些新的空场景的功能联系起来。
/*
* This is simply working on the title screen.
*/
// Asssume all imports are correct
import java.everythingNeeded
public class MenuFX extends Application {
@Override
public void start (Stage primaryStage) {
// Make the window a set size...
primaryStage.setResizable(false);
// Create menu vbox and set the background image
VBox menuVBox = new VBox(30);
menuVBox.setBackground(new Background(new BackgroundImage(new
Image("image/bambooBG.jpg"), null, null, null, new BackgroundSize(45,
45, true, true, true, true))));
// Create start button
Button startButton = new Button("Start Game");
// TODO Some things...
// Need assistance here
// Create help button
Button helpButton = new Button("Help");
helpButton.setOnAction(e -> THINGS);
// Create music toggle button
ToggleButton musicButton = new ToggleButton("Music On/Off");
musicButton.setOnAction(e -> THINGS);
// Create credits button
Button creditsButton = new Button("Credits");
creditsButton.setOnAction(THINGS);
// Create exit button and set it to close the program when clicked
Button endButton = new Button("Exit Game");
endButton.setOnAction(e -> Platform.exit());
// Add all nodes to the vbox pane and center it all
// Must be in order from top to bottom
menuVBox.getChildren().addAll(startButton, helpButton, musicButton, creditsButton, endButton);
menuVBox.setAlignment(Pos.CENTER);
// New scene, place pane in it
Scene scene = new Scene(menuVBox, 630, 730);
// Place scene in stage
primaryStage.setTitle("-tiles-");
primaryStage.setScene(scene);
primaryStage.show();
}
// Needed to run JavaFX w/o the use of the command line
public static void main(String[] args) {
launch(args);
}
}
重述:我想单击“开始”按钮,将当前打开的窗口更改为空场景。
这是一个完整的MenuFX类的pastebin: http://pastebin.com/n6XbQfhc
感谢您的帮助,
巴格
答案 0 :(得分:3)
这里的基本想法是你会做的事情:
public class GameFX {
private final BorderPane rootPane ; // or any other kind of pane, or Group...
public GameFX() {
rootPane = new BorderPane();
// build UI, register event handlers, etc etc
}
public Pane getRootPane() {
return rootPane ;
}
// other methods you may need to access, etc...
}
现在回到你要做的MenuFX
课程
Button startButton = new Button("Start Game");
startButton.setOnAction(e -> {
GameFX game = new GameFX();
primaryStage.getScene().setRoot(game.getRootPane());
});