Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rebrand preambles to Redot | Spartan322 | 2024-10-31 | 3 | -6/+12 |
| | |||||
* | Update for new NOTIFICATION_POSTINITIALIZE handling | David Snopek | 2024-10-29 | 1 | -6/+0 |
| | |||||
* | Merge pull request #1594 from dsnopek/macos-thread-local | David Snopek | 2024-10-29 | 1 | -3/+18 |
|\ | | | | | Avoid `thread_local` on MacOS to prevent issues with hot reload | ||||
| * | Avoid `thread_local` on MacOS to prevent issues with hot reload | David Snopek | 2024-10-17 | 1 | -3/+18 |
| | | |||||
* | | Merge pull request #1574 from dsnopek/unicode-class-names | David Snopek | 2024-10-29 | 1 | -1/+1 |
|\ \ | |/ |/| | Allow unicode class names | ||||
| * | Allow unicode class names | David Snopek | 2024-09-18 | 1 | -1/+1 |
| | | |||||
* | | Correctly set instance bindings on reload | David Snopek | 2024-09-17 | 1 | -9/+4 |
|/ | |||||
* | removes warnings generated by GDCLASS usage | Klaim (Joël Lamotte) | 2024-08-08 | 1 | -6/+6 |
| | | | | | | | | This change removes the warnings (unused parameters) coming from code injected by the GDCLASS macro. Contrary to warnings coming from the normal source code which can be suppressed with most compiles by specifying the include directories of this library as external or system, when the code is injected through a macro it is considered in the context of the user, which is the source code of user of the library. That forces the users to modify their code to hide the warnings coming from the mandatory `GDCLASS` here. That's why it's important to remove these warning from that specific macro and ideally any other macro that the user must use. | ||||
* | Make sure `_get` and `_set` dispatch up the class hierarchy | Chris Cranford | 2024-08-01 | 1 | -4/+8 |
| | |||||
* | Merge pull request #1446 from ↵ | David Snopek | 2024-06-14 | 1 | -13/+29 |
|\ | | | | | | | | | Daylily-Zeleen/daylily-zeleen/set_instance_and_instance_biding_in_Wrapped_constructor Set instance and instance binding in `Wrapped` constructor. | ||||
| * | Set instance and instance binding in Wrapped constructor. | Daylily-Zeleen | 2024-05-28 | 1 | -13/+29 |
| | | |||||
* | | Fix undefined symbol error on Linux with virtual methods that take `Node *` ↵ | David Snopek | 2024-06-10 | 1 | -4/+4 |
|/ | | | | arguments | ||||
* | Merge pull request #1447 from dsnopek/avoid-double-postinitialize | David Snopek | 2024-05-17 | 1 | -0/+6 |
|\ | | | | | Fix NOTIFICATION_POSTINITIALIZE sent twice to native parent classes | ||||
| * | Fix NOTIFICATION_POSTINITIALIZE sent twice to native parent class | David Snopek | 2024-04-24 | 1 | -0/+6 |
| | | |||||
* | | Merge pull request #1463 from ↵ | David Snopek | 2024-05-17 | 1 | -8/+8 |
|\ \ | | | | | | | | | | | | | Daylily-Zeleen/daylily-zeleen/const_get_class_static Mark return value of `get_class_static` and `get_parent_class_static` as const. | ||||
| * | | mark return value of `get_class_static` and `get_parent_class_static` as const | Daylily-Zeleen | 2024-05-17 | 1 | -8/+8 |
| |/ | |||||
* | | Merge pull request #1450 from dsnopek/free-property-list-count | David Snopek | 2024-05-08 | 1 | -3/+2 |
|\ \ | | | | | | | Update `free_property_list` callback to take count | ||||
| * | | Update `free_property_list` callback to take count | David Snopek | 2024-04-30 | 1 | -3/+2 |
| |/ | |||||
* / | Give compile-time error if registering a class without its own ↵ | David Snopek | 2024-04-24 | 1 | -0/+5 |
|/ | | | | `_bind_methods()` function | ||||
* | Enforce template syntax `typename` over `class` | Thaddeus Crews | 2024-03-10 | 3 | -14/+14 |
| | |||||
* | Fix _notification with parent and child classes | David Snopek | 2024-02-22 | 1 | -2/+7 |
| | |||||
* | Allow GDExtensions to register virtual methods and call them on scripts | David Snopek | 2024-02-12 | 1 | -0/+31 |
| | |||||
* | Rework GDCLASS macro to allow pure virtual functions | Chris Cranford | 2024-01-18 | 1 | -28/+1 |
| | |||||
* | [iOS] Fix building as static library or xcframework, add iOS config and ↵ | bruvzg | 2023-11-09 | 1 | -1/+1 |
| | | | | xcframework build script to the test project. | ||||
* | GDCLASS synced by ending with "private:" | Thaddeus Crews | 2023-11-01 | 1 | -97/+101 |
| | | | | | • Matches implementation used by modules and godot itself • Apply same to GDEXTENSION_CLASS, setup with same diff-friendly spacers as GDCLASS | ||||
* | Add protections against registering classes that didn't use GDCLASS() | David Snopek | 2023-10-22 | 1 | -0/+19 |
| | |||||
* | Automatically register only engine classes whose header has been included | David Snopek | 2023-10-16 | 2 | -0/+79 |
| | |||||
* | Changes necessary for hot reload to work | David Snopek | 2023-09-25 | 1 | -0/+24 |
| | |||||
* | Merge pull request #1242 from AThousandShips/null_check | David Snopek | 2023-09-20 | 1 | -1/+1 |
|\ | | | | | Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicable | ||||
| * | Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicable | A Thousand Ships | 2023-09-13 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #1164 from dsnopek/classdb-singleton-alternate | David Snopek | 2023-09-19 | 1 | -3/+6 |
|\ \ | |/ |/| | Add static methods to `ClassDB` for the methods bound to the `ClassDB` singleton | ||||
| * | Add static methods to `ClassDB` for the methods bound to the `ClassDB` singleton | David Snopek | 2023-07-31 | 1 | -3/+6 |
| | | |||||
* | | Support `_validate_property()` | David Snopek | 2023-09-12 | 1 | -0/+25 |
| | | |||||
* | | Ensure `const` correctness for wrappers | A Thousand Ships | 2023-09-06 | 1 | -9/+9 |
| | | |||||
* | | GDExtension: fix `bool` unknown in C | Jan Haller | 2023-09-02 | 1 | -2/+2 |
| | | |||||
* | | Fix `Object::notification` order | Markus Sauermann | 2023-08-30 | 1 | -3/+3 |
|/ | | | | | | 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. | ||||
* | Don't call parent _get_property_list when a class doesn't define it. | Marc Gilleron | 2023-07-26 | 1 | -29/+28 |
| | | | | | | 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. | ||||
* | Identifiers containing double underscore are reserved according to the C++ ↵ | Andy Maloney | 2023-06-15 | 2 | -82/+82 |
| | | | | | | | | | | | | | | | 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. | ||||
* | Revert the changes from PR #1044 and #1045 and standardize on `Object **` ↵ | David Snopek | 2023-06-07 | 1 | -3/+4 |
| | | | | encoding in ptrcall | ||||
* | Merge pull request #1116 from saki7/Ref-allow-non-const-access | David Snopek | 2023-05-24 | 1 | -14/+3 |
|\ | | | | | Change Ref<T> to allow non const access to ptr | ||||
| * | Change Ref<T> to allow non const access to ptr | Nana Sakisaka | 2023-05-17 | 1 | -14/+3 |
| | | |||||
* | | Ensure GDExtension class is the correct type for the Godot engine class | David Snopek | 2023-05-16 | 1 | -6/+2 |
|/ | |||||
* | Update to load function pointers for GDExtension interface | David Snopek | 2023-05-09 | 1 | -3/+3 |
| | |||||
* | Fix PtrToArg<Ref<T>> crash | Zhehang Ding | 2023-02-15 | 1 | -6/+9 |
| | |||||
* | Merge pull request #965 from WildRackoon/fix-GDCLASS-fwddeclaration | Rémi Verschelde | 2023-01-19 | 1 | -0/+2 |
|\ | | | | | | | Fix GDCLASS needs explicit ClassDB fwd declaration | ||||
| * | Fix GDCLASS needs explicit ClassDB fwd declaration | Rackoon | 2022-12-16 | 1 | -0/+2 |
| | | |||||
* | | "Wrapped" has virtual functions so it should have a virtual destructor. | Andy Maloney | 2023-01-19 | 1 | -0/+1 |
| | | | | | | | | Deleting an object through a pointer to a base class is undefined behaviour unless the destructor in the base class is virtual. | ||||
* | | Added property info for ptr and ref + ported the implementation of the ↵ | Дмитрий Сальников | 2023-01-13 | 1 | -2/+2 |
| | | | | | | | | `check` method | ||||
* | | Sync license copyright with upstream GH-70885 | Rémi Verschelde | 2023-01-10 | 2 | -58/+58 |
| | | |||||
* | | Fix virtual GDExtension method Ref<T> conversion | Bastiaan Olij | 2022-12-13 | 1 | -2/+13 |
| | |