Rémi Verschelde
cf3d995e8c
Merge pull request #997 from asmaloney/fix-shadow-eulerorder
...
Fix a shadowed enum (EulerOrder)
2023-01-18 18:36:21 +01:00
Rémi Verschelde
0dfe0d0166
Merge pull request #983 from rburing/variant_to_from_objectid
...
Add conversions between `Variant` and `ObjectID`
2023-01-18 11:41:57 +01:00
Andy Maloney
dbd43ac107
Fix a shadowed enum (EulerOrder)
...
Use the global constants.
2023-01-17 18:38:24 -05:00
Rémi Verschelde
cb15429e4a
gdextension: Sync with upstream commit caacade569eb7a541aaa7a8cdc3eedffca1422d9 (4.0-beta13)
2023-01-17 18:52:05 +01:00
Rémi Verschelde
6f2bba3630
Merge pull request #991 from asmaloney/fix-spelling
...
Fix spelling in demo script
2023-01-17 11:32:58 +01:00
Rémi Verschelde
b21026e061
Merge pull request #950 from DmitriySalnikov/typed-ptr-method-call-support-and-ref-class-name
...
Added property info for Object's and Ref's and ported the implementation of the `check` method
2023-01-17 11:31:54 +01:00
Rémi Verschelde
151ea35c5f
gdextension: Sync with upstream commit 3c9bf4bc210a8e6a208f30ca59de4d4d7e18c04d (4.0-beta12)
2023-01-13 17:07:21 +01:00
Дмитрий Сальников
0c6e26dabe
Added property info for ptr and ref + ported the implementation of the `check` method
2023-01-13 15:56:51 +03:00
Andy Maloney
c721b62c2f
Fix spelling in demo script
2023-01-10 12:02:46 -05:00
Rémi Verschelde
512ec5b236
Merge pull request #990 from akien-mga/ci-clang-format-15
...
CI: Use clang-format 15
2023-01-10 17:36:50 +01:00
Rémi Verschelde
51c79565e0
CI: Use clang-format 15
...
Seems like there's a slight inconsistency for the formatting of the
`delete[](pointer)` syntax.
2023-01-10 16:24:14 +01:00
Rémi Verschelde
734d9ef092
gdextension: Sync with upstream commit 91713ced81792b10fdc9367b7f355738e5d52777 (4.0-beta11)
2023-01-10 16:15:31 +01:00
Rémi Verschelde
931f1a3f34
Sync license copyright with upstream GH-70885
2023-01-10 16:15:31 +01:00
Rémi Verschelde
2b7094f342
Merge pull request #988 from rburing/precision=double
...
Rename `float=64` build option to `precision=double`
2023-01-10 16:09:02 +01:00
Fabio Alessandrelli
8ee9cab8f8
Merge pull request #989 from Faless/ext/4.x_objects_bind
...
Allow method binds to take Object subclasses as arguments
2023-01-10 14:28:26 +01:00
Fabio Alessandrelli
9fd33b5cde
Allow method binds to take Object subclasses as arguments
...
As done in upstream Godot via GH-57205.
Add a test that ensures it works also for "gdextended" objects.
2023-01-10 12:55:41 +01:00
Rémi Verschelde
129c358a72
Merge pull request #968 from Faless/build/4.x_custom_paths
...
[SCons] Fix custom API file/dir relative paths.
2023-01-09 23:25:10 +01:00
Ricardo Buring
47140cdad0
Rename float=64 build option to precision=double
...
This makes the build system consistent with Godot again.
Also fix CMake build to define REAL_T_IS_DOUBLE when precision=double.
2023-01-09 23:22:03 +01:00
Fabio Alessandrelli
6877a0abcd
[SCons] Fix custom API file/dir relative paths.
2023-01-09 21:09:49 +01:00
Rémi Verschelde
2f785c9da1
Merge pull request #987 from bruvzg/fix_enum_size
...
Fix enum return value size.
2023-01-07 12:20:41 +01:00
bruvzg
18eed144ca
Fix enum return value size.
2023-01-07 00:48:40 +02:00
Ricardo Buring
d4e1dfe5dc
Add conversions between Variant and ObjectID
2023-01-01 21:27:08 +01:00
Rémi Verschelde
3da6db4fe4
gdextension: Sync with upstream commit d0398f62f08ce0cfba80990b21c6af4181f93fe9 (4.0-beta10)
2022-12-23 23:37:22 +01:00
Rémi Verschelde
e75647056b
Merge pull request #974 from akien-mga/add-gdignore
...
Add .gdignore file to godot-cpp, for use as submodule in Godot projects
2022-12-22 16:24:30 +01:00
Rémi Verschelde
f99aa47581
Add .gdignore file to godot-cpp, for use as submodule in Godot projects
...
.gdignore causes Godot to skip the folder when importing resources,
which is needed in particular to avoid importing compiled .obj files
from MSVC (which sadly share their extension with Wavefront OBJ meshes).
Closes #522 .
2022-12-22 16:01:03 +01:00
Rémi Verschelde
99de0a872e
Merge pull request #971 from Faless/build/4.x_default_gnu
...
[SCons] Platform agnostic default toolchain (GNU).
2022-12-20 18:02:49 +01:00
Fabio Alessandrelli
8d6982be3b
[SCons] Platform agnostic default toolchain (GNU).
...
Create the SCons Environment with an empty PLATFORM variable to force
the default tools to use the GNU toolchain.
Platform specific toolchains are then setup in our custom tools.
2022-12-20 17:41:34 +01:00
Rémi Verschelde
104997e83e
Merge pull request #961 from mihe/char-string-length
...
Fix incorrect length passed to `CharString`
2022-12-20 10:44:08 +01:00
Fabio Alessandrelli
c0eaadac86
Merge pull request #903 from PapyChacal/build_library
...
Make build_library=no usable at godot-cpp's root
2022-12-19 23:03:17 +01:00
Emilien Bauer
e52d4b6486
Remove gen from emitted files to solve circular dependency with build_library=no.
...
Use env variable to pass the output dir instead.
Add a CI step to guard regression on this. Clean the generated sources to avoid interfering with next steps.
2022-12-19 21:20:15 +00:00
Rémi Verschelde
0233683173
gdextension: Sync with upstream commit e780dc332a0a3f642a6daf8548cb211d79a2cc45 (4.0-beta9)
2022-12-19 16:10:14 +01:00
Rackoon
72d537fd95
Fix GDCLASS needs explicit ClassDB fwd declaration
2022-12-16 13:49:10 +01:00
Rémi Verschelde
91a4a03356
Merge pull request #962 from Bromeon/gdextension-const-correctness
...
Extension header: amend const correctness of `p_args` parameters
2022-12-14 17:13:40 +01:00
Jan Haller
fce753c05d
Extension header: amend const correctness of `p_args` parameters
2022-12-14 15:47:42 +01:00
Mikael Hermansson
1f6b0118dc
Fix incorrect length passed to `CharString`
2022-12-14 15:08:45 +01:00
Rémi Verschelde
a0b0560e20
Merge pull request #960 from akien-mga/godot-headers-is-dead-long-live-godot-headers
...
Rename godot-headers to gdextension, move header to top folder
2022-12-14 14:09:52 +01:00
Rémi Verschelde
bab247dcb6
Rename godot-headers to gdextension, move header to top folder
...
Changes the `<godot/gdextension_interface.h>` include to simply
`<gdextension_interface.h>`.
Refactor and better document the SCons and CMake logic around setting
the paths to the header and API JSON file.
2022-12-14 12:36:59 +01:00
Rémi Verschelde
1e8eb1c1f2
Merge pull request #958 from BastiaanOlij/improve_gdextension_virtual_ref
...
Fix virtual GDExtension method Ref<T> conversion
2022-12-14 12:36:12 +01:00
Rémi Verschelde
0d926a76a7
Merge pull request #959 from DmitriySalnikov/bitfield_int64
...
Use `int64_t` for `BitField` as in Godot itself
2022-12-13 12:13:46 +01:00
Rémi Verschelde
49a478a879
Merge pull request #949 from BastiaanOlij/fix_tests_refcounting
...
Change example code to properly test refcounted objects
2022-12-13 12:13:39 +01:00
Дмитрий Сальников
b7eeddcf52
Use int64_t for BitField as in Godot itself
2022-12-13 13:36:16 +03:00
Bastiaan Olij
992d85e6f8
Fix virtual GDExtension method Ref<T> conversion
2022-12-13 10:41:55 +11:00
Rémi Verschelde
c21705982e
Merge pull request #952 from groud/rename_gdnative_to_gdextension
...
Rename GDNative to GDExtension
2022-12-12 18:58:39 +01:00
Gilles Roudière
c02e644679
Rename GDNative to GDExtension
...
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
2022-12-12 11:06:38 +01:00
Rémi Verschelde
c20ecea090
headers: Sync with upstream commit 45cac42c0 (4.0-beta8)
2022-12-09 18:00:49 +01:00
Rémi Verschelde
f74c472203
Merge pull request #948 from touilleMan/issue-946
...
Fix cast on PtrToArg::convert
2022-12-06 10:21:44 +01:00
Rémi Verschelde
9fb5b764af
Add CODEOWNERS so GDExtension team gets assigned for reviews
2022-12-06 10:17:13 +01:00
Bastiaan Olij
f24ee56c5d
Change example code to properly represent test cases with refcounted objects
2022-12-05 22:28:28 +11:00
Emmanuel Leblond
fe79449969
Fix cast on PtrToArg::convert
2022-12-05 03:30:50 +01:00
Rémi Verschelde
f9f9a1bab4
Merge pull request #947 from asmaloney/cmake-cleanup
...
{cmake} Updates for target-based approach
2022-12-04 23:58:15 +01:00