Class MainMenuScene
java.lang.Object
application.MainMenuScene
Main menu screen shown at game start. Displays a background image, plays music, and shows a single Start button.
Pressing Start notifies GameController to begin a new game.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate javafx.scene.media.MediaPlayerLooping background music player.private javafx.scene.layout.StackPaneRoot layout for this screen.private javafx.scene.SceneMain JavaFX Scene for this screen.private javafx.scene.control.ButtonStart button that enters the game. -
Constructor Summary
ConstructorsConstructorDescriptionCreates the Main Menu screen with a background image, music, and a Start button. -
Method Summary
Modifier and TypeMethodDescriptionjavafx.scene.media.MediaPlayerReturns the background music MediaPlayer for stopping before switching screens.javafx.scene.ScenegetScene()Returns the Scene for this screen to be set on the Stage.javafx.scene.control.ButtonReturns the Start button for GameController to bind an event handler.
-
Field Details
-
scene
private javafx.scene.Scene sceneMain JavaFX Scene for this screen. -
mainRoot
private javafx.scene.layout.StackPane mainRootRoot layout for this screen. -
startBtn
private javafx.scene.control.Button startBtnStart button that enters the game. -
bgmPlayer
private javafx.scene.media.MediaPlayer bgmPlayerLooping background music player.
-
-
Constructor Details
-
MainMenuScene
public MainMenuScene()Creates the Main Menu screen with a background image, music, and a Start button. The button fades in slowly when the screen opens.
-
-
Method Details
-
getScene
public javafx.scene.Scene getScene()Returns the Scene for this screen to be set on the Stage.- Returns:
- The Main Menu Scene
-
getBgmPlayer
public javafx.scene.media.MediaPlayer getBgmPlayer()Returns the background music MediaPlayer for stopping before switching screens.- Returns:
- The BGM MediaPlayer
-
getStartBtn
public javafx.scene.control.Button getStartBtn()Returns the Start button for GameController to bind an event handler.- Returns:
- The Start button
-