boardgame2vec/README.md

13 lines
731 B
Markdown
Raw Normal View History

2018-01-27 22:04:20 +00:00
# boardgame2vec
An attempt at board game state space serialization. The basic assumption is that the board game is just a complicated state machine, with player playing moves that result in state transitions.
If you can serialize a board game, you can do cool stuff:
1. Play it over the wire
2. Record games played over time
3. Learn patterns from previous games
2018-01-27 22:07:08 +00:00
This tries not to introduce players into the state itself, instead use markers to keep track of where everything is. Built using Cap'n Proto. The game rules themselves are not part of this, and game validations are optional.
For eg, having a chess serialization that allows for 2 kings is _okay_, since the game's logic would never allow it to reach such a state.