Skip to content

Sources, Links and Information on using the Godot Game Engine in Robotics

License

Notifications You must be signed in to change notification settings

brean/godot-robotics-sources

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 

Repository files navigation

Godot Robotics

Ideas, Sources, Links and Information on using the Godot Game Engine in Robotics.

Use cases

Simulation

There is already some very advanced and open source Robotics simulation systems out there, for example Gazebo or MARS, but its always good to have alternatives.

Create User interfaces for Web and other devices

Godot is already used in the industry for exactly that, but documented use-cases and tutorials for beginners are missing.

Benefits from using Godot in Robotics

  • Fast and realistic [1][2] 3D Graphics including lighting (especially with Godot 4 - important for Robot Perception/Computer Vision training)
  • Interfaces for different physics engines, an own physics engine as another alternative for bullet/ODE in MARS/Gazebo/pybullet.
  • HTML5-export to create robot control user interfaces on modern mobile devices
  • A scripting language to easily interface with the enviroment that is also very good documented (GDScript / C#), existing programming documentation
    • allows the implementation of complex behavior without the need of additional dependencies (non-robotic actors, think of for example workers in a production scenario). The actor-plugin for Gazebo could be used to realize something like that, but its not as integrated as the scripting tools provided by Godot, a simulated actor in Godot could have an internal state-machine and switch between different animations easily, this does not exist in Gazebo (yet?).
  • Multiple importers for 3D-Models and animations with an existing store, so its easy to let an entity in the simulation be controlled by a human (for example use the Open 3D Mannequin)
  • VR/AR integration

Existing Software

  • Godot-Sim - a simple 2D robot simulator for Godot, also implementing jobshop for planning
  • ROS Websocket interface for godot - an interface to use the ROS WebSuite
  • Godot ROS pcviz loads and visualize recorded bag-files
  • Godot ROS rclcpp (ROS2) example implementation to connect to a ROS2-node from within Godot using C++
  • URoboSim: ROS-Plugin for Unreal (as inspiration?)
  • GodotAIGym: GodotAIGym for an OpenAI Gym integration.

Physics simulation

Godot 3 uses Bullet, Godot 4 uses bullet and an owen Physics engine. It might be a good idea to combine MuJoCo with Godot, like URoboViz.

What's missing?

  • an importer for URDF and SDF for Gazebo models (https://app.ignitionrobotics.org/fuel/models) and .world files
  • an importer for MARS
    • a mars .scene-file ist just some XML representation of some nodes inside an .scn-file which is just a complressed list of 3D Meshes (obj-files) - should be easy for Godot to parse and load.
  • an interface similar to Gazebo
    • the default Node-based Gazebo-interface is already close
  • ROS-Godot interface that allows to create ros-nodes from GDScript (ideally from both, the web suite and ROS directly so we can run a heavy simulation locally but also a user interface form a web browser where both have a similar API and both run in Godot?)
  • documentation specifically for robotics / a "robotics bundle" or general entrypoint for robotics enthusiasts
    • real-live examples!
    • Demo scenes and more robots!

About

Sources, Links and Information on using the Godot Game Engine in Robotics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published