Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aborg-dev/gail
Competitive game playing agents library
https://github.com/aborg-dev/gail
Last synced: about 1 month ago
JSON representation
Competitive game playing agents library
- Host: GitHub
- URL: https://github.com/aborg-dev/gail
- Owner: aborg-dev
- Created: 2017-07-27T10:49:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-15T20:31:41.000Z (about 7 years ago)
- Last Synced: 2024-10-14T19:11:18.204Z (3 months ago)
- Language: C++
- Homepage:
- Size: 146 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Game AI Library
Library for implementing agents for playing games## Goals
The library should allow:
- Quickly build a simple bot for online game competition.
- Use of different algorithms from simple tree search to machine learning.
- Be fast to be used for real game rather than only for prototyping.## Code structure
This code in the repository is structured in the following way:
```
src/ <--- All source code is located here
core/ <--- Core classes used across different games
algorithms/ <--- Algorithms used accross different games
games/ <--- Implementations of games simulators and players
tests/ <--- Tests for all code
third_party/ <--- All 3rd-party code
scripts/ <--- Helper scripts
```