vgdl
An environment to run atari-like games in VGDL.
Requirements
python >= 3.6
Installation
pip install -r requirements.txt
Usage
# Create an enviroment
env = VGDLEnv("aliens", "all_games")
# Make steps
reward, game_over, is_win = env.step(action_number)
# Render the game
frame = env.render()
# Reset the game
env.reset()
For a basic example, check the test run.