Code Monkey home page Code Monkey logo

gym-coup's Introduction

Coup RL Gym Environment

gym-coup is a Gym environment for a 2-player version of the deception-based board game Coup.

The env mostly follows the OpenAI Gym API spec, but also takes inspiration from PettingZoo to support multiple agents.

Installation

$ pip install -r requirements.txt
$ pip install -e .

Usage

In a python file:

import gym
import gym_coup
env = gym.make('coup-v0')
env.reset()

Then you can take .step()'s with each player's actions in the game. Actions are defined here. Make sure that on any turn, you are only taking valid actions. Check with .get_valid_actions().

To see how the game progresses set the log level and call .render():

import logging
logging.basicConfig()
logger = logging.getLogger('gym_coup')
logger.setLevel(logging.INFO)

For example:

>>> env.render()
INFO:gym_coup:Turn 0
INFO:gym_coup:Player: Cards | IsCardFaceUp | Coins | LastAction
INFO:gym_coup:P1: Captain Contessa | False False | 1 | _
INFO:gym_coup:P2: Assassin Ambassador | False False | 2 | _
>>> env.get_valid_actions(text=True)
['income', 'foreign_aid', 'tax', 'exchange', 'steal']
>>> env.step('income')  # P1 takes 1 coin of income
>>> env.render()
INFO:gym_coup:Turn 1
INFO:gym_coup:Player: Cards | IsCardFaceUp | Coins | LastAction
INFO:gym_coup:P1: Captain Contessa | False False | 2 | income
INFO:gym_coup:P2: Assassin Ambassador | False False | 2 | _

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.