blob: 9712b6bfb460eb6897ecfa1e33e1debc9f1afacf [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 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 */
Scroggo2c8208f2011-06-15 16:49:08 +00007#include "SampleApp.h"
8
reed@google.com8a85d0c2011-06-24 19:12:12 +00009#include "SkData.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#include "SkCanvas.h"
11#include "SkDevice.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000012#include "SkGraphics.h"
scroggo@google.com74b7ffd2013-04-30 02:32:41 +000013#include "SkImageDecoder.h"
reed@android.comb08eb2b2009-01-06 20:16:26 +000014#include "SkImageEncoder.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000015#include "SkPaint.h"
16#include "SkPicture.h"
17#include "SkStream.h"
edisonn@google.comf8b6b012013-07-11 14:28:04 +000018#include "SkTSort.h"
reed@android.com44177402009-11-23 21:07:51 +000019#include "SkTime.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000020#include "SkWindow.h"
21
22#include "SampleCode.h"
Scroggo0f185c22011-03-24 18:35:50 +000023#include "SkTypeface.h"
reed@android.comf2b98d62010-12-20 18:26:13 +000024
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000025#if SK_SUPPORT_GPU
tomhudson@google.com6bf38b52012-02-14 15:11:59 +000026#include "gl/GrGLInterface.h"
bsalomon@google.com9c1f1ac2012-05-07 17:09:37 +000027#include "gl/GrGLUtil.h"
bsalomon@google.com583a1e32011-08-17 13:42:46 +000028#include "GrRenderTarget.h"
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000029#include "GrContext.h"
30#include "SkGpuDevice.h"
31#else
32class GrContext;
33#endif
Scroggo2c8208f2011-06-15 16:49:08 +000034
reed@google.com1830c7a2012-06-04 12:05:43 +000035#include "SkOSFile.h"
Scroggo8ac0d542011-06-21 14:44:57 +000036#include "SkPDFDevice.h"
37#include "SkPDFDocument.h"
38#include "SkStream.h"
39
scroggo@google.comb073d922012-06-08 15:35:03 +000040#include "SkGPipe.h"
41#include "SamplePipeControllers.h"
tfarina@chromium.orgb1b7f702012-09-18 01:52:20 +000042#include "OverView.h"
epoger@google.com6a121782012-09-14 18:42:01 +000043#include "TransitionView.h"
scroggo@google.comb073d922012-06-08 15:35:03 +000044
reed@google.com1830c7a2012-06-04 12:05:43 +000045extern SampleView* CreateSamplePictFileView(const char filename[]);
46
47class PictFileFactory : public SkViewFactory {
48 SkString fFilename;
49public:
50 PictFileFactory(const SkString& filename) : fFilename(filename) {}
51 virtual SkView* operator() () const SK_OVERRIDE {
52 return CreateSamplePictFileView(fFilename.c_str());
53 }
54};
55
edisonn@google.comf8b6b012013-07-11 14:28:04 +000056#ifdef SAMPLE_PDF_FILE_VIEWER
57extern SampleView* CreateSamplePdfFileViewer(const char filename[]);
58
59class PdfFileViewerFactory : public SkViewFactory {
60 SkString fFilename;
61public:
62 PdfFileViewerFactory(const SkString& filename) : fFilename(filename) {}
63 virtual SkView* operator() () const SK_OVERRIDE {
64 return CreateSamplePdfFileViewer(fFilename.c_str());
65 }
66};
67#endif // SAMPLE_PDF_FILE_VIEWER
68
yangsu@google.comdb03eaa2011-08-08 15:37:23 +000069#define PIPE_FILEx
70#ifdef PIPE_FILE
yangsu@google.com1f394212011-06-01 18:03:34 +000071#define FILE_PATH "/path/to/drawing.data"
72#endif
73
yangsu@google.comf121b052011-08-08 16:02:51 +000074#define PIPE_NETx
yangsu@google.comdb03eaa2011-08-08 15:37:23 +000075#ifdef PIPE_NET
76#include "SkSockets.h"
77SkTCPServer gServer;
78#endif
yangsu@google.comef7bdfa2011-08-12 14:27:47 +000079
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +000080#define USE_ARROWS_FOR_ZOOM true
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000081
82#if SK_ANGLE
83//#define DEFAULT_TO_ANGLE 1
84#else
bsalomon@google.com82d12232013-09-09 15:36:26 +000085#define DEFAULT_TO_GPU 0 // if 1 default rendering is on GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000086#endif
reed@android.comf2b98d62010-12-20 18:26:13 +000087
reed@android.com8a1c16f2008-12-17 15:59:43 +000088#define ANIMATING_EVENTTYPE "nextSample"
reed@google.com84cfce12013-05-29 19:22:20 +000089#define ANIMATING_DELAY 250
reed@android.com8a1c16f2008-12-17 15:59:43 +000090
mike@reedtribe.org2eb59522011-04-22 01:59:09 +000091#ifdef SK_DEBUG
reed@google.combad8c872011-05-18 20:10:31 +000092 #define FPS_REPEAT_MULTIPLIER 1
mike@reedtribe.org2eb59522011-04-22 01:59:09 +000093#else
reed@google.combad8c872011-05-18 20:10:31 +000094 #define FPS_REPEAT_MULTIPLIER 10
mike@reedtribe.org2eb59522011-04-22 01:59:09 +000095#endif
reed@google.combad8c872011-05-18 20:10:31 +000096#define FPS_REPEAT_COUNT (10 * FPS_REPEAT_MULTIPLIER)
mike@reedtribe.org2eb59522011-04-22 01:59:09 +000097
reed@google.com3cec4d72011-07-06 13:59:47 +000098static SampleWindow* gSampleWindow;
99
reed@google.coma4f81372012-11-15 15:56:38 +0000100static bool gShowGMBounds;
101
reed@google.com2072db82011-11-08 15:18:10 +0000102static void postEventToSink(SkEvent* evt, SkEventSink* sink) {
103 evt->setTargetID(sink->getSinkID())->post();
104}
105
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +0000106///////////////////////////////////////////////////////////////////////////////
107
108static const char* skip_until(const char* str, const char* skip) {
109 if (!str) {
110 return NULL;
111 }
112 return strstr(str, skip);
113}
114
115static const char* skip_past(const char* str, const char* skip) {
116 const char* found = skip_until(str, skip);
117 if (!found) {
118 return NULL;
119 }
120 return found + strlen(skip);
121}
122
123static const char* gPrefFileName = "sampleapp_prefs.txt";
124
epoger@google.com6fc7cc22011-12-28 15:13:41 +0000125static bool readTitleFromPrefs(SkString* title) {
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +0000126 SkFILEStream stream(gPrefFileName);
127 if (!stream.isValid()) {
128 return false;
129 }
130
131 int len = stream.getLength();
132 SkString data(len);
133 stream.read(data.writable_str(), len);
134 const char* s = data.c_str();
135
136 s = skip_past(s, "curr-slide-title");
137 s = skip_past(s, "=");
138 s = skip_past(s, "\"");
139 const char* stop = skip_until(s, "\"");
140 if (stop > s) {
141 title->set(s, stop - s);
142 return true;
143 }
144 return false;
145}
146
epoger@google.com6fc7cc22011-12-28 15:13:41 +0000147static void writeTitleToPrefs(const char* title) {
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +0000148 SkFILEWStream stream(gPrefFileName);
149 SkString data;
150 data.printf("curr-slide-title = \"%s\"\n", title);
151 stream.write(data.c_str(), data.size());
152}
153
154///////////////////////////////////////////////////////////////////////////////
155
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000156class SampleWindow::DefaultDeviceManager : public SampleWindow::DeviceManager {
157public:
158
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000159 DefaultDeviceManager() {
160#if SK_SUPPORT_GPU
161 fCurContext = NULL;
162 fCurIntf = NULL;
163 fCurRenderTarget = NULL;
164 fMSAASampleCount = 0;
165#endif
166 fBackend = kNone_BackEndType;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000167 }
168
169 virtual ~DefaultDeviceManager() {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000170#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000171 SkSafeUnref(fCurContext);
172 SkSafeUnref(fCurIntf);
173 SkSafeUnref(fCurRenderTarget);
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000174#endif
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000175 }
176
bsalomon@google.com11959252012-04-06 20:13:38 +0000177 virtual void setUpBackend(SampleWindow* win, int msaaSampleCount) {
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000178 SkASSERT(kNone_BackEndType == fBackend);
robertphillips@google.com53e96a12012-03-30 14:47:53 +0000179
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000180 fBackend = kNone_BackEndType;
181
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000182#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000183 switch (win->getDeviceType()) {
184 case kRaster_DeviceType:
185 // fallthrough
186 case kPicture_DeviceType:
187 // fallthrough
188 case kGPU_DeviceType:
189 // fallthrough
190 case kNullGPU_DeviceType:
191 // all these guys use the native backend
192 fBackend = kNativeGL_BackEndType;
193 break;
robertphillips@google.combd8d7ad2012-03-30 15:18:14 +0000194#if SK_ANGLE
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000195 case kANGLE_DeviceType:
196 // ANGLE is really the only odd man out
197 fBackend = kANGLE_BackEndType;
198 break;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000199#endif // SK_ANGLE
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000200 default:
201 SkASSERT(false);
202 break;
robertphillips@google.combd8d7ad2012-03-30 15:18:14 +0000203 }
bsalomon@google.com64cc8102013-03-05 20:06:05 +0000204 AttachmentInfo attachmentInfo;
205 bool result = win->attach(fBackend, msaaSampleCount, &attachmentInfo);
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +0000206 if (!result) {
bsalomon@google.com74913722011-10-27 20:44:19 +0000207 SkDebugf("Failed to initialize GL");
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000208 return;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000209 }
bsalomon@google.com11959252012-04-06 20:13:38 +0000210 fMSAASampleCount = msaaSampleCount;
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000211
212 SkASSERT(NULL == fCurIntf);
213 switch (win->getDeviceType()) {
214 case kRaster_DeviceType:
215 // fallthrough
216 case kPicture_DeviceType:
217 // fallthrough
218 case kGPU_DeviceType:
219 // all these guys use the native interface
220 fCurIntf = GrGLCreateNativeInterface();
221 break;
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +0000222#if SK_ANGLE
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000223 case kANGLE_DeviceType:
224 fCurIntf = GrGLCreateANGLEInterface();
225 break;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000226#endif // SK_ANGLE
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000227 case kNullGPU_DeviceType:
228 fCurIntf = GrGLCreateNullInterface();
229 break;
230 default:
231 SkASSERT(false);
232 break;
bsalomon@google.com6fb736f2011-09-16 18:51:57 +0000233 }
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000234
235 SkASSERT(NULL == fCurContext);
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000236 fCurContext = GrContext::Create(kOpenGL_GrBackend, (GrBackendContext) fCurIntf);
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000237
238 if (NULL == fCurContext || NULL == fCurIntf) {
239 // We need some context and interface to see results
240 SkSafeUnref(fCurContext);
241 SkSafeUnref(fCurIntf);
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000242 SkDebugf("Failed to setup 3D");
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000243
244 win->detach();
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000245 }
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000246#endif // SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000247 // call windowSizeChanged to create the render target
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000248 this->windowSizeChanged(win);
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000249 }
250
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000251 virtual void tearDownBackend(SampleWindow *win) {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000252#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000253 SkSafeUnref(fCurContext);
254 fCurContext = NULL;
255
256 SkSafeUnref(fCurIntf);
257 fCurIntf = NULL;
258
259 SkSafeUnref(fCurRenderTarget);
260 fCurRenderTarget = NULL;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000261#endif
bsalomon@google.comddd40e52012-04-10 15:56:29 +0000262 win->detach();
263 fBackend = kNone_BackEndType;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000264 }
265
reed@google.com5957f472012-10-01 20:31:56 +0000266 virtual SkCanvas* createCanvas(SampleWindow::DeviceType dType,
267 SampleWindow* win) {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000268#if SK_SUPPORT_GPU
bsalomon@google.com82502e22013-01-24 20:47:18 +0000269 if (IsGpuDeviceType(dType) && NULL != fCurContext) {
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000270 SkAutoTUnref<SkBaseDevice> device(new SkGpuDevice(fCurContext, fCurRenderTarget));
bsalomon@google.com82502e22013-01-24 20:47:18 +0000271 return new SkCanvas(device);
272 } else
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000273#endif
bsalomon@google.com82502e22013-01-24 20:47:18 +0000274 {
275 return NULL;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000276 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000277 }
278
279 virtual void publishCanvas(SampleWindow::DeviceType dType,
280 SkCanvas* canvas,
281 SampleWindow* win) {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000282#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000283 if (fCurContext) {
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000284 // in case we have queued drawing calls
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000285 fCurContext->flush();
286
bsalomon@google.com82502e22013-01-24 20:47:18 +0000287 if (!IsGpuDeviceType(dType)) {
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000288 // need to send the raster bits to the (gpu) window
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000289 fCurContext->setRenderTarget(fCurRenderTarget);
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000290 const SkBitmap& bm = win->getBitmap();
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000291 fCurRenderTarget->writePixels(0, 0, bm.width(), bm.height(),
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000292 kSkia8888_GrPixelConfig,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000293 bm.getPixels(),
294 bm.rowBytes());
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000295 }
296 }
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000297#endif
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000298
299 win->present();
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000300 }
301
302 virtual void windowSizeChanged(SampleWindow* win) {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000303#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000304 if (fCurContext) {
bsalomon@google.com64cc8102013-03-05 20:06:05 +0000305 AttachmentInfo attachmentInfo;
306 win->attach(fBackend, fMSAASampleCount, &attachmentInfo);
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000307
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000308 GrBackendRenderTargetDesc desc;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000309 desc.fWidth = SkScalarRound(win->width());
310 desc.fHeight = SkScalarRound(win->height());
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000311 desc.fConfig = kSkia8888_GrPixelConfig;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000312 desc.fOrigin = kBottomLeft_GrSurfaceOrigin;
bsalomon@google.com64cc8102013-03-05 20:06:05 +0000313 desc.fSampleCnt = attachmentInfo.fSampleCount;
314 desc.fStencilBits = attachmentInfo.fStencilBits;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000315 GrGLint buffer;
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000316 GR_GL_GetIntegerv(fCurIntf, GR_GL_FRAMEBUFFER_BINDING, &buffer);
bsalomon@google.come269f212011-11-07 13:29:52 +0000317 desc.fRenderTargetHandle = buffer;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000318
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000319 SkSafeUnref(fCurRenderTarget);
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000320 fCurRenderTarget = fCurContext->wrapBackendRenderTarget(desc);
bsalomon@google.com74913722011-10-27 20:44:19 +0000321 }
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000322#endif
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000323 }
324
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000325 virtual GrContext* getGrContext() {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000326#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000327 return fCurContext;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000328#else
329 return NULL;
330#endif
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000331 }
bsalomon@google.com11959252012-04-06 20:13:38 +0000332
333 virtual GrRenderTarget* getGrRenderTarget() SK_OVERRIDE {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000334#if SK_SUPPORT_GPU
bsalomon@google.com11959252012-04-06 20:13:38 +0000335 return fCurRenderTarget;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000336#else
337 return NULL;
338#endif
bsalomon@google.com11959252012-04-06 20:13:38 +0000339 }
340
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000341private:
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000342
343#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000344 GrContext* fCurContext;
345 const GrGLInterface* fCurIntf;
346 GrRenderTarget* fCurRenderTarget;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000347 int fMSAASampleCount;
348#endif
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000349
350 SkOSWindow::SkBackEndTypes fBackend;
351
352 typedef SampleWindow::DeviceManager INHERITED;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000353};
354
355///////////////
mike@reedtribe.org2eb59522011-04-22 01:59:09 +0000356static const char view_inval_msg[] = "view-inval-msg";
357
Scroggo62b65b02011-06-21 16:01:26 +0000358void SampleWindow::postInvalDelay() {
reed@google.com87fac4a2011-08-04 13:50:17 +0000359 (new SkEvent(view_inval_msg, this->getSinkID()))->postDelay(1);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +0000360}
361
362static bool isInvalEvent(const SkEvent& evt) {
363 return evt.isType(view_inval_msg);
364}
365//////////////////
366
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000367SkFuncViewFactory::SkFuncViewFactory(SkViewCreateFunc func)
368 : fCreateFunc(func) {
369}
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +0000370
bsalomon@google.com8301de12011-10-31 16:47:13 +0000371SkView* SkFuncViewFactory::operator() () const {
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000372 return (*fCreateFunc)();
373}
374
375#include "GMSampleView.h"
376
377SkGMSampleViewFactory::SkGMSampleViewFactory(GMFactoryFunc func)
378 : fFunc(func) {
379}
380
381SkView* SkGMSampleViewFactory::operator() () const {
382 return new GMSampleView(fFunc(NULL));
383}
384
385SkViewRegister* SkViewRegister::gHead;
386SkViewRegister::SkViewRegister(SkViewFactory* fact) : fFact(fact) {
387 fFact->ref();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000388 fChain = gHead;
389 gHead = this;
390}
391
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000392SkViewRegister::SkViewRegister(SkViewCreateFunc func) {
393 fFact = new SkFuncViewFactory(func);
394 fChain = gHead;
395 gHead = this;
396}
397
398SkViewRegister::SkViewRegister(GMFactoryFunc func) {
399 fFact = new SkGMSampleViewFactory(func);
400 fChain = gHead;
401 gHead = this;
402}
403
404class AutoUnrefArray {
405public:
406 AutoUnrefArray() {}
407 ~AutoUnrefArray() {
408 int count = fObjs.count();
409 for (int i = 0; i < count; ++i) {
410 fObjs[i]->unref();
411 }
412 }
413 SkRefCnt*& push_back() { return *fObjs.append(); }
chudy@google.com4605a3f2012-08-01 17:58:01 +0000414
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000415private:
416 SkTDArray<SkRefCnt*> fObjs;
417};
418
419// registers GMs as Samples
420// This can't be performed during static initialization because it could be
421// run before GMRegistry has been fully built.
caryclark@google.com02939ce2012-06-06 12:09:51 +0000422static void SkGMRegistyToSampleRegistry() {
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000423 static bool gOnce;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000424 static AutoUnrefArray fRegisters;
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000425
426 if (!gOnce) {
427 const skiagm::GMRegistry* gmreg = skiagm::GMRegistry::Head();
428 while (gmreg) {
429 fRegisters.push_back() = new SkViewRegister(gmreg->factory());
430 gmreg = gmreg->next();
431 }
432 gOnce = true;
433 }
434}
435
reed@google.com29038ed2011-07-06 17:56:47 +0000436#if 0
reed@google.comf0b5f682011-03-11 20:08:25 +0000437#include <CoreFoundation/CoreFoundation.h>
438#include <CoreFoundation/CFURLAccess.h>
439
440static void testpdf() {
441 CFStringRef path = CFStringCreateWithCString(NULL, "/test.pdf",
442 kCFStringEncodingUTF8);
443 CFURLRef url = CFURLCreateWithFileSystemPath(NULL, path,
444 kCFURLPOSIXPathStyle,
445 false);
446 CFRelease(path);
447 CGRect box = CGRectMake(0, 0, 8*72, 10*72);
448 CGContextRef cg = CGPDFContextCreateWithURL(url, &box, NULL);
449 CFRelease(url);
450
451 CGContextBeginPage(cg, &box);
452 CGRect r = CGRectMake(10, 10, 40 + 0.5, 50 + 0.5);
453 CGContextFillEllipseInRect(cg, r);
454 CGContextEndPage(cg);
455 CGContextRelease(cg);
456
457 if (false) {
458 SkBitmap bm;
459 bm.setConfig(SkBitmap::kA8_Config, 64, 64);
460 bm.allocPixels();
junov@google.comdbfac8a2012-12-06 21:47:40 +0000461 bm.eraseColor(SK_ColorTRANSPARENT);
reed@google.comf0b5f682011-03-11 20:08:25 +0000462
463 SkCanvas canvas(bm);
464
465 }
466}
467#endif
468
469//////////////////////////////////////////////////////////////////////////////
470
reed@google.com569e0432011-04-05 13:07:03 +0000471enum FlipAxisEnum {
472 kFlipAxis_X = (1 << 0),
473 kFlipAxis_Y = (1 << 1)
474};
475
reed@google.comf0b5f682011-03-11 20:08:25 +0000476#include "SkDrawFilter.h"
477
bungeman@google.com96aabc82013-06-03 21:26:34 +0000478struct HintingState {
479 SkPaint::Hinting hinting;
480 const char* name;
481 const char* label;
482};
483static HintingState gHintingStates[] = {
484 {SkPaint::kNo_Hinting, "Mixed", NULL },
485 {SkPaint::kNo_Hinting, "None", "H0 " },
486 {SkPaint::kSlight_Hinting, "Slight", "Hs " },
487 {SkPaint::kNormal_Hinting, "Normal", "Hn " },
488 {SkPaint::kFull_Hinting, "Full", "Hf " },
489};
490
reed@google.com15bc13d2013-12-10 16:53:13 +0000491struct FilterLevelState {
492 SkPaint::FilterLevel fLevel;
493 const char* fName;
494 const char* fLabel;
495};
496static FilterLevelState gFilterLevelStates[] = {
497 { SkPaint::kNone_FilterLevel, "Mixed", NULL },
498 { SkPaint::kNone_FilterLevel, "None", "F0 " },
499 { SkPaint::kLow_FilterLevel, "Low", "F1 " },
500 { SkPaint::kMedium_FilterLevel, "Medium", "F2 " },
501 { SkPaint::kHigh_FilterLevel, "High", "F3 " },
502};
503
reed@google.com569e0432011-04-05 13:07:03 +0000504class FlagsDrawFilter : public SkDrawFilter {
reed@google.comf0b5f682011-03-11 20:08:25 +0000505public:
reed@google.com15bc13d2013-12-10 16:53:13 +0000506 FlagsDrawFilter(SkOSMenu::TriState lcd, SkOSMenu::TriState aa,
507 SkOSMenu::TriState subpixel, int hinting, int filterlevel)
508 : fLCDState(lcd)
509 , fAAState(aa)
510 , fSubpixelState(subpixel)
511 , fHintingState(hinting)
512 , fFilterLevelIndex(filterlevel)
513 {
514 SkASSERT((unsigned)filterlevel < SK_ARRAY_COUNT(gFilterLevelStates));
515 }
reed@google.comf0b5f682011-03-11 20:08:25 +0000516
reed@google.com971aca72012-11-26 20:26:54 +0000517 virtual bool filter(SkPaint* paint, Type t) {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000518 if (kText_Type == t && SkOSMenu::kMixedState != fLCDState) {
519 paint->setLCDRenderText(SkOSMenu::kOnState == fLCDState);
reed@google.com569e0432011-04-05 13:07:03 +0000520 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000521 if (SkOSMenu::kMixedState != fAAState) {
522 paint->setAntiAlias(SkOSMenu::kOnState == fAAState);
reed@google.comf0b5f682011-03-11 20:08:25 +0000523 }
reed@google.com15bc13d2013-12-10 16:53:13 +0000524 if (0 != fFilterLevelIndex) {
525 paint->setFilterLevel(gFilterLevelStates[fFilterLevelIndex].fLevel);
reed@google.com176753a2011-05-17 15:32:04 +0000526 }
bungeman@google.com96aabc82013-06-03 21:26:34 +0000527 if (SkOSMenu::kMixedState != fSubpixelState) {
528 paint->setSubpixelText(SkOSMenu::kOnState == fSubpixelState);
529 }
bungeman@google.com055aa522013-06-03 21:35:03 +0000530 if (0 != fHintingState && fHintingState < (int)SK_ARRAY_COUNT(gHintingStates)) {
bungeman@google.com96aabc82013-06-03 21:26:34 +0000531 paint->setHinting(gHintingStates[fHintingState].hinting);
reed@google.com09e3baa2011-05-18 12:04:31 +0000532 }
reed@google.com971aca72012-11-26 20:26:54 +0000533 return true;
reed@google.comf0b5f682011-03-11 20:08:25 +0000534 }
535
536private:
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000537 SkOSMenu::TriState fLCDState;
538 SkOSMenu::TriState fAAState;
bungeman@google.com96aabc82013-06-03 21:26:34 +0000539 SkOSMenu::TriState fSubpixelState;
540 int fHintingState;
reed@google.com15bc13d2013-12-10 16:53:13 +0000541 int fFilterLevelIndex;
reed@google.comf0b5f682011-03-11 20:08:25 +0000542};
543
reed@android.com8a1c16f2008-12-17 15:59:43 +0000544//////////////////////////////////////////////////////////////////////////////
545
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +0000546#define MAX_ZOOM_LEVEL 8
547#define MIN_ZOOM_LEVEL -8
548
reed@android.comf2b98d62010-12-20 18:26:13 +0000549static const char gCharEvtName[] = "SampleCode_Char_Event";
550static const char gKeyEvtName[] = "SampleCode_Key_Event";
reed@android.com8a1c16f2008-12-17 15:59:43 +0000551static const char gTitleEvtName[] = "SampleCode_Title_Event";
552static const char gPrefSizeEvtName[] = "SampleCode_PrefSize_Event";
reed@android.comf2b98d62010-12-20 18:26:13 +0000553static const char gFastTextEvtName[] = "SampleCode_FastText_Event";
reed@google.com2072db82011-11-08 15:18:10 +0000554static const char gUpdateWindowTitleEvtName[] = "SampleCode_UpdateWindowTitle";
reed@android.comf2b98d62010-12-20 18:26:13 +0000555
556bool SampleCode::CharQ(const SkEvent& evt, SkUnichar* outUni) {
557 if (evt.isType(gCharEvtName, sizeof(gCharEvtName) - 1)) {
558 if (outUni) {
559 *outUni = evt.getFast32();
560 }
561 return true;
562 }
563 return false;
564}
565
566bool SampleCode::KeyQ(const SkEvent& evt, SkKey* outKey) {
567 if (evt.isType(gKeyEvtName, sizeof(gKeyEvtName) - 1)) {
568 if (outKey) {
569 *outKey = (SkKey)evt.getFast32();
570 }
571 return true;
572 }
573 return false;
574}
reed@android.com8a1c16f2008-12-17 15:59:43 +0000575
576bool SampleCode::TitleQ(const SkEvent& evt) {
577 return evt.isType(gTitleEvtName, sizeof(gTitleEvtName) - 1);
578}
579
580void SampleCode::TitleR(SkEvent* evt, const char title[]) {
581 SkASSERT(evt && TitleQ(*evt));
582 evt->setString(gTitleEvtName, title);
583}
584
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000585bool SampleCode::RequestTitle(SkView* view, SkString* title) {
586 SkEvent evt(gTitleEvtName);
587 if (view->doQuery(&evt)) {
588 title->set(evt.findString(gTitleEvtName));
589 return true;
590 }
591 return false;
592}
593
reed@android.com8a1c16f2008-12-17 15:59:43 +0000594bool SampleCode::PrefSizeQ(const SkEvent& evt) {
595 return evt.isType(gPrefSizeEvtName, sizeof(gPrefSizeEvtName) - 1);
596}
597
598void SampleCode::PrefSizeR(SkEvent* evt, SkScalar width, SkScalar height) {
599 SkASSERT(evt && PrefSizeQ(*evt));
600 SkScalar size[2];
601 size[0] = width;
602 size[1] = height;
603 evt->setScalars(gPrefSizeEvtName, 2, size);
604}
605
reed@android.comf2b98d62010-12-20 18:26:13 +0000606bool SampleCode::FastTextQ(const SkEvent& evt) {
607 return evt.isType(gFastTextEvtName, sizeof(gFastTextEvtName) - 1);
608}
609
610///////////////////////////////////////////////////////////////////////////////
611
reed@android.com44177402009-11-23 21:07:51 +0000612static SkMSec gAnimTime;
reed@android.comf2b98d62010-12-20 18:26:13 +0000613static SkMSec gAnimTimePrev;
614
reed@android.com44177402009-11-23 21:07:51 +0000615SkMSec SampleCode::GetAnimTime() { return gAnimTime; }
reed@android.comf2b98d62010-12-20 18:26:13 +0000616SkMSec SampleCode::GetAnimTimeDelta() { return gAnimTime - gAnimTimePrev; }
617SkScalar SampleCode::GetAnimSecondsDelta() {
618 return SkDoubleToScalar(GetAnimTimeDelta() / 1000.0);
619}
reed@android.com44177402009-11-23 21:07:51 +0000620
621SkScalar SampleCode::GetAnimScalar(SkScalar speed, SkScalar period) {
reed@android.comf2b98d62010-12-20 18:26:13 +0000622 // since gAnimTime can be up to 32 bits, we can't convert it to a float
623 // or we'll lose the low bits. Hence we use doubles for the intermediate
624 // calculations
625 double seconds = (double)gAnimTime / 1000.0;
626 double value = SkScalarToDouble(speed) * seconds;
reed@android.com44177402009-11-23 21:07:51 +0000627 if (period) {
reed@android.comf2b98d62010-12-20 18:26:13 +0000628 value = ::fmod(value, SkScalarToDouble(period));
reed@android.com44177402009-11-23 21:07:51 +0000629 }
reed@android.comf2b98d62010-12-20 18:26:13 +0000630 return SkDoubleToScalar(value);
reed@android.com44177402009-11-23 21:07:51 +0000631}
632
bsalomon@google.com85003222012-03-28 14:44:37 +0000633SkScalar SampleCode::GetAnimSinScalar(SkScalar amplitude,
634 SkScalar periodInSec,
635 SkScalar phaseInSec) {
636 if (!periodInSec) {
637 return 0;
638 }
639 double t = (double)gAnimTime / 1000.0 + phaseInSec;
640 t *= SkScalarToFloat(2 * SK_ScalarPI) / periodInSec;
641 amplitude = SK_ScalarHalf * amplitude;
642 return SkScalarMul(amplitude, SkDoubleToScalar(sin(t))) + amplitude;
643}
644
reed@google.com3cec4d72011-07-06 13:59:47 +0000645GrContext* SampleCode::GetGr() {
646 return gSampleWindow ? gSampleWindow->getGrContext() : NULL;
647}
648
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000649// some GMs rely on having a skiagm::GetGr function defined
650namespace skiagm {
caryclark@google.com02939ce2012-06-06 12:09:51 +0000651 // FIXME: this should be moved into a header
652 GrContext* GetGr();
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000653 GrContext* GetGr() { return SampleCode::GetGr(); }
654}
655
reed@android.com8a1c16f2008-12-17 15:59:43 +0000656//////////////////////////////////////////////////////////////////////////////
657
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +0000658enum TilingMode {
659 kNo_Tiling,
660 kAbs_128x128_Tiling,
661 kAbs_256x256_Tiling,
662 kRel_4x4_Tiling,
663 kRel_1x16_Tiling,
664 kRel_16x1_Tiling,
665
666 kLast_TilingMode_Enum
667};
668
669struct TilingInfo {
670 const char* label;
671 SkScalar w, h;
672};
673
674static struct TilingInfo gTilingInfo[] = {
675 { "No tiling", SK_Scalar1 , SK_Scalar1 }, // kNo_Tiling
676 { "128x128" , SkIntToScalar(128), SkIntToScalar(128) }, // kAbs_128x128_Tiling
677 { "256x256" , SkIntToScalar(256), SkIntToScalar(256) }, // kAbs_256x256_Tiling
678 { "1/4x1/4" , SK_Scalar1 / 4 , SK_Scalar1 / 4 }, // kRel_4x4_Tiling
679 { "1/1x1/16" , SK_Scalar1 , SK_Scalar1 / 16 }, // kRel_1x16_Tiling
680 { "1/16x1/1" , SK_Scalar1 / 16 , SK_Scalar1 }, // kRel_16x1_Tiling
681};
682SK_COMPILE_ASSERT((SK_ARRAY_COUNT(gTilingInfo) == kLast_TilingMode_Enum),
683 Incomplete_tiling_labels);
684
685//////////////////////////////////////////////////////////////////////////////
686
reed@android.comf2b98d62010-12-20 18:26:13 +0000687static SkView* curr_view(SkWindow* wind) {
688 SkView::F2BIter iter(wind);
689 return iter.next();
690}
691
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +0000692static bool curr_title(SkWindow* wind, SkString* title) {
693 SkView* view = curr_view(wind);
694 if (view) {
695 SkEvent evt(gTitleEvtName);
696 if (view->doQuery(&evt)) {
697 title->set(evt.findString(gTitleEvtName));
698 return true;
699 }
700 }
701 return false;
702}
703
Scroggo2c8208f2011-06-15 16:49:08 +0000704void SampleWindow::setZoomCenter(float x, float y)
705{
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000706 fZoomCenterX = x;
707 fZoomCenterY = y;
Scroggo2c8208f2011-06-15 16:49:08 +0000708}
reed@android.com8a1c16f2008-12-17 15:59:43 +0000709
Scroggo0f185c22011-03-24 18:35:50 +0000710bool SampleWindow::zoomIn()
711{
712 // Arbitrarily decided
713 if (fFatBitsScale == 25) return false;
714 fFatBitsScale++;
715 this->inval(NULL);
716 return true;
717}
718
719bool SampleWindow::zoomOut()
720{
721 if (fFatBitsScale == 1) return false;
722 fFatBitsScale--;
723 this->inval(NULL);
724 return true;
725}
726
Scroggo0f185c22011-03-24 18:35:50 +0000727void SampleWindow::updatePointer(int x, int y)
728{
729 fMouseX = x;
730 fMouseY = y;
731 if (fShowZoomer) {
732 this->inval(NULL);
733 }
734}
735
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000736static inline SampleWindow::DeviceType cycle_devicetype(SampleWindow::DeviceType ct) {
737 static const SampleWindow::DeviceType gCT[] = {
738 SampleWindow::kPicture_DeviceType,
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000739#if SK_SUPPORT_GPU
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000740 SampleWindow::kGPU_DeviceType,
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000741#if SK_ANGLE
742 SampleWindow::kANGLE_DeviceType,
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000743#endif // SK_ANGLE
bsalomon@google.com74913722011-10-27 20:44:19 +0000744 SampleWindow::kRaster_DeviceType, // skip the null gpu device in normal cycling
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000745#endif // SK_SUPPORT_GPU
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000746 SampleWindow::kRaster_DeviceType
reed@android.com8a1c16f2008-12-17 15:59:43 +0000747 };
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000748 SK_COMPILE_ASSERT(SK_ARRAY_COUNT(gCT) == SampleWindow::kDeviceTypeCnt, array_size_mismatch);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000749 return gCT[ct];
750}
751
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000752static void usage(const char * argv0) {
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000753 SkDebugf("%s [--slide sampleName] [-i resourcePath] [--msaa sampleCount] [--pictureDir dirPath] [--picture path] [--sort]\n", argv0);
754#ifdef SAMPLE_PDF_FILE_VIEWER
755 SkDebugf(" [--pdfDir pdfPath]\n");
756 SkDebugf(" pdfPath: path to directory pdf files are read from\n");
757#endif // SAMPLE_PDF_FILE_VIEWER
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000758 SkDebugf(" sampleName: sample at which to start.\n");
759 SkDebugf(" resourcePath: directory that stores image resources.\n");
bsalomon@google.com11959252012-04-06 20:13:38 +0000760 SkDebugf(" msaa: request multisampling with the given sample count.\n");
chudy@google.com4605a3f2012-08-01 17:58:01 +0000761 SkDebugf(" dirPath: path to directory skia pictures are read from\n");
762 SkDebugf(" path: path to skia picture\n");
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000763 SkDebugf(" --sort: sort samples by title, this would help to compare pdf rendering (P:foo.pdf) with skp rendering (P:foo.pdf)\n");
764}
765
766static SkString getSampleTitle(const SkViewFactory* sampleFactory) {
767 SkView* view = (*sampleFactory)();
768 SkString title;
769 SampleCode::RequestTitle(view, &title);
770 view->unref();
771 return title;
772}
773
edisonn@google.comde36b692013-07-11 15:40:31 +0000774static bool compareSampleTitle(const SkViewFactory* first, const SkViewFactory* second) {
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000775 return strcmp(getSampleTitle(first).c_str(), getSampleTitle(second).c_str()) < 0;
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000776}
777
chudy@google.com4605a3f2012-08-01 17:58:01 +0000778SampleWindow::SampleWindow(void* hwnd, int argc, char** argv, DeviceManager* devManager)
robertphillips@google.com4750fa52012-04-10 13:34:11 +0000779 : INHERITED(hwnd)
780 , fDevManager(NULL) {
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000781
reed@google.com7d05ac92013-06-06 13:14:13 +0000782 fCurrIndex = -1;
783
reed@google.com1830c7a2012-06-04 12:05:43 +0000784 this->registerPictFileSamples(argv, argc);
chudy@google.com4605a3f2012-08-01 17:58:01 +0000785 this->registerPictFileSample(argv, argc);
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000786#ifdef SAMPLE_PDF_FILE_VIEWER
787 this->registerPdfFileViewerSamples(argv, argc);
788#endif // SAMPLE_PDF_FILE_VIEWER
robertphillips@google.com76d40212012-03-22 14:12:15 +0000789 SkGMRegistyToSampleRegistry();
790 {
791 const SkViewRegister* reg = SkViewRegister::Head();
792 while (reg) {
793 *fSamples.append() = reg->factory();
794 reg = reg->next();
795 }
796 }
797
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000798 bool sort = false;
799 for (int i = 0; i < argc; ++i) {
800 if (!strcmp(argv[i], "--sort")) {
801 sort = true;
802 break;
803 }
804 }
805
806 if (sort) {
807 // Sort samples, so foo.skp and foo.pdf are consecutive and we can quickly spot where
808 // skp -> pdf -> png fails.
809 SkTQSort(fSamples.begin(), fSamples.end() ? fSamples.end() - 1 : NULL, compareSampleTitle);
810 }
811
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000812 const char* resourcePath = NULL;
bsalomon@google.com11959252012-04-06 20:13:38 +0000813 fMSAASampleCount = 0;
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000814
815 const char* const commandName = argv[0];
816 char* const* stop = argv + argc;
817 for (++argv; argv < stop; ++argv) {
reed@google.com55ebe8e2013-09-10 19:12:07 +0000818 if (!strcmp(*argv, "-i") || !strcmp(*argv, "--resourcePath")) {
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000819 argv++;
820 if (argv < stop && **argv) {
821 resourcePath = *argv;
822 }
robertphillips@google.com76d40212012-03-22 14:12:15 +0000823 } else if (strcmp(*argv, "--slide") == 0) {
824 argv++;
825 if (argv < stop && **argv) {
826 fCurrIndex = findByTitle(*argv);
827 if (fCurrIndex < 0) {
828 fprintf(stderr, "Unknown sample \"%s\"\n", *argv);
robertphillips@google.com7265e722012-05-03 18:22:28 +0000829 listTitles();
robertphillips@google.com76d40212012-03-22 14:12:15 +0000830 }
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000831 }
bsalomon@google.com11959252012-04-06 20:13:38 +0000832 } else if (strcmp(*argv, "--msaa") == 0) {
833 ++argv;
834 if (argv < stop && **argv) {
835 fMSAASampleCount = atoi(*argv);
836 }
robertphillips@google.com7265e722012-05-03 18:22:28 +0000837 } else if (strcmp(*argv, "--list") == 0) {
838 listTitles();
halcanary@google.com805ca192013-10-14 12:47:37 +0000839 } else if (strcmp(*argv, "--pictureDir") == 0) {
840 ++argv; // This case is dealt with in registerPictFileSamples().
841 } else if (strcmp(*argv, "--picture") == 0) {
842 ++argv; // This case is dealt with in registerPictFileSample().
bsalomon@google.com11959252012-04-06 20:13:38 +0000843 }
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +0000844 else {
robertphillips@google.com76d40212012-03-22 14:12:15 +0000845 usage(commandName);
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000846 }
847 }
848
849 if (fCurrIndex < 0) {
850 SkString title;
851 if (readTitleFromPrefs(&title)) {
852 fCurrIndex = findByTitle(title.c_str());
853 }
854 }
855
856 if (fCurrIndex < 0) {
857 fCurrIndex = 0;
858 }
859
reed@google.com3cec4d72011-07-06 13:59:47 +0000860 gSampleWindow = this;
861
yangsu@google.com1f394212011-06-01 18:03:34 +0000862#ifdef PIPE_FILE
863 //Clear existing file or create file if it doesn't exist
864 FILE* f = fopen(FILE_PATH, "wb");
865 fclose(f);
866#endif
chudy@google.com4605a3f2012-08-01 17:58:01 +0000867
reed@android.com8a1c16f2008-12-17 15:59:43 +0000868 fPicture = NULL;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000869
robertphillips@google.combd8d7ad2012-03-30 15:18:14 +0000870 fDeviceType = kRaster_DeviceType;
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000871
872#if DEFAULT_TO_GPU
873 fDeviceType = kGPU_DeviceType;
reed@android.comf2b98d62010-12-20 18:26:13 +0000874#endif
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000875#if SK_ANGLE && DEFAULT_TO_ANGLE
876 fDeviceType = kANGLE_DeviceType;
877#endif
878
reed@android.com8a1c16f2008-12-17 15:59:43 +0000879 fUseClip = false;
reed@android.come522ca52009-11-23 20:10:41 +0000880 fNClip = false;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000881 fAnimating = false;
reed@android.com6c5f6f22009-08-14 16:08:38 +0000882 fRotate = false;
bungeman@google.comb1785912013-07-09 21:58:56 +0000883 fRotateAnimTime = 0;
bsalomon@google.come8f09102011-09-08 18:48:12 +0000884 fPerspAnim = false;
885 fPerspAnimTime = 0;
reed@android.comf2b98d62010-12-20 18:26:13 +0000886 fRequestGrabImage = false;
scroggo@google.comb073d922012-06-08 15:35:03 +0000887 fPipeState = SkOSMenu::kOffState;
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +0000888 fTilingMode = kNo_Tiling;
mike@reedtribe.org2eb59522011-04-22 01:59:09 +0000889 fMeasureFPS = false;
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000890 fLCDState = SkOSMenu::kMixedState;
891 fAAState = SkOSMenu::kMixedState;
bungeman@google.com96aabc82013-06-03 21:26:34 +0000892 fSubpixelState = SkOSMenu::kMixedState;
893 fHintingState = 0;
reed@google.com15bc13d2013-12-10 16:53:13 +0000894 fFilterLevelIndex = 0;
reed@google.com569e0432011-04-05 13:07:03 +0000895 fFlipAxis = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000896 fScrollTestX = fScrollTestY = 0;
897
Scroggo0f185c22011-03-24 18:35:50 +0000898 fMouseX = fMouseY = 0;
mike@reedtribe.org3ce59dc2011-04-08 00:38:05 +0000899 fFatBitsScale = 8;
Scroggo0f185c22011-03-24 18:35:50 +0000900 fTypeface = SkTypeface::CreateFromTypeface(NULL, SkTypeface::kBold);
901 fShowZoomer = false;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000902
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +0000903 fZoomLevel = 0;
904 fZoomScale = SK_Scalar1;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000905
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000906 fMagnify = false;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000907
Scroggo8ac0d542011-06-21 14:44:57 +0000908 fSaveToPdf = false;
909 fPdfCanvas = NULL;
910
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000911 fTransitionNext = 6;
912 fTransitionPrev = 2;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000913
yangsu@google.com921091f2011-08-02 13:39:12 +0000914 int sinkID = this->getSinkID();
scroggo@google.com7dadc742012-04-18 14:07:57 +0000915 fAppMenu = new SkOSMenu;
916 fAppMenu->setTitle("Global Settings");
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000917 int itemID;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000918
919 itemID =fAppMenu->appendList("Device Type", "Device Type", sinkID, 0,
920 "Raster", "Picture", "OpenGL",
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000921#if SK_ANGLE
922 "ANGLE",
923#endif
924 NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000925 fAppMenu->assignKeyEquivalentToItem(itemID, 'd');
926 itemID = fAppMenu->appendTriState("AA", "AA", sinkID, fAAState);
927 fAppMenu->assignKeyEquivalentToItem(itemID, 'b');
928 itemID = fAppMenu->appendTriState("LCD", "LCD", sinkID, fLCDState);
929 fAppMenu->assignKeyEquivalentToItem(itemID, 'l');
reed@google.com15bc13d2013-12-10 16:53:13 +0000930 itemID = fAppMenu->appendList("FilterLevel", "FilterLevel", sinkID, fFilterLevelIndex,
931 gFilterLevelStates[0].fName,
932 gFilterLevelStates[1].fName,
933 gFilterLevelStates[2].fName,
934 gFilterLevelStates[3].fName,
935 gFilterLevelStates[4].fName,
936 NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000937 fAppMenu->assignKeyEquivalentToItem(itemID, 'n');
bungeman@google.com96aabc82013-06-03 21:26:34 +0000938 itemID = fAppMenu->appendTriState("Subpixel", "Subpixel", sinkID, fSubpixelState);
939 fAppMenu->assignKeyEquivalentToItem(itemID, 's');
940 itemID = fAppMenu->appendList("Hinting", "Hinting", sinkID, fHintingState,
941 gHintingStates[0].name,
942 gHintingStates[1].name,
943 gHintingStates[2].name,
944 gHintingStates[3].name,
bungeman@google.coma9133bb2013-06-04 17:49:20 +0000945 gHintingStates[4].name,
946 NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000947 fAppMenu->assignKeyEquivalentToItem(itemID, 'h');
reed@google.com67b89ee2012-08-15 14:41:58 +0000948
scroggo@google.comb073d922012-06-08 15:35:03 +0000949 fUsePipeMenuItemID = fAppMenu->appendTriState("Pipe", "Pipe" , sinkID,
chudy@google.com4605a3f2012-08-01 17:58:01 +0000950 fPipeState);
scroggo@google.comb073d922012-06-08 15:35:03 +0000951 fAppMenu->assignKeyEquivalentToItem(fUsePipeMenuItemID, 'P');
reed@google.com67b89ee2012-08-15 14:41:58 +0000952
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +0000953 itemID =fAppMenu->appendList("Tiling", "Tiling", sinkID, fTilingMode,
954 gTilingInfo[kNo_Tiling].label,
955 gTilingInfo[kAbs_128x128_Tiling].label,
956 gTilingInfo[kAbs_256x256_Tiling].label,
957 gTilingInfo[kRel_4x4_Tiling].label,
958 gTilingInfo[kRel_1x16_Tiling].label,
959 gTilingInfo[kRel_16x1_Tiling].label,
960 NULL);
reed@google.com67b89ee2012-08-15 14:41:58 +0000961 fAppMenu->assignKeyEquivalentToItem(itemID, 't');
962
chudy@google.com4605a3f2012-08-01 17:58:01 +0000963 itemID = fAppMenu->appendSwitch("Slide Show", "Slide Show" , sinkID, false);
964 fAppMenu->assignKeyEquivalentToItem(itemID, 'a');
965 itemID = fAppMenu->appendSwitch("Clip", "Clip" , sinkID, fUseClip);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000966 fAppMenu->assignKeyEquivalentToItem(itemID, 'c');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000967 itemID = fAppMenu->appendSwitch("Flip X", "Flip X" , sinkID, false);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000968 fAppMenu->assignKeyEquivalentToItem(itemID, 'x');
969 itemID = fAppMenu->appendSwitch("Flip Y", "Flip Y" , sinkID, false);
970 fAppMenu->assignKeyEquivalentToItem(itemID, 'y');
971 itemID = fAppMenu->appendSwitch("Zoomer", "Zoomer" , sinkID, fShowZoomer);
972 fAppMenu->assignKeyEquivalentToItem(itemID, 'z');
973 itemID = fAppMenu->appendSwitch("Magnify", "Magnify" , sinkID, fMagnify);
974 fAppMenu->assignKeyEquivalentToItem(itemID, 'm');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000975 itemID =fAppMenu->appendList("Transition-Next", "Transition-Next", sinkID,
976 fTransitionNext, "Up", "Up and Right", "Right",
977 "Down and Right", "Down", "Down and Left",
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000978 "Left", "Up and Left", NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000979 fAppMenu->assignKeyEquivalentToItem(itemID, 'j');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000980 itemID =fAppMenu->appendList("Transition-Prev", "Transition-Prev", sinkID,
981 fTransitionPrev, "Up", "Up and Right", "Right",
982 "Down and Right", "Down", "Down and Left",
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000983 "Left", "Up and Left", NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000984 fAppMenu->assignKeyEquivalentToItem(itemID, 'k');
985 itemID = fAppMenu->appendAction("Save to PDF", sinkID);
986 fAppMenu->assignKeyEquivalentToItem(itemID, 'e');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000987
scroggo@google.com7dadc742012-04-18 14:07:57 +0000988 this->addMenu(fAppMenu);
989 fSlideMenu = new SkOSMenu;
990 this->addMenu(fSlideMenu);
chudy@google.com4605a3f2012-08-01 17:58:01 +0000991
bsalomon@google.com2fbc7fa2011-01-05 16:34:41 +0000992// this->setConfig(SkBitmap::kRGB_565_Config);
993 this->setConfig(SkBitmap::kARGB_8888_Config);
994 this->setVisibleP(true);
reed@android.comf2b98d62010-12-20 18:26:13 +0000995 this->setClipToBounds(false);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000996
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000997 skiagm::GM::SetResourcePath(resourcePath);
998
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000999 this->loadView((*fSamples[fCurrIndex])());
chudy@google.com4605a3f2012-08-01 17:58:01 +00001000
bsalomon@google.com840e9f32011-07-06 21:59:09 +00001001 fPDFData = NULL;
reed@google.comf0b5f682011-03-11 20:08:25 +00001002
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001003 if (NULL == devManager) {
1004 fDevManager = new DefaultDeviceManager();
1005 } else {
1006 devManager->ref();
1007 fDevManager = devManager;
1008 }
bsalomon@google.com11959252012-04-06 20:13:38 +00001009 fDevManager->setUpBackend(this, fMSAASampleCount);
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001010
Scroggob4490c72011-06-17 13:53:05 +00001011 // If another constructor set our dimensions, ensure that our
1012 // onSizeChange gets called.
1013 if (this->height() && this->width()) {
1014 this->onSizeChange();
1015 }
reed@google.com2072db82011-11-08 15:18:10 +00001016
1017 // can't call this synchronously, since it may require a subclass to
1018 // to implement, or the caller may need us to have returned from the
1019 // constructor first. Hence we post an event to ourselves.
1020// this->updateTitle();
1021 postEventToSink(new SkEvent(gUpdateWindowTitleEvtName), this);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001022}
1023
1024SampleWindow::~SampleWindow() {
1025 delete fPicture;
Scroggo8ac0d542011-06-21 14:44:57 +00001026 delete fPdfCanvas;
Scroggo0f185c22011-03-24 18:35:50 +00001027 fTypeface->unref();
reed@google.com29038ed2011-07-06 17:56:47 +00001028
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001029 SkSafeUnref(fDevManager);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001030}
1031
reed@google.com1830c7a2012-06-04 12:05:43 +00001032static void make_filepath(SkString* path, const char* dir, const SkString& name) {
1033 size_t len = strlen(dir);
1034 path->set(dir);
1035 if (len > 0 && dir[len - 1] != '/') {
1036 path->append("/");
1037 }
1038 path->append(name);
1039}
1040
chudy@google.com4605a3f2012-08-01 17:58:01 +00001041void SampleWindow::registerPictFileSample(char** argv, int argc) {
1042 const char* pict = NULL;
1043
1044 for (int i = 0; i < argc; ++i) {
1045 if (!strcmp(argv[i], "--picture")) {
1046 i += 1;
1047 if (i < argc) {
1048 pict = argv[i];
1049 break;
1050 }
1051 }
1052 }
1053 if (pict) {
1054 SkString path(pict);
reed@google.com7d05ac92013-06-06 13:14:13 +00001055 fCurrIndex = fSamples.count();
chudy@google.com4605a3f2012-08-01 17:58:01 +00001056 *fSamples.append() = new PictFileFactory(path);
1057 }
1058}
1059
reed@google.com1830c7a2012-06-04 12:05:43 +00001060void SampleWindow::registerPictFileSamples(char** argv, int argc) {
1061 const char* pictDir = NULL;
1062
1063 for (int i = 0; i < argc; ++i) {
1064 if (!strcmp(argv[i], "--pictureDir")) {
1065 i += 1;
1066 if (i < argc) {
1067 pictDir = argv[i];
1068 break;
1069 }
1070 }
1071 }
1072 if (pictDir) {
1073 SkOSFile::Iter iter(pictDir, "skp");
1074 SkString filename;
1075 while (iter.next(&filename)) {
1076 SkString path;
1077 make_filepath(&path, pictDir, filename);
1078 *fSamples.append() = new PictFileFactory(path);
1079 }
1080 }
1081}
1082
edisonn@google.comf8b6b012013-07-11 14:28:04 +00001083#ifdef SAMPLE_PDF_FILE_VIEWER
1084void SampleWindow::registerPdfFileViewerSamples(char** argv, int argc) {
1085 const char* pdfDir = NULL;
1086
1087 for (int i = 0; i < argc; ++i) {
1088 if (!strcmp(argv[i], "--pdfDir")) {
1089 i += 1;
1090 if (i < argc) {
1091 pdfDir = argv[i];
1092 break;
1093 }
1094 }
1095 }
1096 if (pdfDir) {
1097 SkOSFile::Iter iter(pdfDir, "pdf");
1098 SkString filename;
1099 while (iter.next(&filename)) {
1100 SkString path;
1101 make_filepath(&path, pdfDir, filename);
1102 *fSamples.append() = new PdfFileViewerFactory(path);
1103 }
1104 }
1105}
1106#endif // SAMPLE_PDF_FILE_VIEWER
1107
1108
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00001109int SampleWindow::findByTitle(const char title[]) {
1110 int i, count = fSamples.count();
1111 for (i = 0; i < count; i++) {
1112 if (getSampleTitle(i).equals(title)) {
1113 return i;
1114 }
1115 }
mike@reedtribe.orgdd52caa2011-12-28 20:02:10 +00001116 return -1;
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00001117}
1118
robertphillips@google.com7265e722012-05-03 18:22:28 +00001119void SampleWindow::listTitles() {
1120 int count = fSamples.count();
1121 SkDebugf("All Slides:\n");
1122 for (int i = 0; i < count; i++) {
1123 SkDebugf(" %s\n", getSampleTitle(i).c_str());
1124 }
1125}
1126
reed@android.com55e76b22009-11-23 21:46:47 +00001127static SkBitmap capture_bitmap(SkCanvas* canvas) {
1128 SkBitmap bm;
1129 const SkBitmap& src = canvas->getDevice()->accessBitmap(false);
1130 src.copyTo(&bm, src.config());
1131 return bm;
1132}
1133
1134static bool bitmap_diff(SkCanvas* canvas, const SkBitmap& orig,
1135 SkBitmap* diff) {
1136 const SkBitmap& src = canvas->getDevice()->accessBitmap(false);
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001137
reed@android.com55e76b22009-11-23 21:46:47 +00001138 SkAutoLockPixels alp0(src);
1139 SkAutoLockPixels alp1(orig);
1140 for (int y = 0; y < src.height(); y++) {
1141 const void* srcP = src.getAddr(0, y);
1142 const void* origP = orig.getAddr(0, y);
1143 size_t bytes = src.width() * src.bytesPerPixel();
1144 if (memcmp(srcP, origP, bytes)) {
1145 SkDebugf("---------- difference on line %d\n", y);
1146 return true;
1147 }
1148 }
1149 return false;
1150}
1151
Scroggo0f185c22011-03-24 18:35:50 +00001152static void drawText(SkCanvas* canvas, SkString string, SkScalar left, SkScalar top, SkPaint& paint)
1153{
1154 SkColor desiredColor = paint.getColor();
1155 paint.setColor(SK_ColorWHITE);
1156 const char* c_str = string.c_str();
1157 size_t size = string.size();
1158 SkRect bounds;
1159 paint.measureText(c_str, size, &bounds);
1160 bounds.offset(left, top);
1161 SkScalar inset = SkIntToScalar(-2);
1162 bounds.inset(inset, inset);
1163 canvas->drawRect(bounds, paint);
1164 if (desiredColor != SK_ColorBLACK) {
1165 paint.setColor(SK_ColorBLACK);
1166 canvas->drawText(c_str, size, left + SK_Scalar1, top + SK_Scalar1, paint);
1167 }
1168 paint.setColor(desiredColor);
1169 canvas->drawText(c_str, size, left, top, paint);
1170}
1171
reed@android.com44177402009-11-23 21:07:51 +00001172#define XCLIP_N 8
1173#define YCLIP_N 8
reed@android.come522ca52009-11-23 20:10:41 +00001174
1175void SampleWindow::draw(SkCanvas* canvas) {
reed@android.com44177402009-11-23 21:07:51 +00001176 // update the animation time
bsalomon@google.come8f09102011-09-08 18:48:12 +00001177 if (!gAnimTimePrev && !gAnimTime) {
1178 // first time make delta be 0
1179 gAnimTime = SkTime::GetMSecs();
1180 gAnimTimePrev = gAnimTime;
1181 } else {
1182 gAnimTimePrev = gAnimTime;
1183 gAnimTime = SkTime::GetMSecs();
1184 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001185
reed@google.comf03bb562011-11-11 21:42:12 +00001186 if (fGesture.isActive()) {
1187 this->updateMatrix();
reed@google.com52f57e12011-03-16 12:10:02 +00001188 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001189
djsollen@google.com796763e2012-12-10 14:12:55 +00001190 if (fMeasureFPS) {
1191 fMeasureFPS_Time = 0;
1192 }
1193
reed@android.come522ca52009-11-23 20:10:41 +00001194 if (fNClip) {
reed@android.com55e76b22009-11-23 21:46:47 +00001195 this->INHERITED::draw(canvas);
1196 SkBitmap orig = capture_bitmap(canvas);
reed@android.come522ca52009-11-23 20:10:41 +00001197
1198 const SkScalar w = this->width();
1199 const SkScalar h = this->height();
1200 const SkScalar cw = w / XCLIP_N;
1201 const SkScalar ch = h / YCLIP_N;
1202 for (int y = 0; y < YCLIP_N; y++) {
reed@android.com55e76b22009-11-23 21:46:47 +00001203 SkRect r;
1204 r.fTop = y * ch;
1205 r.fBottom = (y + 1) * ch;
1206 if (y == YCLIP_N - 1) {
1207 r.fBottom = h;
1208 }
reed@android.come522ca52009-11-23 20:10:41 +00001209 for (int x = 0; x < XCLIP_N; x++) {
1210 SkAutoCanvasRestore acr(canvas, true);
reed@android.com55e76b22009-11-23 21:46:47 +00001211 r.fLeft = x * cw;
1212 r.fRight = (x + 1) * cw;
1213 if (x == XCLIP_N - 1) {
1214 r.fRight = w;
1215 }
reed@android.come522ca52009-11-23 20:10:41 +00001216 canvas->clipRect(r);
1217 this->INHERITED::draw(canvas);
1218 }
1219 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001220
reed@android.com55e76b22009-11-23 21:46:47 +00001221 SkBitmap diff;
1222 if (bitmap_diff(canvas, orig, &diff)) {
1223 }
reed@android.come522ca52009-11-23 20:10:41 +00001224 } else {
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +00001225 SkSize tile;
1226 SkASSERT((TilingMode)fTilingMode < kLast_TilingMode_Enum);
1227 struct TilingInfo* info = gTilingInfo + fTilingMode;
1228 tile.set(info->w > SK_Scalar1 ? info->w : width() * info->w,
1229 info->h > SK_Scalar1 ? info->h : height() * info->h);
rmistry@google.comae933ce2012-08-23 18:19:56 +00001230
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +00001231 for (SkScalar y = 0; y < height(); y += tile.height()) {
1232 for (SkScalar x = 0; x < width(); x += tile.width()) {
scroggo@google.com85cade02012-08-17 13:29:50 +00001233 SkAutoCanvasRestore acr(canvas, true);
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +00001234 canvas->clipRect(SkRect::MakeXYWH(x, y,
1235 tile.width(),
1236 tile.height()));
scroggo@google.com85cade02012-08-17 13:29:50 +00001237 this->INHERITED::draw(canvas);
1238 }
1239 }
rmistry@google.comae933ce2012-08-23 18:19:56 +00001240
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +00001241 if (fTilingMode != kNo_Tiling) {
scroggo@google.com85cade02012-08-17 13:29:50 +00001242 SkPaint paint;
1243 paint.setColor(0x60FF00FF);
1244 paint.setStyle(SkPaint::kStroke_Style);
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +00001245
1246 for (SkScalar y = 0; y < height(); y += tile.height()) {
1247 for (SkScalar x = 0; x < width(); x += tile.width()) {
1248 canvas->drawRect(SkRect::MakeXYWH(x, y,
1249 tile.width(),
1250 tile.height()),
1251 paint);
scroggo@google.com85cade02012-08-17 13:29:50 +00001252 }
1253 }
1254 }
reed@android.come522ca52009-11-23 20:10:41 +00001255 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001256 if (fShowZoomer && !fSaveToPdf) {
Scroggo3272ba82011-05-25 20:50:42 +00001257 showZoomer(canvas);
1258 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001259 if (fMagnify && !fSaveToPdf) {
1260 magnify(canvas);
1261 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001262
djsollen@google.com796763e2012-12-10 14:12:55 +00001263 if (fMeasureFPS && fMeasureFPS_Time) {
1264 this->updateTitle();
1265 this->postInvalDelay();
1266 }
1267
reed@google.com29038ed2011-07-06 17:56:47 +00001268 // do this last
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001269 fDevManager->publishCanvas(fDeviceType, canvas, this);
Scroggo3272ba82011-05-25 20:50:42 +00001270}
1271
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001272static float clipW = 200;
1273static float clipH = 200;
1274void SampleWindow::magnify(SkCanvas* canvas) {
1275 SkRect r;
1276 int count = canvas->save();
chudy@google.com4605a3f2012-08-01 17:58:01 +00001277
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001278 SkMatrix m = canvas->getTotalMatrix();
robertphillips@google.com07ef9112012-06-04 13:22:14 +00001279 if (!m.invert(&m)) {
1280 return;
1281 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001282 SkPoint offset, center;
bsalomon@google.com820e80a2011-10-24 21:09:40 +00001283 SkScalar mouseX = fMouseX * SK_Scalar1;
1284 SkScalar mouseY = fMouseY * SK_Scalar1;
1285 m.mapXY(mouseX - clipW/2, mouseY - clipH/2, &offset);
1286 m.mapXY(mouseX, mouseY, &center);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001287
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001288 r.set(0, 0, clipW * m.getScaleX(), clipH * m.getScaleX());
1289 r.offset(offset.fX, offset.fY);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001290
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001291 SkPaint paint;
1292 paint.setColor(0xFF66AAEE);
1293 paint.setStyle(SkPaint::kStroke_Style);
bsalomon@google.com820e80a2011-10-24 21:09:40 +00001294 paint.setStrokeWidth(10.f * m.getScaleX());
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001295 //lense offset
1296 //canvas->translate(0, -250);
1297 canvas->drawRect(r, paint);
1298 canvas->clipRect(r);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001299
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001300 m = canvas->getTotalMatrix();
1301 m.setTranslate(-center.fX, -center.fY);
bsalomon@google.com820e80a2011-10-24 21:09:40 +00001302 m.postScale(0.5f * fFatBitsScale, 0.5f * fFatBitsScale);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001303 m.postTranslate(center.fX, center.fY);
1304 canvas->concat(m);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001305
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001306 this->INHERITED::draw(canvas);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001307
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001308 canvas->restoreToCount(count);
1309}
1310
Scroggo3272ba82011-05-25 20:50:42 +00001311void SampleWindow::showZoomer(SkCanvas* canvas) {
Scroggo0f185c22011-03-24 18:35:50 +00001312 int count = canvas->save();
1313 canvas->resetMatrix();
1314 // Ensure the mouse position is on screen.
reed@google.com261b8e22011-04-14 17:53:24 +00001315 int width = SkScalarRound(this->width());
1316 int height = SkScalarRound(this->height());
Scroggo0f185c22011-03-24 18:35:50 +00001317 if (fMouseX >= width) fMouseX = width - 1;
1318 else if (fMouseX < 0) fMouseX = 0;
1319 if (fMouseY >= height) fMouseY = height - 1;
1320 else if (fMouseY < 0) fMouseY = 0;
reed@google.comb36334d2011-05-18 15:07:20 +00001321
Scroggo0f185c22011-03-24 18:35:50 +00001322 SkBitmap bitmap = capture_bitmap(canvas);
reed@google.comb36334d2011-05-18 15:07:20 +00001323 bitmap.lockPixels();
1324
Scroggo0f185c22011-03-24 18:35:50 +00001325 // Find the size of the zoomed in view, forced to be odd, so the examined pixel is in the middle.
mike@reedtribe.org3ce59dc2011-04-08 00:38:05 +00001326 int zoomedWidth = (width >> 1) | 1;
1327 int zoomedHeight = (height >> 1) | 1;
Scroggo0f185c22011-03-24 18:35:50 +00001328 SkIRect src;
1329 src.set(0, 0, zoomedWidth / fFatBitsScale, zoomedHeight / fFatBitsScale);
1330 src.offset(fMouseX - (src.width()>>1), fMouseY - (src.height()>>1));
1331 SkRect dest;
1332 dest.set(0, 0, SkIntToScalar(zoomedWidth), SkIntToScalar(zoomedHeight));
1333 dest.offset(SkIntToScalar(width - zoomedWidth), SkIntToScalar(height - zoomedHeight));
1334 SkPaint paint;
1335 // Clear the background behind our zoomed in view
1336 paint.setColor(SK_ColorWHITE);
1337 canvas->drawRect(dest, paint);
1338 canvas->drawBitmapRect(bitmap, &src, dest);
1339 paint.setColor(SK_ColorBLACK);
1340 paint.setStyle(SkPaint::kStroke_Style);
1341 // Draw a border around the pixel in the middle
1342 SkRect originalPixel;
1343 originalPixel.set(SkIntToScalar(fMouseX), SkIntToScalar(fMouseY), SkIntToScalar(fMouseX + 1), SkIntToScalar(fMouseY + 1));
1344 SkMatrix matrix;
1345 SkRect scalarSrc;
1346 scalarSrc.set(src);
1347 SkColor color = bitmap.getColor(fMouseX, fMouseY);
1348 if (matrix.setRectToRect(scalarSrc, dest, SkMatrix::kFill_ScaleToFit)) {
1349 SkRect pixel;
1350 matrix.mapRect(&pixel, originalPixel);
1351 // TODO Perhaps measure the values and make the outline white if it's "dark"
1352 if (color == SK_ColorBLACK) {
1353 paint.setColor(SK_ColorWHITE);
1354 }
1355 canvas->drawRect(pixel, paint);
1356 }
1357 paint.setColor(SK_ColorBLACK);
1358 // Draw a border around the destination rectangle
1359 canvas->drawRect(dest, paint);
1360 paint.setStyle(SkPaint::kStrokeAndFill_Style);
1361 // Identify the pixel and its color on screen
1362 paint.setTypeface(fTypeface);
1363 paint.setAntiAlias(true);
1364 SkScalar lineHeight = paint.getFontMetrics(NULL);
1365 SkString string;
1366 string.appendf("(%i, %i)", fMouseX, fMouseY);
1367 SkScalar left = dest.fLeft + SkIntToScalar(3);
1368 SkScalar i = SK_Scalar1;
1369 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1370 // Alpha
1371 i += SK_Scalar1;
1372 string.reset();
1373 string.appendf("A: %X", SkColorGetA(color));
1374 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1375 // Red
1376 i += SK_Scalar1;
1377 string.reset();
1378 string.appendf("R: %X", SkColorGetR(color));
1379 paint.setColor(SK_ColorRED);
1380 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1381 // Green
1382 i += SK_Scalar1;
1383 string.reset();
1384 string.appendf("G: %X", SkColorGetG(color));
1385 paint.setColor(SK_ColorGREEN);
1386 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1387 // Blue
1388 i += SK_Scalar1;
1389 string.reset();
1390 string.appendf("B: %X", SkColorGetB(color));
1391 paint.setColor(SK_ColorBLUE);
1392 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1393 canvas->restoreToCount(count);
reed@android.come522ca52009-11-23 20:10:41 +00001394}
1395
reed@android.com8a1c16f2008-12-17 15:59:43 +00001396void SampleWindow::onDraw(SkCanvas* canvas) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001397}
1398
1399#include "SkColorPriv.h"
1400
caryclark@google.com02939ce2012-06-06 12:09:51 +00001401#if 0 // UNUSED
reed@android.com8a1c16f2008-12-17 15:59:43 +00001402static void reverseRedAndBlue(const SkBitmap& bm) {
1403 SkASSERT(bm.config() == SkBitmap::kARGB_8888_Config);
1404 uint8_t* p = (uint8_t*)bm.getPixels();
1405 uint8_t* stop = p + bm.getSize();
1406 while (p < stop) {
1407 // swap red/blue (to go from ARGB(int) to RGBA(memory) and premultiply
1408 unsigned scale = SkAlpha255To256(p[3]);
1409 unsigned r = p[2];
1410 unsigned b = p[0];
1411 p[0] = SkAlphaMul(r, scale);
1412 p[1] = SkAlphaMul(p[1], scale);
1413 p[2] = SkAlphaMul(b, scale);
1414 p += 4;
1415 }
1416}
caryclark@google.com02939ce2012-06-06 12:09:51 +00001417#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +00001418
Scroggo8ac0d542011-06-21 14:44:57 +00001419void SampleWindow::saveToPdf()
1420{
1421 fSaveToPdf = true;
1422 this->inval(NULL);
1423}
1424
reed@android.com8a1c16f2008-12-17 15:59:43 +00001425SkCanvas* SampleWindow::beforeChildren(SkCanvas* canvas) {
Scroggo8ac0d542011-06-21 14:44:57 +00001426 if (fSaveToPdf) {
1427 const SkBitmap& bmp = canvas->getDevice()->accessBitmap(false);
1428 SkISize size = SkISize::Make(bmp.width(), bmp.height());
1429 SkPDFDevice* pdfDevice = new SkPDFDevice(size, size,
1430 canvas->getTotalMatrix());
1431 fPdfCanvas = new SkCanvas(pdfDevice);
1432 pdfDevice->unref();
1433 canvas = fPdfCanvas;
bsalomon@google.com82502e22013-01-24 20:47:18 +00001434 } else if (kPicture_DeviceType == fDeviceType) {
1435 fPicture = new SkPicture;
1436 canvas = fPicture->beginRecording(9999, 9999);
Scroggo8ac0d542011-06-21 14:44:57 +00001437 } else {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001438#if SK_SUPPORT_GPU
bsalomon@google.com82502e22013-01-24 20:47:18 +00001439 if (kNullGPU_DeviceType != fDeviceType)
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001440#endif
bsalomon@google.com82502e22013-01-24 20:47:18 +00001441 {
1442 canvas = this->INHERITED::beforeChildren(canvas);
reed@google.comac10a2d2010-12-22 21:39:39 +00001443 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001444 }
1445
1446 if (fUseClip) {
1447 canvas->drawColor(0xFFFF88FF);
reed@google.com045e62d2011-10-24 12:19:46 +00001448 canvas->clipPath(fClipPath, SkRegion::kIntersect_Op, true);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001449 }
1450
1451 return canvas;
1452}
1453
1454static void paint_rgn(const SkBitmap& bm, const SkIRect& r,
1455 const SkRegion& rgn) {
1456 SkCanvas canvas(bm);
1457 SkRegion inval(rgn);
1458
1459 inval.translate(r.fLeft, r.fTop);
1460 canvas.clipRegion(inval);
1461 canvas.drawColor(0xFFFF8080);
1462}
yangsu@google.com501775e2011-06-24 16:04:50 +00001463#include "SkData.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +00001464void SampleWindow::afterChildren(SkCanvas* orig) {
Scroggo8ac0d542011-06-21 14:44:57 +00001465 if (fSaveToPdf) {
1466 fSaveToPdf = false;
1467 if (fShowZoomer) {
1468 showZoomer(fPdfCanvas);
1469 }
1470 SkString name;
1471 name.printf("%s.pdf", this->getTitle());
1472 SkPDFDocument doc;
1473 SkPDFDevice* device = static_cast<SkPDFDevice*>(fPdfCanvas->getDevice());
1474 doc.appendPage(device);
djsollen@google.com56c69772011-11-08 19:00:26 +00001475#ifdef SK_BUILD_FOR_ANDROID
Scroggo8ac0d542011-06-21 14:44:57 +00001476 name.prepend("/sdcard/");
1477#endif
chudy@google.com4605a3f2012-08-01 17:58:01 +00001478
yangsu@google.com501775e2011-06-24 16:04:50 +00001479#ifdef SK_BUILD_FOR_IOS
1480 SkDynamicMemoryWStream mstream;
1481 doc.emitPDF(&mstream);
yangsu@google.comae8a2e52011-06-24 21:09:39 +00001482 fPDFData = mstream.copyToData();
yangsu@google.com501775e2011-06-24 16:04:50 +00001483#endif
Scroggo8ac0d542011-06-21 14:44:57 +00001484 SkFILEWStream stream(name.c_str());
1485 if (stream.isValid()) {
1486 doc.emitPDF(&stream);
1487 const char* desc = "File saved from Skia SampleApp";
1488 this->onPDFSaved(this->getTitle(), desc, name.c_str());
1489 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001490
Scroggo8ac0d542011-06-21 14:44:57 +00001491 delete fPdfCanvas;
1492 fPdfCanvas = NULL;
1493
1494 // We took over the draw calls in order to create the PDF, so we need
1495 // to redraw.
1496 this->inval(NULL);
1497 return;
1498 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001499
reed@android.comf2b98d62010-12-20 18:26:13 +00001500 if (fRequestGrabImage) {
1501 fRequestGrabImage = false;
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001502
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00001503 SkBaseDevice* device = orig->getDevice();
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001504 SkBitmap bmp;
1505 if (device->accessBitmap(false).copyTo(&bmp, SkBitmap::kARGB_8888_Config)) {
reed@android.comf2b98d62010-12-20 18:26:13 +00001506 static int gSampleGrabCounter;
1507 SkString name;
reed@google.com7c57e0e2012-09-08 21:20:33 +00001508 name.printf("sample_grab_%d.png", gSampleGrabCounter++);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001509 SkImageEncoder::EncodeFile(name.c_str(), bmp,
reed@android.comf2b98d62010-12-20 18:26:13 +00001510 SkImageEncoder::kPNG_Type, 100);
1511 }
1512 }
1513
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001514 if (kPicture_DeviceType == fDeviceType) {
1515 if (true) {
1516 SkPicture* pict = new SkPicture(*fPicture);
1517 fPicture->unref();
reed@google.come23f1942011-12-08 19:36:00 +00001518 this->installDrawFilter(orig);
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001519 orig->drawPicture(*pict);
1520 pict->unref();
1521 } else if (true) {
1522 SkDynamicMemoryWStream ostream;
1523 fPicture->serialize(&ostream);
1524 fPicture->unref();
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001525
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001526 SkAutoDataUnref data(ostream.copyToData());
robertphillips@google.com59f46b82012-07-10 17:30:58 +00001527 SkMemoryStream istream(data->data(), data->size());
scroggo@google.comf1754ec2013-06-28 21:32:00 +00001528 SkAutoTUnref<SkPicture> pict(SkPicture::CreateFromStream(&istream));
1529 if (pict.get() != NULL) {
1530 orig->drawPicture(*pict.get());
1531 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001532 } else {
1533 fPicture->draw(orig);
1534 fPicture->unref();
1535 }
1536 fPicture = NULL;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001537 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001538
reed@google.com17d7aec2011-04-25 14:31:44 +00001539 // Do this after presentGL and other finishing, rather than in afterChild
djsollen@google.com796763e2012-12-10 14:12:55 +00001540 if (fMeasureFPS && fMeasureFPS_StartTime) {
1541 fMeasureFPS_Time += SkTime::GetMSecs() - fMeasureFPS_StartTime;
reed@google.com17d7aec2011-04-25 14:31:44 +00001542 }
1543
1544 // if ((fScrollTestX | fScrollTestY) != 0)
reed@android.comf2b98d62010-12-20 18:26:13 +00001545 if (false) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001546 const SkBitmap& bm = orig->getDevice()->accessBitmap(true);
1547 int dx = fScrollTestX * 7;
1548 int dy = fScrollTestY * 7;
1549 SkIRect r;
1550 SkRegion inval;
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001551
reed@android.com8a1c16f2008-12-17 15:59:43 +00001552 r.set(50, 50, 50+100, 50+100);
1553 bm.scrollRect(&r, dx, dy, &inval);
1554 paint_rgn(bm, r, inval);
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001555 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001556}
1557
reed@android.com6c5f6f22009-08-14 16:08:38 +00001558void SampleWindow::beforeChild(SkView* child, SkCanvas* canvas) {
reed@android.com6c5f6f22009-08-14 16:08:38 +00001559 if (fRotate) {
bungeman@google.comb1785912013-07-09 21:58:56 +00001560 fRotateAnimTime += SampleCode::GetAnimSecondsDelta();
1561
reed@android.com6c5f6f22009-08-14 16:08:38 +00001562 SkScalar cx = this->width() / 2;
1563 SkScalar cy = this->height() / 2;
1564 canvas->translate(cx, cy);
bungeman@google.comb1785912013-07-09 21:58:56 +00001565 canvas->rotate(fRotateAnimTime * 10);
reed@android.com6c5f6f22009-08-14 16:08:38 +00001566 canvas->translate(-cx, -cy);
1567 }
bungeman@google.comb1785912013-07-09 21:58:56 +00001568
bsalomon@google.come8f09102011-09-08 18:48:12 +00001569 if (fPerspAnim) {
bsalomon@google.com6fb736f2011-09-16 18:51:57 +00001570 fPerspAnimTime += SampleCode::GetAnimSecondsDelta();
1571
1572 static const SkScalar gAnimPeriod = 10 * SK_Scalar1;
1573 static const SkScalar gAnimMag = SK_Scalar1 / 1000;
1574 SkScalar t = SkScalarMod(fPerspAnimTime, gAnimPeriod);
1575 if (SkScalarFloorToInt(SkScalarDiv(fPerspAnimTime, gAnimPeriod)) & 0x1) {
1576 t = gAnimPeriod - t;
1577 }
1578 t = 2 * t - gAnimPeriod;
1579 t = SkScalarMul(SkScalarDiv(t, gAnimPeriod), gAnimMag);
1580 SkMatrix m;
1581 m.reset();
1582 m.setPerspY(t);
bsalomon@google.come8f09102011-09-08 18:48:12 +00001583 canvas->concat(m);
1584 }
reed@google.comf0b5f682011-03-11 20:08:25 +00001585
reed@google.come23f1942011-12-08 19:36:00 +00001586 this->installDrawFilter(canvas);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001587
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001588 if (fMeasureFPS) {
reed@google.comf2183392011-04-22 14:10:48 +00001589 if (SampleView::SetRepeatDraw(child, FPS_REPEAT_COUNT)) {
djsollen@google.com796763e2012-12-10 14:12:55 +00001590 fMeasureFPS_StartTime = SkTime::GetMSecs();
reed@google.comf2183392011-04-22 14:10:48 +00001591 }
1592 } else {
1593 (void)SampleView::SetRepeatDraw(child, 1);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001594 }
bungeman@google.comb1785912013-07-09 21:58:56 +00001595 if (fPerspAnim || fRotate) {
bsalomon@google.come8f09102011-09-08 18:48:12 +00001596 this->inval(NULL);
1597 }
reed@android.com6c5f6f22009-08-14 16:08:38 +00001598}
1599
1600void SampleWindow::afterChild(SkView* child, SkCanvas* canvas) {
reed@google.comf0b5f682011-03-11 20:08:25 +00001601 canvas->setDrawFilter(NULL);
reed@android.com6c5f6f22009-08-14 16:08:38 +00001602}
1603
reed@android.com8a1c16f2008-12-17 15:59:43 +00001604static SkBitmap::Config gConfigCycle[] = {
1605 SkBitmap::kNo_Config, // none -> none
reed@android.com8a1c16f2008-12-17 15:59:43 +00001606 SkBitmap::kNo_Config, // a8 -> none
1607 SkBitmap::kNo_Config, // index8 -> none
1608 SkBitmap::kARGB_4444_Config, // 565 -> 4444
1609 SkBitmap::kARGB_8888_Config, // 4444 -> 8888
1610 SkBitmap::kRGB_565_Config // 8888 -> 565
1611};
1612
1613static SkBitmap::Config cycle_configs(SkBitmap::Config c) {
1614 return gConfigCycle[c];
1615}
1616
djsollen@google.come32b5832011-06-13 16:58:40 +00001617void SampleWindow::changeZoomLevel(float delta) {
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +00001618 fZoomLevel += delta;
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001619 if (fZoomLevel > 0) {
djsollen@google.come32b5832011-06-13 16:58:40 +00001620 fZoomLevel = SkMinScalar(fZoomLevel, MAX_ZOOM_LEVEL);
1621 fZoomScale = fZoomLevel + SK_Scalar1;
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001622 } else if (fZoomLevel < 0) {
djsollen@google.come32b5832011-06-13 16:58:40 +00001623 fZoomLevel = SkMaxScalar(fZoomLevel, MIN_ZOOM_LEVEL);
1624 fZoomScale = SK_Scalar1 / (SK_Scalar1 - fZoomLevel);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001625 } else {
1626 fZoomScale = SK_Scalar1;
1627 }
reed@google.comf03bb562011-11-11 21:42:12 +00001628 this->updateMatrix();
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001629}
1630
reed@google.comf03bb562011-11-11 21:42:12 +00001631void SampleWindow::updateMatrix(){
1632 SkMatrix m;
1633 m.reset();
1634 if (fZoomLevel) {
1635 SkPoint center;
1636 //m = this->getLocalMatrix();//.invert(&m);
1637 m.mapXY(fZoomCenterX, fZoomCenterY, &center);
1638 SkScalar cx = center.fX;
1639 SkScalar cy = center.fY;
chudy@google.com4605a3f2012-08-01 17:58:01 +00001640
reed@google.comf03bb562011-11-11 21:42:12 +00001641 m.setTranslate(-cx, -cy);
1642 m.postScale(fZoomScale, fZoomScale);
1643 m.postTranslate(cx, cy);
1644 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001645
reed@google.comf03bb562011-11-11 21:42:12 +00001646 if (fFlipAxis) {
1647 m.preTranslate(fZoomCenterX, fZoomCenterY);
1648 if (fFlipAxis & kFlipAxis_X) {
1649 m.preScale(-SK_Scalar1, SK_Scalar1);
1650 }
1651 if (fFlipAxis & kFlipAxis_Y) {
1652 m.preScale(SK_Scalar1, -SK_Scalar1);
1653 }
1654 m.preTranslate(-fZoomCenterX, -fZoomCenterY);
1655 //canvas->concat(m);
1656 }
1657 // Apply any gesture matrix
1658 m.preConcat(fGesture.localM());
1659 m.preConcat(fGesture.globalM());
chudy@google.com4605a3f2012-08-01 17:58:01 +00001660
reed@google.comf03bb562011-11-11 21:42:12 +00001661 this->setLocalMatrix(m);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001662
reed@google.comf03bb562011-11-11 21:42:12 +00001663 this->updateTitle();
1664 this->inval(NULL);
1665}
Scroggo2c8208f2011-06-15 16:49:08 +00001666bool SampleWindow::previousSample() {
Scroggo62b65b02011-06-21 16:01:26 +00001667 fCurrIndex = (fCurrIndex - 1 + fSamples.count()) % fSamples.count();
chudy@google.com4605a3f2012-08-01 17:58:01 +00001668 this->loadView(create_transition(curr_view(this), (*fSamples[fCurrIndex])(),
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001669 fTransitionPrev));
Scroggo2c8208f2011-06-15 16:49:08 +00001670 return true;
1671}
1672
reed@android.com8a1c16f2008-12-17 15:59:43 +00001673bool SampleWindow::nextSample() {
reed@android.com34245c72009-11-03 04:00:48 +00001674 fCurrIndex = (fCurrIndex + 1) % fSamples.count();
chudy@google.com4605a3f2012-08-01 17:58:01 +00001675 this->loadView(create_transition(curr_view(this), (*fSamples[fCurrIndex])(),
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001676 fTransitionNext));
reed@android.com34245c72009-11-03 04:00:48 +00001677 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001678}
1679
yangsu@google.com501775e2011-06-24 16:04:50 +00001680bool SampleWindow::goToSample(int i) {
1681 fCurrIndex = (i) % fSamples.count();
bsalomon@google.com48dd1a22011-10-31 14:18:20 +00001682 this->loadView(create_transition(curr_view(this),(*fSamples[fCurrIndex])(), 6));
yangsu@google.com501775e2011-06-24 16:04:50 +00001683 return true;
1684}
1685
1686SkString SampleWindow::getSampleTitle(int i) {
edisonn@google.comf8b6b012013-07-11 14:28:04 +00001687 return ::getSampleTitle(fSamples[i]);
yangsu@google.com501775e2011-06-24 16:04:50 +00001688}
1689
1690int SampleWindow::sampleCount() {
1691 return fSamples.count();
1692}
1693
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001694void SampleWindow::showOverview() {
chudy@google.com4605a3f2012-08-01 17:58:01 +00001695 this->loadView(create_transition(curr_view(this),
1696 create_overview(fSamples.count(), fSamples.begin()),
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001697 4));
1698}
1699
reed@google.come23f1942011-12-08 19:36:00 +00001700void SampleWindow::installDrawFilter(SkCanvas* canvas) {
reed@google.com15bc13d2013-12-10 16:53:13 +00001701 canvas->setDrawFilter(new FlagsDrawFilter(fLCDState, fAAState, fSubpixelState,
1702 fHintingState, fFilterLevelIndex))->unref();
reed@google.come23f1942011-12-08 19:36:00 +00001703}
1704
Scroggo2c8208f2011-06-15 16:49:08 +00001705void SampleWindow::postAnimatingEvent() {
1706 if (fAnimating) {
reed@google.com87fac4a2011-08-04 13:50:17 +00001707 (new SkEvent(ANIMATING_EVENTTYPE, this->getSinkID()))->postDelay(ANIMATING_DELAY);
Scroggo2c8208f2011-06-15 16:49:08 +00001708 }
1709}
reed@google.come23f1942011-12-08 19:36:00 +00001710
reed@android.com8a1c16f2008-12-17 15:59:43 +00001711bool SampleWindow::onEvent(const SkEvent& evt) {
reed@google.com2072db82011-11-08 15:18:10 +00001712 if (evt.isType(gUpdateWindowTitleEvtName)) {
1713 this->updateTitle();
1714 return true;
1715 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001716 if (evt.isType(ANIMATING_EVENTTYPE)) {
1717 if (fAnimating) {
1718 this->nextSample();
1719 this->postAnimatingEvent();
1720 }
1721 return true;
1722 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001723 if (evt.isType("replace-transition-view")) {
1724 this->loadView((SkView*)SkEventSink::FindSink(evt.getFast32()));
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001725 return true;
1726 }
reed@android.com34245c72009-11-03 04:00:48 +00001727 if (evt.isType("set-curr-index")) {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001728 this->goToSample(evt.getFast32());
reed@android.com34245c72009-11-03 04:00:48 +00001729 return true;
1730 }
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001731 if (isInvalEvent(evt)) {
1732 this->inval(NULL);
1733 return true;
1734 }
yangsu@google.com921091f2011-08-02 13:39:12 +00001735 int selected = -1;
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001736 if (SkOSMenu::FindListIndex(evt, "Device Type", &selected)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001737 this->setDeviceType((DeviceType)selected);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001738 return true;
yangsu@google.com921091f2011-08-02 13:39:12 +00001739 }
scroggo@google.comb073d922012-06-08 15:35:03 +00001740 if (SkOSMenu::FindTriState(evt, "Pipe", &fPipeState)) {
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001741#ifdef PIPE_NET
scroggo@google.comb073d922012-06-08 15:35:03 +00001742 if (!fPipeState != SkOSMenu::kOnState)
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001743 gServer.disconnectAll();
1744#endif
scroggo@google.comb073d922012-06-08 15:35:03 +00001745 (void)SampleView::SetUsePipe(curr_view(this), fPipeState);
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001746 this->updateTitle();
1747 this->inval(NULL);
yangsu@google.com921091f2011-08-02 13:39:12 +00001748 return true;
1749 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001750 if (SkOSMenu::FindSwitchState(evt, "Slide Show", NULL)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001751 this->toggleSlideshow();
1752 return true;
1753 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001754 if (SkOSMenu::FindTriState(evt, "AA", &fAAState) ||
1755 SkOSMenu::FindTriState(evt, "LCD", &fLCDState) ||
reed@google.com15bc13d2013-12-10 16:53:13 +00001756 SkOSMenu::FindListIndex(evt, "FilterLevel", &fFilterLevelIndex) ||
bungeman@google.com96aabc82013-06-03 21:26:34 +00001757 SkOSMenu::FindTriState(evt, "Subpixel", &fSubpixelState) ||
1758 SkOSMenu::FindListIndex(evt, "Hinting", &fHintingState) ||
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001759 SkOSMenu::FindSwitchState(evt, "Clip", &fUseClip) ||
1760 SkOSMenu::FindSwitchState(evt, "Zoomer", &fShowZoomer) ||
1761 SkOSMenu::FindSwitchState(evt, "Magnify", &fMagnify) ||
1762 SkOSMenu::FindListIndex(evt, "Transition-Next", &fTransitionNext) ||
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +00001763 SkOSMenu::FindListIndex(evt, "Transition-Prev", &fTransitionPrev) ||
1764 SkOSMenu::FindListIndex(evt, "Tiling", &fTilingMode)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001765 this->inval(NULL);
1766 this->updateTitle();
1767 return true;
1768 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001769 if (SkOSMenu::FindSwitchState(evt, "Flip X", NULL)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001770 fFlipAxis ^= kFlipAxis_X;
reed@google.comf03bb562011-11-11 21:42:12 +00001771 this->updateMatrix();
yangsu@google.com921091f2011-08-02 13:39:12 +00001772 return true;
1773 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001774 if (SkOSMenu::FindSwitchState(evt, "Flip Y", NULL)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001775 fFlipAxis ^= kFlipAxis_Y;
reed@google.comf03bb562011-11-11 21:42:12 +00001776 this->updateMatrix();
yangsu@google.com921091f2011-08-02 13:39:12 +00001777 return true;
1778 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001779 if (SkOSMenu::FindAction(evt,"Save to PDF")) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001780 this->saveToPdf();
1781 return true;
chudy@google.com4605a3f2012-08-01 17:58:01 +00001782 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001783 return this->INHERITED::onEvent(evt);
1784}
1785
reed@android.comf2b98d62010-12-20 18:26:13 +00001786bool SampleWindow::onQuery(SkEvent* query) {
1787 if (query->isType("get-slide-count")) {
1788 query->setFast32(fSamples.count());
1789 return true;
1790 }
1791 if (query->isType("get-slide-title")) {
bsalomon@google.com48dd1a22011-10-31 14:18:20 +00001792 SkView* view = (*fSamples[query->getFast32()])();
reed@android.comf2b98d62010-12-20 18:26:13 +00001793 SkEvent evt(gTitleEvtName);
1794 if (view->doQuery(&evt)) {
1795 query->setString("title", evt.findString(gTitleEvtName));
1796 }
1797 SkSafeUnref(view);
1798 return true;
1799 }
1800 if (query->isType("use-fast-text")) {
1801 SkEvent evt(gFastTextEvtName);
1802 return curr_view(this)->doQuery(&evt);
1803 }
reed@google.com29038ed2011-07-06 17:56:47 +00001804 if (query->isType("ignore-window-bitmap")) {
1805 query->setFast32(this->getGrContext() != NULL);
1806 return true;
1807 }
reed@android.comf2b98d62010-12-20 18:26:13 +00001808 return this->INHERITED::onQuery(query);
1809}
1810
caryclark@google.com02939ce2012-06-06 12:09:51 +00001811#if 0 // UNUSED
reed@android.com0ae6b242008-12-23 16:49:54 +00001812static void cleanup_for_filename(SkString* name) {
1813 char* str = name->writable_str();
reed@android.come191b162009-12-18 21:33:39 +00001814 for (size_t i = 0; i < name->size(); i++) {
reed@android.com0ae6b242008-12-23 16:49:54 +00001815 switch (str[i]) {
1816 case ':': str[i] = '-'; break;
1817 case '/': str[i] = '-'; break;
1818 case ' ': str[i] = '_'; break;
1819 default: break;
1820 }
1821 }
1822}
caryclark@google.com02939ce2012-06-06 12:09:51 +00001823#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +00001824
reed@google.coma4f81372012-11-15 15:56:38 +00001825//extern bool gIgnoreFastBlurRect;
1826
reed@android.com8a1c16f2008-12-17 15:59:43 +00001827bool SampleWindow::onHandleChar(SkUnichar uni) {
reed@android.comf2b98d62010-12-20 18:26:13 +00001828 {
1829 SkView* view = curr_view(this);
1830 if (view) {
1831 SkEvent evt(gCharEvtName);
1832 evt.setFast32(uni);
1833 if (view->doQuery(&evt)) {
1834 return true;
1835 }
1836 }
1837 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001838
reed@android.com8a1c16f2008-12-17 15:59:43 +00001839 int dx = 0xFF;
1840 int dy = 0xFF;
1841
1842 switch (uni) {
1843 case '5': dx = 0; dy = 0; break;
1844 case '8': dx = 0; dy = -1; break;
1845 case '6': dx = 1; dy = 0; break;
1846 case '2': dx = 0; dy = 1; break;
1847 case '4': dx = -1; dy = 0; break;
1848 case '7': dx = -1; dy = -1; break;
1849 case '9': dx = 1; dy = -1; break;
1850 case '3': dx = 1; dy = 1; break;
1851 case '1': dx = -1; dy = 1; break;
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001852
reed@android.com8a1c16f2008-12-17 15:59:43 +00001853 default:
1854 break;
1855 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001856
reed@android.com8a1c16f2008-12-17 15:59:43 +00001857 if (0xFF != dx && 0xFF != dy) {
1858 if ((dx | dy) == 0) {
1859 fScrollTestX = fScrollTestY = 0;
1860 } else {
1861 fScrollTestX += dx;
1862 fScrollTestY += dy;
1863 }
1864 this->inval(NULL);
1865 return true;
1866 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001867
reed@android.com0ae6b242008-12-23 16:49:54 +00001868 switch (uni) {
djsollen@google.com796763e2012-12-10 14:12:55 +00001869 case 'b':
1870 {
1871 postEventToSink(SkNEW_ARGS(SkEvent, ("PictFileView::toggleBBox")), curr_view(this));
1872 this->updateTitle();
1873 this->inval(NULL);
1874 break;
1875 }
reed@google.coma4f81372012-11-15 15:56:38 +00001876 case 'B':
1877// gIgnoreFastBlurRect = !gIgnoreFastBlurRect;
1878 this->inval(NULL);
1879 break;
1880
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001881 case 'f':
chudy@google.com4605a3f2012-08-01 17:58:01 +00001882 // only
djsollen@google.com6ff82552011-11-07 15:43:57 +00001883 toggleFPS();
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001884 break;
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001885 case 'g':
1886 fRequestGrabImage = true;
1887 this->inval(NULL);
1888 break;
reed@google.coma4f81372012-11-15 15:56:38 +00001889 case 'G':
1890 gShowGMBounds = !gShowGMBounds;
1891 postEventToSink(GMSampleView::NewShowSizeEvt(gShowGMBounds),
1892 curr_view(this));
1893 this->inval(NULL);
1894 break;
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001895 case 'i':
1896 this->zoomIn();
1897 break;
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001898 case 'o':
1899 this->zoomOut();
1900 break;
reed@android.com6c5f6f22009-08-14 16:08:38 +00001901 case 'r':
1902 fRotate = !fRotate;
bungeman@google.comb1785912013-07-09 21:58:56 +00001903 fRotateAnimTime = 0;
reed@android.com6c5f6f22009-08-14 16:08:38 +00001904 this->inval(NULL);
1905 this->updateTitle();
1906 return true;
bsalomon@google.come8f09102011-09-08 18:48:12 +00001907 case 'k':
1908 fPerspAnim = !fPerspAnim;
1909 this->inval(NULL);
1910 this->updateTitle();
1911 return true;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001912#if SK_SUPPORT_GPU
bsalomon@google.com74913722011-10-27 20:44:19 +00001913 case '\\':
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001914 this->setDeviceType(kNullGPU_DeviceType);
1915 this->inval(NULL);
1916 this->updateTitle();
bsalomon@google.com74913722011-10-27 20:44:19 +00001917 return true;
twiz@google.com05e70242012-01-27 19:12:00 +00001918 case 'p':
1919 {
1920 GrContext* grContext = this->getGrContext();
1921 if (grContext) {
1922 size_t cacheBytes = grContext->getGpuTextureCacheBytes();
1923 grContext->freeGpuResources();
1924 SkDebugf("Purged %d bytes from the GPU resource cache.\n",
1925 cacheBytes);
1926 }
1927 }
1928 return true;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001929#endif
reed@android.com0ae6b242008-12-23 16:49:54 +00001930 default:
1931 break;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001932 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001933
scroggo@google.com7dadc742012-04-18 14:07:57 +00001934 if (fAppMenu->handleKeyEquivalent(uni)|| fSlideMenu->handleKeyEquivalent(uni)) {
1935 this->onUpdateMenu(fAppMenu);
1936 this->onUpdateMenu(fSlideMenu);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001937 return true;
1938 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001939 return this->INHERITED::onHandleChar(uni);
1940}
1941
yangsu@google.com921091f2011-08-02 13:39:12 +00001942void SampleWindow::setDeviceType(DeviceType type) {
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001943 if (type == fDeviceType)
1944 return;
1945
1946 fDevManager->tearDownBackend(this);
1947
1948 fDeviceType = type;
1949
bsalomon@google.com11959252012-04-06 20:13:38 +00001950 fDevManager->setUpBackend(this, fMSAASampleCount);
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001951
yangsu@google.com921091f2011-08-02 13:39:12 +00001952 this->updateTitle();
1953 this->inval(NULL);
1954}
1955
Scroggo2c8208f2011-06-15 16:49:08 +00001956void SampleWindow::toggleSlideshow() {
1957 fAnimating = !fAnimating;
1958 this->postAnimatingEvent();
1959 this->updateTitle();
1960}
1961
1962void SampleWindow::toggleRendering() {
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001963 this->setDeviceType(cycle_devicetype(fDeviceType));
Scroggo2c8208f2011-06-15 16:49:08 +00001964 this->updateTitle();
1965 this->inval(NULL);
1966}
1967
djsollen@google.com6ff82552011-11-07 15:43:57 +00001968void SampleWindow::toggleFPS() {
1969 fMeasureFPS = !fMeasureFPS;
1970 this->updateTitle();
1971 this->inval(NULL);
1972}
1973
reed@android.com8a1c16f2008-12-17 15:59:43 +00001974#include "SkDumpCanvas.h"
1975
1976bool SampleWindow::onHandleKey(SkKey key) {
reed@android.comf2b98d62010-12-20 18:26:13 +00001977 {
1978 SkView* view = curr_view(this);
1979 if (view) {
1980 SkEvent evt(gKeyEvtName);
1981 evt.setFast32(key);
1982 if (view->doQuery(&evt)) {
1983 return true;
1984 }
1985 }
1986 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001987 switch (key) {
1988 case kRight_SkKey:
1989 if (this->nextSample()) {
1990 return true;
1991 }
1992 break;
1993 case kLeft_SkKey:
scroggo@google.come2dd9732012-08-15 20:03:06 +00001994 if (this->previousSample()) {
1995 return true;
1996 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001997 return true;
1998 case kUp_SkKey:
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001999 if (USE_ARROWS_FOR_ZOOM) {
bungeman@google.comcefd9812013-05-15 15:07:32 +00002000 this->changeZoomLevel(1.f / 32.f);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002001 } else {
2002 fNClip = !fNClip;
2003 this->inval(NULL);
djsollen@google.come32b5832011-06-13 16:58:40 +00002004 this->updateTitle();
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002005 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00002006 return true;
2007 case kDown_SkKey:
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002008 if (USE_ARROWS_FOR_ZOOM) {
bungeman@google.comcefd9812013-05-15 15:07:32 +00002009 this->changeZoomLevel(-1.f / 32.f);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002010 } else {
2011 this->setConfig(cycle_configs(this->getBitmap().config()));
djsollen@google.come32b5832011-06-13 16:58:40 +00002012 this->updateTitle();
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002013 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00002014 return true;
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00002015 case kOK_SkKey: {
2016 SkString title;
2017 if (curr_title(this, &title)) {
2018 writeTitleToPrefs(title.c_str());
reed@android.com8a1c16f2008-12-17 15:59:43 +00002019 }
2020 return true;
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00002021 }
reed@android.com34245c72009-11-03 04:00:48 +00002022 case kBack_SkKey:
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002023 this->showOverview();
reed@android.com34245c72009-11-03 04:00:48 +00002024 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +00002025 default:
2026 break;
2027 }
2028 return this->INHERITED::onHandleKey(key);
2029}
2030
reed@google.com52f57e12011-03-16 12:10:02 +00002031///////////////////////////////////////////////////////////////////////////////
2032
2033static const char gGestureClickType[] = "GestureClickType";
2034
Scroggod3aed392011-06-22 13:26:56 +00002035bool SampleWindow::onDispatchClick(int x, int y, Click::State state,
reed@google.com4d5c26d2013-01-08 16:17:50 +00002036 void* owner, unsigned modi) {
Scroggo0f185c22011-03-24 18:35:50 +00002037 if (Click::kMoved_State == state) {
2038 updatePointer(x, y);
2039 }
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002040 int w = SkScalarRound(this->width());
2041 int h = SkScalarRound(this->height());
2042
2043 // check for the resize-box
2044 if (w - x < 16 && h - y < 16) {
2045 return false; // let the OS handle the click
chudy@google.com4605a3f2012-08-01 17:58:01 +00002046 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002047 else if (fMagnify) {
2048 //it's only necessary to update the drawing if there's a click
2049 this->inval(NULL);
2050 return false; //prevent dragging while magnify is enabled
reed@google.com4d5c26d2013-01-08 16:17:50 +00002051 } else {
2052 // capture control+option, and trigger debugger
2053 if ((modi & kControl_SkModifierKey) && (modi & kOption_SkModifierKey)) {
2054 if (Click::kDown_State == state) {
2055 SkEvent evt("debug-hit-test");
2056 evt.setS32("debug-hit-test-x", x);
2057 evt.setS32("debug-hit-test-y", y);
2058 curr_view(this)->doEvent(evt);
2059 }
2060 return true;
2061 } else {
2062 return this->INHERITED::onDispatchClick(x, y, state, owner, modi);
2063 }
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002064 }
2065}
2066
reed@google.com52f57e12011-03-16 12:10:02 +00002067class GestureClick : public SkView::Click {
2068public:
2069 GestureClick(SkView* target) : SkView::Click(target) {
2070 this->setType(gGestureClickType);
2071 }
2072
2073 static bool IsGesture(Click* click) {
2074 return click->isType(gGestureClickType);
2075 }
2076};
2077
reed@google.com4d5c26d2013-01-08 16:17:50 +00002078SkView::Click* SampleWindow::onFindClickHandler(SkScalar x, SkScalar y,
2079 unsigned modi) {
reed@google.com52f57e12011-03-16 12:10:02 +00002080 return new GestureClick(this);
2081}
2082
2083bool SampleWindow::onClick(Click* click) {
2084 if (GestureClick::IsGesture(click)) {
bsalomon@google.com4d4f2812011-12-12 18:34:01 +00002085 float x = static_cast<float>(click->fICurr.fX);
2086 float y = static_cast<float>(click->fICurr.fY);
chudy@google.com4605a3f2012-08-01 17:58:01 +00002087
reed@google.com52f57e12011-03-16 12:10:02 +00002088 switch (click->fState) {
2089 case SkView::Click::kDown_State:
Scroggod3aed392011-06-22 13:26:56 +00002090 fGesture.touchBegin(click->fOwner, x, y);
reed@google.com52f57e12011-03-16 12:10:02 +00002091 break;
2092 case SkView::Click::kMoved_State:
Scroggod3aed392011-06-22 13:26:56 +00002093 fGesture.touchMoved(click->fOwner, x, y);
reed@google.comf03bb562011-11-11 21:42:12 +00002094 this->updateMatrix();
reed@google.com52f57e12011-03-16 12:10:02 +00002095 break;
2096 case SkView::Click::kUp_State:
Scroggod3aed392011-06-22 13:26:56 +00002097 fGesture.touchEnd(click->fOwner);
reed@google.comf03bb562011-11-11 21:42:12 +00002098 this->updateMatrix();
reed@google.com52f57e12011-03-16 12:10:02 +00002099 break;
2100 }
2101 return true;
2102 }
2103 return false;
2104}
2105
2106///////////////////////////////////////////////////////////////////////////////
2107
reed@android.com8a1c16f2008-12-17 15:59:43 +00002108void SampleWindow::loadView(SkView* view) {
2109 SkView::F2BIter iter(this);
2110 SkView* prev = iter.next();
2111 if (prev) {
2112 prev->detachFromParent();
2113 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00002114
reed@android.com8a1c16f2008-12-17 15:59:43 +00002115 view->setVisibleP(true);
reed@android.comf2b98d62010-12-20 18:26:13 +00002116 view->setClipToBounds(false);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002117 this->attachChildToFront(view)->unref();
2118 view->setSize(this->width(), this->height());
2119
yangsu@google.com921091f2011-08-02 13:39:12 +00002120 //repopulate the slide menu when a view is loaded
scroggo@google.com7dadc742012-04-18 14:07:57 +00002121 fSlideMenu->reset();
djsollen@google.com388974f2013-01-17 13:20:01 +00002122
scroggo@google.comb073d922012-06-08 15:35:03 +00002123 (void)SampleView::SetUsePipe(view, fPipeState);
yangsu@google.com921091f2011-08-02 13:39:12 +00002124 if (SampleView::IsSampleView(view))
scroggo@google.com7dadc742012-04-18 14:07:57 +00002125 ((SampleView*)view)->requestMenu(fSlideMenu);
2126 this->onUpdateMenu(fSlideMenu);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002127 this->updateTitle();
2128}
2129
2130static const char* gConfigNames[] = {
2131 "unknown config",
reed@android.com8a1c16f2008-12-17 15:59:43 +00002132 "A8",
2133 "Index8",
2134 "565",
2135 "4444",
2136 "8888"
2137};
2138
2139static const char* configToString(SkBitmap::Config c) {
2140 return gConfigNames[c];
2141}
2142
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002143static const char* gDeviceTypePrefix[] = {
reed@android.com8a1c16f2008-12-17 15:59:43 +00002144 "raster: ",
2145 "picture: ",
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002146#if SK_SUPPORT_GPU
bsalomon@google.com74913722011-10-27 20:44:19 +00002147 "opengl: ",
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00002148#if SK_ANGLE
2149 "angle: ",
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002150#endif // SK_ANGLE
bsalomon@google.com74913722011-10-27 20:44:19 +00002151 "null-gl: "
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002152#endif // SK_SUPPORT_GPU
reed@android.com8a1c16f2008-12-17 15:59:43 +00002153};
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002154SK_COMPILE_ASSERT(SK_ARRAY_COUNT(gDeviceTypePrefix) == SampleWindow::kDeviceTypeCnt,
2155 array_size_mismatch);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002156
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002157static const char* trystate_str(SkOSMenu::TriState state,
reed@google.com569e0432011-04-05 13:07:03 +00002158 const char trueStr[], const char falseStr[]) {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002159 if (SkOSMenu::kOnState == state) {
reed@google.com569e0432011-04-05 13:07:03 +00002160 return trueStr;
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002161 } else if (SkOSMenu::kOffState == state) {
reed@google.com569e0432011-04-05 13:07:03 +00002162 return falseStr;
2163 }
2164 return NULL;
2165}
2166
reed@android.com8a1c16f2008-12-17 15:59:43 +00002167void SampleWindow::updateTitle() {
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00002168 SkView* view = curr_view(this);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002169
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00002170 SkString title;
2171 if (!curr_title(this, &title)) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00002172 title.set("<unknown>");
2173 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002174
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002175 title.prepend(gDeviceTypePrefix[fDeviceType]);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002176
2177 title.prepend(" ");
2178 title.prepend(configToString(this->getBitmap().config()));
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002179
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +00002180 if (fTilingMode != kNo_Tiling) {
2181 title.prependf("<T: %s> ", gTilingInfo[fTilingMode].label);
2182 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00002183 if (fAnimating) {
2184 title.prepend("<A> ");
2185 }
reed@android.com6c5f6f22009-08-14 16:08:38 +00002186 if (fRotate) {
2187 title.prepend("<R> ");
2188 }
reed@android.come522ca52009-11-23 20:10:41 +00002189 if (fNClip) {
2190 title.prepend("<C> ");
2191 }
bsalomon@google.come8f09102011-09-08 18:48:12 +00002192 if (fPerspAnim) {
2193 title.prepend("<K> ");
2194 }
reed@google.com569e0432011-04-05 13:07:03 +00002195
2196 title.prepend(trystate_str(fLCDState, "LCD ", "lcd "));
2197 title.prepend(trystate_str(fAAState, "AA ", "aa "));
reed@google.com15bc13d2013-12-10 16:53:13 +00002198 title.prepend(gFilterLevelStates[fFilterLevelIndex].fLabel);
bungeman@google.com96aabc82013-06-03 21:26:34 +00002199 title.prepend(trystate_str(fSubpixelState, "S ", "s "));
reed@google.com569e0432011-04-05 13:07:03 +00002200 title.prepend(fFlipAxis & kFlipAxis_X ? "X " : NULL);
2201 title.prepend(fFlipAxis & kFlipAxis_Y ? "Y " : NULL);
bungeman@google.com96aabc82013-06-03 21:26:34 +00002202 title.prepend(gHintingStates[fHintingState].label);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002203
2204 if (fZoomLevel) {
djsollen@google.come32b5832011-06-13 16:58:40 +00002205 title.prependf("{%.2f} ", SkScalarToFloat(fZoomLevel));
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002206 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00002207
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002208 if (fMeasureFPS) {
reed@google.com43e10142012-09-10 11:52:52 +00002209 title.appendf(" %8.3f ms", fMeasureFPS_Time / (float)FPS_REPEAT_COUNT);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002210 }
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002211 if (SampleView::IsSampleView(view)) {
scroggo@google.comb073d922012-06-08 15:35:03 +00002212 switch (fPipeState) {
2213 case SkOSMenu::kOnState:
2214 title.prepend("<Pipe> ");
2215 break;
2216 case SkOSMenu::kMixedState:
2217 title.prepend("<Tiled Pipe> ");
2218 break;
chudy@google.com4605a3f2012-08-01 17:58:01 +00002219
scroggo@google.comb073d922012-06-08 15:35:03 +00002220 default:
2221 break;
2222 }
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002223 title.prepend("! ");
2224 }
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002225
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002226#if SK_SUPPORT_GPU
bsalomon@google.com82502e22013-01-24 20:47:18 +00002227 if (IsGpuDeviceType(fDeviceType) &&
robertphillips@google.com4750fa52012-04-10 13:34:11 +00002228 NULL != fDevManager &&
bsalomon@google.com82502e22013-01-24 20:47:18 +00002229 fDevManager->getGrRenderTarget() &&
bsalomon@google.com11959252012-04-06 20:13:38 +00002230 fDevManager->getGrRenderTarget()->numSamples() > 0) {
2231 title.appendf(" [MSAA: %d]",
2232 fDevManager->getGrRenderTarget()->numSamples());
2233 }
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002234#endif
bsalomon@google.com11959252012-04-06 20:13:38 +00002235
reed@android.com8a1c16f2008-12-17 15:59:43 +00002236 this->setTitle(title.c_str());
2237}
2238
2239void SampleWindow::onSizeChange() {
2240 this->INHERITED::onSizeChange();
chudy@google.com4605a3f2012-08-01 17:58:01 +00002241
reed@android.com8a1c16f2008-12-17 15:59:43 +00002242 SkView::F2BIter iter(this);
2243 SkView* view = iter.next();
2244 view->setSize(this->width(), this->height());
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002245
reed@android.com8a1c16f2008-12-17 15:59:43 +00002246 // rebuild our clippath
2247 {
2248 const SkScalar W = this->width();
2249 const SkScalar H = this->height();
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002250
reed@android.com8a1c16f2008-12-17 15:59:43 +00002251 fClipPath.reset();
2252#if 0
2253 for (SkScalar y = SK_Scalar1; y < H; y += SkIntToScalar(32)) {
2254 SkRect r;
2255 r.set(SK_Scalar1, y, SkIntToScalar(30), y + SkIntToScalar(30));
2256 for (; r.fLeft < W; r.offset(SkIntToScalar(32), 0))
2257 fClipPath.addRect(r);
2258 }
2259#else
2260 SkRect r;
2261 r.set(0, 0, W, H);
2262 fClipPath.addRect(r, SkPath::kCCW_Direction);
2263 r.set(W/4, H/4, W*3/4, H*3/4);
2264 fClipPath.addRect(r, SkPath::kCW_Direction);
2265#endif
2266 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002267
Scroggo2c8208f2011-06-15 16:49:08 +00002268 fZoomCenterX = SkScalarHalf(this->width());
2269 fZoomCenterY = SkScalarHalf(this->height());
2270
djsollen@google.com56c69772011-11-08 19:00:26 +00002271#ifdef SK_BUILD_FOR_ANDROID
Scroggob4490c72011-06-17 13:53:05 +00002272 // FIXME: The first draw after a size change does not work on Android, so
2273 // we post an invalidate.
Scroggo62b65b02011-06-21 16:01:26 +00002274 this->postInvalDelay();
Scroggo716a0382011-06-16 14:00:15 +00002275#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +00002276 this->updateTitle(); // to refresh our config
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002277 fDevManager->windowSizeChanged(this);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002278}
2279
2280///////////////////////////////////////////////////////////////////////////////
2281
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002282static const char is_sample_view_tag[] = "sample-is-sample-view";
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002283static const char repeat_count_tag[] = "sample-set-repeat-count";
reed@google.com0faac1e2011-05-11 05:58:58 +00002284static const char set_use_pipe_tag[] = "sample-set-use-pipe";
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002285
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002286bool SampleView::IsSampleView(SkView* view) {
2287 SkEvent evt(is_sample_view_tag);
2288 return view->doQuery(&evt);
2289}
2290
reed@google.comf2183392011-04-22 14:10:48 +00002291bool SampleView::SetRepeatDraw(SkView* view, int count) {
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002292 SkEvent evt(repeat_count_tag);
2293 evt.setFast32(count);
reed@google.comf2183392011-04-22 14:10:48 +00002294 return view->doEvent(evt);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002295}
2296
scroggo@google.comb073d922012-06-08 15:35:03 +00002297bool SampleView::SetUsePipe(SkView* view, SkOSMenu::TriState state) {
2298 SkEvent evt;
2299 evt.setS32(set_use_pipe_tag, state);
reed@google.com0faac1e2011-05-11 05:58:58 +00002300 return view->doEvent(evt);
2301}
2302
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002303bool SampleView::onEvent(const SkEvent& evt) {
2304 if (evt.isType(repeat_count_tag)) {
2305 fRepeatCount = evt.getFast32();
2306 return true;
2307 }
reed@google.com4d5c26d2013-01-08 16:17:50 +00002308
scroggo@google.comb073d922012-06-08 15:35:03 +00002309 int32_t pipeHolder;
2310 if (evt.findS32(set_use_pipe_tag, &pipeHolder)) {
2311 fPipeState = static_cast<SkOSMenu::TriState>(pipeHolder);
reed@google.com0faac1e2011-05-11 05:58:58 +00002312 return true;
2313 }
reed@google.com4d5c26d2013-01-08 16:17:50 +00002314
2315 if (evt.isType("debug-hit-test")) {
2316 fDebugHitTest = true;
2317 evt.findS32("debug-hit-test-x", &fDebugHitTestLoc.fX);
2318 evt.findS32("debug-hit-test-y", &fDebugHitTestLoc.fY);
2319 this->inval(NULL);
2320 return true;
2321 }
2322
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002323 return this->INHERITED::onEvent(evt);
2324}
2325
2326bool SampleView::onQuery(SkEvent* evt) {
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002327 if (evt->isType(is_sample_view_tag)) {
2328 return true;
2329 }
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002330 return this->INHERITED::onQuery(evt);
2331}
2332
reed@google.com64e3eb22011-05-04 14:32:04 +00002333
2334class SimplePC : public SkGPipeController {
2335public:
2336 SimplePC(SkCanvas* target);
2337 ~SimplePC();
chudy@google.com4605a3f2012-08-01 17:58:01 +00002338
reed@google.com64e3eb22011-05-04 14:32:04 +00002339 virtual void* requestBlock(size_t minRequest, size_t* actual);
2340 virtual void notifyWritten(size_t bytes);
2341
2342private:
reed@google.com961ddb02011-05-05 14:03:48 +00002343 SkGPipeReader fReader;
2344 void* fBlock;
2345 size_t fBlockSize;
2346 size_t fBytesWritten;
2347 int fAtomsWritten;
reed@google.com64e3eb22011-05-04 14:32:04 +00002348 SkGPipeReader::Status fStatus;
2349
2350 size_t fTotalWritten;
2351};
2352
2353SimplePC::SimplePC(SkCanvas* target) : fReader(target) {
2354 fBlock = NULL;
2355 fBlockSize = fBytesWritten = 0;
2356 fStatus = SkGPipeReader::kDone_Status;
2357 fTotalWritten = 0;
reed@google.com961ddb02011-05-05 14:03:48 +00002358 fAtomsWritten = 0;
scroggo@google.com74b7ffd2013-04-30 02:32:41 +00002359 fReader.setBitmapDecoder(&SkImageDecoder::DecodeMemory);
reed@google.com64e3eb22011-05-04 14:32:04 +00002360}
2361
2362SimplePC::~SimplePC() {
2363// SkASSERT(SkGPipeReader::kDone_Status == fStatus);
reed@google.com0faac1e2011-05-11 05:58:58 +00002364 if (fTotalWritten) {
scroggo@google.comb073d922012-06-08 15:35:03 +00002365 SkDebugf("--- %d bytes %d atoms, status %d\n", fTotalWritten,
2366 fAtomsWritten, fStatus);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002367#ifdef PIPE_FILE
scroggo@google.comb073d922012-06-08 15:35:03 +00002368 //File is open in append mode
2369 FILE* f = fopen(FILE_PATH, "ab");
2370 SkASSERT(f != NULL);
2371 fwrite((const char*)fBlock + fBytesWritten, 1, bytes, f);
2372 fclose(f);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002373#endif
2374#ifdef PIPE_NET
scroggo@google.comb073d922012-06-08 15:35:03 +00002375 if (fAtomsWritten > 1 && fTotalWritten > 4) { //ignore done
2376 gServer.acceptConnections();
2377 gServer.writePacket(fBlock, fTotalWritten);
2378 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002379#endif
reed@google.com0faac1e2011-05-11 05:58:58 +00002380 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002381 sk_free(fBlock);
reed@google.com64e3eb22011-05-04 14:32:04 +00002382}
2383
2384void* SimplePC::requestBlock(size_t minRequest, size_t* actual) {
2385 sk_free(fBlock);
2386
2387 fBlockSize = minRequest * 4;
2388 fBlock = sk_malloc_throw(fBlockSize);
2389 fBytesWritten = 0;
2390 *actual = fBlockSize;
2391 return fBlock;
2392}
2393
2394void SimplePC::notifyWritten(size_t bytes) {
2395 SkASSERT(fBytesWritten + bytes <= fBlockSize);
reed@google.com64e3eb22011-05-04 14:32:04 +00002396 fStatus = fReader.playback((const char*)fBlock + fBytesWritten, bytes);
2397 SkASSERT(SkGPipeReader::kError_Status != fStatus);
2398 fBytesWritten += bytes;
2399 fTotalWritten += bytes;
chudy@google.com4605a3f2012-08-01 17:58:01 +00002400
reed@google.com961ddb02011-05-05 14:03:48 +00002401 fAtomsWritten += 1;
reed@google.com64e3eb22011-05-04 14:32:04 +00002402}
2403
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002404void SampleView::draw(SkCanvas* canvas) {
scroggo@google.comb073d922012-06-08 15:35:03 +00002405 if (SkOSMenu::kOffState == fPipeState) {
2406 this->INHERITED::draw(canvas);
2407 } else {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002408 SkGPipeWriter writer;
2409 SimplePC controller(canvas);
scroggo@google.comb073d922012-06-08 15:35:03 +00002410 TiledPipeController tc(canvas->getDevice()->accessBitmap(false),
scroggo@google.com74b7ffd2013-04-30 02:32:41 +00002411 &SkImageDecoder::DecodeMemory,
scroggo@google.comb073d922012-06-08 15:35:03 +00002412 &canvas->getTotalMatrix());
2413 SkGPipeController* pc;
2414 if (SkOSMenu::kMixedState == fPipeState) {
2415 pc = &tc;
2416 } else {
2417 pc = &controller;
2418 }
reed@google.comdde09562011-05-23 12:21:05 +00002419 uint32_t flags = SkGPipeWriter::kCrossProcess_Flag;
chudy@google.com4605a3f2012-08-01 17:58:01 +00002420
scroggo@google.comb073d922012-06-08 15:35:03 +00002421 canvas = writer.startRecording(pc, flags);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002422 //Must draw before controller goes out of scope and sends data
2423 this->INHERITED::draw(canvas);
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00002424 //explicitly end recording to ensure writer is flushed before the memory
2425 //is freed in the deconstructor of the controller
2426 writer.endRecording();
reed@google.com0faac1e2011-05-11 05:58:58 +00002427 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002428}
reed@google.com4d5c26d2013-01-08 16:17:50 +00002429
2430#include "SkBounder.h"
2431
2432class DebugHitTestBounder : public SkBounder {
2433public:
2434 DebugHitTestBounder(int x, int y) {
2435 fLoc.set(x, y);
2436 }
2437
2438 virtual bool onIRect(const SkIRect& bounds) SK_OVERRIDE {
2439 if (bounds.contains(fLoc.x(), fLoc.y())) {
2440 //
2441 // Set a break-point here to see what was being drawn under
2442 // the click point (just needed a line of code to stop the debugger)
2443 //
2444 bounds.centerX();
2445 }
2446 return true;
2447 }
2448
2449private:
2450 SkIPoint fLoc;
2451 typedef SkBounder INHERITED;
2452};
2453
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002454void SampleView::onDraw(SkCanvas* canvas) {
reed@google.com81e3d7f2011-06-01 12:42:36 +00002455 this->onDrawBackground(canvas);
2456
reed@google.com4d5c26d2013-01-08 16:17:50 +00002457 DebugHitTestBounder bounder(fDebugHitTestLoc.x(), fDebugHitTestLoc.y());
2458 if (fDebugHitTest) {
2459 canvas->setBounder(&bounder);
2460 }
2461
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002462 for (int i = 0; i < fRepeatCount; i++) {
scroggo@google.com85cade02012-08-17 13:29:50 +00002463 SkAutoCanvasRestore acr(canvas, true);
2464 this->onDrawContent(canvas);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002465 }
reed@google.com4d5c26d2013-01-08 16:17:50 +00002466
2467 fDebugHitTest = false;
2468 canvas->setBounder(NULL);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002469}
2470
2471void SampleView::onDrawBackground(SkCanvas* canvas) {
reed@google.comf2183392011-04-22 14:10:48 +00002472 canvas->drawColor(fBGColor);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002473}
2474
2475///////////////////////////////////////////////////////////////////////////////
2476
reed@android.comf2b98d62010-12-20 18:26:13 +00002477template <typename T> void SkTBSort(T array[], int count) {
2478 for (int i = 1; i < count - 1; i++) {
2479 bool didSwap = false;
2480 for (int j = count - 1; j > i; --j) {
2481 if (array[j] < array[j-1]) {
2482 T tmp(array[j-1]);
2483 array[j-1] = array[j];
2484 array[j] = tmp;
2485 didSwap = true;
2486 }
2487 }
2488 if (!didSwap) {
2489 break;
2490 }
2491 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002492
reed@android.comf2b98d62010-12-20 18:26:13 +00002493 for (int k = 0; k < count - 1; k++) {
2494 SkASSERT(!(array[k+1] < array[k]));
2495 }
2496}
2497
2498#include "SkRandom.h"
2499
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +00002500static void rand_rect(SkIRect* rect, SkRandom& rand) {
reed@android.comf2b98d62010-12-20 18:26:13 +00002501 int bits = 8;
2502 int shift = 32 - bits;
2503 rect->set(rand.nextU() >> shift, rand.nextU() >> shift,
2504 rand.nextU() >> shift, rand.nextU() >> shift);
2505 rect->sort();
2506}
2507
2508static void dumpRect(const SkIRect& r) {
2509 SkDebugf(" { %d, %d, %d, %d },\n",
2510 r.fLeft, r.fTop,
2511 r.fRight, r.fBottom);
2512}
2513
2514static void test_rects(const SkIRect rect[], int count) {
2515 SkRegion rgn0, rgn1;
2516
2517 for (int i = 0; i < count; i++) {
2518 rgn0.op(rect[i], SkRegion::kUnion_Op);
2519 // dumpRect(rect[i]);
2520 }
2521 rgn1.setRects(rect, count);
2522
2523 if (rgn0 != rgn1) {
2524 SkDebugf("\n");
2525 for (int i = 0; i < count; i++) {
2526 dumpRect(rect[i]);
2527 }
2528 SkDebugf("\n");
2529 }
2530}
2531
2532static void test() {
2533 size_t i;
2534
2535 const SkIRect r0[] = {
2536 { 0, 0, 1, 1 },
2537 { 2, 2, 3, 3 },
2538 };
2539 const SkIRect r1[] = {
2540 { 0, 0, 1, 3 },
2541 { 1, 1, 2, 2 },
2542 { 2, 0, 3, 3 },
2543 };
2544 const SkIRect r2[] = {
2545 { 0, 0, 1, 2 },
2546 { 2, 1, 3, 3 },
2547 { 4, 0, 5, 1 },
2548 { 6, 0, 7, 4 },
2549 };
2550
2551 static const struct {
2552 const SkIRect* fRects;
2553 int fCount;
2554 } gRecs[] = {
2555 { r0, SK_ARRAY_COUNT(r0) },
2556 { r1, SK_ARRAY_COUNT(r1) },
2557 { r2, SK_ARRAY_COUNT(r2) },
2558 };
2559
2560 for (i = 0; i < SK_ARRAY_COUNT(gRecs); i++) {
2561 test_rects(gRecs[i].fRects, gRecs[i].fCount);
2562 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002563
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +00002564 SkRandom rand;
reed@android.comf2b98d62010-12-20 18:26:13 +00002565 for (i = 0; i < 10000; i++) {
2566 SkRegion rgn0, rgn1;
2567
2568 const int N = 8;
2569 SkIRect rect[N];
2570 for (int j = 0; j < N; j++) {
2571 rand_rect(&rect[j], rand);
2572 }
2573 test_rects(rect, N);
2574 }
2575}
2576
caryclark@google.com02939ce2012-06-06 12:09:51 +00002577// FIXME: this should be in a header
2578SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv);
senorblanco@chromium.org78b82532011-06-28 19:44:03 +00002579SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv) {
caryclark@google.com02939ce2012-06-06 12:09:51 +00002580 if (false) { // avoid bit rot, suppress warning
2581 test();
2582 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002583 return new SampleWindow(hwnd, argc, argv, NULL);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002584}
2585
caryclark@google.com02939ce2012-06-06 12:09:51 +00002586// FIXME: this should be in a header
2587void get_preferred_size(int* x, int* y, int* width, int* height);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002588void get_preferred_size(int* x, int* y, int* width, int* height) {
2589 *x = 10;
2590 *y = 50;
2591 *width = 640;
2592 *height = 480;
2593}
2594
caryclark@google.com5987f582012-10-02 18:33:14 +00002595#ifdef SK_BUILD_FOR_IOS
2596void save_args(int argc, char *argv[]) {
2597}
2598#endif
2599
caryclark@google.com02939ce2012-06-06 12:09:51 +00002600// FIXME: this should be in a header
2601void application_init();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002602void application_init() {
2603// setenv("ANDROID_ROOT", "../../../data", 0);
reed@android.come191b162009-12-18 21:33:39 +00002604#ifdef SK_BUILD_FOR_MAC
reed@android.com8a1c16f2008-12-17 15:59:43 +00002605 setenv("ANDROID_ROOT", "/android/device/data", 0);
reed@android.come191b162009-12-18 21:33:39 +00002606#endif
bsalomon@google.com2fbc7fa2011-01-05 16:34:41 +00002607 SkGraphics::Init();
2608 SkEvent::Init();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002609}
2610
caryclark@google.com02939ce2012-06-06 12:09:51 +00002611// FIXME: this should be in a header
2612void application_term();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002613void application_term() {
bsalomon@google.com2fbc7fa2011-01-05 16:34:41 +00002614 SkEvent::Term();
2615 SkGraphics::Term();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002616}