summaryrefslogtreecommitdiffstats
path: root/modules/text_server_fb/text_server_fb.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotSpartan3222024-10-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* [TextServer, GDExtension] Fix building text servers as GDExtension, expose ↵bruvzg2024-06-121-5/+5
| | | | new/changed low-level methods to GDExtension API.
* Replace `find` with `contains/has` where applicableA Thousand Ships2024-05-081-20/+20
| | | | | | | * Replaces `find(...) != -1` with `contains` for `String` * Replaces `find(...) == -1` with `!contains` for `String` * Replaces `find(...) != -1` with `has` for containers * Replaces `find(...) == -1` with `!has` for containers
* [TextServer] Improve empty glyph handling to allow glyphs smaller than 2px ↵bruvzg2024-04-071-2/+2
| | | | and avoid unnecessary texture updates.
* [TextServer] Expose ICU title case string conversion to scripting.bruvzg2024-04-041-0/+1
|
* Merge pull request #89395 from bruvzg/rtl_ts_img_rangeRémi Verschelde2024-03-121-1/+4
|\ | | | | | | [RTL] Use "visible characters" property for inline object visibility
| * [RTL] Use "visible characters" property for inline object visibilitybruvzg2024-03-121-1/+4
| |
* | [Font] Add option to disable embedded bitmaps loading.bruvzg2024-03-111-2/+8
|/
* [TextServer / Font] Do not duplicate images to prevent unnecessary embedding.bruvzg2024-02-051-2/+1
|
* [TextServer / Font] Add support for customizable baseline offset.bruvzg2024-01-281-1/+9
|
* Use GODOT_MODULE define in TextServer modulesAaron Franke2024-01-061-1/+1
|
* [Text Overrun] Add option to set custom ellipsis character, add support for ↵bruvzg2023-12-041-0/+5
| | | | system font fallback.
* [Bitmap fonts] Add support for scaling.bruvzg2023-10-131-0/+4
|
* [TextServer] Store font extra spacing variations without making a full copy ↵bruvzg2023-09-281-0/+16
| | | | of font.
* [Text Server] Store extra spacing of individual font variations.bruvzg2023-08-241-1/+14
|
* [TextServer] Fix system font fallback and caret/selection behavior for ↵bruvzg2023-08-151-0/+2
| | | | composite characters.
* Extract and reorganize texture resource classesHendrik Brucker2023-07-141-1/+1
|
* Style: Harmonize header includes in modulesRémi Verschelde2023-06-151-2/+1
| | | | | | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module ("local" includes) should be listed first in their own block using relative paths, before Godot's "core" includes which use "absolute" (project folder relative) paths, and finally thirdparty includes. Includes in `#ifdef`s come after their relevant section, i.e. the overall structure is: - Local includes * Conditional local includes - Core includes * Conditional core includes - Thirdparty includes * Conditional thirdparty includes
* Merge pull request #74149 from bruvzg/get_charYuri Sizov2023-03-161-0/+1
|\ | | | | [Font] Implement `get_char_from_glyph_index` function.
| * [Font] Implement `get_char_from_glyph_index` function.bruvzg2023-03-011-0/+1
| |
* | Merge pull request #73987 from bruvzg/ft_lockRémi Verschelde2023-03-031-0/+2
|\ \ | |/ |/| | | [TextServer] Add mutex for FreeType face creation/deletion operations.
| * [TextServer] Add mutex for FreeType face creation/deletion operations.bruvzg2023-02-261-0/+2
| |
* | Fix text server GDExtension build.bruvzg2023-02-261-4/+4
|/
* [GDExtension] Expose some low level functions and String operators.bruvzg2023-01-191-2/+2
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Fix String::word_wrap() for long wordsHaoyu Qiu2022-12-161-1/+1
| | | | | | | | | - Changes `TextServer.string_get_word_breaks()` - Returns pairs of boundary start and end offsets - Accepts `chars_per_line` to return line breaks - Removes `String::word_wrap()` Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
* [RTL/TextServer] Add baseline inline alignment mode for objects and RTL tables.bruvzg2022-12-151-2/+3
|
* Use system fonts as fallback and improve system font handling.bruvzg2022-12-041-0/+141
| | | | | | | Add support for font weight and stretch selection when using system fonts. Add function to get system fallback font from a font name, style, text, and language code. Implement system font support for Android. Use system fonts as a last resort fallback.
* Implement SVG in OT support.bruvzg2022-11-041-1/+2
|
* Improve font glyph cache packing shelf best height fit heuristic.bruvzg2022-10-181-10/+76
|
* [GDExtension] Use function names with underscore for TextServer extension, ↵bruvzg2022-09-281-168/+168
| | | | add macros to generate wrappers for module functions.
* [GDExtension] Implement support for typed arrays.bruvzg2022-09-221-0/+1
|
* Change Array arguments to TypedArraykobewi2022-09-011-2/+2
|
* Merge pull request #64422 from bruvzg/make_fonts_unbearably_ugly_2.0Rémi Verschelde2022-08-261-4/+4
|\
| * Add font LCD sub-pixel anti-aliasing support.bruvzg2022-08-231-4/+4
| |
* | Replace Array return types with TypedArraykobewi2022-08-221-3/+3
|/
* [TextServer] Add a build warning when building with external FreeType ↵bruvzg2022-08-011-0/+4
| | | | without Brotli support.
* Remove ThreadWorkPool, replace by WorkerThreadPoolJuan Linietsky2022-07-251-4/+1
| | | | | The former needs to be allocated once per usage. The later is shared for all threads, which is more efficient. It can also be better debugged.
* Code quality: Fix header guards consistencyRémi Verschelde2022-07-251-3/+3
| | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Use BitField hint for the TextServer enums. Add missing parts for BitField ↵bruvzg2022-07-151-5/+5
| | | | support to the GDextension API.
* Refactor Font configuration and import UI, and Font resources.bruvzg2022-07-061-21/+19
|
* Merge pull request #61934 from Geometror/hashfuncsRémi Verschelde2022-06-151-1/+1
|\ | | | | Hash function improvements
| * Hash function improvementsHendrik Brucker2022-06-151-1/+1
| |
* | [TextServer] Adds support for TrueType / OpenType collection files (*.TTC, ↵bruvzg2022-06-071-0/+6
|/ | | | *.OTC).
* [GDExtension] Expose Variant, NodePath and StringName hash functions.bruvzg2022-06-061-1/+1
|
* Use new HashMap implementation in the TextServer, and Font.bruvzg2022-05-121-8/+8
|
* Implement text-to-speech support on Android, iOS, HTML5, Linux, macOS and ↵bruvzg2022-04-281-0/+2
| | | | | | Windows. Implement TextServer word break method.
* Implement Label3D node.bruvzg2022-04-221-0/+6
| | | | | | | | | Add "generate_mipmap" font import option. Add some missing features to the Sprite3D. Move BiDi override code from Control to TextServer. Add functions to access TextServer font cache textures. Add MSDF related flags and shader to the standard material. Change standard material cache to use HashMap instead of Vector.
* Delay font texture update, until `draw` is called. Rasterize glyphs during ↵bruvzg2022-04-051-2/+7
| | | | shaping.