summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/classes
Commit message (Collapse)AuthorAgeFilesLines
...
* | Rename GDNative to GDExtensionGilles Roudière2022-12-122-101/+101
|/ | | | | | | | | | | | | Non-exhaustive list of case-sensitive renames: GDExtension -> GDNative GDNATIVE -> GDEXTENSION gdextension -> gdnative ExtensionExtension -> Extension (for where there was GDNativeExtension) EXTENSION_EXTENSION -> EXTENSION (for where there was GDNATIVE_EXTENSION) gdnlib -> gdextension gdn_interface -> gde_interface gdni -> gde_interface
* Fix const qualifier for parameters in GDExtension api functionsEmmanuel Leblond2022-12-032-12/+12
|
* Fix lifetime of StringName objects returned by Wrapped::_get_property_listEmmanuel Leblond2022-11-291-206/+207
|
* Basic static analysis fixesAndy Maloney2022-11-181-6/+6
| | | | | | | - remove extraneous semicolons - use "nullptr" instead of "0" - remove "break" after "return" - use <cstdio> instead of <stdio.h>
* Fix broken namespace isolation in GDCLASS macroEmmanuel Leblond2022-11-111-12/+12
|
* StringName is working fine with demo \o/Emmanuel Leblond2022-11-081-5/+5
|
* Correct GDNativeExtensionScriptInstanceToStringEmmanuel Leblond2022-11-081-3/+4
|
* Remove now useless `_alloc_and_copy_cstr`Emmanuel Leblond2022-11-081-7/+0
|
* Use StringName in the whole GDExtension API instead of const char *Emmanuel Leblond2022-11-082-15/+10
|
* Uses `StringName` in GDExtension perf critical instance creation & ↵Emmanuel Leblond2022-11-081-12/+16
| | | | method/properties setter/getter
* Type `GDNativePropertyInfo.type` field as `GDNativeVariantType`Emmanuel Leblond2022-10-131-1/+1
|
* Run scripts to format and make headers consistentAaron Franke2022-10-092-6/+6
|
* Fix deriving a custom class with virtual methodsMarc Gilleron2022-09-211-3/+3
|
* Merge pull request #844 from Zylann/fix_get_constRémi Verschelde2022-09-161-6/+6
|\ | | | | Fix issues with `_get` and `_get_property_list`
| * Fix issues with `_get` and `_get_property_list`Marc Gilleron2022-09-151-6/+6
| | | | | | | | | | `_get` was using `_set` internally, and should be `const`. `_get_property_list` should be `const`.
* | Change PropertyInfo members to String.bruvzg2022-09-142-9/+9
|/
* Ensure GDCLASS can be used outside the godot namespace.Fabio Alessandrelli2022-09-011-21/+21
| | | | | | The `GDCLASS` macro should not assume to be called inside the `godot` namespace and should thus prefix function calls for that namespace with `::godot::` to ensure proper namespace referencing.
* Add support for `_notification`, `_set`, `_get`, `_get_property_list`, ↵bruvzg2022-08-221-62/+263
| | | | `_property_can_revert`, `_property_get_revert`, and `_to_string` methods.
* Allow GDCLASS in own namespacesKevin Smith2022-07-311-1/+1
| | | | | | | | | | The unqualified ClassDB friending was causing (at least for me on VS2022) an implicit forward declaration of ClassDB in the namespace of my class, instead of using the godot namespaced one. By qualifying the namespace, this compiles for me. Test-Information: My project builds now.
* Fix "_instance_bindings != nullptr" for Wrapped objects.Fabio Alessandrelli2022-07-291-1/+4
| | | | | | | | | | | | | | | | | | | | | This is an attempt to make the lifecycle of wrapped objects clearer. Godot keeps track of bindings' userdata for each object it creates. This allows allocating the memory of the wrapper only once per object even if that object is passed multiple times between binding code and godot code. The binding information is composed of multiple functions, this includes a callback for when the userdata is to be allocated (called once) and for when the userdata is to be deallocated (again, called once). When allocating data with "memnew" we set the object bindings during the postinitialize phase, but surely we shouldn't do that when allocating the userdata as a result of bindings callback themselves. Additionally, since we let Godot handle (and track) raw memory allocation and de-allocation, we need to manually call the deconstructor of the wrapper class during the free callback, to ensure that its non-trivial members are correctly de-initialized.
* Merge pull request #677 from lukas-toenne/fix_object_ptr_argsFabio Alessandrelli2022-07-291-2/+2
|\ | | | | Fixed pointer indirection in the PtrToArg template for Object arguments.
| * Fix for pointer indirection in the Ref<T> template.Lukas Tönne2022-01-071-2/+2
| | | | | | | | Patch by Nana Sakisaka (saki7).
* | Update copyright yearRémi Verschelde2022-03-152-4/+4
| |
* | Fix GDCLASS when inherited class is in another namespaceMarc Gilleron2022-02-201-2/+6
| |
* | Fix object_set_instance being wrongly called for built-in wrapped classesGilles Roudière2021-12-061-19/+2
|/
* Make extension instances create the corresponding godot object in their ↵Gilles Roudière2021-12-031-151/+128
| | | | constructor
* Rename interface to gdn_interface because it's a defined keyword under windowsBastiaan Olij2021-10-282-119/+119
|
* Add Ref<T> binding support.Fabio Alessandrelli2021-09-281-0/+43
| | | | Added PtrToArg and GetTypeInfo adapted from Godot.
* Implement Ref copy constructorBastiaan Olij2021-09-271-20/+39
|
* Fix creation (and godot-side deletion) of extended objects.Fabio Alessandrelli2021-09-271-9/+12
| | | | | | | | | | | | | | | Proper initialization for godot-cpp classes with memnew. Extension classes (i.e. the `GDCLASS` macro) behave differently from regular wrapped classes, and requires Godot to initialize them during object construction. This commit update the GDCLASS macro to not create/destroy the instance during the bindings callback, but during the extension callbacks. When setting the object instance, the bindings instance is set to the pointer of the extension instance so that it can later be retrieved normally via `object_get_instance_bindings`.
* Change constructor/destructor management of extension classesGeorge Marques2021-09-272-111/+154
| | | | | | | | | | | | | | | | | | This makes sure custom constructors are always called on extension classes. However, note that constructors should not take any parameters, since Godot doesn't support that. Parameters are ignore in memnew macro. Use memnew(MyClass()) instead of memnew(MyClass) since it now needs a value instead of a class name. This macro calls MyClass::_new() (define in GDCLASS macro) which ultimately calls Godot to create the object, ensuring that both the Godot and the extension instances are created. Non Godot classes (that don't derive godot::Object) are constructed as usual an can have parameters. memdelete is also changed for the same reason, as it needs to destroy the Godot object as well, and that automatically frees the bound extension instance.
* Auto-bind virtual method overridesGeorge Marques2021-09-271-0/+6
|
* Replace bindgins to work with extensionsGeorge Marques2021-09-272-0/+389