- Overview
- How to Play
- User Interface
- Features
- Prerequisites
- Setup and Installation
- Configuration
- Running the Application
- Contributing
- License
- Author
The Bouncing Ball game is a simple, interactive JavaFX application where a ball bounces around the screen. Users can control the speed of the ball using the up and down arrow keys. The game demonstrates the use of JavaFX animation and event handling capabilities.
- Start the Game: Run the application to start the game. The ball will start bouncing around the screen.
- Objective: Reach the number of bounces required to win the game without the ball going too fast.
- Control the Ball Speed: Use the UP and DOWN arrow keys to increase or decrease the ball speed, respectively.
- Win or Lose: If the ball reaches the required number of bounces without exceeding the maximum speed, you win. Otherwise, you lose.
- Play Again: After winning or losing, you can play the game again by clicking the "Play Again" button.
- Ball speed control with keyboard inputs (UP to increase speed, DOWN to decrease speed).
- Dynamic color change of the ball upon collision with the screen boundaries.
- Display of current ball speed on the screen.
- Game over screen with a win or lose message based on the ball speed.
- Different background colors for the game interface and game over screens.
- Customizable ball size, speed, and screen dimensions.
- And more!
- JDK 11 or above.
- Maven (for building the project).
- JavaFX SDK (compatible with your JDK version).
- A Java IDE (e.g. IntelliJ IDEA or Eclipse) is highly recommended.
- Download JavaFX SDK: Download the JavaFX SDK from the OpenJFX website and extract it to a known location on your machine.
- Clone the Repository: Clone this repository to your local machine using
git clone https://github.com/hoangsonww/Space-Invader-Game-JavaFX.git
. - Open the Project: Open the project in your Java IDE (e.g., IntelliJ IDEA).
- Configure JavaFX SDK: Configure the JavaFX SDK in your IDE by adding it as a library to the project.
- Run the Application: Run the application using the IDE or Maven commands.
Before running the application, ensure that JavaFX is properly configured in your IDE (e.g., IntelliJ IDEA, Eclipse):
-
IntelliJ IDEA:
- Go to
File
>Project Structure
>Libraries
and add the JavaFX SDK as a library to the project. - In the
Run
configurations, add the VM options to include the JavaFX modules:Replace--module-path "path/to/javafx-sdk/lib" --add-modules javafx.controls,javafx.fxml
"path/to/javafx-sdk/lib"
with the actual path to the JavaFX SDK lib directory on your machine.
- Go to
-
Eclipse:
- Right-click on the project >
Properties
>Java Build Path
>Libraries
and add the JavaFX SDK as an external JAR. - In the run configurations, add the VM arguments similar to the IntelliJ setup.
- Right-click on the project >
To run the application, navigate to the src/com/example/bouncingballgamejavafx
directory and compile the BouncingBall.java
file. Then, execute the main method within the BouncingBall
class.
Ensure that the JavaFX SDK is properly configured in your IDE before running the application.
Alternatively, you can run the application using the following Maven command:
mvn clean javafx:run
Contributions to the Bouncing Ball game are welcome. Please feel free to fork the repository, make your changes, and submit a pull request.
This project is licensed under the MIT license. See LICENSE for more details.
- Son Nguyen - hoangsonww
Created with ❤️ by Son Nguyen in 2024.