Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hoodscott/goproject
Level 3 Team Project Files
https://github.com/hoodscott/goproject
Last synced: about 1 month ago
JSON representation
Level 3 Team Project Files
- Host: GitHub
- URL: https://github.com/hoodscott/goproject
- Owner: hoodscott
- License: lgpl-3.0
- Created: 2015-09-28T13:25:51.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-10-04T15:46:54.000Z (about 1 year ago)
- Last Synced: 2023-10-05T03:43:24.195Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 11.2 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Interactive Go Life & Death Player
This project is an interactive client that allows you to play "Life and Death" puzzles in the game of [Go](https://en.wikipedia.org/wiki/Go_(game)). It features several types of AIs that use various game trees such as minimax, alpha-beta and optimised variants of these, together with some pattern matching. It is currently capable of handling small to mid-sized puzzles.
## Running the Player
The latest version of the player can be played by running the JAR in the main directory like so:
```
java -jar GoProblemSolver.jar
```To actually play a game you can create a puzzle or load an existing one under:
```
src/saveData/boards/
```
You can then choose to either have human-vs-human, AI-vs-human or AI-vs-AI play. In AI-vs-AI play you can watch the AIs try outplay each other move by move.
Lastly it is possible to configure the AIs game trees and their parameters in the player to observe their behavioural changes.### Prerequisites
To run the player you will need the JRE version >=7.
If you want to recompile the player from source, you will also need [Ant](http://ant.apache.org/) and then execute the following command in the base directory on "build.xml":
```
ant compile jar
```## Running player's tests
If you want to run the player's unit tests (to check for correctness) you use the following Ant command:
```
ant junit
```
or for a more verbose variant:
```
ant junitreport
```## Authors
* [NiklasZ](https://github.com/NiklasZ)
* [eilidhbagel](https://github.com/eilidhbagel)
* [Scott Hood](https://github.com/hoodscott)
* [Kiril](https://github.com/kirilhristov91)
* [jamie00170](https://github.com/jamie00170)