summaryrefslogtreecommitdiffstats
path: root/core/variant
Commit message (Collapse)AuthorAgeFilesLines
* Core: Fix built-in enum constant bindingsDanil Alexeev2024-11-223-35/+32
|
* Merge pull request #98713 from dalexeev/core-fix-callable-get-bound-argumentsThaddeus Crews2024-11-126-57/+64
|\ | | | | | | Core: Fix `Callable.get_bound_arguments{,_count}()` return incorrect data
| * Core: Fix `Callable.get_bound_arguments{,_count}()` return incorrect dataDanil Alexeev2024-11-046-57/+64
| |
* | Merge pull request #93885 from dalexeev/core-fix-freed-object-booleanizationThaddeus Crews2024-11-111-1/+1
|\ \ | | | | | | | | | Core: Fix `Freed Object` booleanization
| * | Core: Fix `Freed Object` booleanizationDanil Alexeev2024-07-031-1/+1
| | |
* | | Merge pull request #82845 from Hysterelius/masterThaddeus Crews2024-11-111-0/+4
|\ \ \ | | | | | | | | | | | | Color: Expose OKHSL properties
| * | | Color: Expose OKHSL propertiesHysterelius2024-11-111-0/+4
| | | |
* | | | Fix comparison of callablesStanislav Labzyuk2024-11-111-2/+2
| | | |
* | | | Style: Apply `clang-tidy` fixesThaddeus Crews2024-11-042-10/+5
| |_|/ |/| | | | | | | | | | | • `modernize-use-default-member-init` and `readability-redundant-member-init` • Minor adjustments to `.clang-tidy` to improve syntax & remove redundancies
* | | Merge pull request #47502 from KoBeWi/add_0Thaddeus Crews2024-10-311-1/+1
|\ \ \ | | | | | | | | | | | | Always add decimal when converting float to string
| * | | Always add decimal when printing floatkobewi2024-10-231-1/+1
| | | |
* | | | [Core] Improve error messages with `vformat`A Thousand Ships2024-10-304-14/+14
| | | |
* | | | Merge pull request #98363 from dustdfg/rid_in_operator_fixClay John2024-10-241-0/+2
|\ \ \ \ | |/ / / |/| | | Allow using RID with `in` operator for Arrays and Dictionaries
| * | | Allow use RID with `in` operator for Arrays and DictionariesYevhen Babiichuk (DustDFG)2024-10-211-0/+2
| | | | | | | | | | | | | | | | Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
* | | | [Core] Fix sorting of `Dictionary` keysA Thousand Ships2024-10-182-1/+14
|/ / / | | | | | | | | | `StringName` keys were sorted as `StringName` which is unstable.
* | | Add a sort method to Dictionary and HashMapAaron Franke2024-10-023-0/+7
| | |
* | | Merge pull request #93299 from rune-scape/fix-refRémi Verschelde2024-10-026-121/+116
|\ \ \ | | | | | | | | | | | | Fix RefCounted releasing early and not clearing reference
| * | | Refactor ref-counting code and fix ref counted releasing before aquiringrune-scape2024-09-216-121/+116
| | | |
* | | | Bind Array get and set functionsAaron Franke2024-09-261-0/+31
| | | |
* | | | Merge pull request #94864 from rune-scape/add-missing-method-bindRémi Verschelde2024-09-261-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | Add missing CallableCustomMethodPointer for const methods
| * | | | Add missing CallableCustomMethodPointer for const methodsrune-scape2024-09-231-2/+2
| | | | |
* | | | | SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|/ / / /
* | | | Merge pull request #95166 from aaronp64/variant_op_err_returnRémi Verschelde2024-09-231-6/+24
|\ \ \ \ | |/ / / |/| | | | | | | Assign return value on `Variant` operator failure
| * | | Assign return value on Variant operator failureaaronp642024-09-191-6/+24
| | | | | | | | | | | | | | | | Variant operators for String formatting and "in" could result in errors, which would return from validated_evaluate without assigning r_ret. This would cause scripts using the return value from these operators to get results from previously run code. Updated to return the original String value in the String formatting case, and false for "in" when an error occurs.
* | | | [Core] Add way to check if a signal has any connectionsA Thousand Ships2024-09-203-0/+9
| | | | | | | | | | | | | | | | Added to `Object` and `Signal`
* | | | Merge pull request #95449 from SlashScreen/array_functionsRémi Verschelde2024-09-203-1/+68
|\ \ \ \ | | | | | | | | | | | | | | | Add callable support for `find` and `rfind` `Array` methods
| * | | | Add callable support for `find` and `rfind` `Array` methodsSlashscreen2024-09-133-1/+68
| |/ / /
* | | | Core: Fix `operator[]` for typed dictionariesThaddeus Crews2024-09-123-46/+58
| | | |
* | | | Merge pull request #96864 from KoBeWi/dictionerroryRémi Verschelde2024-09-121-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | Fix `Dictionary.merge()` type validation
| * | | | Fix Dictionary.merge() type validationkobewi2024-09-111-1/+1
| | | | |
* | | | | Merge pull request #95840 from raulsntos/char_metadataRémi Verschelde2024-09-121-3/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | Add metadata for `char16_t` and `char32_t`
| * | | | | Add metadata for `char16_t` and `char32_t`Raul Santos2024-09-121-3/+5
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We don't seem to expose any API that uses `char16_t` yet, but I added it anyway since we make the type info for it. I didn't add anything for `wchar_t` because we are not making a type info so maybe we don't have a need for it yet, it could be added in the future. To prevent breaking compatibility with the C# bindings, we ignore the `char32_t` metadata and still use `System.Int64`.
* / / / / Fix Unable to use ResourceLoader in C# after threaded load in GDScript #92798Hilderin2024-09-112-0/+12
|/ / / /
* | | | Merge pull request #78656 from Repiteo/typed-dictionaryRémi Verschelde2024-09-068-75/+1014
|\ \ \ \ | | | | | | | | | | | | | | | Implement typed dictionaries
| * | | | Implement typed dictionariesThaddeus Crews2024-09-048-75/+1014
| | | | |
* | | | | Merge pull request #96496 from aXu-AP/lerp-transformRémi Verschelde2024-09-051-1/+9
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | Add support for Transform2D/3D in `lerp()`
| * | | | Add support for Transform2D/3D in lerp()aXu-AP2024-09-031-1/+9
| | | | | | | | | | | | | | | | | | | | Implements godotengine/godot-proposals#10579
* | | | | Merge pull request #70096 from rune-scape/stringname-dictRémi Verschelde2024-09-033-22/+8
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | StringName Dictionary keys
| * | | | StringName Dictionary keysrune-scape2024-08-293-22/+8
| | | | | | | | | | | | | | | | | | | | | | | | | also added 'is_string()' method to Variant and refactored many String type comparisons to use it instead
* | | | | Core: Сheck `r_error` after calling `callp()`Danil Alexeev2024-08-302-2/+2
|/ / / /
* | | | Merge pull request #95317 from esainane/when-i-am-64Rémi Verschelde2024-08-281-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | binder_common: Fix uninitialized marshalling for `PtrToArg<char32_t>`
| * | | | binder_common: Fix uninitialized marshallingSai Nane2024-08-091-2/+2
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | C# uses `long`s to access many native values. With `PtrToArg<m_enum>` and `PtrToArg<bitfield<m_enum>>` this isn't a problem, as C++ code converts through a `*(int64_t*)` cast in assignment, so all 64-bits are initialized. However, with `PtrToArg<char32_t>`, value assignment happens through an `*(int *)` cast, leaving 32 bits uninitialized where `int` is 32 bits. On platforms where `int` is 16 bits, there are presumably 48 bits uninitialized, though there are very few platforms where this is still the case. The easiest way to see the practical effects of this is by looking at `EventInputKey.Unicode`: ```csharp public override void _Input(InputEvent @event) { if (@event is InputEventKey keyEvent) { if (keyEvent.IsPressed() && !keyEvent.Echo) { var raw = keyEvent.Unicode; var value = raw & 0xffffffff; GD.Print($"Key pressed: raw: {raw}; masked: {(char) value} ({value})"); } } } ``` Pressing 'a' emits the following line: ``` Key pressed: raw: -3617008645356650399; masked: a (97) ``` Examining execution flow in gdb shows this conversion going through the following line: ``` PtrToArg<char32_t>::encode (p_ptr=0x7ffcd5bb4b18, p_val=97 U'a') at ./core/variant/binder_common.h:221 221 *(int *)p_ptr = p_val; ``` Here, `p_val` is still 97, which is the value `InputEventKey.Unicode` is expected to have. After assignment, `p *(int64_t *)0x7ffcd5bb4b18` displays `-3617008645356650399`, with only the lower 32 bits being properly assigned, and is the value we see from C#. With this patch applied, the above testing `_Input` now prints: ``` Key pressed: raw: 97; masked: a (97) ``` Thank you to blujay1269 for asking about an unexpected value they saw in `EventInputKey.Unicode`, which prompted this investigation.
* | | | Merge pull request #94679 from rune-scape/remove-unused-initialize_refRémi Verschelde2024-08-283-12/+0
|\ \ \ \ | | | | | | | | | | | | | | | Remove unused `initialize_ref`
| * | | | Remove unused `initialize_ref`rune-scape2024-07-033-12/+0
| | |_|/ | |/| |
* | | | Add `String.is_valid_unicode_identifier()`Haoyu Qiu2024-08-271-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Adds `is_valid_unicode_identifier()` - Adds `is_valid_ascii_identifier()` - Deprecates `is_valid_identifier()` - Renames `validate_identifier()` to `validate_ascii_identifier()`
* | | | Simplify and fix Rect2/AABB get_support functionAaron Franke2024-08-191-1/+2
| |/ / |/| |
* | | [Core] Fix `Variant::construct` of `Object`A Thousand Ships2024-07-251-1/+7
| | | | | | | | | | | | Variant type was not updated correctly causing leaks in ref-counted
* | | Core: Improve vformat error reporting on sprintf failureRémi Verschelde2024-07-042-5/+5
|/ / | | | | | | And fix a few occurrences of formatting errors that led me to this.
* | Revert "Make freed object different than null in comparison operators"Rémi Verschelde2024-07-012-17/+17
| | | | | | | | | | | | | | | | | | | | This reverts commit 150b50cfcde95f74419ade2811d963224e96fc98. As discussed with the GDScript team, this has some implications which aren't fully consensual yet, and which we want to revisit. For now we revert to the 4.2 behavior for the 4.3 release, to avoid breaking user expectations.
* | Merge pull request #89197 from AThousandShips/arr_typed_fixRémi Verschelde2024-06-261-6/+16
|\ \ | | | | | | | | | [Core] Fix sharing of typed arrays from constructor