Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

Latest commit

 

History

History
50 lines (29 loc) · 1.8 KB

README.md

File metadata and controls

50 lines (29 loc) · 1.8 KB

INF112 Group project

RoboRally boardgame made with libgdx.

Build Status Codacy Badge License: MIT

Project setup

macOS and Linux

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.

Windows

  1. Install a Java IDE, such as Eclipse or IntelliJ IDEA

  2. Import the project from version control, as a Maven project.
    Specify pom.xml as the configuration file for Maven.

  3. 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.

Playing 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.

Notes

You need to use Java 8 to run this game.