blob: cd05fcffd4481f5d4d71aa001d96f1cafcff6cd9 [file] [log] [blame]
scroggo@google.com2bbc2c92013-06-14 15:33:20 +00001/*
2 * Copyright 2013 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 */
reedbfefc7c2014-06-12 17:40:00 -07007
scroggo@google.com2bbc2c92013-06-14 15:33:20 +00008#include "gm.h"
tfarinabcbc1782014-06-18 14:32:48 -07009
halcanaryb0cce2c2015-01-26 12:49:00 -080010#include "sk_tool_utils.h"
msarettd15750c2016-03-18 15:48:49 -070011#include "DecodeFile.h"
tfarinabcbc1782014-06-18 14:32:48 -070012#include "Resources.h"
scroggo@google.com2bbc2c92013-06-14 15:33:20 +000013#include "SampleCode.h"
robertphillips@google.comb7061172013-09-06 14:16:12 +000014#include "SkBlurMask.h"
scroggo@google.com2bbc2c92013-06-14 15:33:20 +000015#include "SkBlurDrawLooper.h"
16#include "SkCanvas.h"
17#include "SkColorPriv.h"
scroggo@google.com2bbc2c92013-06-14 15:33:20 +000018#include "SkOSFile.h"
Ben Wagnerbf111d72016-11-07 18:05:29 -050019#include "SkOSPath.h"
scroggo@google.com2bbc2c92013-06-14 15:33:20 +000020#include "SkStream.h"
21#include "SkString.h"
22#include "SkSystemEventTypes.h"
23#include "SkTypes.h"
24#include "SkUtils.h"
25#include "SkView.h"
26
scroggo@google.com2bbc2c92013-06-14 15:33:20 +000027/**
28 * Interprets c as an unpremultiplied color, and returns the
29 * premultiplied equivalent.
30 */
31static SkPMColor premultiply_unpmcolor(SkPMColor c) {
32 U8CPU a = SkGetPackedA32(c);
33 U8CPU r = SkGetPackedR32(c);
34 U8CPU g = SkGetPackedG32(c);
35 U8CPU b = SkGetPackedB32(c);
36 return SkPreMultiplyARGB(a, r, g, b);
37}
38
39class UnpremulView : public SampleView {
40public:
41 UnpremulView(SkString res)
42 : fResPath(res)
43 , fPremul(true)
44 , fDecodeSucceeded(false) {
45 this->nextImage();
46 }
47
48protected:
49 // overrides from SkEventSink
mtklein36352bf2015-03-25 18:17:31 -070050 bool onQuery(SkEvent* evt) override {
scroggo@google.com2bbc2c92013-06-14 15:33:20 +000051 if (SampleCode::TitleQ(*evt)) {
52 SampleCode::TitleR(evt, "unpremul");
53 return true;
54 }
55 SkUnichar uni;
56 if (SampleCode::CharQ(*evt, &uni)) {
57 char utf8[kMaxBytesInUTF8Sequence];
58 size_t size = SkUTF8_FromUnichar(uni, utf8);
59 // Only consider events for single char keys
60 if (1 == size) {
61 switch (utf8[0]) {
62 case fNextImageChar:
63 this->nextImage();
64 return true;
65 case fTogglePremulChar:
66 this->togglePremul();
67 return true;
68 default:
69 break;
70 }
71 }
72 }
73 return this->INHERITED::onQuery(evt);
74 }
75
mtklein36352bf2015-03-25 18:17:31 -070076 void onDrawBackground(SkCanvas* canvas) override {
halcanaryb0cce2c2015-01-26 12:49:00 -080077 sk_tool_utils::draw_checkerboard(canvas, 0xFFCCCCCC, 0xFFFFFFFF, 12);
scroggo@google.com2bbc2c92013-06-14 15:33:20 +000078 }
79
mtklein36352bf2015-03-25 18:17:31 -070080 void onDrawContent(SkCanvas* canvas) override {
scroggo@google.com2bbc2c92013-06-14 15:33:20 +000081 SkPaint paint;
82 paint.setAntiAlias(true);
83 paint.setTextSize(SkIntToScalar(24));
reed7b380d02016-03-21 13:25:16 -070084 auto looper(
85 SkBlurDrawLooper::Make(SK_ColorBLUE, SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(2)),
86 0, 0));
scroggo@google.com2bbc2c92013-06-14 15:33:20 +000087 paint.setLooper(looper);
halcanary96fcdcc2015-08-27 07:41:13 -070088 SkScalar height = paint.getFontMetrics(nullptr);
scroggo@google.com2bbc2c92013-06-14 15:33:20 +000089 if (!fDecodeSucceeded) {
90 SkString failure;
91 if (fResPath.size() == 0) {
92 failure.printf("resource path is required!");
93 } else {
94 failure.printf("Failed to decode %s", fCurrFile.c_str());
95 }
Cary Clark2a475ea2017-04-28 15:35:12 -040096 canvas->drawString(failure, 0, height, paint);
scroggo@google.com2bbc2c92013-06-14 15:33:20 +000097 return;
98 }
99
100 // Name, size of the file, and whether or not it is premultiplied.
tfarinaa8e2e152014-07-28 19:26:58 -0700101 SkString header(SkOSPath::Basename(fCurrFile.c_str()));
scroggo@google.com2bbc2c92013-06-14 15:33:20 +0000102 header.appendf(" [%dx%d] %s", fBitmap.width(), fBitmap.height(),
103 (fPremul ? "premultiplied" : "unpremultiplied"));
Cary Clark2a475ea2017-04-28 15:35:12 -0400104 canvas->drawString(header, 0, height, paint);
scroggo@google.com2bbc2c92013-06-14 15:33:20 +0000105 canvas->translate(0, height);
106
107 // Help messages
108 header.printf("Press '%c' to move to the next image.'", fNextImageChar);
Cary Clark2a475ea2017-04-28 15:35:12 -0400109 canvas->drawString(header, 0, height, paint);
scroggo@google.com2bbc2c92013-06-14 15:33:20 +0000110 canvas->translate(0, height);
111
112 header.printf("Press '%c' to toggle premultiplied decode.", fTogglePremulChar);
Cary Clark2a475ea2017-04-28 15:35:12 -0400113 canvas->drawString(header, 0, height, paint);
scroggo@google.com2bbc2c92013-06-14 15:33:20 +0000114
115 // Now draw the image itself.
116 canvas->translate(height * 2, height * 2);
117 if (!fPremul) {
118 // A premultiplied bitmap cannot currently be drawn.
scroggo@google.com2bbc2c92013-06-14 15:33:20 +0000119 // Copy it to a bitmap which can be drawn, converting
120 // to premultiplied:
121 SkBitmap bm;
reed84825042014-09-02 12:50:45 -0700122 bm.allocN32Pixels(fBitmap.width(), fBitmap.height());
scroggo@google.com2bbc2c92013-06-14 15:33:20 +0000123 for (int i = 0; i < fBitmap.width(); ++i) {
124 for (int j = 0; j < fBitmap.height(); ++j) {
125 *bm.getAddr32(i, j) = premultiply_unpmcolor(*fBitmap.getAddr32(i, j));
126 }
127 }
128 canvas->drawBitmap(bm, 0, 0);
129 } else {
130 canvas->drawBitmap(fBitmap, 0, 0);
131 }
132 }
133
134private:
135 const SkString fResPath;
136 SkString fCurrFile;
137 bool fPremul;
138 bool fDecodeSucceeded;
139 SkBitmap fBitmap;
140 SkOSFile::Iter fFileIter;
141
142 static const char fNextImageChar = 'j';
143 static const char fTogglePremulChar = 'h';
144
145 void nextImage() {
146 if (fResPath.size() == 0) {
147 return;
148 }
149 SkString basename;
150 if (!fFileIter.next(&basename)) {
151 fFileIter.reset(fResPath.c_str());
152 if (!fFileIter.next(&basename)) {
153 // Perhaps this should draw some error message?
154 return;
155 }
156 }
tfarinaa8e2e152014-07-28 19:26:58 -0700157 fCurrFile = SkOSPath::Join(fResPath.c_str(), basename.c_str());
scroggo@google.com2bbc2c92013-06-14 15:33:20 +0000158 this->decodeCurrFile();
159 }
160
161 void decodeCurrFile() {
162 if (fCurrFile.size() == 0) {
163 fDecodeSucceeded = false;
164 return;
165 }
msarettd15750c2016-03-18 15:48:49 -0700166 fDecodeSucceeded = decode_file(fCurrFile.c_str(), &fBitmap, kN32_SkColorType, !fPremul);
halcanary96fcdcc2015-08-27 07:41:13 -0700167 this->inval(nullptr);
scroggo@google.com2bbc2c92013-06-14 15:33:20 +0000168 }
169
170 void togglePremul() {
171 fPremul = !fPremul;
172 this->decodeCurrFile();
173 }
174
175 typedef SampleView INHERITED;
176};
177
178//////////////////////////////////////////////////////////////////////////////
179
180static SkView* MyFactory() {
tfarinabcbc1782014-06-18 14:32:48 -0700181 return new UnpremulView(GetResourcePath());
scroggo@google.com2bbc2c92013-06-14 15:33:20 +0000182}
183static SkViewRegister reg(MyFactory);