A scorekeeping program for the board game Carcassonne
|
|
hace 7 años | |
|---|---|---|
| analysis | hace 7 años | |
| utilities | hace 7 años | |
| .gitignore | hace 7 años | |
| CHANGELOG.md | hace 7 años | |
| CarcassonneScore.conf.example | hace 7 años | |
| CarcassonneScore.py | hace 7 años | |
| LICENSE | hace 8 años | |
| README.md | hace 7 años | |
| cgame.py | hace 7 años | |
| manage_database.py | hace 7 años |
Score keeping software for Carcassonne to facilitate statistical analysis of games.
Before your first game you will need to initialize the sqlite database:
$ python manage_database.py --init
Assuming the database has been initialized, you can run a game with:
$ python CarcassonneScore.py
This launches the interactive shell. Press ? for a list of commands.
To update the database (add new players toggle availability of expansions), use the manage_database.py command. For example, to add a new player:
$ python manage_database.py -n NEW PLAYER
Use python manage_database.py -h to see the full list of options.
Some jupyter notebooks with sample analysis and a sample sqlite database containing one game are available in the analysis/ directory.
The utilities/ directory contains scripts which may be useful for correcting issues, but these should not be needed for normal operations.