cart / godot3-bunnymark

Compares Godot 3.1 scripting languages by rendering as many bunny sprites as possible at 60fps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

⚠️ Notice: Inactive Project ⚠️

This project is no longer actively maintained. The results have not been updated in awhile and the performance characteristics of Godot and the various bindings have changed. I'm now focusing my efforts on running the Bevy Engine project full time. If anyone wants to fork and continue elsewhere, I encourage you to do so.

Godot Bunnymark

Renders an increasing number of bunny sprites until a stable 60fps is hit. This is a decent test of real world usage as it combines Godot api usage with raw computation. I plan to update this README whenever significant performance changes occur or when new languages are added. Feel free to contribute language implementations or improvements!

Disclaimer

The performance differences here might appear significant, but these benchmarks test the limits of each language (and the engine), which most games will never hit. Do not pick a language because it is "fastest" unless you know you need the fastest language. The smarter choice would be to pick the language you are most productive in. I personally think that most people will be more productive in GDScript or C#. A lot of time and energy went into making GDScript an integrated, seamless experience so it is a good starting point if you don't have a preference for any of the other languages listed.

It is also important to note that C#/Mono and GDNative are both very young. Its possible that their performance characteristics will change. And please don't use these benchmarks to say "Language X is better / faster than Language Y", we don't have enough data to make those assertions. If anything this proves that any of the choices below are viable. Choose the language that you are comfortable with and do your own testing to cover your own scenarios.

Updates

Follow me on twitter @cart_cart if you want Bunnymark updates or updates on my other projects!

Running

  • Build C++ files
    • Setup headers and bindings using these directions
    • run make in the root of this project
  • Build C# files
    • run msbuild /p:Configuration=Tools;DebugSymbols=false;Optimize=true (some terminals might require escaping some of those symbols)
  • Build Nim files
  • Build D files
  • Build Rust files
    • run cargo build --release
  • Build Godot with the ECMAScript module if you want to run the ECMAScript tests
  • run sh run_benchmarks.sh
  • wait! This will take some time ... the automation code is still a bit naive so it takes awhile to converge on 60 fps
  • view the results in USER_HOME_DIRECTORY/.godot/app_userdata/Bunnymark/benchmark_results.json

Benchmark Run - March 16, 2019

BunnymarkV2

Attempts to draw as many sprites as possible using Sprite nodes. It calls GetChildren() to iterate over a list of Sprites and sets their positions. It also updates a Label's text once per frame. This test aims to be a better emulation of real world api usage than the V1 tests.

Language Bunnies Rendered
ECMAScript/Javascript 4660
GDScript (Release) 18560
C#/Mono 27555
GDNative (D) 28020
GDNative (Nim) 29920
GDNative (C++) 37480

BunnymarkV1 - DrawTexture

Attempts to draw as many sprites to the screen as possible by drawing textures directly with VisualServer. This test focuses on compute / render performance and avoids making godot api calls.

Language Bunnies Rendered
ECMAScript/Javascript 4340
GDScript (Release) 20540
C#/Mono 36720
GDNative (Nim) 60056
GDNative (C++) 65580
GDNative (D) 67840

BunnymarkV1 - Sprites

Attempts to draw as many sprites to the screen as possible by adding Sprite nodes. This test focuses on compute / render performance and avoids making godot api calls.

Language Bunnies Rendered
ECMAScript/Javascript 4300
GDScript (Release) 17639
GDNative (Nim) 37180
C#/Mono 37455
GDNative (D) 38740
GDNative (C++) 41935

Hardware:

  • CPU: Intel i7 7700k 4.2GHz
  • GPU: Nvidia GeForce GTX 1070
  • RAM: 16GB DDR4

Build Info:

  • OS: Arch Linux
  • Official Godot 3.1 release

Credits

About

Compares Godot 3.1 scripting languages by rendering as many bunny sprites as possible at 60fps

License:MIT License


Languages

Language:C++ 21.7%Language:Nim 18.0%Language:D 14.3%Language:GDScript 13.1%Language:C# 13.0%Language:TypeScript 9.2%Language:Rust 8.3%Language:JavaScript 1.2%Language:Shell 0.6%Language:Makefile 0.6%