summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Use the new `string_name_new_with_latin1_chars` function to improve ↵David Snopek2023-10-092-2/+5
| | | | StringName construction performance
* Fixes crash in ClassDB::deinitialize due to usage of invalid iterator.Joël Lamotte (Klaim)2023-10-051-3/+12
| | | | | | | | | After the removed call to `std::vector::erase` all iterators, `i` included, are invalidated and therefore this code has undefined behavior (which can or not lead to a crash). This change delays the removal of class names from `class_register_order` to after having gone through it's content, removing the undefined behavior.
* Changes necessary for hot reload to workDavid Snopek2023-09-252-0/+22
|
* Implement `callable_mp()` and `callable_mp_static()`David Snopek2023-09-212-0/+68
|
* Merge pull request #1238 from dsnopek/variant-call-callpDavid Snopek2023-09-211-2/+2
|\ | | | | Fix variant call compiler error (alternate)
| * Fix variant call compiler errorMatthew Murphy2023-09-091-2/+2
| | | | | | | | Co-authored-by: David Snopek <dsnopek@gmail.com>
* | Merge pull request #1165 from dsnopek/missing-classesDavid Snopek2023-09-211-1/+12
|\ \ | | | | | | Handle missing instance binding callbacks by finding the closest parent
| * | Handle missing instance binding callbacks by finding the closest parentDavid Snopek2023-09-191-1/+12
| | |
* | | Merge pull request #1242 from AThousandShips/null_checkDavid Snopek2023-09-203-5/+5
|\ \ \ | |/ / |/| | Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicable
| * | Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-133-5/+5
| | |
* | | Load 'print_error_with_message' functionDavid Snopek2023-09-151-1/+1
|/ /
* | Merge pull request #1208 from dsnopek/check-godot-versionDavid Snopek2023-09-091-12/+41
|\ \ | |/ |/| Check that GDExtension is opened by compatible Godot version
| * Check that GDExtension is opened by compatible Godot versionDavid Snopek2023-08-141-12/+41
| |
* | Fix `Object::notification` orderMarkus Sauermann2023-08-301-4/+4
| | | | | | | | | | | | For the notification-order to work correctly, it is necessary to allow the `p_reversed` argument to be used within cpp. This PR changes the necessary bindings.
* | Add support for placeholder_script_instance_create/updateDavid Snopek2023-08-281-0/+4
|/
* Implement `String::resize()`David Snopek2023-07-312-0/+6
|
* Merge pull request #1184 from Zylann/fix_get_property_list_calling_parentDavid Snopek2023-07-261-0/+29
|\ | | | | Don't call parent _get_property_list when a class doesn't define it (for internal binding).
| * Don't call parent _get_property_list when a class doesn't define it.Marc Gilleron2023-07-261-0/+29
| | | | | | | | | | | | Godot is already supposed to call _get_property_list of parent classes, so this binding function must really only return procedural properties of the class it belongs to, and not parent or child classes.
* | Merge pull request #1186 from mihe/indexed-propertiesDavid Snopek2023-07-262-9/+3
|\ \ | | | | | | Add support for indexed properties
| * | Add support for indexed propertiesMikael Hermansson2023-07-262-9/+3
| |/
* | Merge pull request #1150 from dsnopek/charstring-fullDavid Snopek2023-07-221-98/+107
|\ \ | |/ |/| Attempt to fully implement CharString
| * Attempt to fully implement CharStringDavid Snopek2023-06-221-98/+107
| |
* | Remove unused free-standing `initialize_level` and `deinitialize_level`Mikael Hermansson2023-06-301-11/+0
|/
* Unregister custom classes in reverse registration orderKehom2023-06-191-3/+6
|
* Merge pull request #1138 from dsnopek/editor-plugins-deinitializeRémi Verschelde2023-06-192-0/+63
|\ | | | | | | Automatically remove editor plugins when deinitializing GDExtension
| * Automatically remove editor plugins when deinitializing GDExtensionDavid Snopek2023-06-132-0/+63
| |
* | Identifiers containing double underscore are reserved according to the C++ ↵Andy Maloney2023-06-151-1/+1
|/ | | | | | | | | | | | | | | standard Rename __* to _gde_* https://timsong-cpp.github.io/cppwp/n3337/global.names https://en.cppreference.com/w/cpp/language/identifiers Identifiers appearing as a token or preprocessing token (i.e., not in user-defined-string-literal like operator ""id) (since C++11) of one of the following forms are reserved: - identifiers with a double underscore anywhere; - identifiers that begin with an underscore followed by an uppercase letter; - in the global namespace, identifiers that begin with an underscore.
* Merge pull request #1137 from dsnopek/no-more-legacy-modeDavid Snopek2023-06-081-1/+1
|\ | | | | Clarify error message because there isn't a legacy Godot 4.0 mode anymore
| * Clarify error message because there isn't a legacy Godot 4.0 mode anymoreDavid Snopek2023-06-081-1/+1
| |
* | Correctly load gdextension_interface_print_errorDavid Snopek2023-05-311-1/+1
|/
* Merge pull request #1114 from dsnopek/editor-pluginsRémi Verschelde2023-05-261-0/+4
|\ | | | | Add support for adding/removing editor plugins
| * Add support for adding/removing editor pluginsDavid Snopek2023-05-161-0/+4
| |
* | Ensure GDExtension class is the correct type for the Godot engine classDavid Snopek2023-05-164-1/+42
|/
* Update to load function pointers for GDExtension interfaceDavid Snopek2023-05-0910-132/+447
|
* Fix incorrect memory allocation in release builds.bruvzg2023-02-211-6/+53
| | | | Co-authored-by: lightyears <lightyears1998@hotmail.com>
* Fix compilation error: const GDExtensionStringPtr -> GDExtensionConstStringPtrZhehang Ding2023-02-142-3/+3
|
* Update array_set_typed() call to use GDExtensionVariantType instead of uint32_tJan Haller2023-02-091-1/+2
|
* Merge pull request #1011 from mihe/error-macrosRémi Verschelde2023-02-072-31/+28
|\ | | | | | | Update error macros to match core
| * Added missing `string.hpp` include in `transform2d.cpp`Mikael Hermansson2023-01-221-0/+2
| |
| * Update error macros to match coreMikael Hermansson2023-01-221-31/+26
| |
* | Update typed array API to match "GDScript: Fix typed arrays".bruvzg2023-01-311-0/+4
| |
* | Move Array:set_typed to internal GDExtension structure.bruvzg2023-01-301-0/+4
|/
* Fix sign comparison warnings in class_db.cppAndy Maloney2023-01-191-4/+4
| | | | Part of #999
* Expose some low level functions and String operators.bruvzg2023-01-192-8/+99
|
* Merge pull request #1001 from Faless/ext/basis_absFabio Alessandrelli2023-01-191-1/+1
|\ | | | | Fix Basis::scaled_orthogonal using incorrect abs function.
| * Fix Basis::scaled_orthogonal using incorrect abs function.Fabio Alessandrelli2023-01-191-1/+1
| |
* | Fix Variant::can_convert[_strict] returning gibberish.Fabio Alessandrelli2023-01-191-4/+2
|/ | | | | An uninitialized value was being returned instead of the function return value.
* Merge pull request #997 from asmaloney/fix-shadow-eulerorderRémi Verschelde2023-01-181-2/+2
|\ | | | | Fix a shadowed enum (EulerOrder)
| * Fix a shadowed enum (EulerOrder)Andy Maloney2023-01-171-2/+2
| | | | | | | | Use the global constants.
* | Merge pull request #983 from rburing/variant_to_from_objectidRémi Verschelde2023-01-181-0/+19
|\ \ | |/ |/| Add conversions between `Variant` and `ObjectID`