Skip to main content

An auction game for trading-bots based on d&d die rolls.

Project description

dnd-auction-game

In this game, your goal is to score as many points as possible by participating in auctions.

Every round, each player gets 1000 gold to use in these auctions. At the beginning of each round, you'll see a set number of auctions, and you need to submit your bids in the form of a dictionary (you can choose not to bid as well).

The server will reward the auctions to the highest bidders (there can be multiple winners if there's a tie), and the winning player will earn points based on a random dice roll.

If you don't win an auction, you'll get back 60% of the gold you bid. The exact number of points you receive from an auction is determined by rolling dice, so it's a bit unpredictable.

In addition, Iron Bank of Braavos will follow the current interest rate (found in the bank state) up to a limit. So if the upper limit is 2000, the interest is 10% and you have 3000 gold, then you will get 10% interest on the first 2000 gold you have. The bank will also adjust the starting gold to be current marked rate.

To pass, according to Gandalf, you must obtain at least 10 points.

Auctions
The auctions are presented in D&D form, for example: 3d6+5 means throw a 6 sided die 3 times and add 5, add it all up and thats the number of points given by the auction. In other words the exact amount of points given for an auction is stochastic.

Installation

To install, run:
pip install dnd_auction_game

Flow

A game is done in the following order:

  1. start the server
  2. start&connect all agents
  3. run the game runner
  4. Observe the leadboard at '/' on the server (http://localhost:8000 if running default & local)
  5. The logs of all the games is stored in /logs - Use these to train & improve your agent.

Server

To run the server, use: 'uvicorn dnd_auction_game.server:app' in the directory root directory.
Ctrl+C to stop it cleanly.

Agents (players)

See the folder example_agents (on github) for examples on how to create a agent. agent_print_info.py agent_tiny_bid.py agent_random_walk.py agent_random_single.py

NOTE: If playing on a non-local server the agent must set the host&port in the file.

In general you must implement a make_bid() function that takes the following parameters (see agent_print_info.py for how to parse this info):

  • @agent_id:str - a string that is the agent id of the current agent.

  • @current_round:int - the current round

  • @states:dict - a dict of all agents, key: agent_id, value is a dict:
    {"gold": agents_gold, "points": agents points}

  • @auctions:dict - a dict of the auctions in the current round, key: auction_id, value is a dict:
    {"die": size of the die: 2,3,4,6,8,10,12 or 20,
    "num": the number of dices to be thrown, "bonus": a flat sum to be added.}
    This can be read as D&D style throw, example: 3d6+7
    would be: {"die": 6, "num": 3, "bonus": 7}.

  • @prev_auctions:dict - a dict of the previous round. similar to @auctions, but also contains the "reward" field that tells how many the winner of the auction gained. In addition it contain a "bids" key that gives a list of the bids for this particular auction, sorted so that the winning bid is always the first in the list.

  • @bank_state:dict - a dict containing the marked rates for the rest of the game: gold_income_per_round, bank_interest_per_round, bank_limit_per_round. Where the first [0] index gives the next rounds data.

Play the Game

Run 'python -m dnd_auction_game.play' This will run the game for 12 rounds.

Use python 'python -m dnd_auction_game.play XX' to play for XX rounds. Example: 'python -m dnd_auction_game.play 42' will play the game for 42 rounds.

Remember: connect all agents BEFORE running play_game.py, the server does not need to be restarted.

The logs (complete history)

The logs (complete history) will be stored in ./logs use it to create clever agents.

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

dnd_auction_game-0.3.2.tar.gz (13.4 kB view details)

Uploaded Source

Built Distribution

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

dnd_auction_game-0.3.2-py3-none-any.whl (13.0 kB view details)

Uploaded Python 3

File details

Details for the file dnd_auction_game-0.3.2.tar.gz.

File metadata

  • Download URL: dnd_auction_game-0.3.2.tar.gz
  • Upload date:
  • Size: 13.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.5

File hashes

Hashes for dnd_auction_game-0.3.2.tar.gz
Algorithm Hash digest
SHA256 a750759012ef6d94782e8849eaf2f13cb5e778f1f330ba3d3e89137cdf61301a
MD5 1a998e3b203fa12d385f9b1e6e8fccfc
BLAKE2b-256 2f7600978880975d49517ae688f37b233591b28935c80b5c02b3d2c16c13cc23

See more details on using hashes here.

File details

Details for the file dnd_auction_game-0.3.2-py3-none-any.whl.

File metadata

File hashes

Hashes for dnd_auction_game-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0f5061bcf2d48e0a1c5d1a8f66fe56b11e7a3c27004dbd5e5aed28b649e201d5
MD5 bad730fc680d5ae6f3b2930520d5b4b3
BLAKE2b-256 3dfefbc00efefde129d50e395dcf11743a443e3359d8f41f43be1ab1b4cf62e9

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