summaryrefslogtreecommitdiffstats
path: root/tests/core
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #98972 from dbnicholson/standardize-add-defaultsThaddeus Crews2024-11-211-0/+30
|\ | | | | | | Expose `TranslationServer::standardize_locale` `add_default` param publicly
| * Expose standardize_locale add_default param publiclyDan Nicholson2024-11-211-0/+30
| | | | | | | | | | | | | | | | Comparing locales can have surprising outcomes since it standardizes locales with defaults. For example, zh and zh_CN result in an exact match since the defaults change them both to zh_Hans_CN. Expose the add_default parameter publicly with a default of false so the fully standardized locale can be inspected.
* | Merge pull request #95303 from EIREXE/inverted_composerRémi Verschelde2024-11-201-0/+87
|\ \ | |/ |/| | | Fix `Projection::invert` for orthographic projection
| * Fix Projection::invert on orthogonal projections and others.Álex Román2024-11-181-0/+87
| | | | | | | | | | | | Fixes #68878, specially when using orthographic projection. Also adds some tests.
* | Merge pull request #98713 from dalexeev/core-fix-callable-get-bound-argumentsThaddeus Crews2024-11-121-0/+64
|\ \ | | | | | | | | | Core: Fix `Callable.get_bound_arguments{,_count}()` return incorrect data
| * | Core: Fix `Callable.get_bound_arguments{,_count}()` return incorrect dataDanil Alexeev2024-11-041-0/+64
| | |
* | | Merge pull request #98120 from dalexeev/core-typed-dicts-bin-serializationThaddeus Crews2024-11-121-8/+91
|\ \ \ | | | | | | | | | | | | Core: Add typed dictionary support for binary serialization
| * | | Core: Add typed dictionary support for binary serializationDanil Alexeev2024-11-121-8/+91
| | | |
* | | | Merge pull request #98743 from dbnicholson/improve-compare-localesThaddeus Crews2024-11-121-4/+54
|\ \ \ \ | |/ / / |/| | | | | | | Improve locale comparison
| * | | Improve locale comparisonDan Nicholson2024-11-121-4/+54
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since 9456454109, country specific locales are always preferred over country-less locales even when the OS locale country doesn't match. For example, running the Godot editor with locale es_ES will result in the es_AR locale being chosen even though the es locale would be better. The change happened because the score of the es_AR locale and the es locale are the same when comparing to es_ES. Change this by parsing locale strings into a Locale structure and decreasing the score when script, country or variant are set in both but not matched. For the es_ES case, this causes the es_AR score to be decreased since the countries don't match. On the other hand, the es locale is not decreased since it doesn't specify a country.
* | | Merge pull request #98547 from timothyqiu/loaded-locales-setThaddeus Crews2024-11-111-10/+20
|\ \ \ | | | | | | | | | | | | Fix duplicated entries in `TranslationServer::get_loaded_locales()`
| * | | Fix duplicated entries in `TranslationServer::get_loaded_locales()`Haoyu Qiu2024-10-261-10/+20
| | | |
* | | | Allow passing UID to importerJuan2024-11-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This helps, for importers spitting out new resources to the res:// filesystem to actually hash them to generate deterministic UIDs. This PR also fixes the determinism for translations.
* | | | Merge pull request #98278 from a-johnston/fuzzy-search-rebaseThaddeus Crews2024-11-102-0/+102
|\ \ \ \ | |_|/ / |/| | | | | | | Add fuzzy string matching to quick open search
| * | | Add fuzzy string matching to quick open searchAdam Johnston2024-10-282-0/+102
| |/ / | | | | | | | | | Co-authored-by: sam <samsface@gmail.com>
* | | Merge pull request #47502 from KoBeWi/add_0Thaddeus Crews2024-10-315-16/+16
|\ \ \ | | | | | | | | | | | | Always add decimal when converting float to string
| * | | Always add decimal when printing floatkobewi2024-10-235-16/+16
| | | |
* | | | Merge pull request #97934 from adamscott/give-AThousandShips-a-breakThaddeus Crews2024-10-292-3/+3
|\ \ \ \ | |_|/ / |/| | | | | | | [Codestyle] Set clang-format `RemoveSemicolon` rule to `true`
| * | | Set clang-format `RemoveSemicolon` rule to `true`Adam Scott2024-10-252-3/+3
| | | | | | | | | | | | | | | | - Set clang-format `Standard` rule to `c++20`
* | | | Merge pull request #92554 from Nazarwadim/implement_a_hash_mapThaddeus Crews2024-10-251-0/+295
|\ \ \ \ | |/ / / |/| | | | | | | Implement array based hash map `AHashMap`
| * | | Implement array based hash mapnazarii2024-10-241-0/+295
| |/ /
* | | Merge pull request #98357 from yeojunh/valid-base-check-num-int64-uint64Clay John2024-10-241-1/+17
|\ \ \ | |/ / |/| | Core: Fix String::num_int64(), uint64 for valid base check
| * | Add checks for valid base in String::num_int64, uint64().yeojunh2024-10-201-1/+17
| | | | | | | | | | | | | | | | | | - Ensure String::num_int64, uint64 returns an empty string for bases less than 2 or greater than 36. - Added corresponding test cases to verify the behavior. - Error messages are printed when invalid bases are encountered. These messages are suppressed in the test output.
* | | Add testA Thousand Ships2024-10-181-0/+8
|/ /
* | Add unit tests for String::parse_url()Pablo Andres Fuente2024-10-011-38/+53
| |
* | Merge pull request #95931 from pafuent/adding_packet_peer_testsRémi Verschelde2024-10-011-0/+204
|\ \ | | | | | | | | | Add unit tests for `PacketPeer`
| * | Add unit tests for PacketPeerPablo Andres Fuente2024-10-011-0/+204
| | | | | | | | | | | | Partially fixes #43440
* | | Merge pull request #95784 from pafuent/adding_stream_peer_buffer_testsRémi Verschelde2024-10-012-0/+474
|\ \ \ | | | | | | | | | | | | Add unit tests for `StreamPeer` and `StreamPeerBuffer`
| * | | Add unit tests for StreamPeer and StreamPeerBufferPablo Andres Fuente2024-10-012-0/+474
| |/ / | | | | | | | | | Partially fixes #43440
* / / Parse fragment from URLHaoyu Qiu2024-09-271-0/+40
|/ /
* | Fix script editor wrongly replaces and quotes non-ASCII lettersHaoyu Qiu2024-09-231-1/+15
| |
* | Merge pull request #95449 from SlashScreen/array_functionsRémi Verschelde2024-09-201-0/+18
|\ \ | | | | | | | | | Add callable support for `find` and `rfind` `Array` methods
| * | Add callable support for `find` and `rfind` `Array` methodsSlashscreen2024-09-131-0/+18
| |/
* | Merge pull request #96856 from RandomShaper/selfdestruct_correctnessRémi Verschelde2024-09-161-0/+78
|\ \ | | | | | | | | | Object: Let debug lock handle callee destruction within call chain gracefully
| * | Object: Add tests about the safety of tail destructionPedro J. Estébanez2024-09-161-0/+78
| | |
* | | Merge pull request #93856 from timothyqiu/expression-periodRémi Verschelde2024-09-111-0/+53
|\ \ \ | |/ / |/| | | | | Fix parsing of `4.` in Expression
| * | Fix parsing of `4.` in ExpressionHaoyu Qiu2024-07-021-0/+53
| | |
* | | Implement typed dictionariesThaddeus Crews2024-09-041-1/+38
| | |
* | | Merge pull request #70096 from rune-scape/stringname-dictRémi Verschelde2024-09-031-2/+1
|\ \ \ | | | | | | | | | | | | StringName Dictionary keys
| * | | StringName Dictionary keysrune-scape2024-08-291-2/+1
| | | | | | | | | | | | | | | | | | | | also added 'is_string()' method to Variant and refactored many String type comparisons to use it instead
* | | | Cleanup of raw `nullptr` checks with `Ref`A Thousand Ships2024-08-311-1/+1
| | | | | | | | | | | | | | | | Using `is_valid/null` over checks with `nullptr` or `ERR_FAIL_NULL` etc.
* | | | Merge pull request #96291 from miv391/string-unit-testsRémi Verschelde2024-08-301-3/+28
|\ \ \ \ | | | | | | | | | | | | | | | Add more unit tests for String `insert` and `join`.
| * | | | Added more unit tests for String insert and join.Mika Viskari2024-08-291-3/+28
| |/ / /
* | | | Merge pull request #92656 from fire/vsk-json-to-native-4.3Rémi Verschelde2024-08-301-0/+160
|\ \ \ \ | | | | | | | | | | | | | | | Ability to convert native engine types to JSON and back.
| * | | | Ability to convert native engine types to JSON and back.K. S. Ernest (iFire) Lee2024-08-291-0/+160
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements support for all engine types in JSON encoding/decoding Co-Authored-By: Juan <reduzio@gmail.com> Co-Authored-By: Rémi Verschelde <rverschelde@gmail.com>
* | | | | Import/export GLTF extras to node->metademolke2024-08-291-0/+25
| |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | This is useful for custom tagging of objects with properties (for example in Blender) and having this available in the editor for scripting. - Adds import logic to propagate the parsed GLTF extras all the way to the resulting Node->meta - Adds export logic to save Godot Object meta into GLTF extras - Supports `nodes`, `meshes` and `materials` (in GLTF sense of the words)
* | | | Add `String.is_valid_unicode_identifier()`Haoyu Qiu2024-08-272-15/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Adds `is_valid_unicode_identifier()` - Adds `is_valid_ascii_identifier()` - Deprecates `is_valid_identifier()` - Renames `validate_identifier()` to `validate_ascii_identifier()`
* | | | Merge pull request #93134 from AThousandShips/default_bind_checkRémi Verschelde2024-08-261-0/+40
|\ \ \ \ | | | | | | | | | | | | | | | [Tests] Ensure all default method arguments can be encoded
| * | | | [Tests] Ensure all default method arguments can be encodedA Thousand Ships2024-08-161-0/+40
| | | | | | | | | | | | | | | | | | | | Checks that all arguments of bound methods can be encoded in extensions, checking non-empty or non-null cases for containers and objects
* | | | | Simplify and fix Rect2/AABB get_support functionAaron Franke2024-08-192-7/+29
| |/ / / |/| | |