blob: e3fbd1c6b79b0e750d9efe149a40d616984aa521 [file] [log] [blame]
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +00001/*
2 * Copyright 2014 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 sk_tool_utils_DEFINED
9#define sk_tool_utils_DEFINED
10
halcanaryb0cce2c2015-01-26 12:49:00 -080011#include "SkColor.h"
Ben Wagner97182cc2018-02-15 10:20:04 -050012#include "SkData.h"
13#include "SkEncodedImageFormat.h"
Mike Reed12a6d452018-12-21 22:22:31 -050014#include "SkFont.h"
Ben Wagner97182cc2018-02-15 10:20:04 -050015#include "SkFontStyle.h"
Mike Reed38810f32018-12-21 10:58:25 -050016#include "SkFontTypes.h"
robertphillips3e5c2b12015-03-23 05:46:51 -070017#include "SkImageEncoder.h"
tfarina20108912014-06-21 10:54:17 -070018#include "SkImageInfo.h"
robertphillips423f6462015-10-19 12:15:55 -070019#include "SkRandom.h"
Ben Wagner97182cc2018-02-15 10:20:04 -050020#include "SkRect.h"
Robert Phillips4150eea2018-02-07 17:08:21 -050021#include "SkRefCnt.h"
Ben Wagner97182cc2018-02-15 10:20:04 -050022#include "SkScalar.h"
Hal Canary1fcc4042016-11-30 17:07:59 -050023#include "SkStream.h"
Ben Wagner97182cc2018-02-15 10:20:04 -050024#include "SkTArray.h"
robertphillips423f6462015-10-19 12:15:55 -070025#include "SkTDArray.h"
Mike Reed3185f902018-10-26 16:33:00 -040026#include "SkTypeface.h"
Ben Wagner97182cc2018-02-15 10:20:04 -050027#include "SkTypes.h"
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000028
Cary Clark992c7b02014-07-31 08:58:44 -040029class SkBitmap;
30class SkCanvas;
Ben Wagner97182cc2018-02-15 10:20:04 -050031class SkFontStyle;
Mike Reed24846602017-12-04 16:06:03 -050032class SkImage;
Cary Clark992c7b02014-07-31 08:58:44 -040033class SkPaint;
joshualitt98d2e2f2015-10-05 07:23:30 -070034class SkPath;
Ben Wagner97182cc2018-02-15 10:20:04 -050035class SkPixmap;
robertphillips276d3282016-08-04 09:03:19 -070036class SkRRect;
halcanaryb0cce2c2015-01-26 12:49:00 -080037class SkShader;
Mike Reed46596ae2018-01-02 15:40:29 -050038class SkSurface;
39class SkSurfaceProps;
joshualitt9e36c1a2015-04-14 12:17:27 -070040class SkTextBlobBuilder;
Ben Wagner97182cc2018-02-15 10:20:04 -050041class SkTypeface;
skia.committer@gmail.comdb0c8752014-03-18 03:02:11 +000042
Cary Clark992c7b02014-07-31 08:58:44 -040043namespace sk_tool_utils {
caryclark5fb6bd42014-06-23 11:25:00 -070044
Mike Reedd4746982018-02-07 16:05:29 -050045 const char* alphatype_name(SkAlphaType);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000046 const char* colortype_name(SkColorType);
caryclark37213552015-07-24 11:08:01 -070047
48 /**
49 * Map opaque colors from 8888 to 565.
50 */
caryclark65cdba62015-06-15 06:51:08 -070051 SkColor color_to_565(SkColor color);
caryclark37213552015-07-24 11:08:01 -070052
53 /**
54 * Return a color emoji typeface if available.
55 */
bungeman13b9c952016-05-12 10:09:30 -070056 sk_sp<SkTypeface> emoji_typeface();
caryclark37213552015-07-24 11:08:01 -070057
58 /**
59 * If the platform supports color emoji, return sample text the emoji can render.
60 */
caryclarkc3dcb672015-07-21 12:27:36 -070061 const char* emoji_sample_text();
caryclark37213552015-07-24 11:08:01 -070062
63 /**
Mike Kleinb251b722017-11-13 11:03:16 -050064 * Returns a string describing the platform font manager, if we're using one, otherwise "".
caryclark37213552015-07-24 11:08:01 -070065 */
Mike Kleinb251b722017-11-13 11:03:16 -050066 const char* platform_font_manager();
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000067
68 /**
caryclark1818acb2015-07-24 12:09:25 -070069 * Sets the paint to use a platform-independent text renderer
caryclark5fb6bd42014-06-23 11:25:00 -070070 */
halcanary96fcdcc2015-08-27 07:41:13 -070071 void set_portable_typeface(SkPaint* paint, const char* name = nullptr,
mbocee6a9912016-05-31 11:42:36 -070072 SkFontStyle style = SkFontStyle());
caryclark37213552015-07-24 11:08:01 -070073
74 /**
caryclark37213552015-07-24 11:08:01 -070075 * Returns a platform-independent text renderer.
76 */
mbocee6a9912016-05-31 11:42:36 -070077 sk_sp<SkTypeface> create_portable_typeface(const char* name, SkFontStyle style);
caryclark37213552015-07-24 11:08:01 -070078
Mike Reed3185f902018-10-26 16:33:00 -040079 static inline sk_sp<SkTypeface> create_portable_typeface() {
80 return create_portable_typeface(nullptr, SkFontStyle());
81 }
82
Mike Reed38810f32018-12-21 10:58:25 -050083 void get_text_path(const SkFont&, const void* text, size_t length, SkTextEncoding, SkPath*,
84 const SkPoint* positions = nullptr);
85
caryclark5fb6bd42014-06-23 11:25:00 -070086 /**
Mike Reed4c790bd2018-02-08 14:10:40 -050087 * Call writePixels() by using the pixels from bitmap, but with an info that claims
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000088 * the pixels are colorType + alphaType
89 */
90 void write_pixels(SkCanvas*, const SkBitmap&, int x, int y, SkColorType, SkAlphaType);
Mike Reed4c790bd2018-02-08 14:10:40 -050091 void write_pixels(SkSurface*, const SkBitmap&, int x, int y, SkColorType, SkAlphaType);
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000092
Mike Reed5a625e02017-08-08 15:48:54 -040093 /**
Brian Osman1b151982018-09-20 12:47:39 -040094 * Returns true iff all of the pixels between the two images are identical.
Mike Reed5a625e02017-08-08 15:48:54 -040095 *
96 * If the configs differ, return false.
Mike Reed5a625e02017-08-08 15:48:54 -040097 */
Brian Osman1b151982018-09-20 12:47:39 -040098 bool equal_pixels(const SkPixmap&, const SkPixmap&);
99 bool equal_pixels(const SkBitmap&, const SkBitmap&);
100 bool equal_pixels(const SkImage* a, const SkImage* b);
Mike Reed5a625e02017-08-08 15:48:54 -0400101
halcanaryb0cce2c2015-01-26 12:49:00 -0800102 /** Returns a newly created CheckerboardShader. */
reed8a21c9f2016-03-08 18:50:00 -0800103 sk_sp<SkShader> create_checkerboard_shader(SkColor c1, SkColor c2, int size);
halcanaryb0cce2c2015-01-26 12:49:00 -0800104
105 /** Draw a checkerboard pattern in the current canvas, restricted to
halcanaryf77365f2015-01-27 08:38:35 -0800106 the current clip, using SkXfermode::kSrc_Mode. */
halcanaryb0cce2c2015-01-26 12:49:00 -0800107 void draw_checkerboard(SkCanvas* canvas,
108 SkColor color1,
109 SkColor color2,
robertphillips943a4622015-09-03 13:32:33 -0700110 int checkSize);
111
112 /** Make it easier to create a bitmap-based checkerboard */
113 SkBitmap create_checkerboard_bitmap(int w, int h,
114 SkColor c1, SkColor c2,
115 int checkSize);
halcanaryb0cce2c2015-01-26 12:49:00 -0800116
117 /** A default checkerboard. */
118 inline void draw_checkerboard(SkCanvas* canvas) {
119 sk_tool_utils::draw_checkerboard(canvas, 0xFF999999, 0xFF666666, 8);
120 }
121
robertphillips943a4622015-09-03 13:32:33 -0700122 SkBitmap create_string_bitmap(int w, int h, SkColor c, int x, int y,
123 int textSize, const char* str);
124
Cary Clarka24712e2018-09-05 18:41:40 +0000125 // If the canvas does't make a surface (e.g. recording), make a raster surface
126 sk_sp<SkSurface> makeSurface(SkCanvas*, const SkImageInfo&, const SkSurfaceProps* = nullptr);
127
joshualitt9e36c1a2015-04-14 12:17:27 -0700128 // A helper for inserting a drawtext call into a SkTextBlobBuilder
Mike Reed12a6d452018-12-21 22:22:31 -0500129 void add_to_text_blob_w_len(SkTextBlobBuilder*, const char* text, size_t len, SkTextEncoding,
130 const SkFont&, SkScalar x, SkScalar y);
Robert Phillips4c72b262017-08-15 13:28:42 -0400131
Mike Reed12a6d452018-12-21 22:22:31 -0500132 void add_to_text_blob(SkTextBlobBuilder*, const char* text, const SkFont&,
133 SkScalar x, SkScalar y);
134
Chris Dalton7c02cc72017-11-06 14:10:54 -0700135 // Constructs a star by walking a 'numPts'-sided regular polygon with even/odd fill:
136 //
137 // moveTo(pts[0]);
138 // lineTo(pts[step % numPts]);
139 // ...
140 // lineTo(pts[(step * (N - 1)) % numPts]);
141 //
142 // numPts=5, step=2 will produce a classic five-point star.
143 //
144 // numPts and step must be co-prime.
145 SkPath make_star(const SkRect& bounds, int numPts = 5, int step = 2);
146
Robert Phillipsa8cdbd72018-07-17 12:30:40 -0400147 void create_hemi_normal_map(SkBitmap* bm, const SkIRect& dst);
148
149 void create_frustum_normal_map(SkBitmap* bm, const SkIRect& dst);
150
151 void create_tetra_normal_map(SkBitmap* bm, const SkIRect& dst);
152
joshualitt98d2e2f2015-10-05 07:23:30 -0700153 void make_big_path(SkPath& path);
robertphillips9c4909b2015-10-19 06:39:17 -0700154
robertphillips423f6462015-10-19 12:15:55 -0700155 // A helper object to test the topological sorting code (TopoSortBench.cpp & TopoSortTest.cpp)
Robert Phillips4150eea2018-02-07 17:08:21 -0500156 class TopoTestNode : public SkRefCnt {
robertphillips423f6462015-10-19 12:15:55 -0700157 public:
158 TopoTestNode(int id) : fID(id), fOutputPos(-1), fTempMark(false) { }
159
160 void dependsOn(TopoTestNode* src) {
161 *fDependencies.append() = src;
162 }
163
164 int id() const { return fID; }
165 void reset() { fOutputPos = -1; }
166
167 int outputPos() const { return fOutputPos; }
168
169 // check that the topological sort is valid for this node
170 bool check() {
171 if (-1 == fOutputPos) {
172 return false;
173 }
174
175 for (int i = 0; i < fDependencies.count(); ++i) {
176 if (-1 == fDependencies[i]->outputPos()) {
177 return false;
178 }
179 // This node should've been output after all the nodes on which it depends
180 if (fOutputPos < fDependencies[i]->outputPos()) {
181 return false;
182 }
183 }
184
185 return true;
186 }
187
188 // The following 7 methods are needed by the topological sort
189 static void SetTempMark(TopoTestNode* node) { node->fTempMark = true; }
190 static void ResetTempMark(TopoTestNode* node) { node->fTempMark = false; }
191 static bool IsTempMarked(TopoTestNode* node) { return node->fTempMark; }
halcanary9d524f22016-03-29 09:03:52 -0700192 static void Output(TopoTestNode* node, int outputPos) {
robertphillips423f6462015-10-19 12:15:55 -0700193 SkASSERT(-1 != outputPos);
halcanary9d524f22016-03-29 09:03:52 -0700194 node->fOutputPos = outputPos;
robertphillips423f6462015-10-19 12:15:55 -0700195 }
196 static bool WasOutput(TopoTestNode* node) { return (-1 != node->fOutputPos); }
197 static int NumDependencies(TopoTestNode* node) { return node->fDependencies.count(); }
halcanary9d524f22016-03-29 09:03:52 -0700198 static TopoTestNode* Dependency(TopoTestNode* node, int index) {
robertphillips423f6462015-10-19 12:15:55 -0700199 return node->fDependencies[index];
200 }
201
202 // Helper functions for TopoSortBench & TopoSortTest
Robert Phillips4150eea2018-02-07 17:08:21 -0500203 static void AllocNodes(SkTArray<sk_sp<sk_tool_utils::TopoTestNode>>* graph, int num) {
204 graph->reserve(num);
robertphillips423f6462015-10-19 12:15:55 -0700205
206 for (int i = 0; i < num; ++i) {
Robert Phillips4150eea2018-02-07 17:08:21 -0500207 graph->push_back(sk_sp<TopoTestNode>(new TopoTestNode(i)));
robertphillips423f6462015-10-19 12:15:55 -0700208 }
209 }
210
Robert Phillips4150eea2018-02-07 17:08:21 -0500211#ifdef SK_DEBUG
212 static void Print(const SkTArray<TopoTestNode*>& graph) {
robertphillips423f6462015-10-19 12:15:55 -0700213 for (int i = 0; i < graph.count(); ++i) {
214 SkDebugf("%d, ", graph[i]->id());
215 }
216 SkDebugf("\n");
217 }
Robert Phillips4150eea2018-02-07 17:08:21 -0500218#endif
robertphillips423f6462015-10-19 12:15:55 -0700219
220 // randomize the array
Robert Phillips4150eea2018-02-07 17:08:21 -0500221 static void Shuffle(SkTArray<sk_sp<TopoTestNode>>* graph, SkRandom* rand) {
robertphillips423f6462015-10-19 12:15:55 -0700222 for (int i = graph->count()-1; i > 0; --i) {
223 int swap = rand->nextU() % (i+1);
224
Robert Phillips4150eea2018-02-07 17:08:21 -0500225 (*graph)[i].swap((*graph)[swap]);
robertphillips423f6462015-10-19 12:15:55 -0700226 }
227 }
228
229 private:
230 int fID;
231 int fOutputPos;
232 bool fTempMark;
233
234 SkTDArray<TopoTestNode*> fDependencies;
235 };
236
Hal Canarydb683012016-11-23 08:55:18 -0700237 template <typename T>
238 inline bool EncodeImageToFile(const char* path, const T& src, SkEncodedImageFormat f, int q) {
239 SkFILEWStream file(path);
240 return file.isValid() && SkEncodeImage(&file, src, f, q);
241 }
242
Matt Sarett68b8e3d2017-04-28 11:15:22 -0400243 bool copy_to(SkBitmap* dst, SkColorType dstCT, const SkBitmap& src);
Matt Sarett4897fb82017-01-18 11:49:33 -0500244 void copy_to_g8(SkBitmap* dst, const SkBitmap& src);
tfarina20108912014-06-21 10:54:17 -0700245} // namespace sk_tool_utils
246
247#endif // sk_tool_utils_DEFINED