Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
TextShaper.h
Go to the documentation of this file.
1/*
2 * Copyright 2019 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkottieTextShaper_DEFINED
9#define SkottieTextShaper_DEFINED
10
11#include "include/core/SkFont.h"
18
19#include <cstddef>
20#include <cstdint>
21#include <type_traits>
22#include <vector>
23
24class SkCanvas;
25class SkFontMgr;
26class SkPaint;
27class SkString;
28class SkTypeface;
29struct SkRect;
30
31namespace SkShapers { class Factory; }
32
33namespace skottie {
34
35// Helper implementing After Effects text shaping semantics on top of SkShaper.
36
37class Shaper final {
38public:
39 struct RunRec {
41 size_t fSize;
42
43 static_assert(::sk_is_trivially_relocatable<decltype(fFont)>::value);
44
45 using sk_is_trivially_relocatable = std::true_type;
46 };
47
48 struct ShapedGlyphs {
49 std::vector<RunRec> fRuns;
50
51 // Consolidated storage for all runs.
52 std::vector<SkGlyphID> fGlyphIDs;
53 std::vector<SkPoint> fGlyphPos;
54
55 // fClusters[i] is an input string index, pointing to the start of the UTF sequence
56 // associated with fGlyphs[i]. The number of entries matches the number of glyphs.
57 // Only available with Flags::kClusters.
58 std::vector<size_t> fClusters;
59
62
63 void draw(SkCanvas*, const SkPoint& origin, const SkPaint&) const;
64 };
65
66 struct Fragment {
69
70 // Only valid for kFragmentGlyphs
71 float fAdvance,
73 uint32_t fLineIndex; // 0-based index for the line this fragment belongs to.
74 bool fIsWhitespace; // True if the first code point in the corresponding
75 // cluster is whitespace.
76 };
77
78 struct Result {
79 std::vector<Fragment> fFragments;
81 // Relative text size scale, when using an auto-scaling ResizePolicy
82 // (otherwise 1.0). This is informative of the final text size, and is
83 // not required to render the Result.
84 float fScale = 1.0f;
85
87 };
88
89 enum class VAlign : uint8_t {
90 // Align the first line typographical top with the text box top (AE box text).
91 kTop,
92 // Align the first line typographical baseline with the text box top (AE point text).
94
95 // Skottie vertical alignment extensions
96
97 // These are based on a hybrid extent box defined (in Y) as
98 //
99 // ------------------------------------------------------
100 // MIN(visual_top_extent , typographical_top_extent )
101 //
102 // ...
103 //
104 // MAX(visual_bottom_extent, typographical_bottom_extent)
105 // ------------------------------------------------------
106 kHybridTop, // extent box top -> text box top
107 kHybridCenter, // extent box center -> text box center
108 kHybridBottom, // extent box bottom -> text box bottom
109
110 // Visual alignement modes -- these are using tight visual bounds for the paragraph.
111 kVisualTop, // visual top -> text box top
112 kVisualCenter, // visual center -> text box center
113 kVisualBottom, // visual bottom -> text box bottom
114 };
115
116 enum class ResizePolicy : uint8_t {
117 // Use the specified text size.
118 kNone,
119 // Resize the text such that the extent box fits (snuggly) in the text box,
120 // both horizontally and vertically.
122 // Same kScaleToFit if the text doesn't fit at the specified font size.
123 // Otherwise, same as kNone.
125 };
126
127 enum class LinebreakPolicy : uint8_t {
128 // Break lines such that they fit in a non-empty paragraph box, horizontally.
130 // Only break lines when requested explicitly (\r), regardless of paragraph box dimensions.
131 kExplicit,
132 };
133
134 // Initial text direction.
135 enum class Direction : uint8_t { kLTR, kRTL };
136
137 enum class Capitalization {
138 kNone,
140 };
141
142 enum Flags : uint32_t {
143 kNone = 0x00,
144
145 // Split out individual glyphs into separate Fragments
146 // (useful when the caller intends to manipulate glyphs independently).
148
149 // Compute the advance and ascent for each fragment.
151
152 // Return cluster information.
153 kClusters = 0x04,
154 };
155
175
176 // Performs text layout along an infinite horizontal line, starting at |point|.
177 // Only explicit line breaks (\r) are observed.
178 static Result Shape(const SkString& text, const TextDesc& desc, const SkPoint& point,
180
181 // Performs text layout within |box|, injecting line breaks as needed to ensure
182 // horizontal fitting. The result is *not* guaranteed to fit vertically (it may extend
183 // below the box bottom).
184 static Result Shape(const SkString& text, const TextDesc& desc, const SkRect& box,
186
187#if !defined(SK_DISABLE_LEGACY_SHAPER_FACTORY)
188 static Result Shape(const SkString& text, const TextDesc& desc, const SkPoint& point,
189 const sk_sp<SkFontMgr>&);
190 static Result Shape(const SkString& text, const TextDesc& desc, const SkRect& box,
191 const sk_sp<SkFontMgr>&);
192#endif
193
194private:
195 Shaper() = delete;
196};
197
198} // namespace skottie
199
200#endif // SkottieTextShaper_DEFINED
Shape
@ kTrackFragmentAdvanceAscent
Definition TextShaper.h:150
float SkScalar
Definition extension.cpp:12
std::u16string text
SKSHAPER_API sk_sp< Factory > Factory()
std::vector< Fragment > fFragments
Definition TextShaper.h:79
SkRect computeVisualBounds() const
std::true_type sk_is_trivially_relocatable
Definition TextShaper.h:45
std::vector< SkGlyphID > fGlyphIDs
Definition TextShaper.h:52
SkRect computeBounds(BoundsType) const
std::vector< SkPoint > fGlyphPos
Definition TextShaper.h:53
std::vector< size_t > fClusters
Definition TextShaper.h:58
std::vector< RunRec > fRuns
Definition TextShaper.h:49
void draw(SkCanvas *, const SkPoint &origin, const SkPaint &) const
LinebreakPolicy fLinebreak
Definition TextShaper.h:167
SkTextUtils::Align fHAlign
Definition TextShaper.h:164
const sk_sp< SkTypeface > & fTypeface
Definition TextShaper.h:157
Capitalization fCapitalization
Definition TextShaper.h:169