Skip to main content

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

Release files for flappy-bird-gym 0.3.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for flappy-bird-gym 0.3.0
File Size Uploaded
flappy-bird-gym-0.3.0.tar.gz 537.5 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for flappy-bird-gym 0.3.0
File Interpreter ABI Platform
flappy_bird_gym-0.3.0-py3-none-any.whl Python 3 none any Details

Total release size: 1.1 MB

Release files / flappy-bird-gym-0.3.0.tar.gz

Download URL flappy-bird-gym-0.3.0.tar.gz
Size 537.5 kB
Tags Source
SHA-256 checksum
How to use checksums
a09d4c4b89659d853a17bf4742e1dc5c9c9be0efeda2e483ef30eb2771ef26e7
BLAKE2b-256 checksum
How to use checksums
23d5b5194a68dcd18b651b17aadf9973f46b0a53481c17a4cfc01af3517e9e34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.6.12

Release files / flappy_bird_gym-0.3.0-py3-none-any.whl

Download URL flappy_bird_gym-0.3.0-py3-none-any.whl
Size 558.1 kB
Tags Python 3
SHA-256 checksum
How to use checksums
4f40a7d3a22e77dcac9cb3843391190c6c91987b319b27af9bc7e27b0a7b31a4
BLAKE2b-256 checksum
How to use checksums
00ea0fd4435fa2226f3d0d8d0a3840de586df030df7150408ca1e0769c077b1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.6.12

Release history Release notifications | RSS feed

This release

0.3.0 This release

2 release files

0.2.0

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page