Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tandy-1000/minmax-tictactoe
A simple minmax tictactoe game in Nim
https://github.com/tandy-1000/minmax-tictactoe
alpha-beta-pruning minimax nim tic-tac-toe
Last synced: 20 days ago
JSON representation
A simple minmax tictactoe game in Nim
- Host: GitHub
- URL: https://github.com/tandy-1000/minmax-tictactoe
- Owner: tandy-1000
- License: gpl-3.0
- Created: 2021-11-01T14:19:03.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-20T11:27:32.000Z (about 3 years ago)
- Last Synced: 2023-03-06T03:51:08.918Z (almost 2 years ago)
- Topics: alpha-beta-pruning, minimax, nim, tic-tac-toe
- Language: Nim
- Homepage:
- Size: 60.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# minmax-tictactoe [![CI](https://github.com/tandy-1000/minmax-tictactoe/actions/workflows/ci.yml/badge.svg)](https://github.com/tandy-1000/minmax-tictactoe/actions/workflows/ci.yml) [![Windows build](https://github.com/tandy-1000/minmax-tictactoe/actions/workflows/windows.yml/badge.svg)](https://github.com/tandy-1000/minmax-tictactoe/actions/workflows/windows.yml)
A simple minmax tictactoe game in Nim with [nico](https://github.com/ftsf/nico).## Compilation
Get SDL2 dll: `nimble deps`Install dependencies: `nimble build`
Compile a release executable: `nimble release`
## TODO
- [x] Show potential move on mouse hover
- [x] Add rules page
- [x] Add varying difficulty level
- [x] Add start page where you choose player / difficulty
- [x] Refactor to make player selectable
- [x] Add hints page