RoboRally boardgame made with libgdx.
1. Maven is required for building the game, so install Maven first.
https://maven.apache.org/download.cgi
2. Clone the repository
git clone https://github.com/inf112-v20/G-Unit
3. Build the game with all dependencies
cd G-Unit && mvn clean verify assembly:single
4. Run the game
java -jar target/mvn-app-1.0-SNAPSHOT-jar-with-dependencies.jar
If executed properly you are presented with the main screen of the game.
-
Install a Java IDE, such as Eclipse or IntelliJ IDEA
-
Import the project from version control, as a Maven project.
Specifypom.xml
as the configuration file for Maven. -
Run the project, the main class is located at inf112.gunit.main.Main.
If executed properly you are presented with the main screen of the game.
- You are presented with the menu when you launch the game. Here you can select which difficulty you would like to play. You can also select how many AI opponents you would like to play against.
- When the game starts, you select your program cards and press the submit button.
- If you win or lose, you are presented with a game over screen, and the ability to play again.
You need to use Java 8 to run this game.