2015-07-21 19:27:36 +00:00
|
|
|
|
/*
|
2014-06-21 17:54:17 +00:00
|
|
|
|
* Copyright 2014 Google Inc.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
|
* found in the LICENSE file.
|
|
|
|
|
*/
|
|
|
|
|
|
2014-03-07 03:25:16 +00:00
|
|
|
|
#include "sk_tool_utils.h"
|
2014-07-31 12:58:44 +00:00
|
|
|
|
#include "sk_tool_utils_flags.h"
|
2014-03-07 03:25:16 +00:00
|
|
|
|
|
2015-07-21 19:27:36 +00:00
|
|
|
|
#include "Resources.h"
|
2014-06-21 17:54:17 +00:00
|
|
|
|
#include "SkBitmap.h"
|
|
|
|
|
#include "SkCanvas.h"
|
2015-07-20 20:38:56 +00:00
|
|
|
|
#include "SkCommonFlags.h"
|
2015-01-26 20:49:00 +00:00
|
|
|
|
#include "SkShader.h"
|
2014-07-31 12:58:44 +00:00
|
|
|
|
#include "SkTestScalerContext.h"
|
2015-04-14 19:17:27 +00:00
|
|
|
|
#include "SkTextBlob.h"
|
2014-06-21 17:54:17 +00:00
|
|
|
|
|
2014-07-31 12:58:44 +00:00
|
|
|
|
DEFINE_bool(portableFonts, false, "Use portable fonts");
|
2014-03-07 03:25:16 +00:00
|
|
|
|
|
2014-07-31 12:58:44 +00:00
|
|
|
|
namespace sk_tool_utils {
|
2014-06-23 18:25:00 +00:00
|
|
|
|
|
2015-07-24 18:08:01 +00:00
|
|
|
|
/* these are the default fonts chosen by Chrome for serif, sans-serif, and monospace */
|
|
|
|
|
static const char* gStandardFontNames[][3] = {
|
|
|
|
|
{ "Times", "Helvetica", "Courier" }, // Mac
|
|
|
|
|
{ "Times New Roman", "Helvetica", "Courier" }, // iOS
|
|
|
|
|
{ "Times New Roman", "Arial", "Courier New" }, // Win
|
|
|
|
|
{ "Times New Roman", "Arial", "Monospace" }, // Ubuntu
|
2015-07-24 19:09:25 +00:00
|
|
|
|
{ "serif", "sans-serif", "monospace" }, // Android
|
2015-07-24 18:08:01 +00:00
|
|
|
|
{ "Tinos", "Arimo", "Cousine" } // ChromeOS
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const char* platform_font_name(const char* name) {
|
|
|
|
|
SkString platform = major_platform_os_name();
|
|
|
|
|
int index;
|
|
|
|
|
if (!strcmp(name, "serif")) {
|
|
|
|
|
index = 0;
|
|
|
|
|
} else if (!strcmp(name, "san-serif")) {
|
|
|
|
|
index = 1;
|
|
|
|
|
} else if (!strcmp(name, "monospace")) {
|
|
|
|
|
index = 2;
|
|
|
|
|
} else {
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
if (platform.equals("Mac")) {
|
|
|
|
|
return gStandardFontNames[0][index];
|
|
|
|
|
}
|
|
|
|
|
if (platform.equals("iOS")) {
|
|
|
|
|
return gStandardFontNames[1][index];
|
|
|
|
|
}
|
|
|
|
|
if (platform.equals("Win")) {
|
|
|
|
|
return gStandardFontNames[2][index];
|
|
|
|
|
}
|
|
|
|
|
if (platform.equals("Ubuntu")) {
|
|
|
|
|
return gStandardFontNames[3][index];
|
|
|
|
|
}
|
|
|
|
|
if (platform.equals("Android")) {
|
|
|
|
|
return gStandardFontNames[4][index];
|
|
|
|
|
}
|
|
|
|
|
if (platform.equals("ChromeOS")) {
|
|
|
|
|
return gStandardFontNames[5][index];
|
|
|
|
|
}
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-21 19:27:36 +00:00
|
|
|
|
const char* platform_os_emoji() {
|
|
|
|
|
const char* osName = platform_os_name();
|
2015-07-23 16:11:58 +00:00
|
|
|
|
if (!strcmp(osName, "Android") || !strcmp(osName, "Ubuntu")) {
|
2015-07-21 19:27:36 +00:00
|
|
|
|
return "CBDT";
|
|
|
|
|
}
|
|
|
|
|
if (!strncmp(osName, "Mac", 3)) {
|
|
|
|
|
return "SBIX";
|
|
|
|
|
}
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-23 18:52:01 +00:00
|
|
|
|
void emoji_typeface(SkAutoTUnref<SkTypeface>* tf) {
|
2015-07-21 19:27:36 +00:00
|
|
|
|
if (!strcmp(sk_tool_utils::platform_os_emoji(), "CBDT")) {
|
2015-07-23 18:52:01 +00:00
|
|
|
|
tf->reset(GetResourceAsTypeface("/fonts/Funkster.ttf"));
|
|
|
|
|
return;
|
2015-07-21 19:27:36 +00:00
|
|
|
|
}
|
|
|
|
|
if (!strcmp(sk_tool_utils::platform_os_emoji(), "SBIX")) {
|
2015-07-23 18:52:01 +00:00
|
|
|
|
tf->reset(SkTypeface::CreateFromName("Apple Color Emoji", SkTypeface::kNormal));
|
|
|
|
|
return;
|
2015-07-21 19:27:36 +00:00
|
|
|
|
}
|
2015-07-23 18:52:01 +00:00
|
|
|
|
tf->reset(NULL);
|
|
|
|
|
return;
|
2015-07-21 19:27:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char* emoji_sample_text() {
|
|
|
|
|
if (!strcmp(sk_tool_utils::platform_os_emoji(), "CBDT")) {
|
|
|
|
|
return "Hamburgefons";
|
|
|
|
|
}
|
|
|
|
|
if (!strcmp(sk_tool_utils::platform_os_emoji(), "SBIX")) {
|
|
|
|
|
return "\xF0\x9F\x92\xB0" "\xF0\x9F\x8F\xA1" "\xF0\x9F\x8E\x85" // 💰🏡🎅
|
|
|
|
|
"\xF0\x9F\x8D\xAA" "\xF0\x9F\x8D\x95" "\xF0\x9F\x9A\x80" // 🍪🍕🚀
|
|
|
|
|
"\xF0\x9F\x9A\xBB" "\xF0\x9F\x92\xA9" "\xF0\x9F\x93\xB7" // 🚻💩📷
|
|
|
|
|
"\xF0\x9F\x93\xA6" // 📦
|
|
|
|
|
"\xF0\x9F\x87\xBA" "\xF0\x9F\x87\xB8" "\xF0\x9F\x87\xA6"; // 🇺🇸🇦
|
|
|
|
|
}
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-20 20:38:56 +00:00
|
|
|
|
const char* platform_os_name() {
|
|
|
|
|
for (int index = 0; index < FLAGS_key.count(); index += 2) {
|
|
|
|
|
if (!strcmp("os", FLAGS_key[index])) {
|
|
|
|
|
return FLAGS_key[index + 1];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// when running SampleApp or dm without a --key pair, omit the platform name
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-24 18:08:01 +00:00
|
|
|
|
// omit version number in returned value
|
|
|
|
|
SkString major_platform_os_name() {
|
|
|
|
|
SkString name;
|
|
|
|
|
for (int index = 0; index < FLAGS_key.count(); index += 2) {
|
|
|
|
|
if (!strcmp("os", FLAGS_key[index])) {
|
|
|
|
|
const char* platform = FLAGS_key[index + 1];
|
|
|
|
|
const char* end = platform;
|
|
|
|
|
while (*end && (*end < '0' || *end > '9')) {
|
|
|
|
|
++end;
|
|
|
|
|
}
|
|
|
|
|
name.append(platform, end - platform);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-20 20:38:56 +00:00
|
|
|
|
const char* platform_extra_config(const char* config) {
|
|
|
|
|
for (int index = 0; index < FLAGS_key.count(); index += 2) {
|
|
|
|
|
if (!strcmp("extra_config", FLAGS_key[index]) && !strcmp(config, FLAGS_key[index + 1])) {
|
|
|
|
|
return config;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-17 21:31:26 +00:00
|
|
|
|
const char* colortype_name(SkColorType ct) {
|
|
|
|
|
switch (ct) {
|
|
|
|
|
case kUnknown_SkColorType: return "Unknown";
|
|
|
|
|
case kAlpha_8_SkColorType: return "Alpha_8";
|
|
|
|
|
case kIndex_8_SkColorType: return "Index_8";
|
|
|
|
|
case kARGB_4444_SkColorType: return "ARGB_4444";
|
|
|
|
|
case kRGB_565_SkColorType: return "RGB_565";
|
|
|
|
|
case kRGBA_8888_SkColorType: return "RGBA_8888";
|
|
|
|
|
case kBGRA_8888_SkColorType: return "BGRA_8888";
|
|
|
|
|
default:
|
|
|
|
|
SkASSERT(false);
|
|
|
|
|
return "unexpected colortype";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-15 13:51:08 +00:00
|
|
|
|
SkColor color_to_565(SkColor color) {
|
|
|
|
|
SkPMColor pmColor = SkPreMultiplyColor(color);
|
2015-06-12 18:49:04 +00:00
|
|
|
|
U16CPU color16 = SkPixel32ToPixel16(pmColor);
|
2015-06-15 13:51:08 +00:00
|
|
|
|
return SkPixel16ToColor(color16);
|
2015-06-12 18:49:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-31 12:58:44 +00:00
|
|
|
|
SkTypeface* create_portable_typeface(const char* name, SkTypeface::Style style) {
|
2015-06-10 16:31:09 +00:00
|
|
|
|
return create_font(name, style);
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-31 12:58:44 +00:00
|
|
|
|
void set_portable_typeface(SkPaint* paint, const char* name, SkTypeface::Style style) {
|
2015-06-10 16:31:09 +00:00
|
|
|
|
SkTypeface* face = create_font(name, style);
|
|
|
|
|
SkSafeUnref(paint->setTypeface(face));
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-07 03:25:16 +00:00
|
|
|
|
void write_pixels(SkCanvas* canvas, const SkBitmap& bitmap, int x, int y,
|
|
|
|
|
SkColorType colorType, SkAlphaType alphaType) {
|
|
|
|
|
SkBitmap tmp(bitmap);
|
|
|
|
|
tmp.lockPixels();
|
2014-03-08 03:02:06 +00:00
|
|
|
|
|
2014-09-03 18:54:58 +00:00
|
|
|
|
const SkImageInfo info = SkImageInfo::Make(tmp.width(), tmp.height(), colorType, alphaType);
|
2014-03-08 03:02:06 +00:00
|
|
|
|
|
2014-03-07 03:25:16 +00:00
|
|
|
|
canvas->writePixels(info, tmp.getPixels(), tmp.rowBytes(), x, y);
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-26 20:49:00 +00:00
|
|
|
|
SkShader* create_checkerboard_shader(SkColor c1, SkColor c2, int size) {
|
|
|
|
|
SkBitmap bm;
|
|
|
|
|
bm.allocN32Pixels(2 * size, 2 * size);
|
|
|
|
|
bm.eraseColor(c1);
|
|
|
|
|
bm.eraseArea(SkIRect::MakeLTRB(0, 0, size, size), c2);
|
|
|
|
|
bm.eraseArea(SkIRect::MakeLTRB(size, size, 2 * size, 2 * size), c2);
|
|
|
|
|
return SkShader::CreateBitmapShader(
|
|
|
|
|
bm, SkShader::kRepeat_TileMode, SkShader::kRepeat_TileMode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void draw_checkerboard(SkCanvas* canvas, SkColor c1, SkColor c2, int size) {
|
|
|
|
|
SkPaint paint;
|
|
|
|
|
paint.setShader(create_checkerboard_shader(c1, c2, size))->unref();
|
2015-01-27 16:38:35 +00:00
|
|
|
|
paint.setXfermodeMode(SkXfermode::kSrc_Mode);
|
2015-01-26 20:49:00 +00:00
|
|
|
|
canvas->drawPaint(paint);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-14 19:17:27 +00:00
|
|
|
|
void add_to_text_blob(SkTextBlobBuilder* builder, const char* text, const SkPaint& origPaint,
|
|
|
|
|
SkScalar x, SkScalar y) {
|
|
|
|
|
SkPaint paint(origPaint);
|
|
|
|
|
SkTDArray<uint16_t> glyphs;
|
|
|
|
|
|
|
|
|
|
size_t len = strlen(text);
|
|
|
|
|
glyphs.append(paint.textToGlyphs(text, len, NULL));
|
|
|
|
|
paint.textToGlyphs(text, len, glyphs.begin());
|
|
|
|
|
|
|
|
|
|
paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
|
|
|
|
|
const SkTextBlobBuilder::RunBuffer& run = builder->allocRun(paint, glyphs.count(), x, y,
|
|
|
|
|
NULL);
|
|
|
|
|
memcpy(run.glyphs, glyphs.begin(), glyphs.count() * sizeof(uint16_t));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-06-21 17:54:17 +00:00
|
|
|
|
} // namespace sk_tool_utils
|