summaryrefslogtreecommitdiffstats
path: root/core/string/ustring.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix String::num_real and String test cases when compiling with doublesAaron Franke2021-09-151-9/+16
|
* Merge pull request #52049 from theraot/masterRémi Verschelde2021-09-131-11/+27
|\
| * Fix get_base_dir windows top level directory logicTheraot2021-08-241-11/+27
| | | | | | This is a fix for https://github.com/godotengine/godot/issues/52048
* | Remove `#ifdefs` for handling compilation with Visual Studio < 2015Hugo Locurcio2021-08-311-3/+3
| | | | | | | | Godot 3.3 and later require Visual Studio 2017 to be compiled.
* | Rename String::is_rel_path to String::is_relative_pathWilson E. Alvarez2021-08-291-1/+1
|/
* String: Remove old NO_USE_STDLIB code pathRémi Verschelde2021-08-181-91/+1
| | | | | We're using the standard library in many core classes by now so this code path no longer makes sense.
* String: Fix default decimals truncation in num and num_realRémi Verschelde2021-08-181-7/+20
| | | | | | | | Fixes undefined behavior, and fixes the logic for negative powers of ten. Fixes #51764. Adds tests to validate the changes and prevent regressions. Adds docs for `String.num`.
* Convert ustring macros to inline functions and use them wherever possible.Anilforextra2021-08-131-41/+54
| | | | | | Add new inline functions to check if a character is lowercase or uppercase. Remove unused upper case macro.
* Use const references where possible for List range iteratorsRémi Verschelde2021-07-251-1/+1
|
* Use C++ iterators for Lists in many situationsAaron Franke2021-07-231-5/+2
|
* Merge pull request #49291 from NoFr1ends/fix-49262Rémi Verschelde2021-07-131-19/+0
|\ | | | | String::format leave passed values untouched
| * String::format leave passed values untouchedJonas Bernemann2021-06-031-19/+0
| | | | | | | | | | If the passed value or key contains double quotation marks it will no longer get removed.
* | Rename `is_valid_integer()` to `is_valid_int()`Lightning_A2021-06-161-3/+3
| | | | | | | | Method from `String`
* | Merge pull request #49505 from underdoeg/patch-2Rémi Verschelde2021-06-161-1/+1
|\ \ | | | | | | fix url parsing with port numbers
| * | fix url parsing with port numbersPhilip Whitfield2021-06-111-1/+1
| |/ | | | | | | String.get_slice_count is always at least 1 or 2 for bases with a port number. Before this change the following URL would return ERR_INVALID_PARAMETER ```ws://127.0.0.1:8000/test```
* | Reformat structure string operatorsAaron Franke2021-06-111-2/+4
| | | | | | | | | | | | The order of numbers is not changed except for Transform2D. All logic is done inside of their structures (and not in Variant). For the number of decimals printed, they now use String::num_real which works best with real_t, except for Color which is fixed at 4 decimals (this is a reliable number of float digits when converting from 16-bpc so it seems like a good choice)
* | Merge pull request #49279 from Calinou/rename-string-is-abs-path-methodRémi Verschelde2021-06-111-2/+2
|\ \ | | | | | | Rename `String.is_abs_path()` to `String.is_absolute_path()`
| * | Rename `String.is_abs_path()` to `String.is_absolute_path()`Hugo Locurcio2021-06-031-2/+2
| |/ | | | | | | This is more consistent with `NodePath.is_absolute()`.
* / Increase String::num default decimal precisionHeikki Simojoki2021-05-291-9/+22
|/ | | | | | | | | | | | | | | | | | Fixes #34541 Renamed MAX_DIGITS to MAX_DECIMALS, since it only changes the amount of digits after the decimal point. Increased MAX_DECIMALS to 32, and made String::num use MAX_DECIMALS consistently. If -1 is passed as decimal precision to String::num, it now gets changed to the correct precision based on the number's magnitude, instead of using printf default(which is 6) String::num_real also calculates the correct precision now. Also made the types used in floating-point math more consistent in a few places.
* Fix usage of String.left()kobewi2021-05-211-1/+1
|
* Change behavior of String.rightTomasz Chabora2021-05-201-8/+16
|
* Merge pull request #48205 from Faless/net/4.x_url_parsingFabio Alessandrelli2021-05-031-0/+65
|\ | | | | [Net] Implement String::parse_url for parsing URLs.
| * [Net] Implement String::parse_url for parsing URLs.Fabio Alessandrelli2021-04-261-0/+65
| | | | | | | | | | | | | | | | Splits the URL into (scheme, host, port, path). Supports both literal IPv4 and IPv6. Strip credentials when present (e.g. http://user:pass@example.com/). Use that function in both HTTPRequest and WebSocketClient.
* | Fix `url_decode` with mixed percent-encoding/Unicode strings. Treat Unix ↵bruvzg2021-04-301-9/+10
| | | | | | | | drive names as UTF-8 encoded.
* | Core: Drop custom `copymem`/`zeromem` definesRémi Verschelde2021-04-271-4/+4
|/ | | | | | | | We've been using standard C library functions `memcpy`/`memset` for these since 2016 with 67f65f66391327b2967a20a89c3627e1dd6e84eb. There was still the possibility for third-party platform ports to override the definitions with a custom header, but this doesn't seem useful anymore.
* Merge pull request #47512 from DanielKriz/bugfix/uri_encodeFabio Alessandrelli2021-04-101-2/+2
|\ | | | | fix wrong encoding format in uri_encode
| * fix wrong encoding in uri_encodeDaniel Kříž2021-04-101-2/+2
| |
* | Rename Array.invert() to Array.reverse()Marcel Admiraal2021-03-211-1/+1
|/ | | | | Does the same internally for List and Vector<>, which includes all PackedArray types.
* Fixes small typos and grammar correctionAnshul7sp12021-03-121-2/+2
|
* Merge pull request #45545 from abaire/relaxes_gltf_name_sanitizationRémi Verschelde2021-03-091-0/+12
|\ | | | | Relaxes node name sanitization in gltf documents.
| * Relaxes Node naming constraints in glTF documents to match the Editor.abaire2021-02-241-0/+12
| |
* | Add support for numeric XML entities to XMLParserHenry Conklin2021-02-141-16/+46
|/ | | | | | | * Add support for decimal numeric entities to String::xml_unescape * Add more error checks to String::xml_unescape * Refactor XMLParser to use String::xml_unescape instead of an internal implementation
* Make String::ends_with don't use String::rfindkleonc2021-02-091-13/+20
|
* Unify URI encoding/decoding and add to C#Aaron Franke2021-01-281-59/+4
| | | | http_escape and percent_encode have been unified into uri_encode, and http_unescape and percent_decode have been unified into uri_decode.
* Make hex_to_int and bin_to_int handle the prefix automaticallyAaron Franke2021-01-281-13/+9
| | | Also add BinToInt to C#
* Merge pull request #45489 from aaronfranke/coreRémi Verschelde2021-01-271-3/+4
|\ | | | | Type consistencies in core
| * Type consistencies in coreAaron Franke2021-01-261-3/+4
| |
* | Renamed String.ord_at to unicode_atYuri Roubinsky2021-01-261-6/+6
|/
* Fix String.ends_with() for empty string argumentsVedat Günel2021-01-191-1/+6
|
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Rename empty() to is_empty()Marcel Admiraal2020-12-281-31/+31
|
* Fix the `String::get_base_dir()` logic to properly check for top level ↵Fredia Huya-Kouadio2020-12-231-1/+4
| | | | directories on Windows.
* [Complex Text Layouts] Implement TextServer interface. Implement Fallback ↵bruvzg2020-11-261-3/+2
| | | | TextServer.
* Remove empty lines around braces with the formatting scriptAaron Franke2020-11-161-1/+0
|
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-0/+4899
-Removed FuncRef, since Callable makes it obsolete -Removed int_types.h as its obsolete in c++11+ -Changed color names code