Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manuel-mauky/colorpuzzlefx
A little puzzle game written with JavaFX 8
https://github.com/manuel-mauky/colorpuzzlefx
game javafx javafx-application
Last synced: 2 months ago
JSON representation
A little puzzle game written with JavaFX 8
- Host: GitHub
- URL: https://github.com/manuel-mauky/colorpuzzlefx
- Owner: manuel-mauky
- License: gpl-3.0
- Created: 2014-04-24T20:52:24.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-11-19T15:52:21.000Z (about 9 years ago)
- Last Synced: 2023-03-12T02:39:36.308Z (almost 2 years ago)
- Topics: game, javafx, javafx-application
- Language: Java
- Size: 124 KB
- Stars: 10
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ColorPuzzleFX
This is a little Game written with JavaFX (8).
It's a remake of a [game](https://github.com/lestard/ColorPuzzle) I have developed some time ago with Java Swing.![ColorPuzzleFX screenshot](screenshot.png)
### Goal
The starting point is a grid of cells with different colors. The player controls a single cell in the top left corner. By changing the color of the controlled cell all cells in the neighborhood with the same color will now be controlled too. The goal is to occupy the whole grid with as few steps as possible.
### Play the game
You can download a runnable JAR from the [release-secton](https://github.com/lestard/ColorPuzzleFX/releases/download/v0.1.0/colorpuzzlefx.jar) of github. To run the game you need Oracles Java version 8 installed.
### Build the game
To build the game you need the build system [gradle](http://www.gradle.org/) to be installed.
You can then run `./gradlew run` (linux/mac-os) or `gradlew.bat run` (windows) on the command line to execute the application.A runnable JAR can be created with `./gradlew shadowJar`. The JAR file is then located under `build/libs/colorpuzzlefx-all.jar`.