-
-
Notifications
You must be signed in to change notification settings - Fork 22.9k
Allow creating GDExtension plugins from inside the Godot editor #90979
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
bac4e56
to
b0ffd5f
Compare
Wow, this looks great! I wonder, does this also resolve godotengine/godot-proposals#9306 ? It looks like the same problem IMO. |
This looks great, but I also definitely think its worthwhile to consider support for other build systems beyond scons. There has been a tremendous amount of work put into the cmake build in godot-cpp, and I think its at least worthwhile for supporting that build system if someone picks "GDExtension C++ only". |
This looks wonderful as I've been annoying with handling the preparation of making GDExtension manually for days.
See? There are two
As the direct placement of folder |
@Naros The big question I have is what would this feature look like? Should cmake be included as one of the supported options out of the box? Should it be plugable? If so how? I guess plugins should add more options to the dropdown menu, so we would have "GDExtension C++ only (scons)" and "GDExtension C++ only (cmake)"? Or is it worth refactoring this menu to have a more generalized "GDExtension" option and a second dropdown for "C++ SCons", "C++ CMake", etc? @Lazy-Rabbit-2001 I agree, but there are some technical challenges when trying to make the plugins share
I would need some help from the build system gurus to make this work. |
editor/plugins/gdextension/cpp_template/addon/library_name.gdextension
Outdated
Show resolved
Hide resolved
editor/plugins/gdextension/cpp_template/addon/library_name.gdextension
Outdated
Show resolved
Hide resolved
Thanks for taking this on! It looks really cool :-) I did a quick test of the PR, and the "Compile on" checkbox didn't seem to work for me. It detected scons and git, but it encountered an error when trying to run it:
If I change the It looks like this creates a However, GDExtensions are quite different from plugins in many ways. It may make sense for GDExtensions to have their own tab distinct from "Plugins"? And, if so, then the UI here should probably be disentangled from the "Create New Plugin" form and process. Anyway, this is a great start! |
So first, I think David is right, we should completely separate GDExtension from GDScript plug-ins here, 💯 . An independent UI has several benefits:
On the GDExtension create dialog, I could imagine this being a bit similar to Project Settings with a tree on the left, and a panel on the right where we display context-specific options based on the choice on the left. The left panel tree might look like this:
The Under the The And circling back to Limbo's idea of a shared
I'm just not sure I like the idea of embedding the C++ code into the Godot project, but I'm not 100% sold either way. But now I do question if some of these settings belong configurable in the Project Settings and not in the "Create Extension" dialog 🤔 |
Bit of a question about this Draft PR will this trigger a compile after the GDExtention is created or do will we have to do that manually? |
@HeadClot It attempts a compile for you, but this may fail if Git, SCons, or a C++ compiler/linker/etc are missing. |
Got it thank you for the info :) |
I think it probably makes sense to make this pluggable via an editor plugin, similar to the Also, it could make sense to include the C++ support in a |
3199f9a
to
6d83772
Compare
I overhauled the entire UI frontend of this PR. Instead of using the same dialog as GDScript plugins, now there is an entirely separate tab with 2 dialogs for creating and editing GDExtensions. I have updated the OP, please read that for a summary of how the workflow looks like. In addition to what's in the OP, here is a short description of what the classes are:
This should be fixed now. It will now add arch_suffix if it's missing.
This is gone now.
The create dialog now allows specifying any path. You can use |
6d83772
to
8f4b938
Compare
EDIT:
godot.windows.editor.dev.x86_64_WmCRfH6YBH.mp4EDIT:
Despite these minor problems, the extension is created correctly and is usable out-of-the-box, which is very nice. |
f9f4469
to
12a569c
Compare
12a569c
to
3794636
Compare
I only requested changes because of .framework
features, but that can be solved later. I no longer think we need to resolve this to merge the PR.
Will likely approve it later when I have another look!
3794636
to
5ee160d
Compare
5ee160d
to
338fa1d
Compare
338fa1d
to
1d64995
Compare
Just noting for clarity that we're entering release freeze for 4.5, so this feature won't make the cut and will be considered for the 4.6 dev cycle. I support the proposals / goals from this PR but I had some doubts about the original implementation, which I believe have been at least partially addressed since my last review. But I haven't had time to do a deeper review yet. Let's make a priority to get this fully re-assessed by relevant maintainers and hopefully merged early on in the 4.6 dev cycle, so we have enough time to polish the experience further until the 4.6 stable release. |
I wanted to mention that we can [as external download] bundle the zig compiler because surprisingly it's a complete C++ compiler and use it to compile c++ gdextensions. |
1d64995
to
3701356
Compare
60145be
to
9759c44
Compare
I've tried the latest revision of this PR (not rebased due to merge conflicts), and am getting this after creating the GDExtension on Linux:
Any ideas as to why I'm getting this? For context, I'm looking to create a simple GDExtension I can include in a test project for CI. |
I'm running the PR locally, compiling it from source (both the engine and the GDExtension I created). This means the version used in the workflow shouldn't impact things for me. |
9759c44
to
28f2a2f
Compare
It works, thanks! This will save me a lot of time 🙂 I noticed the SConstruct generated by the PR fails
I suppose you need to import explicitly what you're using to make sure it passes CI (if your project uses the same |
Try adding: #!/usr/bin/env python
from misc.utility.scons_hints import * to the top. |
This PR implements godotengine/godot-proposals#3367 and godotengine/godot-proposals#9306 (not exactly as the proposals describe, but solves the same problem).
The status quo for GDExtension development is really unfortunate. For the most part the only easy way to get started is to edit the GDExtension template project, or copy-paste an existing GDExtension project and use it as a template. If you don't do this, you'd need to follow the documentation, which is a massive behemoth that manually explains to the user how to create each file from scratch, and it would take a user hours to follow this guide.
Really, I believe it should be as simple as making a GDScript plugin:
This is what this PR implements. Just go into Project Settings -> GDExtension:
Next, click Create GDExtension, type in a base name, click "Create", and then it will create and compile an extension.
The library name and path are optional. If you do not specify these, they will be determined automatically.
The dialog includes hover tooltips if you hover over the boxes, which explain what each field is and what the values you write in it should be.
The language system is designed to be completely language-agnostic. The dialogs have no clue about the existence of C++ or SCons. All of the C++ and SCons specific code is isolated in one class, and in the future we can allow editor plugins to extend this. It's not exposed as of this PR in case we want to iterate on the internal code first, but we can expose it whenever, preferably in a future PR to avoid this one becoming too big.
As mentioned by proposal godotengine/godot-proposals#3367, this sets up the build system with a build command (
scons
), the.gitignore
files, the.gdextension
file, the type registration boilerplate, and it evengit clone
sgodot-cpp
. By default, it will also initiatescons
to compile the extension, but this does take awhile, so you can skip this step by unchecking the "Compile now?" box.Note that this PR does not include setting up system-level dependencies, such as installing a C++ compiler, installing Git, installing SCons, etc. This varies widely by operating system and it would be a slippery slope to try and have that. This PR is purely focused on the files that go in your project, not the system-wide dependencies. This PR does not try to detect a C++ compiler, but it will warn the user if either Git or SCons is not found on their system.
When you create a GDExtension plugin with this PR, one example node is provided called
ExampleNode
. Like the Blender default cube, this is expected to be replaced by users as soon as possible. However, its existence is useful to both new and experienced users, since it serves 2 functions: 1) As a reference for how to make a node type, including the code, registration, docs, icon, etc, and 2) A minimal test to check if your GDExtension plugin works (don't see it in the editor? It's not working).Assuming you have the system-wide dependencies installed, and you leave the "Compile now?" checkbox enabled, and you wait for it to finish, the extension immediately works. No fuss, the example node is just there.
Assuming it was compiled, it will show up in a list of GDExtensions. This list will contain every loaded GDExtension, regardless of whether it was been created by the create dialog. It gets this list from GDExtensionManager, so it will not include any non-compiled or otherwise broken extensions.
If you change the code, you just need to run
scons
in either the extension folder or the project root. A future idea would be to detect this in projects and provide a "Build" button in the editor UI like we already do for C#, but that is technically separate from what this PR does.The files look like this:
The
SConstruct
at the project root is extremely barebones, it is only one line to call into another SConstruct. It is designed to be simple enough so that more GDExtension plugins can be added to the same Godot project with no manual work. The_ensure_file_contains
helper function in this PR completely handles the merging of more calls into this file. You can just make 2 plugins back-to-back with no conflicts. If you want to have 20 GDExtension plugins, this PR will let you do that just fine, with one call toscons
in the root folder able to compile all of them at once.This PR provides 2 options for making a GDExtension plugin: "C++ with SCons, GDExtension only" or "C++ with SCons, GDExtension and engine module". The former creates a standalone GDExtension C++ plugin, with the only files stored in the root of the project being a
.gitignore
and barebonesSConstruct
.The engine module option provides a few more files like
SCsub
andconfig.py
, provides lots of#ifdef
directives to support both GDExtensions and modules, and places most of the C++ code in the root of the folder, which is more suitable for making a Godot engine module. This way if users want to target both GDExtension and modules with one codebase, they can do this as easily as selecting it from the dropdown. This option turns the project's root folder into a module, so only one module is allowed per project.When in this mode, you can either compile for GDExtension the same as with the "only" option, or you can copy-paste the entire Godot project into the engine modules folder, naming the folder the same as the addon folder name, and it works.
The source files are designed to handle the extension+module case, but are automatically simplified by this PR's project generator when making a non-module extension, including by looking at the
#if
preprocessor directives to determine which lines of code to exclude.In the extension list, you can click the pencil button on any of these items to open a menu to edit the GDExtension.
Like the create dialog, the dialog includes hover tooltips which describe each field. However, for the Libraries and Icons fields, the hover tooltips are placed on the Label nodes instead of the Dictionary editors.
EDIT: This PR has changed a lot since first opening. For the record, here's the old PR description:
This PR implements godotengine/godot-proposals#3367 (not exactly as that proposal describes, but solves the same problem).
The status quo for GDExtension development is really unfortunate. For the most part the only easy way to get started is to copy-paste an existing GDExtension project and use it as a template. If you don't do this, you'd need to follow the documentation, which is a massive behemoth that manually explains to the user how to create each file from scratch, and it would take a user hours to follow this guide.
Really, I believe it should be as simple as making a GDScript plugin:
This is what this PR implements. Just go into Project Settings -> Plugins, click Create New Plugin, and select GDExtension.
As mentioned by proposal godotengine/godot-proposals#3367, this sets up the build system with a build command (
scons
), the.gitignore
files, the.gdextension
file, the type registration boilerplate, and it evengit clone
sgodot-cpp
. By default, it will also initiatescons
to compile the extension, but this does take awhile, so you can skip this step by unchecking the "Compile now? (slow)" box.Note that this PR does not include setting up system-level dependencies, such as installing a C++ compiler, installing Git, installing SCons, etc. This varies widely by operating system and it would be a slippery slope to try and have that. This PR is purely focused on the files that go in your project, not the system-wide dependencies. This PR does not try to detect a C++ compiler, but it will warn the user if either Git or SCons is not found on their system.
When you create a GDExtension plugin with this PR, one example node is provided called
ExampleNode
. Like the Blender default cube, this is expected to be replaced by users as soon as possible. However, its existence is useful to both new and experienced users, since it serves 2 functions: 1) As a reference for how to make a node type, including the code, registration, docs, icon, etc, and 2) A minimal test to check if your GDExtension plugin works (don't see it in the editor? It's not working).Assuming you have the system-wide dependencies installed, and you leave the "Compile now?" checkbox enabled, and you wait for it to finish, the extension immediately works. No fuss, the example node is just there:
If you change the code, you just need to run
scons
in the root. A future idea would be to detect this in projects and provide a "Build" button in the editor UI like we already do for C#, but that is technically separate from what this PR does.The files look like this:
The
SConstruct
at the root is extremely barebones, it is only one line to call into another SConstruct. It is designed to be simple enough so that more GDExtension plugins can be added to the same Godot project with no manual work. The_ensure_file_contains
helper function in this PR completely handles the merging of more calls into this file. Except for deleting the first plugin'sExampleNode
, you can pretty much just make 2 plugins back-to-back with no conflicts. If you want to have 20 GDExtension plugins, this PR will let you do that just fine, with one call toscons
in the root folder able to compile all of them at once.This PR provides 2 options for making a GDExtension plugin: "GDExtension C++ only" or "GDExtension C++ and engine module". The former creates a standalone GDExtension C++ plugin, with the only files stored in the root of the project being a
.gitignore
and barebonesSConstruct
.The engine module option provides a few more files like
SCsub
andconfig.py
, provides lots of#ifdef
directives to support both GDExtensions and modules, and places most of the C++ code in the root of the folder, which is more suitable for making a Godot engine module. This way if users want to target both GDExtension and modules with one codebase, they can do this as easily as selecting it from the dropdown. This option turns the project's root folder into a module, so only one module is allowed per project:When in this mode, you can either compile for GDExtension the same as with the "only" option, or you can copy-paste the entire Godot project into the engine modules folder, naming the folder the same as the base name (the first name you entered in the Create GDExtension dialog), and it works.
The source files are designed to handle the extension+module case, but are automatically simplified by this PR's project generator when making a non-module extension, including by looking at the
#if
preprocessor directives to determine which lines of code to exclude.TODO list before undrafting this PR:
is_ascii_char
tois_ascii_alphabet_char
#90931