-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
169719a
commit fe5f8e2
Showing
8 changed files
with
63 additions
and
19 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Development | ||
|
||
To do. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Usage examples | ||
|
||
This page will be expanded in the future. For now, check out LibGameAI being | ||
used in these educational [Game AI Prototypes]. | ||
|
||
[Game AI Prototypes]:https://github.com/nunofachada/game-ai-prototypes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,38 @@ | ||
# This is the **HOMEPAGE**. | ||
Refer to [Markdown](http://daringfireball.net/projects/markdown/) for how to write markdown files. | ||
## Quick Start Notes: | ||
1. Add images to the *images* folder if the file is referencing an image. | ||
# LibGameAI <img src="docs/images/logo.svg" align="right" /> | ||
|
||
A .NET Standard 2.1 library of AI algorithms for video games with a focus on | ||
education. | ||
|
||
## Library components | ||
|
||
* [Decision trees](lib/DecisionTrees) | ||
* [Finite state machines](lib/FSMs) | ||
* [N-grams](lib/NGrams) | ||
* [Naive Bayes classifier](lib/NaiveBayes) | ||
* [Path finding algorithms](lib/PathFinding) | ||
* [PCG](lib/PCG) | ||
* [PRNG](lib/PRNG) | ||
* [QRNG](lib/QRNG) | ||
* [Utils](lib/Util) | ||
|
||
## Status & Usage | ||
|
||
This is very much a work in progress, and should be considered to be at an alpha | ||
stage of development. | ||
|
||
This library is currently used in the educational [Game AI Prototypes]. | ||
|
||
## Reference | ||
|
||
If you use or mention this software in your work, please cite the following | ||
reference: | ||
|
||
- Fachada, N., Barreiros, F.F., Lopes, P., & Fonseca, M. (2023, August). | ||
Active Learning Prototypes for Teaching Game AI. In *2023 IEEE Conference on | ||
Games (CoG)* (pp. TBD). IEEE. | ||
|
||
## License | ||
|
||
[MIT](LICENSE) | ||
|
||
[Game AI Prototypes]:https://github.com/nunofachada/game-ai-prototypes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
- name: Articles | ||
href: articles/ | ||
- name: API Documentation | ||
- name: Home | ||
href: index.md | ||
- name: Usage examples | ||
href: examples.md | ||
- name: Development | ||
href: dev.md | ||
- name: API Reference | ||
href: api/ | ||
homepage: api/index.md | ||
|