blob: 96a2619876c095385fe58978625c86533a8e0017 [file] [log] [blame]
joshualittaa2f6582015-07-29 10:14:58 -07001/*
2 * Copyright 2015 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
joshualittaa2f6582015-07-29 10:14:58 -07008#include "SkCanvas.h"
bungeman7cfd46a2016-10-20 16:06:52 -04009#include "SkGlyph.h"
10#include "SkMakeUnique.h"
11#include "SkPath.h"
12#include "SkRandomScalerContext.h"
joshualitt65e96b42015-07-31 11:45:22 -070013#include "SkRasterizer.h"
joshualittaa2f6582015-07-29 10:14:58 -070014
bungeman7cfd46a2016-10-20 16:06:52 -040015class SkDescriptor;
16
joshualittaa2f6582015-07-29 10:14:58 -070017class SkRandomScalerContext : public SkScalerContext {
18public:
bungeman7cfd46a2016-10-20 16:06:52 -040019 SkRandomScalerContext(sk_sp<SkRandomTypeface>, const SkScalerContextEffects&,
reeda9322c22016-04-12 06:47:05 -070020 const SkDescriptor*, bool fFakeIt);
joshualittaa2f6582015-07-29 10:14:58 -070021
22protected:
23 unsigned generateGlyphCount() override;
24 uint16_t generateCharToGlyph(SkUnichar) override;
25 void generateAdvance(SkGlyph*) override;
26 void generateMetrics(SkGlyph*) override;
27 void generateImage(const SkGlyph&) override;
28 void generatePath(const SkGlyph&, SkPath*) override;
29 void generateFontMetrics(SkPaint::FontMetrics*) override;
30
31private:
bungeman7cfd46a2016-10-20 16:06:52 -040032 SkRandomTypeface* getRandomTypeface() const {
33 return static_cast<SkRandomTypeface*>(this->getTypeface());
34 }
35 std::unique_ptr<SkScalerContext> fProxy;
joshualitt65e96b42015-07-31 11:45:22 -070036 bool fFakeIt;
joshualittaa2f6582015-07-29 10:14:58 -070037};
38
bungeman7cfd46a2016-10-20 16:06:52 -040039SkRandomScalerContext::SkRandomScalerContext(sk_sp<SkRandomTypeface> face,
reeda9322c22016-04-12 06:47:05 -070040 const SkScalerContextEffects& effects,
41 const SkDescriptor* desc,
joshualitt65e96b42015-07-31 11:45:22 -070042 bool fakeIt)
bungeman7cfd46a2016-10-20 16:06:52 -040043 : SkScalerContext(std::move(face), effects, desc)
joshualitt65e96b42015-07-31 11:45:22 -070044 , fFakeIt(fakeIt) {
bungeman7cfd46a2016-10-20 16:06:52 -040045 fProxy = this->getRandomTypeface()->proxy()->createScalerContext(effects, desc);
joshualittaa2f6582015-07-29 10:14:58 -070046}
47
joshualittaa2f6582015-07-29 10:14:58 -070048unsigned SkRandomScalerContext::generateGlyphCount() {
49 return fProxy->getGlyphCount();
50}
51
52uint16_t SkRandomScalerContext::generateCharToGlyph(SkUnichar uni) {
53 return fProxy->charToGlyphID(uni);
54}
55
56void SkRandomScalerContext::generateAdvance(SkGlyph* glyph) {
57 fProxy->getAdvance(glyph);
joshualittaa2f6582015-07-29 10:14:58 -070058}
59
60void SkRandomScalerContext::generateMetrics(SkGlyph* glyph) {
joshualittaa2f6582015-07-29 10:14:58 -070061 // Here we will change the mask format of the glyph
62 // NOTE this is being overridden by the base class
robertphillips52b88cc2016-04-05 16:55:41 -070063 SkMask::Format format = SkMask::kARGB32_Format; // init to handle defective compilers
joshualittd45fb5a2015-08-01 10:33:40 -070064 switch (glyph->getGlyphID() % 4) {
joshualittaa2f6582015-07-29 10:14:58 -070065 case 0:
66 format = SkMask::kLCD16_Format;
67 break;
68 case 1:
69 format = SkMask::kA8_Format;
70 break;
71 case 2:
72 format = SkMask::kARGB32_Format;
73 break;
joshualittd45fb5a2015-08-01 10:33:40 -070074 case 3:
75 format = SkMask::kBW_Format;
76 break;
joshualittaa2f6582015-07-29 10:14:58 -070077 }
78
joshualitt65e96b42015-07-31 11:45:22 -070079 fProxy->getMetrics(glyph);
80
joshualittaa2f6582015-07-29 10:14:58 -070081 glyph->fMaskFormat = format;
joshualitt65e96b42015-07-31 11:45:22 -070082 if (fFakeIt) {
83 return;
84 }
85 if (SkMask::kARGB32_Format == format) {
joshualitt65e96b42015-07-31 11:45:22 -070086 SkPath path;
87 fProxy->getPath(*glyph, &path);
joshualitt65e96b42015-07-31 11:45:22 -070088
89 SkRect storage;
bungeman7cfd46a2016-10-20 16:06:52 -040090 const SkPaint& paint = this->getRandomTypeface()->paint();
joshualitt65e96b42015-07-31 11:45:22 -070091 const SkRect& newBounds = paint.doComputeFastBounds(path.getBounds(),
92 &storage,
93 SkPaint::kFill_Style);
94 SkIRect ibounds;
95 newBounds.roundOut(&ibounds);
96 glyph->fLeft = ibounds.fLeft;
97 glyph->fTop = ibounds.fTop;
98 glyph->fWidth = ibounds.width();
99 glyph->fHeight = ibounds.height();
100 } else {
101 SkPath devPath, fillPath;
102 SkMatrix fillToDevMatrix;
103
104 this->internalGetPath(*glyph, &fillPath, &devPath, &fillToDevMatrix);
105
106 // just use devPath
107 const SkIRect ir = devPath.getBounds().roundOut();
108
109 if (ir.isEmpty() || !ir.is16Bit()) {
110 glyph->fLeft = 0;
111 glyph->fTop = 0;
112 glyph->fWidth = 0;
113 glyph->fHeight = 0;
114 return;
115 }
116 glyph->fLeft = ir.fLeft;
117 glyph->fTop = ir.fTop;
118 glyph->fWidth = SkToU16(ir.width());
119 glyph->fHeight = SkToU16(ir.height());
120
121 if (glyph->fWidth > 0) {
122 switch (glyph->fMaskFormat) {
123 case SkMask::kLCD16_Format:
124 glyph->fWidth += 2;
125 glyph->fLeft -= 1;
126 break;
127 default:
128 break;
129 }
130 }
131 }
joshualittaa2f6582015-07-29 10:14:58 -0700132}
133
134void SkRandomScalerContext::generateImage(const SkGlyph& glyph) {
135 SkMask::Format format = (SkMask::Format)glyph.fMaskFormat;
joshualittd45fb5a2015-08-01 10:33:40 -0700136 switch (glyph.getGlyphID() % 4) {
joshualittaa2f6582015-07-29 10:14:58 -0700137 case 0:
joshualittaa2f6582015-07-29 10:14:58 -0700138 format = SkMask::kLCD16_Format;
139 break;
joshualitt65e96b42015-07-31 11:45:22 -0700140 case 1:
joshualittaa2f6582015-07-29 10:14:58 -0700141 format = SkMask::kA8_Format;
142 break;
joshualitt65e96b42015-07-31 11:45:22 -0700143 case 2:
joshualittaa2f6582015-07-29 10:14:58 -0700144 format = SkMask::kARGB32_Format;
145 break;
joshualittd45fb5a2015-08-01 10:33:40 -0700146 case 3:
147 format = SkMask::kBW_Format;
148 break;
joshualittaa2f6582015-07-29 10:14:58 -0700149 }
150 const_cast<SkGlyph&>(glyph).fMaskFormat = format;
151
152 // if the format is ARGB, we just draw the glyph from path ourselves. Otherwise, we force
153 // our proxy context to generate the image from paths.
joshualitt65e96b42015-07-31 11:45:22 -0700154 if (!fFakeIt) {
155 if (SkMask::kARGB32_Format == glyph.fMaskFormat) {
156 SkPath path;
157 fProxy->getPath(glyph, &path);
joshualittaa2f6582015-07-29 10:14:58 -0700158
joshualitt65e96b42015-07-31 11:45:22 -0700159 SkBitmap bm;
160 bm.installPixels(SkImageInfo::MakeN32Premul(glyph.fWidth, glyph.fHeight),
161 glyph.fImage, glyph.rowBytes());
162 bm.eraseColor(0);
joshualittaa2f6582015-07-29 10:14:58 -0700163
joshualitt65e96b42015-07-31 11:45:22 -0700164 SkCanvas canvas(bm);
165 canvas.translate(-SkIntToScalar(glyph.fLeft),
166 -SkIntToScalar(glyph.fTop));
bungeman7cfd46a2016-10-20 16:06:52 -0400167 canvas.drawPath(path, this->getRandomTypeface()->paint());
joshualitt65e96b42015-07-31 11:45:22 -0700168 } else {
169 fProxy->forceGenerateImageFromPath();
170 fProxy->getImage(glyph);
171 fProxy->forceOffGenerateImageFromPath();
172 }
joshualittaa2f6582015-07-29 10:14:58 -0700173 } else {
joshualitt65e96b42015-07-31 11:45:22 -0700174 sk_bzero(glyph.fImage, glyph.computeImageSize());
joshualittaa2f6582015-07-29 10:14:58 -0700175 }
176}
177
178void SkRandomScalerContext::generatePath(const SkGlyph& glyph, SkPath* path) {
179 fProxy->getPath(glyph, path);
joshualittaa2f6582015-07-29 10:14:58 -0700180}
181
182void SkRandomScalerContext::generateFontMetrics(SkPaint::FontMetrics* metrics) {
183 fProxy->getFontMetrics(metrics);
joshualittaa2f6582015-07-29 10:14:58 -0700184}
185
186///////////////////////////////////////////////////////////////////////////////
187
188#include "SkTypefaceCache.h"
189
bungeman13b9c952016-05-12 10:09:30 -0700190SkRandomTypeface::SkRandomTypeface(sk_sp<SkTypeface> proxy, const SkPaint& paint, bool fakeIt)
bungemane3aea102016-07-13 05:16:58 -0700191 : SkTypeface(proxy->fontStyle(), false)
bungeman13b9c952016-05-12 10:09:30 -0700192 , fProxy(std::move(proxy))
joshualitt65e96b42015-07-31 11:45:22 -0700193 , fPaint(paint)
194 , fFakeIt(fakeIt) {}
joshualittaa2f6582015-07-29 10:14:58 -0700195
reeda9322c22016-04-12 06:47:05 -0700196SkScalerContext* SkRandomTypeface::onCreateScalerContext(const SkScalerContextEffects& effects,
197 const SkDescriptor* desc) const {
bungeman7cfd46a2016-10-20 16:06:52 -0400198 return new SkRandomScalerContext(sk_ref_sp(const_cast<SkRandomTypeface*>(this)),
199 effects, desc, fFakeIt);
joshualittaa2f6582015-07-29 10:14:58 -0700200}
201
202void SkRandomTypeface::onFilterRec(SkScalerContextRec* rec) const {
203 fProxy->filterRec(rec);
204 rec->setHinting(SkPaint::kNo_Hinting);
205 rec->fMaskFormat = SkMask::kARGB32_Format;
206}
207
208SkAdvancedTypefaceMetrics* SkRandomTypeface::onGetAdvancedTypefaceMetrics(
209 PerGlyphInfo info,
210 const uint32_t* glyphIDs,
211 uint32_t glyphIDsCount) const {
212 return fProxy->getAdvancedTypefaceMetrics(info, glyphIDs, glyphIDsCount);
213}
214
215SkStreamAsset* SkRandomTypeface::onOpenStream(int* ttcIndex) const {
216 return fProxy->openStream(ttcIndex);
217}
218
219void SkRandomTypeface::onGetFontDescriptor(SkFontDescriptor* desc,
220 bool* isLocal) const {
221 fProxy->getFontDescriptor(desc, isLocal);
222}
223
224int SkRandomTypeface::onCharsToGlyphs(const void* chars, Encoding encoding,
225 uint16_t glyphs[], int glyphCount) const {
226 return fProxy->charsToGlyphs(chars, encoding, glyphs, glyphCount);
227}
228
229int SkRandomTypeface::onCountGlyphs() const {
230 return fProxy->countGlyphs();
231}
232
233int SkRandomTypeface::onGetUPEM() const {
234 return fProxy->getUnitsPerEm();
235}
236
237void SkRandomTypeface::onGetFamilyName(SkString* familyName) const {
238 fProxy->getFamilyName(familyName);
239}
240
241SkTypeface::LocalizedStrings* SkRandomTypeface::onCreateFamilyNameIterator() const {
242 return fProxy->createFamilyNameIterator();
243}
244
245int SkRandomTypeface::onGetTableTags(SkFontTableTag tags[]) const {
246 return fProxy->getTableTags(tags);
247}
248
249size_t SkRandomTypeface::onGetTableData(SkFontTableTag tag, size_t offset,
250 size_t length, void* data) const {
251 return fProxy->getTableData(tag, offset, length, data);
252}
253