Skip to main content

Gym interface for pycolab games.

Project description

Gym PyColab

gym interface for pycolab games.


Extraterrestrial Marauders

Extraterrestrial Marauders

$ pip install gym-pycolab

API

Example

Inherit from gym_pycolab.PyColabEnv to make a gym.Env version. Also see pycolab_games.py for more examples.

import gym_pycolab
from gym import spaces

class MyGameEnv(gym_pycolab.PyColabEnv):
    """A pycolab game env."""

    def __init__(self,
                 max_iterations=10,
                 default_reward=-1.):
        super(MyGameEnv, self).__init__(
            max_iterations=max_iterations,
            default_reward=default_reward,
            action_space=spaces.Discrete(4))

    def make_game(self):
        return my_game

    def make_colors(self):
        return {'#': (0, 0, 255)}

env = MyGameEnv()
state = env.reset()
state, reward, done, info = env.step(0)

Games and Envs

Includes most of the pycolab example games (with gym.make(game) or gym_pycolab.{game}Env(...)):

Running an Example

Rendering the ExtraterrestrialMarauders-v0 with random actions:

$ python -m gym_pycolab.pycolab_games --game extraterrestrial_marauders

Development

Development is started with pipenv.

$ pipenv install
$ pipenv shell

Testing

$ python -m gym_pycolab.pycolab_env_test

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

gym-pycolab-1.0.0.tar.gz (6.9 kB view hashes)

Uploaded Source

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