summaryrefslogtreecommitdiffstats
path: root/binding_generator.py
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand godot-cpp to redot-cppSpartan3222024-10-311-0/+3
| | | | (cherry picked from commit 35f01391e0dd380c58f085badbf7be22a627c9f9)
* Merge pull request #1592 from dsnopek/4.3-revert-unexpose-is-instance-validDavid Snopek2024-09-231-9/+0
|\ | | | | [4.3] Revert "Unexpose `UtilityFunctions::is_instance_valid()`"
| * Revert "Unexpose `UtilityFunctions::is_instance_valid()`"David Snopek2024-09-171-9/+0
| | | | | | | | This reverts commit 56cd3fd99eb76ca3da33dafb694828a7306b2c81.
* | Correct type for `char16` and `char32` metaRaul Santos2024-09-031-0/+2
| |
* | Fix incorrect generation of some C++ operatorsMikael Hermansson2024-09-031-6/+38
| |
* | Avoid hardcoded type conversion for metadataRaul Santos2024-09-031-2/+0
|/ | | | | | | | | | The engine uses the names `int` and `float` to refer to the 64-bit types, so in the bindings generator we have a hardcoded conversion for those types. But this type conversion should not be used for metadata. Even though the underlying type should still be 64-bit for interop, metadata is meant to specify the correct type to expose. So if metadata says `float` it means the type is really meant to be a 32-bit `float` and not `double`. Other hardcoded type conversions (`int` and `Nil`) won't ever be metadata. This change corrects the `float` type, to use the right type in the generated C++ code. Before we were always using `double` due to this type conversion. (cherry picked from commit 48291990817fbaa8cc2d0307a16d7345bf62da52)
* Unexpose `UtilityFunctions::is_instance_valid()`David Snopek2024-07-011-0/+9
|
* Integrate `.pre-commit-config.yaml`Thaddeus Crews2024-06-241-7/+6
|
* Fix some style details in generationA Thousand Ships2024-06-181-13/+15
|
* Merge pull request #1490 from AThousandShips/arg_name_fixDavid Snopek2024-06-181-35/+43
|\ | | | | Enforce `p_` prefixes for arguments in binds
| * Enforce `p_` prefixes for arguments in bindsA Thousand Ships2024-06-141-35/+43
| |
* | Add support for build profiles.Fabio Alessandrelli2024-06-151-5/+114
|/ | | | Allow enabling or disabling specific classes (which will not be built).
* Merge pull request #1488 from AThousandShips/default_node_pathDavid Snopek2024-06-141-0/+3
|\ | | | | Add default argument processing for `NodePath`
| * Add default argument processing for `NodePath`A Thousand Ships2024-06-131-0/+3
| |
* | Merge pull request #1485 from dsnopek/classdb-call-static-methodDavid Snopek2024-06-141-7/+12
|\ \ | |/ |/| Fix vararg methods forwarded to the `ClassDB` singleton
| * Fix vararg methods forwarded to the `ClassDB` singletonDavid Snopek2024-06-121-7/+12
| |
* | Merge pull request #1487 from AThousandShips/arg_default_fixDavid Snopek2024-06-131-0/+2
|\ \ | | | | | | Fix generating default values for `StringName`
| * | Fix generating default values for `StringName`A Thousand Ships2024-06-131-0/+2
| |/ | | | | | | Cases other than `&""` were not processed correctly
* / [TextServer, GDExtension] Fix building text servers as GDExtension, expose ↵bruvzg2024-06-131-2/+6
|/ | | | new/changed low-level methods to GDExtension API.
* Clean up instance bindings for engine singletons to prevent crashDavid Snopek2024-05-101-1/+23
|
* Add support for `PackedVector4Array`David Snopek2024-05-061-0/+3
|
* Allow forwarding from `ClassDB` to `ClassDBSingleton` to support enumerationsDavid Snopek2024-04-231-11/+55
|
* Merge pull request #1409 from Repiteo/class-to-typenameDavid Snopek2024-04-021-7/+7
|\ | | | | Enforce template syntax `typename` over `class`
| * Enforce template syntax `typename` over `class`Thaddeus Crews2024-03-101-7/+7
| |
* | Merge pull request #1379 from dsnopek/uninitialized-value-mk2David Snopek2024-03-141-0/+14
|\ \ | | | | | | Avoid creating most objects that Godot is going to use placement new to initialize
| * | Avoid creating most objects that Godot is going to use placement new to ↵David Snopek2024-02-261-0/+14
| | | | | | | | | | | | initialize
* | | Merge pull request #1399 from bruvzg/init_listDavid Snopek2024-03-121-0/+15
|\ \ \ | | | | | | | | [Packed*Array] Add support for initializer lists.
| * | | [Packed*Array] Add support for initializer lists.bruvzg2024-03-031-0/+15
| | | |
* | | | Use explicit `::godot` namespace in gdvirtual.gen.incDavid Snopek2024-03-121-15/+15
| |_|/ |/| |
* | | Fix crash on virtual method callsA Thousand Ships2024-03-051-5/+2
|/ /
* | Merge pull request #1377 from dsnopek/gdextension-register-virtual-methodDavid Snopek2024-02-121-0/+132
|\ \ | | | | | | Allow GDExtensions to register virtual methods and call them on scripts (godot-cpp support)
| * | Allow GDExtensions to register virtual methods and call them on scriptsDavid Snopek2024-02-121-0/+132
| |/
* | Merge pull request #1363 from ↵David Snopek2024-02-121-1/+15
|\ \ | |/ |/| | | | | Daylily-Zeleen/daylily-zeleen/fix_object_return_value_of_builtin_types_methods Fix object return value of builtin types' methods.
| * Fix object return value of builtin types' methods.DaylilyZeleen2024-02-131-1/+15
| |
* | Merge pull request #1357 from bruvzg/cpp_64David Snopek2024-01-191-12/+12
|\ \ | |/ |/| Switch to 64-bit ints.
| * Switch to 64-bit ints.bruvzg2024-01-101-12/+12
| |
* | Merge pull request #1351 from ↵Rémi Verschelde2024-01-111-2/+2
|\ \ | | | | | | | | | | | | Daylily-Zeleen/daylily-zeleen/remove_namespace_in_global_constants_binding Remove "godot" namespace when binding global constants.
| * | Remove "godot" namespace when binding global constants.Daylily-Zeleen2024-01-071-2/+2
| |/
* / Add missing `OP_POWER` operator to `Variant`A Thousand Ships2024-01-061-0/+1
|/
* Change bit field enums to use `uint64_t` as underlying typeMikael Hermansson2023-11-281-2/+12
|
* Merge pull request #1307 from LAK132/masterRémi Verschelde2023-11-241-3/+1
|\ | | | | | | Fix file list issues when trying to build with meson via cmake
| * Fix file list issues when trying to build with meson via cmakeLAK1322023-11-111-3/+1
| |
* | Add `CallableCustom` that devs can use in their GDExtensionsDavid Snopek2023-11-061-0/+12
|/
* Merge pull request #1266 from dsnopek/automatic-engine-class-registrationDavid Snopek2023-10-161-63/+1
|\ | | | | Automatically register only engine classes whose header has been included
| * Automatically register only engine classes whose header has been includedDavid Snopek2023-10-161-63/+1
| |
* | Use the new `string_name_new_with_latin1_chars` function to improve ↵David Snopek2023-10-091-1/+4
|/ | | | StringName construction performance
* Merge pull request #1242 from AThousandShips/null_checkDavid Snopek2023-09-201-2/+2
|\ | | | | Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicable
| * Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-131-2/+2
| |
* | Merge pull request #1164 from dsnopek/classdb-singleton-alternateDavid Snopek2023-09-191-9/+61
|\ \ | |/ |/| 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` singletonDavid Snopek2023-07-311-9/+61
| |