Codenames board game logic implementation in python.
Project description
Codenames
Code infrastructure for the Codenames board game.
Designed to serve as a base for implementing players (agents) with different strategies and algorithms.
See the codenames-solvers repository for such examples.
Installation
Install from PyPI using pip: pip install codenames
Usage
Here is a simple example of command-line based players, and a GameRunner
that runs a game between them:
import logging
import sys
from codenames.boards.builder import generate_board
from codenames.game.color import TeamColor
from codenames.game.move import Guess, Hint
from codenames.game.player import Guesser, Hinter, GamePlayers
from codenames.game.runner import GameRunner
from codenames.game.state import GuesserGameState, HinterGameState
logging.basicConfig(level=logging.INFO, format="%(message)s", stream=sys.stdout)
# Implement basic players
class CLIHinter(Hinter):
def pick_hint(self, game_state: HinterGameState) -> Hint:
print("Board state: \n" + game_state.board.printable_string)
hint_word = input("Enter hint word: ")
card_amount = int(input("Enter card amount: "))
return Hint(word=hint_word, card_amount=card_amount)
class CLIGuesser(Guesser):
def guess(self, game_state: GuesserGameState) -> Guess:
print(game_state.board.printable_string)
card_word = input("Enter card word: ")
card_index = game_state.board.find_card_index(word=card_word)
return Guess(card_index=card_index)
# Run game
def run_cli_game():
language = "english"
board = generate_board(language=language)
blue_hinter, blue_guesser = CLIHinter("Yoda", TeamColor.BLUE), CLIGuesser("Luke", TeamColor.BLUE)
red_hinter, red_guesser = CLIHinter("Einstein", TeamColor.RED), CLIGuesser("Newton", TeamColor.RED)
players = GamePlayers.from_collection([blue_hinter, blue_guesser, red_hinter, red_guesser])
runner = GameRunner(players=players, board=board)
winner = runner.run_game()
print(f"Winner: {winner}")
if __name__ == "__main__":
run_cli_game()
Example output:
[Blue] turn.
Board state:
+------------+------------+--------------+-------------+-------------------+
| 🟦 tax | ⬜ drama | ⬜ thick | 🟥 africa | 💀 transformation |
+------------+------------+--------------+-------------+-------------------+
| ⬜ project | 🟦 athlete | 🟥 vegetable | ⬜ engineer | 🟥 human |
+------------+------------+--------------+-------------+-------------------+
| ⬜ chain | 🟦 cake | 🟦 shift | 🟦 study | 🟥 will |
+------------+------------+--------------+-------------+-------------------+
| 🟥 outcome | 🟥 desk | 🟥 soviet | ⬜ rare | 🟥 youth |
+------------+------------+--------------+-------------+-------------------+
| 🟦 account | 🟦 couple | ⬜ solve | 🟦 academic | 🟦 stable |
+------------+------------+--------------+-------------+-------------------+
Enter hint word: example
Enter card amount: 2
Hinter: [example] 2 card(s)
+---------+---------+-----------+----------+----------------+
| tax | drama | thick | africa | transformation |
+---------+---------+-----------+----------+----------------+
| project | athlete | vegetable | engineer | human |
+---------+---------+-----------+----------+----------------+
| chain | cake | shift | study | will |
+---------+---------+-----------+----------+----------------+
| outcome | desk | soviet | rare | youth |
+---------+---------+-----------+----------+----------------+
| account | couple | solve | academic | stable |
+---------+---------+-----------+----------+----------------+
Enter card word: account
Guesser: '🟦 account', correct!
+------------+---------+-----------+----------+----------------+
| tax | drama | thick | africa | transformation |
+------------+---------+-----------+----------+----------------+
| project | athlete | vegetable | engineer | human |
+------------+---------+-----------+----------+----------------+
| chain | cake | shift | study | will |
+------------+---------+-----------+----------+----------------+
| outcome | desk | soviet | rare | youth |
+------------+---------+-----------+----------+----------------+
| 🟦 account | couple | solve | academic | stable |
+------------+---------+-----------+----------+----------------+
Enter card word: rare
Guesser: '⬜ rare', wrong!
Guesser wrong, turn is over
...
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file codenames-5.0.0.tar.gz
.
File metadata
- Download URL: codenames-5.0.0.tar.gz
- Upload date:
- Size: 28.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e45e713e405c7c304c8bcc2fddccace92ce1f38bd5f5ac7809968a46bcd0e9af |
|
MD5 | e67690da6d9b67d4a4bc3a9f77df5eb2 |
|
BLAKE2b-256 | d03ac0ebe09020992f20a572cbaee23982c8f03ff11403274039e50d7f93462b |
Provenance
The following attestation bundles were made for codenames-5.0.0.tar.gz
:
Publisher:
pipeline.yml
on asaf-kali/codenames
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
codenames-5.0.0.tar.gz
- Subject digest:
e45e713e405c7c304c8bcc2fddccace92ce1f38bd5f5ac7809968a46bcd0e9af
- Sigstore transparency entry: 148005045
- Sigstore integration time:
- Predicate type:
File details
Details for the file codenames-5.0.0-py3-none-any.whl
.
File metadata
- Download URL: codenames-5.0.0-py3-none-any.whl
- Upload date:
- Size: 35.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6bf1a88b57446e885c9c6c6bfa9559d2a4f9015237783bb945deb59b31529d7 |
|
MD5 | 4c5956585dd766739afab2d679bc8ec8 |
|
BLAKE2b-256 | db516af807afe500e752b5fc7300de3b90fad3e981be47c7db504efda336bab0 |
Provenance
The following attestation bundles were made for codenames-5.0.0-py3-none-any.whl
:
Publisher:
pipeline.yml
on asaf-kali/codenames
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
codenames-5.0.0-py3-none-any.whl
- Subject digest:
d6bf1a88b57446e885c9c6c6bfa9559d2a4f9015237783bb945deb59b31529d7
- Sigstore transparency entry: 148005047
- Sigstore integration time:
- Predicate type: