touilleMan / godot-python

Python support for Godot ๐Ÿ๐Ÿ๐Ÿ
Other
1.87k stars 141 forks source link

godot 4.x? #324

Open sHaggYcaT opened 2 years ago

sHaggYcaT commented 2 years ago

Is it any chance, that this project will support godot 4.x in the near future? Especially things, related to vulcan, etc.

touilleMan commented 2 years ago

Hi @sHaggYcaT !

The issue with Godot 4 is it will deprecate GDNative API on which Godot 4 is based. So new development are required to support Godot 4.

On top of that the new GDExtension (that replaces GDNative) doesn't currently support what is needed for Godot-Python (see https://github.com/godotengine/godot-proposals/issues/3927#issuecomment-1031241451)

So supporting Godot 4 is definitely something I want to do, but there is a lot of work for this ;-)

touilleMan commented 2 years ago

For people following the subject: Godot 4 is moving toward implementing what is needed to support 3rd party languages with GDExtension:

https://twitter.com/reduzio/status/1501824759818039297?t=8Ocv8xpB77wVQ3GJ6jtyKQ&s=19 https://twitter.com/reduzio/status/1501887283989032960?s=21

captain0xff commented 2 years ago

I see some work in the godot4 branch. Is it usable at the current stage?

touilleMan commented 2 years ago

TL;dr: The godot4 branch is not usable yet

The long version is I got fed up with scons build system (it is a powerful build system but I spent a surprising long time to hack it when adding features) so I wanted get rid of it.

I spend the last weeks building a custom build system (see the "isengard" folder in the godot4 branch) inspired by the good parts of scons and the flask framework (the idea was to have kind of a pythonic make that can be used as a library in any python project)

This build system was ok for simple tasks, but writing multiplatform c compilation/link rule was really painful (given how dynamic the code must be to handle all the specificity of different platforms)

So I considered my experience went far enough for the moment, and migrate again the build system to meson (this time for good, I promise ! ^^)

Now the main dev is on the godot4-meson branch. I'm currently exploring how the godot-extension API works, so it is the very beginning but things can move fast given all the code that can be reuse from the previous version of Godot-Python ;-)

Le ven. 22 avr. 2022, 21:16, CAPTAIN1947 @.***> a รฉcrit :

I see some work in the godot4 branch. Is is usable at the current stage?

โ€” Reply to this email directly, view it on GitHub https://github.com/touilleMan/godot-python/issues/324#issuecomment-1106789999, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAYKHNLUSW6F4HPHSR7CJM3VGL3JNANCNFSM5OMBO5JQ . You are receiving this because you commented.Message ID: @.***>

Zireael07 commented 2 years ago

Why not try Meson?

touilleMan commented 2 years ago

Why not try Meson?

The Godot-Python project is a rather special C project:

From this point of view the project has a small need for C compilation and a big need for advanced scripting. Hence SCons seemed like a good choice (as a matter of fact I didn't have much choice given Godot-Python started before GDNative was a thing so I had to provide Godot-Python as a module that had to be put into the Godot source code, hence SCons was a mandatory ๐Ÿ˜„ ).

Given I wanted to try new concept around make-like build system (in the sens "tool that allow you to chain together arbitrary steps", by opposition of compilation build system like meson or Cmake that are dedicated to a specific usecase), Godot-Python seems like a good real life project to see how usable my ideas were.

Meson is a very good project, and using it was my fallback plan in the eventuality my new shiny build system was not as great as expected ๐Ÿ˜„

KeVs404 commented 2 years ago

Hello, first of all great work y'all, any updates on the project?

touilleMan commented 2 years ago

@KeVs404 Yes things are progressing rather slowly currently, but Iย plan to sprint on this during Europython (so around 12-18 July) I hope we will have some nice progress then ;-)

KeVs404 commented 2 years ago

very nice, keep it up!

captain0xff commented 1 year ago

Any updates on this?

touilleMan commented 1 year ago

@CAPTAIN1947 I'm currently focusing on support Cython (as Python support itself requires Cython support). However I still have unmerged PR for Godot related to GDExtension, so it's kind of complex to work with a moving target, will be better once Godot 4.0 is released ^^

robotsunknown commented 1 year ago

Hi touilleMan, I'm hoping to use this before Godot4 is released in a very simple way: just to run some python code, no need for the advanced features - just any pathway to call python functions and get their returns. Is it close to be able to make that happen and if so, could I connect with you for help to get it building/working?

I would just need a way to call a python function (eg from a global singleton) and get it's result - and vice versa to call a godot function from python, and get it's result.

Thanks and best!

des1redState commented 1 year ago

Hey @touilleMan - I see you've now got godotengine/godot-proposals/issues/3927 merged - does that mean a GDextension godot-python is in the pipeline? I'm a DevOps engineer starting a project to visualise and interact with Kubernetes clusters in Godot, and this would make life VERY easy for me.

touilleMan commented 1 year ago

@des1redState yes I'm working on Godot-Python 4 for quite some time now ^^ See the godot4-meson branch, but don't expect anything: it's a big mess for the moment as I spend plenty of time trying stuff and testing & polishing GDextendion itself ;-)

des1redState commented 1 year ago

@touilleMan Fantastic news, thank you for your dedication. As you know, Python support opens up entire worlds to Godot, literally. Please do post here once you have any news, I really don't want to miss it!

sHaggYcaT commented 11 months ago

Is it abandoned? :(