Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Middle-Eastern dominoes as independent game #1211

Merged
merged 8 commits into from
May 31, 2024
12 changes: 12 additions & 0 deletions docs/games.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
| 🔶 | [Skat (simplified |
: : bidding)](#skat-simplified-bidding) :
| 🔶 | [Solitaire (K+)](#solitaire-k) |
| 🔶 | [Team Dominoes](#team-dominoes) |
| 🟢 | [Tic-Tac-Toe](#tic-tac-toe) |
| 🟢 | [Tiny Bridge](#tiny-bridge) |
| 🟢 | [Tiny Hanabi](#tiny-hanabi) |
Expand Down Expand Up @@ -494,6 +495,17 @@
* 2 players.
* [Wikipedia](https://en.wikipedia.org/wiki/Kuhn_poker)

### Team Dominoes

* Team version of dominoes.
* Consists of 28 tiles, featuring all combinations of spot counts (also called
pips or dots) between zero and six.
* Traditional game.
* Non-deterministic.
* Imperfect information.
* 4 players.
* [Wikipedia](https://en.wikipedia.org/wiki/Dominoes#Latin_American_Version)

### Laser Tag

* Agents see a local part of the grid, and attempt to tag each other with
Expand Down
1,585 changes: 1,585 additions & 0 deletions open_spiel/integration_tests/playthroughs/python_team_dominoes.txt

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions open_spiel/python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ set(PYTHON_TESTS ${PYTHON_TESTS}
games/chat_game_test.py
games/chat_games/envs/base_envs/base_envs_test.py
games/data_test.py
games/team_dominoes_test.py
games/dynamic_routing_test.py
games/dynamic_routing_utils_test.py
games/liars_poker_test.py
Expand Down
1 change: 1 addition & 0 deletions open_spiel/python/games/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@
from open_spiel.python.games import iterated_prisoners_dilemma
from open_spiel.python.games import kuhn_poker
from open_spiel.python.games import liars_poker
from open_spiel.python.games import team_dominoes
from open_spiel.python.games import tic_tac_toe
Loading
Loading