Skip to main content

An OpenAI gym environment for the Flappy Bird game.

Project description

Flappy Bird for OpenAI Gym

Python versions PyPI License

This repository contains the implementation of two OpenAI Gym environments for the Flappy Bird game. The implementation of the game's logic and graphics was based on the FlapPyBird project, by @sourabhv.

The two environments differ only on the type of observations they yield for the agents. The "FlappyBird-rgb-v0" environment, yields RGB-arrays (images) representing the game's screen. The "FlappyBird-v0" environment, on the other hand, yields simple numerical information about the game's state as observations. The yielded attributes are the:

  • horizontal distance to the next pipe;
  • difference between the player's y position and the next hole's y position.

         

Installation

To install flappy-bird-gym, simply run the following command:

$ pip install flappy-bird-gym

Usage

Like with other gym environments, it's very easy to use flappy-bird-gym. Simply import the package and create the environment with the make function. Take a look at the sample code below:

import time
import flappy_bird_gym
env = flappy_bird_gym.make("FlappyBird-v0")

obs = env.reset()
while True:
    # Next action:
    # (feed the observation to your agent here)
    action = ...  # env.action_space.sample() for a random action

    # Processing:
    obs, reward, done, info = env.step(action)
    
    # Rendering the game:
    # (remove this two lines during training)
    env.render()
    time.sleep(1 / 30)  # FPS
    
    # Checking if the player is still alive
    if done:
        break

env.close()

Playing

To play the game (human mode), run the following command:

$ flappy_bird_gym

To see a random agent playing, add an argument to the command:

$ flappy_bird_gym --mode random

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

flappy-bird-gymS-0.3.0.tar.gz (544.5 kB view details)

Uploaded Source

Built Distribution

flappy_bird_gymS-0.3.0-py2.py3-none-any.whl (558.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file flappy-bird-gymS-0.3.0.tar.gz.

File metadata

  • Download URL: flappy-bird-gymS-0.3.0.tar.gz
  • Upload date:
  • Size: 544.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.11

File hashes

Hashes for flappy-bird-gymS-0.3.0.tar.gz
Algorithm Hash digest
SHA256 048528e141afebbd014d683f82eb363082f1b38aa5b3a9dd1266fbba7ffcfbbd
MD5 20c8b3df05c7d8fdc7690e699926fcfa
BLAKE2b-256 53f2c26f19c2865cd5bd35b83ffae033d379eafa0c53cd725291145f0cee5275

See more details on using hashes here.

File details

Details for the file flappy_bird_gymS-0.3.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for flappy_bird_gymS-0.3.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 afca1c2099fde28a306782ec8e359964bff304e2fc137b3afbaabca5f22f622a
MD5 6c524d25fcc8383ae838da862f1998b2
BLAKE2b-256 653139decbc0b5ed10480cd79b077f985bb5d8b79dee3fdaa8ab5caa3911e94f

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