Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rebrand preambles to Redot | Spartan322 | 2024-10-31 | 1 | -2/+4 |
| | |||||
* | 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 |
| | |||||
* | Set instance and instance binding in Wrapped constructor. | Daylily-Zeleen | 2024-05-28 | 1 | -13/+29 |
| | |||||
* | 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 | 1 | -4/+4 |
| | |||||
* | 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 | 1 | -0/+17 |
| | |||||
* | Changes necessary for hot reload to work | David Snopek | 2023-09-25 | 1 | -0/+24 |
| | |||||
* | 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 | 1 | -81/+81 |
| | | | | | | | | | | | | | | | 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 #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. | ||||
* | | Sync license copyright with upstream GH-70885 | Rémi Verschelde | 2023-01-10 | 1 | -29/+29 |
| | | |||||
* | | Rename GDNative to GDExtension | Gilles Roudière | 2022-12-12 | 1 | -95/+95 |
|/ | | | | | | | | | | | | | 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 functions | Emmanuel Leblond | 2022-12-03 | 1 | -8/+8 |
| | |||||
* | Fix lifetime of StringName objects returned by Wrapped::_get_property_list | Emmanuel Leblond | 2022-11-29 | 1 | -206/+207 |
| | |||||
* | Basic static analysis fixes | Andy Maloney | 2022-11-18 | 1 | -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 macro | Emmanuel Leblond | 2022-11-11 | 1 | -12/+12 |
| | |||||
* | StringName is working fine with demo \o/ | Emmanuel Leblond | 2022-11-08 | 1 | -5/+5 |
| | |||||
* | Correct GDNativeExtensionScriptInstanceToString | Emmanuel Leblond | 2022-11-08 | 1 | -3/+4 |
| | |||||
* | Remove now useless `_alloc_and_copy_cstr` | Emmanuel Leblond | 2022-11-08 | 1 | -7/+0 |
| | |||||
* | Use StringName in the whole GDExtension API instead of const char * | Emmanuel Leblond | 2022-11-08 | 1 | -11/+6 |
| | |||||
* | Uses `StringName` in GDExtension perf critical instance creation & ↵ | Emmanuel Leblond | 2022-11-08 | 1 | -12/+16 |
| | | | | method/properties setter/getter | ||||
* | Type `GDNativePropertyInfo.type` field as `GDNativeVariantType` | Emmanuel Leblond | 2022-10-13 | 1 | -1/+1 |
| | |||||
* | Run scripts to format and make headers consistent | Aaron Franke | 2022-10-09 | 1 | -3/+3 |
| |