edbeeching / godot_rl_agents

An Open Source package that allows video game creators, AI researchers and hobbyists the opportunity to learn complex behaviors for their Non Player Characters or agents
MIT License
902 stars 63 forks source link
godot reinforcement-learning simulation

Godot RL Agents

Feel free to join our Discord for help and discussions about Godot RL Agents.

Godot RL Agents is a fully Open Source package that allows video game creators, AI researchers and hobbyists the opportunity to learn complex behaviors for their Non Player Characters or agents. This repository provides:

You can find out more about Godot RL agents in our AAAI-2022 Workshop paper.

https://user-images.githubusercontent.com/7275864/140730165-dbfddb61-cc90-47c7-86b3-88086d376641.mp4

Quickstart Guide

This quickstart guide will get you up and running using the Godot RL Agents library with the StableBaselines3 backend, as this supports Windows, Mac and Linux. We suggest starting here and then trying out our Advanced tutorials when learning more complex agent behaviors. There is also a video tutorial which shows how to install the library and create a custom env.

Installation and first training

Install the Godot RL Agents library. If you are new to Python or not using a virtual environment, it's highly recommended to create one using venv or Conda to isolate your project dependencies.

Once you have set up your virtual environment, proceed with the installation:

pip install godot-rl

Download one, or more of examples, such as BallChase, JumperHard, FlyBy.

gdrl.env_from_hub -r edbeeching/godot_rl_JumperHard

You may need to add run permissions on the game executable.

chmod +x examples/godot_rl_JumperHard/bin/JumperHard.x86_64

Train and visualize, first download the Stable Baselines 3 example script in the github repo:

python examples/stable_baselines3_example.py --env_path=examples/godot_rl_JumperHard/bin/JumperHard.x86_64 --experiment_name=Experiment_01 --viz

Deprecated usage with an entrypoint (to be removed in version 1.0):

gdrl --env=gdrl --env_path=examples/godot_rl_JumperHard/bin/JumperHard.x86_64 --experiment_name=Experiment_01 --viz

In editor interactive training

You can also train an agent in the Godot editor, without the need to export the game executable.

  1. Download the Godot 4 Game Engine (.NET version) from https://godotengine.org/
  2. Open the engine and import the JumperHard example in examples/godot_rl_JumperHard
  3. Start in editor training with: python examples/stable_baselines3_example.py

Creating a custom environment

There is a dedicated tutorial on creating custom environments here. We recommend following this tutorial before trying to create your own environment.

If you face any issues getting started, please reach out on our Discord or raise a GitHub issue.

Exporting and loading your trained agent in onnx format:

The latest version of the library provides experimental support for onnx models with the Stable Baselines 3, rllib, and CleanRL training frameworks.

  1. First run train you agent using the sb3 example (instructions for using the script), enabling the option --onnx_export_path=GameModel.onnx
  2. Then, using the mono version of the Godot Editor, add the onnx model path to the sync node. If you do not seen this option you may need to download the plugin from source
  3. The game should now load and run using the onnx model. If you are having issues building the project, ensure that the contents of the .csproj and .sln files in you project match that those of the plugin source.

Advanced usage

https://user-images.githubusercontent.com/7275864/209160117-cd95fa6b-67a0-40af-9d89-ea324b301795.mp4

Please ensure you have successfully completed the quickstart guide before following this section.

Godot RL Agents supports 4 different RL training frameworks, the links below detail a more in depth guide of how to use a particular backend:

Contributing

We welcome new contributions to the library, such as:

Start by forking the repo and then cloning it to your machine, creating a venv and performing an editable installation.

# If you want to PR, you should fork the lib or ask to be a contibutor

git clone git@github.com:YOUR_USERNAME/godot_rl_agents.git
cd godot_rl_agents
python -m venv venv
pip install -e ".[dev]"

In order to run the tests, you'll need to make sure that you first have git-lfs installed. Once this is installed, you can download the examples which are used in the tests:

make download_examples

Note that the examples are only available for Linux and Windows. Once you've installed the examples, you can run the tests:

# check tests run
make test

Then add your features. Format your code with:

make style
make quality

Then make a PR against main on the original repo.

FAQ

Why have we developed Godot RL Agents?

The objectives of the framework are to:

How can I contribute to Godot RL Agents?

Please try it out, find bugs and either raise an issue or if you fix them yourself, submit a pull request.

When will you be providing Mac support?

This should now be working, let us know if you have any issues.

Can you help with my game project?

If the README and docs here not provide enough information, reach out to us on Discord or GitHub and we may be able to provide some advice.

How similar is this tool to Unity ML agents?

We are inspired by the the Unity ML agents toolkit and we aim to provide a more compact, concise and hackable codebase, with little abstraction.

License

Godot RL Agents is MIT licensed. See the LICENSE file for details.

"Cartoon Plane" (https://skfb.ly/UOLT) by antonmoek is licensed under Creative Commons Attribution (http://creativecommons.org/licenses/by/4.0/).

Citing Godot RL Agents

@article{beeching2021godotrlagents,
  author={Beeching, Edward and Dibangoye, Jilles and
    Simonin, Olivier and Wolf, Christian},
title = {Godot Reinforcement Learning Agents},
journal = {{arXiv preprint arXiv:2112.03636.},
year = {2021},
}

Acknowledgments

We thank the authors of the Godot Engine for providing such a powerful and flexible game engine for AI agent development. We thank the developers at Sample Factory, Clean RL, Ray and Stable Baselines for creating easy to use and powerful RL training frameworks. We thank the creators of the Unity ML Agents Toolkit, which inspired us to create this work.