Skip to main content

Library wrapper to create bots for Scripts of Tribute AI programming game. It runs gRPC client-servers instances and connect with main engine made in C#

Project description

Scripts of Tribute Python Library

The Scripts of Tribute Python library is a wrapper for creating AI bots to compete in the Scripts of Tribute programming game. It facilitates communication with the game's C# .NET engine via gRPC, allowing you to implement custom bots and simulate game scenarios.


Table of Contents

  1. Installation
  2. Getting Started
  3. Game Class Documentation
  4. Example
  5. Contributing
  6. License

Installation

To install the library, use pip:

pip install scripts-of-tribute

Getting Started

Creating your bot

To create your own bot, you need to inherit from the ScriptsOfTribute.base_ai.BaseAI class and implement the required methods:

def pregame_prepare(self):
        """Optional: Prepare your bot before the game starts."""
        pass

def select_patron(self, available_patrons: List[PatronId]) -> PatronId:
    """Choose a patron from the available list."""
    raise NotImplementedError

def play(self, game_state: GameState, possible_moves: List[BasicMove], remaining_time: int) -> BasicMove:
    """Choose a move based on the current game state."""
    raise NotImplementedError

def game_end(self, final_state):
    """Optional: Handle end-of-game logic."""
    pass

What's important here in the play method that bot should return BasicMove object from the list, it is because Move objects come from the engine with an Identification number move_id which is used to quickly identify whether move is legal or not.

Running the game

The ScriptsOfTribute.game.Game class is used to register and run your bots. Here's how to use it:

from ScriptsOfTribute.game import Game
from Bots.RandomBot import RandomBot
from Bots.MaxPrestigeBot import MaxPrestigeBot

def main():
    bot1 = RandomBot(bot_name="RandomBot")
    bot2 = MaxPrestigeBot(bot_name="MaxPrestigeBot")
    
    game = Game()
    game.register_bot(bot1)
    game.register_bot(bot2)
    
    game.run(
        "RandomBot",
        "MaxPrestigeBot",
        start_game_runner=True,
        runs=10,
        threads=1,
    )

if __name__ == "__main__":
    main()

Game.run Parameters:

  • bot1Name: Name of the first bot.
  • bot2Name: Name of the second bot.
  • start_game_runner: If True, the game runner starts automatically. Set to False if you want to run the engine manually.
  • runs: Number of games to run.
  • threads: Number of threads to use for parallel execution.
  • enable_logs: Logging level ("NONE", "INFO", "DEBUG", etc.).
  • log_destination: File path to save logs.
  • seed: Random seed for reproducibility.
  • timeout: Timeout for each game (in seconds).
  • base_client_port: Base port for gRPC client communication (default: 50000).
  • base_server_port: Base port for gRPC server communication (default: 49000).

Game class documentation

The Game class manages bot registration, game execution, and cleanup.

Key Methods:

  • register_bot: Register a bot instance.
  • run: Start the game with the specified bots and parameters.
  • _cleanup_processes: Clean up all running processes on exit.

Port Assignment:

  • The library assigns ports incrementally for multiple threads or bots:
    • First bot: 50000 (client), 49000 (server).
    • Second bot: 50001 (client), 49001 (server).
    • Additional threads increment ports accordingly.

On the first run with start_game_runner=True the Game class will download newest GameRunner suited for your operating system from our official releases page, unzip it and then run it. After that if Game class find the GameRunner it won't download it again.

Example

Here’s a complete example of creating and running two bots:

from Bots.RandomBot import RandomBot
from Bots.MaxPrestigeBot import MaxPrestigeBot
from ScriptsOfTribute.game import Game

def main():
    bot1 = RandomBot(bot_name="RandomBot")
    bot2 = MaxPrestigeBot(bot_name="MaxPrestigeBot")
    
    game = Game()
    game.register_bot(bot1)
    game.register_bot(bot2)
    
    game.run(
        "RandomBot",
        "MaxPrestigeBot",
        start_game_runner=True,
        runs=10,
        threads=1,
    )

if __name__ == "__main__":
    main()

This code is available in the examples directory, as well with the example bots.

Contributing

if you would like to work with the code locally you might need to (re)generate protobuf files. The library uses gRPC for communication with the C# .NET engine. The .proto files are located in the ScriptsOfTribute/Protos folder. To generate the necessary Python files, run:

python -m grpc_tools.protoc -IProtos --python_out=./Protos/ --grpc_python_out=Protos/. Protos/enums.proto Protos/basics.proto Protos/main.proto

This will generate the required gRPC Python files in the Protos folder.

License

This project is licensed under the MIT License. See the LICENSE file for details.


Happy bot building! 🚀

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scripts_of_tribute-1.0.2.tar.gz (21.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

scripts_of_tribute-1.0.2-py3-none-any.whl (24.5 kB view details)

Uploaded Python 3

File details

Details for the file scripts_of_tribute-1.0.2.tar.gz.

File metadata

  • Download URL: scripts_of_tribute-1.0.2.tar.gz
  • Upload date:
  • Size: 21.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.16

File hashes

Hashes for scripts_of_tribute-1.0.2.tar.gz
Algorithm Hash digest
SHA256 0398a9efe54e5bbe506cfea5dee27071b9ba015ebef70d3781bd851aaa36b94a
MD5 a7d4b42ddbc4b6f8bd1d73909cd47559
BLAKE2b-256 bf9422f8036473e85dabfd0ce2095a32b64ade3ed90a3391ed2b33525befd9f5

See more details on using hashes here.

File details

Details for the file scripts_of_tribute-1.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for scripts_of_tribute-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 275a50d845a2800487c2d6e642f8c19eed5fcf1bad483664b2905cb8e56d5bfd
MD5 67ce2c42849e9533c9ca61781ef23688
BLAKE2b-256 5d19d7dc923567e43b23515ce5c1e41315f484f51d5d39aef33d9c128e368d17

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page