A Gymnasium environment for the Flappy Bird game.
Project description
Flappy Bird for Gymnasium
This repository contains the implementation of two Gymnasium environments for the Flappy Bird game. The implementation of the game's logic and graphics was based on the flappy-bird-gym project, by @Talendar.
State space
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.
FlappyBird-v0
- the last pipe's horizontal position
- the last top pipe's vertical position
- the last bottom pipe's vertical position
- the next pipe's horizontal position
- the next top pipe's vertical position
- the next bottom pipe's vertical position
- the next next pipe's horizontal position
- the next next top pipe's vertical position
- the next next bottom pipe's vertical position
- player's vertical position
- player's vertical velocity
- player's rotation
FlappyBird-rgb-v0
The RGB image of size 288, 512 pixels. The pixel values are from range [0, 255]. The image does not contain score of bird.
Action space
- 0 - do nothing
- 1 - flap
Rewards
- +0.1 - every frame it stays alive
- +1.0 - successfully passing a pipe
- -1.0 - dying
Installation
To install flappy-bird-gymnasium
, simply run the following command:
$ pip install flappy-bird-gymnasium
Usage
Like with other gymnasium
environments, it's very easy to use flappy-bird-gymnasium
.
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_gymnasium
import gymnasium
env = gymnasium.make("FlappyBird-v0")
obs, _ = env.reset()
while True:
# Next action:
# (feed the observation to your agent here)
action = env.action_space.sample()
# Processing:
obs, reward, terminated, _, 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 terminated:
break
env.close()
Playing
To play the game (human mode), run the following command:
$ flappy_bird_gymnasium
To see a random agent playing, add an argument to the command:
$ flappy_bird_gymnasium --mode random
To see a Deep Q Network agent playing, add an argument to the command:
$ flappy_bird_gymnasium --mode dqn
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
Built Distribution
File details
Details for the file flappy-bird-gymnasium-0.2.1.tar.gz
.
File metadata
- Download URL: flappy-bird-gymnasium-0.2.1.tar.gz
- Upload date:
- Size: 1.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a54803dbd2a58403776a77aa0a4f510e05b6c619a691942555cf86fb7cce9882 |
|
MD5 | 1aafb579437610325b7d0f0edba3ed0a |
|
BLAKE2b-256 | 14a465a97c8635a3e9c2a6129af8e53084699cbfcd7b4097e1dfb18e50644689 |
File details
Details for the file flappy_bird_gymnasium-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: flappy_bird_gymnasium-0.2.1-py3-none-any.whl
- Upload date:
- Size: 1.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e87c8e8794423d31dcc0f3900aeb9d39bfef9f64a8b6e9172573860e11c46ca |
|
MD5 | c2180f1ce2d3d4b3990b804bc310c5b8 |
|
BLAKE2b-256 | f1cb200253d3fea3a2bde7dfd2c1595b95bf07eb13fba768ef9013fbd1214466 |