Skip to main content

Gymnasium Environment for the game Seven Wonders

Project description

7Wonder-RL-Lib

Library providing environment for testing Reinforcement learning in 7 Wonders Game.

GitHub GitHub issues

codecov CodeQL Build + CodeCov + Pylint/Black PyPI GitHub Pages

Overview

There are multiple environments for the AI game testing. However, environments implemented now are mostly covered only the traditional board games (Go, Chess, etc.) or 52-card based card games (Poker, Rummy, etc.) where games do not really have interactions with other players.

Most of the Euro-games board games are good game environments to test the algorithm on as there are many aspects to explore, such as tradings, dealing with imperfect informations, stochastic elements, etc.

7 Wonders board games introduced multiple elements mentioned above which are good for testing out new algorithm. This library will cover basic game systems and allow users to customize the environments with custom state space and rewarding systems.

Installation

To install the gym environment, run

make develop
make build 
make install

Usage

Example codes of how to declare the gym environment is displayed below

import SevenWonEnv
from SevenWonEnv.envs.mainGameEnv import Personality 

env = gym.make("SevenWonderEnv", player=4) #Declare Environment with 4 Players

To use the Personality that is given (RandomAI, RuleBasedAI, DQNAI, Human), use setPersonality(personalityList)

personalityList = []
    personalityList.append(Personality.DQNAI)
    for i in range(1, 4):
        personalityList.append(Personality.RandomAI)
    env.setPersonality(personalityList)

To run the game each step,

stateList = env.step(None)

The variable stateList consist of n 4-tuple, depends on number of players. Each tuple are (new_state, reward, done, info).

To add the custom model, change the SevenWondersEnv/SevenWonEnv/envs/mainGameEnv/Personality.py file. Each personality will have 2 main functions, which are init and make_choice.

For example, RandomAI takes all possible choices and randomly choose one choice.

class RandomAI(Personality):
    def __init__(self):
        super().__init__()

    def make_choice(self, player, age, options):
        return random.choice(range(len(options)))

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

7Wonder-RL-Lib-0.1.1.tar.gz (6.0 MB view details)

Uploaded Source

Built Distribution

7Wonder_RL_Lib-0.1.1-py3-none-any.whl (356.3 kB view details)

Uploaded Python 3

File details

Details for the file 7Wonder-RL-Lib-0.1.1.tar.gz.

File metadata

  • Download URL: 7Wonder-RL-Lib-0.1.1.tar.gz
  • Upload date:
  • Size: 6.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for 7Wonder-RL-Lib-0.1.1.tar.gz
Algorithm Hash digest
SHA256 ea47870349f158648b051a698bbe434e661322e183c3e2312978848a308e8b9a
MD5 6220053def3ec8ab718db62f1e177ba2
BLAKE2b-256 24bb6a213194d5f06522203c7617e9c4c53580f91add432ca4dc457507761a57

See more details on using hashes here.

File details

Details for the file 7Wonder_RL_Lib-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for 7Wonder_RL_Lib-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 75bf772ee5d84eac831d5391b65c42b0619efff6c3c2ec0e7c1a1d5f5ff1ccf0
MD5 0ad5878bb82af0b6855a06c1ab4ccdf6
BLAKE2b-256 796fba6e0e4268ddccc28792d9ef4a239541683e22d51f1036ca428bd427ca1d

See more details on using hashes here.

Supported by

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