Skip to content

tudo-aqua/bgw

Repository files navigation

BoardGameWork

Build GitHub-Pages

Maven Central Maven Central Maven Central Maven Central

KDocs BGW-Gui KDocs BGW-Gui KDocs BGW-Gui

BoardGameWork is a framework for creating 2D board game applications.

Read on how to get started, or take a look at the complete API documentation for bgw-gui, bgw-net-common, or bgw-net-client.

Examples are available for MauMau, Sudoku and Tetris.

Getting Started

Prerequisites

BoardGameWork is built on top of JavaFX 17 and therefore requires at least JDK 11. Since JavaFX was decoupled from the JavaJDK as of JDK 11, BoardGameWork comes with JavaFX dependencies including their native libraries for various platforms like Windows, Linux and Mac.

We recommend installing a JDK build that already includes JavaFX to ensure your platform is supported. Azul Zulu Builds of OpenJDK support a wide range of platforms and architectures including Mac M1.

Setup

Start by adding the latest version of BGW as a dependency to your project.

Gradle

implementation("tools.aqua:bgw-gui:0.9")

Maven

<dependency>
  <groupId>tools.aqua</groupId>
  <artifactId>bgw-gui</artifactId>
  <version>0.9</version>
</dependency>

You also need to specify the correct JVM target in your build system.

Gradle

compileKotlin {
    kotlinOptions.jvmTarget = "11"
}

Maven

<configuration>
    <jvmTarget>11</jvmTarget>
</configuration>