A Gymnasium environment for the Flappy Bird game.
Project description
Flappy Bird for Gymnasium
This repository contains the implementation of Gymnasium environment 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-v0" environment, yields simple numerical information about the game's state as observations or RGB-arrays (images) representing the game's screen.
FlappyBird-v0
- option
- The LIDAR sensor 180 readings
- option
- 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
- option
- or RGB-array (image) representing the game's screen
Action space
- 0 - do nothing
- 1 - flap
Rewards
- +0.1 - every frame it stays alive
- +1.0 - successfully passing a pipe
- -1.0 - dying
- −0.5 - touch the top of the screen
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 flappy_bird_gymnasium
import gymnasium
env = gymnasium.make("FlappyBird-v0", render_mode="human", use_lidar=True)
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)
# 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.4.0.tar.gz
.
File metadata
- Download URL: flappy-bird-gymnasium-0.4.0.tar.gz
- Upload date:
- Size: 37.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78358e9a73740e5214b6bb7d965971bc645d9baecc092c86ef02726b9d62347b |
|
MD5 | c13cc2a4b6b07952a56283590402c70b |
|
BLAKE2b-256 | 6a46de0965899428dccfe14d9f5242f7fbaca91d66a083d6bcbc380567cffcdd |
File details
Details for the file flappy_bird_gymnasium-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: flappy_bird_gymnasium-0.4.0-py3-none-any.whl
- Upload date:
- Size: 37.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f215be1d747320a3b07b6934ed0d08ac7ee8fbf50dd45a5be77b7381a6ebf880 |
|
MD5 | d1289f4a9df8d1fa2edad3d722dc7f6b |
|
BLAKE2b-256 | ad8621717daf58d737671f5f08f8bd2e39cabe401f9c17a9d97765bfb81eb858 |