blob: 2d96eff8d83a6e857a515dd549cf744617e2cdeb [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.orgb1b7f7072012-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
commit-bot@chromium.org6de4a782013-12-11 17:05:23 +0000102static void post_event_to_sink(SkEvent* evt, SkEventSink* sink) {
reed@google.com2072db82011-11-08 15:18:10 +0000103 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
commit-bot@chromium.orgbbe43a92013-12-10 21:51:06 +0000674static const struct TilingInfo gTilingInfo[] = {
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +0000675 { "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
commit-bot@chromium.orgbbe43a92013-12-10 21:51:06 +0000685SkSize SampleWindow::tileSize() const {
686 SkASSERT((TilingMode)fTilingMode < kLast_TilingMode_Enum);
687 const struct TilingInfo* info = gTilingInfo + fTilingMode;
688 return SkSize::Make(info->w > SK_Scalar1 ? info->w : this->width() * info->w,
689 info->h > SK_Scalar1 ? info->h : this->height() * info->h);
690}
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +0000691//////////////////////////////////////////////////////////////////////////////
692
reed@android.comf2b98d62010-12-20 18:26:13 +0000693static SkView* curr_view(SkWindow* wind) {
694 SkView::F2BIter iter(wind);
695 return iter.next();
696}
697
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +0000698static bool curr_title(SkWindow* wind, SkString* title) {
699 SkView* view = curr_view(wind);
700 if (view) {
701 SkEvent evt(gTitleEvtName);
702 if (view->doQuery(&evt)) {
703 title->set(evt.findString(gTitleEvtName));
704 return true;
705 }
706 }
707 return false;
708}
709
Scroggo2c8208f2011-06-15 16:49:08 +0000710void SampleWindow::setZoomCenter(float x, float y)
711{
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000712 fZoomCenterX = x;
713 fZoomCenterY = y;
Scroggo2c8208f2011-06-15 16:49:08 +0000714}
reed@android.com8a1c16f2008-12-17 15:59:43 +0000715
Scroggo0f185c22011-03-24 18:35:50 +0000716bool SampleWindow::zoomIn()
717{
718 // Arbitrarily decided
719 if (fFatBitsScale == 25) return false;
720 fFatBitsScale++;
721 this->inval(NULL);
722 return true;
723}
724
725bool SampleWindow::zoomOut()
726{
727 if (fFatBitsScale == 1) return false;
728 fFatBitsScale--;
729 this->inval(NULL);
730 return true;
731}
732
Scroggo0f185c22011-03-24 18:35:50 +0000733void SampleWindow::updatePointer(int x, int y)
734{
735 fMouseX = x;
736 fMouseY = y;
737 if (fShowZoomer) {
738 this->inval(NULL);
739 }
740}
741
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000742static inline SampleWindow::DeviceType cycle_devicetype(SampleWindow::DeviceType ct) {
743 static const SampleWindow::DeviceType gCT[] = {
744 SampleWindow::kPicture_DeviceType,
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000745#if SK_SUPPORT_GPU
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000746 SampleWindow::kGPU_DeviceType,
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000747#if SK_ANGLE
748 SampleWindow::kANGLE_DeviceType,
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000749#endif // SK_ANGLE
bsalomon@google.com74913722011-10-27 20:44:19 +0000750 SampleWindow::kRaster_DeviceType, // skip the null gpu device in normal cycling
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000751#endif // SK_SUPPORT_GPU
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000752 SampleWindow::kRaster_DeviceType
reed@android.com8a1c16f2008-12-17 15:59:43 +0000753 };
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000754 SK_COMPILE_ASSERT(SK_ARRAY_COUNT(gCT) == SampleWindow::kDeviceTypeCnt, array_size_mismatch);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000755 return gCT[ct];
756}
757
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000758static void usage(const char * argv0) {
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000759 SkDebugf("%s [--slide sampleName] [-i resourcePath] [--msaa sampleCount] [--pictureDir dirPath] [--picture path] [--sort]\n", argv0);
760#ifdef SAMPLE_PDF_FILE_VIEWER
761 SkDebugf(" [--pdfDir pdfPath]\n");
762 SkDebugf(" pdfPath: path to directory pdf files are read from\n");
763#endif // SAMPLE_PDF_FILE_VIEWER
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000764 SkDebugf(" sampleName: sample at which to start.\n");
765 SkDebugf(" resourcePath: directory that stores image resources.\n");
bsalomon@google.com11959252012-04-06 20:13:38 +0000766 SkDebugf(" msaa: request multisampling with the given sample count.\n");
chudy@google.com4605a3f2012-08-01 17:58:01 +0000767 SkDebugf(" dirPath: path to directory skia pictures are read from\n");
768 SkDebugf(" path: path to skia picture\n");
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000769 SkDebugf(" --sort: sort samples by title, this would help to compare pdf rendering (P:foo.pdf) with skp rendering (P:foo.pdf)\n");
770}
771
772static SkString getSampleTitle(const SkViewFactory* sampleFactory) {
773 SkView* view = (*sampleFactory)();
774 SkString title;
775 SampleCode::RequestTitle(view, &title);
776 view->unref();
777 return title;
778}
779
edisonn@google.comde36b692013-07-11 15:40:31 +0000780static bool compareSampleTitle(const SkViewFactory* first, const SkViewFactory* second) {
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000781 return strcmp(getSampleTitle(first).c_str(), getSampleTitle(second).c_str()) < 0;
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000782}
783
chudy@google.com4605a3f2012-08-01 17:58:01 +0000784SampleWindow::SampleWindow(void* hwnd, int argc, char** argv, DeviceManager* devManager)
robertphillips@google.com4750fa52012-04-10 13:34:11 +0000785 : INHERITED(hwnd)
786 , fDevManager(NULL) {
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000787
reed@google.com7d05ac92013-06-06 13:14:13 +0000788 fCurrIndex = -1;
789
reed@google.com1830c7a2012-06-04 12:05:43 +0000790 this->registerPictFileSamples(argv, argc);
chudy@google.com4605a3f2012-08-01 17:58:01 +0000791 this->registerPictFileSample(argv, argc);
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000792#ifdef SAMPLE_PDF_FILE_VIEWER
793 this->registerPdfFileViewerSamples(argv, argc);
794#endif // SAMPLE_PDF_FILE_VIEWER
robertphillips@google.com76d40212012-03-22 14:12:15 +0000795 SkGMRegistyToSampleRegistry();
796 {
797 const SkViewRegister* reg = SkViewRegister::Head();
798 while (reg) {
799 *fSamples.append() = reg->factory();
800 reg = reg->next();
801 }
802 }
803
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000804 bool sort = false;
805 for (int i = 0; i < argc; ++i) {
806 if (!strcmp(argv[i], "--sort")) {
807 sort = true;
808 break;
809 }
810 }
811
812 if (sort) {
813 // Sort samples, so foo.skp and foo.pdf are consecutive and we can quickly spot where
814 // skp -> pdf -> png fails.
815 SkTQSort(fSamples.begin(), fSamples.end() ? fSamples.end() - 1 : NULL, compareSampleTitle);
816 }
817
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000818 const char* resourcePath = NULL;
bsalomon@google.com11959252012-04-06 20:13:38 +0000819 fMSAASampleCount = 0;
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000820
821 const char* const commandName = argv[0];
822 char* const* stop = argv + argc;
823 for (++argv; argv < stop; ++argv) {
reed@google.com55ebe8e2013-09-10 19:12:07 +0000824 if (!strcmp(*argv, "-i") || !strcmp(*argv, "--resourcePath")) {
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000825 argv++;
826 if (argv < stop && **argv) {
827 resourcePath = *argv;
828 }
robertphillips@google.com76d40212012-03-22 14:12:15 +0000829 } else if (strcmp(*argv, "--slide") == 0) {
830 argv++;
831 if (argv < stop && **argv) {
832 fCurrIndex = findByTitle(*argv);
833 if (fCurrIndex < 0) {
834 fprintf(stderr, "Unknown sample \"%s\"\n", *argv);
robertphillips@google.com7265e722012-05-03 18:22:28 +0000835 listTitles();
robertphillips@google.com76d40212012-03-22 14:12:15 +0000836 }
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000837 }
bsalomon@google.com11959252012-04-06 20:13:38 +0000838 } else if (strcmp(*argv, "--msaa") == 0) {
839 ++argv;
840 if (argv < stop && **argv) {
841 fMSAASampleCount = atoi(*argv);
842 }
robertphillips@google.com7265e722012-05-03 18:22:28 +0000843 } else if (strcmp(*argv, "--list") == 0) {
844 listTitles();
halcanary@google.com805ca192013-10-14 12:47:37 +0000845 } else if (strcmp(*argv, "--pictureDir") == 0) {
846 ++argv; // This case is dealt with in registerPictFileSamples().
847 } else if (strcmp(*argv, "--picture") == 0) {
848 ++argv; // This case is dealt with in registerPictFileSample().
bsalomon@google.com11959252012-04-06 20:13:38 +0000849 }
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +0000850 else {
robertphillips@google.com76d40212012-03-22 14:12:15 +0000851 usage(commandName);
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000852 }
853 }
854
855 if (fCurrIndex < 0) {
856 SkString title;
857 if (readTitleFromPrefs(&title)) {
858 fCurrIndex = findByTitle(title.c_str());
859 }
860 }
861
862 if (fCurrIndex < 0) {
863 fCurrIndex = 0;
864 }
865
reed@google.com3cec4d72011-07-06 13:59:47 +0000866 gSampleWindow = this;
867
yangsu@google.com1f394212011-06-01 18:03:34 +0000868#ifdef PIPE_FILE
869 //Clear existing file or create file if it doesn't exist
870 FILE* f = fopen(FILE_PATH, "wb");
871 fclose(f);
872#endif
chudy@google.com4605a3f2012-08-01 17:58:01 +0000873
reed@android.com8a1c16f2008-12-17 15:59:43 +0000874 fPicture = NULL;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000875
robertphillips@google.combd8d7ad2012-03-30 15:18:14 +0000876 fDeviceType = kRaster_DeviceType;
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000877
878#if DEFAULT_TO_GPU
879 fDeviceType = kGPU_DeviceType;
reed@android.comf2b98d62010-12-20 18:26:13 +0000880#endif
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000881#if SK_ANGLE && DEFAULT_TO_ANGLE
882 fDeviceType = kANGLE_DeviceType;
883#endif
884
reed@android.com8a1c16f2008-12-17 15:59:43 +0000885 fUseClip = false;
reed@android.come522ca52009-11-23 20:10:41 +0000886 fNClip = false;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000887 fAnimating = false;
reed@android.com6c5f6f22009-08-14 16:08:38 +0000888 fRotate = false;
bungeman@google.comb1785912013-07-09 21:58:56 +0000889 fRotateAnimTime = 0;
bsalomon@google.come8f09102011-09-08 18:48:12 +0000890 fPerspAnim = false;
891 fPerspAnimTime = 0;
reed@android.comf2b98d62010-12-20 18:26:13 +0000892 fRequestGrabImage = false;
scroggo@google.comb073d922012-06-08 15:35:03 +0000893 fPipeState = SkOSMenu::kOffState;
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +0000894 fTilingMode = kNo_Tiling;
mike@reedtribe.org2eb59522011-04-22 01:59:09 +0000895 fMeasureFPS = false;
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000896 fLCDState = SkOSMenu::kMixedState;
897 fAAState = SkOSMenu::kMixedState;
bungeman@google.com96aabc82013-06-03 21:26:34 +0000898 fSubpixelState = SkOSMenu::kMixedState;
899 fHintingState = 0;
reed@google.com15bc13d2013-12-10 16:53:13 +0000900 fFilterLevelIndex = 0;
reed@google.com569e0432011-04-05 13:07:03 +0000901 fFlipAxis = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000902 fScrollTestX = fScrollTestY = 0;
903
Scroggo0f185c22011-03-24 18:35:50 +0000904 fMouseX = fMouseY = 0;
mike@reedtribe.org3ce59dc2011-04-08 00:38:05 +0000905 fFatBitsScale = 8;
Scroggo0f185c22011-03-24 18:35:50 +0000906 fTypeface = SkTypeface::CreateFromTypeface(NULL, SkTypeface::kBold);
907 fShowZoomer = false;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000908
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +0000909 fZoomLevel = 0;
910 fZoomScale = SK_Scalar1;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000911
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000912 fMagnify = false;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000913
Scroggo8ac0d542011-06-21 14:44:57 +0000914 fSaveToPdf = false;
915 fPdfCanvas = NULL;
916
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000917 fTransitionNext = 6;
918 fTransitionPrev = 2;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000919
yangsu@google.com921091f2011-08-02 13:39:12 +0000920 int sinkID = this->getSinkID();
scroggo@google.com7dadc742012-04-18 14:07:57 +0000921 fAppMenu = new SkOSMenu;
922 fAppMenu->setTitle("Global Settings");
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000923 int itemID;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000924
925 itemID =fAppMenu->appendList("Device Type", "Device Type", sinkID, 0,
926 "Raster", "Picture", "OpenGL",
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000927#if SK_ANGLE
928 "ANGLE",
929#endif
930 NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000931 fAppMenu->assignKeyEquivalentToItem(itemID, 'd');
932 itemID = fAppMenu->appendTriState("AA", "AA", sinkID, fAAState);
933 fAppMenu->assignKeyEquivalentToItem(itemID, 'b');
934 itemID = fAppMenu->appendTriState("LCD", "LCD", sinkID, fLCDState);
935 fAppMenu->assignKeyEquivalentToItem(itemID, 'l');
reed@google.com15bc13d2013-12-10 16:53:13 +0000936 itemID = fAppMenu->appendList("FilterLevel", "FilterLevel", sinkID, fFilterLevelIndex,
937 gFilterLevelStates[0].fName,
938 gFilterLevelStates[1].fName,
939 gFilterLevelStates[2].fName,
940 gFilterLevelStates[3].fName,
941 gFilterLevelStates[4].fName,
942 NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000943 fAppMenu->assignKeyEquivalentToItem(itemID, 'n');
bungeman@google.com96aabc82013-06-03 21:26:34 +0000944 itemID = fAppMenu->appendTriState("Subpixel", "Subpixel", sinkID, fSubpixelState);
945 fAppMenu->assignKeyEquivalentToItem(itemID, 's');
946 itemID = fAppMenu->appendList("Hinting", "Hinting", sinkID, fHintingState,
947 gHintingStates[0].name,
948 gHintingStates[1].name,
949 gHintingStates[2].name,
950 gHintingStates[3].name,
bungeman@google.coma9133bb2013-06-04 17:49:20 +0000951 gHintingStates[4].name,
952 NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000953 fAppMenu->assignKeyEquivalentToItem(itemID, 'h');
reed@google.com67b89ee2012-08-15 14:41:58 +0000954
scroggo@google.comb073d922012-06-08 15:35:03 +0000955 fUsePipeMenuItemID = fAppMenu->appendTriState("Pipe", "Pipe" , sinkID,
chudy@google.com4605a3f2012-08-01 17:58:01 +0000956 fPipeState);
scroggo@google.comb073d922012-06-08 15:35:03 +0000957 fAppMenu->assignKeyEquivalentToItem(fUsePipeMenuItemID, 'P');
reed@google.com67b89ee2012-08-15 14:41:58 +0000958
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +0000959 itemID =fAppMenu->appendList("Tiling", "Tiling", sinkID, fTilingMode,
960 gTilingInfo[kNo_Tiling].label,
961 gTilingInfo[kAbs_128x128_Tiling].label,
962 gTilingInfo[kAbs_256x256_Tiling].label,
963 gTilingInfo[kRel_4x4_Tiling].label,
964 gTilingInfo[kRel_1x16_Tiling].label,
965 gTilingInfo[kRel_16x1_Tiling].label,
966 NULL);
reed@google.com67b89ee2012-08-15 14:41:58 +0000967 fAppMenu->assignKeyEquivalentToItem(itemID, 't');
968
chudy@google.com4605a3f2012-08-01 17:58:01 +0000969 itemID = fAppMenu->appendSwitch("Slide Show", "Slide Show" , sinkID, false);
970 fAppMenu->assignKeyEquivalentToItem(itemID, 'a');
971 itemID = fAppMenu->appendSwitch("Clip", "Clip" , sinkID, fUseClip);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000972 fAppMenu->assignKeyEquivalentToItem(itemID, 'c');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000973 itemID = fAppMenu->appendSwitch("Flip X", "Flip X" , sinkID, false);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000974 fAppMenu->assignKeyEquivalentToItem(itemID, 'x');
975 itemID = fAppMenu->appendSwitch("Flip Y", "Flip Y" , sinkID, false);
976 fAppMenu->assignKeyEquivalentToItem(itemID, 'y');
977 itemID = fAppMenu->appendSwitch("Zoomer", "Zoomer" , sinkID, fShowZoomer);
978 fAppMenu->assignKeyEquivalentToItem(itemID, 'z');
979 itemID = fAppMenu->appendSwitch("Magnify", "Magnify" , sinkID, fMagnify);
980 fAppMenu->assignKeyEquivalentToItem(itemID, 'm');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000981 itemID =fAppMenu->appendList("Transition-Next", "Transition-Next", sinkID,
982 fTransitionNext, "Up", "Up and Right", "Right",
983 "Down and Right", "Down", "Down and Left",
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000984 "Left", "Up and Left", NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000985 fAppMenu->assignKeyEquivalentToItem(itemID, 'j');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000986 itemID =fAppMenu->appendList("Transition-Prev", "Transition-Prev", sinkID,
987 fTransitionPrev, "Up", "Up and Right", "Right",
988 "Down and Right", "Down", "Down and Left",
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000989 "Left", "Up and Left", NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000990 fAppMenu->assignKeyEquivalentToItem(itemID, 'k');
991 itemID = fAppMenu->appendAction("Save to PDF", sinkID);
992 fAppMenu->assignKeyEquivalentToItem(itemID, 'e');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000993
scroggo@google.com7dadc742012-04-18 14:07:57 +0000994 this->addMenu(fAppMenu);
995 fSlideMenu = new SkOSMenu;
996 this->addMenu(fSlideMenu);
chudy@google.com4605a3f2012-08-01 17:58:01 +0000997
bsalomon@google.com2fbc7fa2011-01-05 16:34:41 +0000998// this->setConfig(SkBitmap::kRGB_565_Config);
999 this->setConfig(SkBitmap::kARGB_8888_Config);
1000 this->setVisibleP(true);
reed@android.comf2b98d62010-12-20 18:26:13 +00001001 this->setClipToBounds(false);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001002
robertphillips@google.com8570b5c2012-03-20 17:40:58 +00001003 skiagm::GM::SetResourcePath(resourcePath);
1004
bsalomon@google.com48dd1a22011-10-31 14:18:20 +00001005 this->loadView((*fSamples[fCurrIndex])());
chudy@google.com4605a3f2012-08-01 17:58:01 +00001006
bsalomon@google.com840e9f32011-07-06 21:59:09 +00001007 fPDFData = NULL;
reed@google.comf0b5f682011-03-11 20:08:25 +00001008
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001009 if (NULL == devManager) {
1010 fDevManager = new DefaultDeviceManager();
1011 } else {
1012 devManager->ref();
1013 fDevManager = devManager;
1014 }
bsalomon@google.com11959252012-04-06 20:13:38 +00001015 fDevManager->setUpBackend(this, fMSAASampleCount);
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001016
Scroggob4490c72011-06-17 13:53:05 +00001017 // If another constructor set our dimensions, ensure that our
1018 // onSizeChange gets called.
1019 if (this->height() && this->width()) {
1020 this->onSizeChange();
1021 }
reed@google.com2072db82011-11-08 15:18:10 +00001022
1023 // can't call this synchronously, since it may require a subclass to
1024 // to implement, or the caller may need us to have returned from the
1025 // constructor first. Hence we post an event to ourselves.
1026// this->updateTitle();
commit-bot@chromium.org6de4a782013-12-11 17:05:23 +00001027 post_event_to_sink(new SkEvent(gUpdateWindowTitleEvtName), this);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001028}
1029
1030SampleWindow::~SampleWindow() {
1031 delete fPicture;
Scroggo8ac0d542011-06-21 14:44:57 +00001032 delete fPdfCanvas;
Scroggo0f185c22011-03-24 18:35:50 +00001033 fTypeface->unref();
reed@google.com29038ed2011-07-06 17:56:47 +00001034
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001035 SkSafeUnref(fDevManager);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001036}
1037
reed@google.com1830c7a2012-06-04 12:05:43 +00001038static void make_filepath(SkString* path, const char* dir, const SkString& name) {
1039 size_t len = strlen(dir);
1040 path->set(dir);
1041 if (len > 0 && dir[len - 1] != '/') {
1042 path->append("/");
1043 }
1044 path->append(name);
1045}
1046
chudy@google.com4605a3f2012-08-01 17:58:01 +00001047void SampleWindow::registerPictFileSample(char** argv, int argc) {
1048 const char* pict = NULL;
1049
1050 for (int i = 0; i < argc; ++i) {
1051 if (!strcmp(argv[i], "--picture")) {
1052 i += 1;
1053 if (i < argc) {
1054 pict = argv[i];
1055 break;
1056 }
1057 }
1058 }
1059 if (pict) {
1060 SkString path(pict);
reed@google.com7d05ac92013-06-06 13:14:13 +00001061 fCurrIndex = fSamples.count();
chudy@google.com4605a3f2012-08-01 17:58:01 +00001062 *fSamples.append() = new PictFileFactory(path);
1063 }
1064}
1065
reed@google.com1830c7a2012-06-04 12:05:43 +00001066void SampleWindow::registerPictFileSamples(char** argv, int argc) {
1067 const char* pictDir = NULL;
1068
1069 for (int i = 0; i < argc; ++i) {
1070 if (!strcmp(argv[i], "--pictureDir")) {
1071 i += 1;
1072 if (i < argc) {
1073 pictDir = argv[i];
1074 break;
1075 }
1076 }
1077 }
1078 if (pictDir) {
1079 SkOSFile::Iter iter(pictDir, "skp");
1080 SkString filename;
1081 while (iter.next(&filename)) {
1082 SkString path;
1083 make_filepath(&path, pictDir, filename);
1084 *fSamples.append() = new PictFileFactory(path);
1085 }
1086 }
1087}
1088
edisonn@google.comf8b6b012013-07-11 14:28:04 +00001089#ifdef SAMPLE_PDF_FILE_VIEWER
1090void SampleWindow::registerPdfFileViewerSamples(char** argv, int argc) {
1091 const char* pdfDir = NULL;
1092
1093 for (int i = 0; i < argc; ++i) {
1094 if (!strcmp(argv[i], "--pdfDir")) {
1095 i += 1;
1096 if (i < argc) {
1097 pdfDir = argv[i];
1098 break;
1099 }
1100 }
1101 }
1102 if (pdfDir) {
1103 SkOSFile::Iter iter(pdfDir, "pdf");
1104 SkString filename;
1105 while (iter.next(&filename)) {
1106 SkString path;
1107 make_filepath(&path, pdfDir, filename);
1108 *fSamples.append() = new PdfFileViewerFactory(path);
1109 }
1110 }
1111}
1112#endif // SAMPLE_PDF_FILE_VIEWER
1113
1114
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00001115int SampleWindow::findByTitle(const char title[]) {
1116 int i, count = fSamples.count();
1117 for (i = 0; i < count; i++) {
1118 if (getSampleTitle(i).equals(title)) {
1119 return i;
1120 }
1121 }
mike@reedtribe.orgdd52caa2011-12-28 20:02:10 +00001122 return -1;
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00001123}
1124
robertphillips@google.com7265e722012-05-03 18:22:28 +00001125void SampleWindow::listTitles() {
1126 int count = fSamples.count();
1127 SkDebugf("All Slides:\n");
1128 for (int i = 0; i < count; i++) {
1129 SkDebugf(" %s\n", getSampleTitle(i).c_str());
1130 }
1131}
1132
reed@android.com55e76b22009-11-23 21:46:47 +00001133static SkBitmap capture_bitmap(SkCanvas* canvas) {
1134 SkBitmap bm;
1135 const SkBitmap& src = canvas->getDevice()->accessBitmap(false);
1136 src.copyTo(&bm, src.config());
1137 return bm;
1138}
1139
1140static bool bitmap_diff(SkCanvas* canvas, const SkBitmap& orig,
1141 SkBitmap* diff) {
1142 const SkBitmap& src = canvas->getDevice()->accessBitmap(false);
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001143
reed@android.com55e76b22009-11-23 21:46:47 +00001144 SkAutoLockPixels alp0(src);
1145 SkAutoLockPixels alp1(orig);
1146 for (int y = 0; y < src.height(); y++) {
1147 const void* srcP = src.getAddr(0, y);
1148 const void* origP = orig.getAddr(0, y);
1149 size_t bytes = src.width() * src.bytesPerPixel();
1150 if (memcmp(srcP, origP, bytes)) {
1151 SkDebugf("---------- difference on line %d\n", y);
1152 return true;
1153 }
1154 }
1155 return false;
1156}
1157
Scroggo0f185c22011-03-24 18:35:50 +00001158static void drawText(SkCanvas* canvas, SkString string, SkScalar left, SkScalar top, SkPaint& paint)
1159{
1160 SkColor desiredColor = paint.getColor();
1161 paint.setColor(SK_ColorWHITE);
1162 const char* c_str = string.c_str();
1163 size_t size = string.size();
1164 SkRect bounds;
1165 paint.measureText(c_str, size, &bounds);
1166 bounds.offset(left, top);
1167 SkScalar inset = SkIntToScalar(-2);
1168 bounds.inset(inset, inset);
1169 canvas->drawRect(bounds, paint);
1170 if (desiredColor != SK_ColorBLACK) {
1171 paint.setColor(SK_ColorBLACK);
1172 canvas->drawText(c_str, size, left + SK_Scalar1, top + SK_Scalar1, paint);
1173 }
1174 paint.setColor(desiredColor);
1175 canvas->drawText(c_str, size, left, top, paint);
1176}
1177
reed@android.com44177402009-11-23 21:07:51 +00001178#define XCLIP_N 8
1179#define YCLIP_N 8
reed@android.come522ca52009-11-23 20:10:41 +00001180
1181void SampleWindow::draw(SkCanvas* canvas) {
reed@android.com44177402009-11-23 21:07:51 +00001182 // update the animation time
bsalomon@google.come8f09102011-09-08 18:48:12 +00001183 if (!gAnimTimePrev && !gAnimTime) {
1184 // first time make delta be 0
1185 gAnimTime = SkTime::GetMSecs();
1186 gAnimTimePrev = gAnimTime;
1187 } else {
1188 gAnimTimePrev = gAnimTime;
1189 gAnimTime = SkTime::GetMSecs();
1190 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001191
reed@google.comf03bb562011-11-11 21:42:12 +00001192 if (fGesture.isActive()) {
1193 this->updateMatrix();
reed@google.com52f57e12011-03-16 12:10:02 +00001194 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001195
djsollen@google.com796763e2012-12-10 14:12:55 +00001196 if (fMeasureFPS) {
1197 fMeasureFPS_Time = 0;
1198 }
1199
reed@android.come522ca52009-11-23 20:10:41 +00001200 if (fNClip) {
reed@android.com55e76b22009-11-23 21:46:47 +00001201 this->INHERITED::draw(canvas);
1202 SkBitmap orig = capture_bitmap(canvas);
reed@android.come522ca52009-11-23 20:10:41 +00001203
1204 const SkScalar w = this->width();
1205 const SkScalar h = this->height();
1206 const SkScalar cw = w / XCLIP_N;
1207 const SkScalar ch = h / YCLIP_N;
1208 for (int y = 0; y < YCLIP_N; y++) {
reed@android.com55e76b22009-11-23 21:46:47 +00001209 SkRect r;
1210 r.fTop = y * ch;
1211 r.fBottom = (y + 1) * ch;
1212 if (y == YCLIP_N - 1) {
1213 r.fBottom = h;
1214 }
reed@android.come522ca52009-11-23 20:10:41 +00001215 for (int x = 0; x < XCLIP_N; x++) {
1216 SkAutoCanvasRestore acr(canvas, true);
reed@android.com55e76b22009-11-23 21:46:47 +00001217 r.fLeft = x * cw;
1218 r.fRight = (x + 1) * cw;
1219 if (x == XCLIP_N - 1) {
1220 r.fRight = w;
1221 }
reed@android.come522ca52009-11-23 20:10:41 +00001222 canvas->clipRect(r);
1223 this->INHERITED::draw(canvas);
1224 }
1225 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001226
reed@android.com55e76b22009-11-23 21:46:47 +00001227 SkBitmap diff;
1228 if (bitmap_diff(canvas, orig, &diff)) {
1229 }
reed@android.come522ca52009-11-23 20:10:41 +00001230 } else {
commit-bot@chromium.orgbbe43a92013-12-10 21:51:06 +00001231 SkSize tile = this->tileSize();
rmistry@google.comae933ce2012-08-23 18:19:56 +00001232
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +00001233 for (SkScalar y = 0; y < height(); y += tile.height()) {
1234 for (SkScalar x = 0; x < width(); x += tile.width()) {
scroggo@google.com85cade02012-08-17 13:29:50 +00001235 SkAutoCanvasRestore acr(canvas, true);
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +00001236 canvas->clipRect(SkRect::MakeXYWH(x, y,
1237 tile.width(),
1238 tile.height()));
scroggo@google.com85cade02012-08-17 13:29:50 +00001239 this->INHERITED::draw(canvas);
1240 }
1241 }
rmistry@google.comae933ce2012-08-23 18:19:56 +00001242
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +00001243 if (fTilingMode != kNo_Tiling) {
scroggo@google.com85cade02012-08-17 13:29:50 +00001244 SkPaint paint;
1245 paint.setColor(0x60FF00FF);
1246 paint.setStyle(SkPaint::kStroke_Style);
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +00001247
1248 for (SkScalar y = 0; y < height(); y += tile.height()) {
1249 for (SkScalar x = 0; x < width(); x += tile.width()) {
1250 canvas->drawRect(SkRect::MakeXYWH(x, y,
1251 tile.width(),
1252 tile.height()),
1253 paint);
scroggo@google.com85cade02012-08-17 13:29:50 +00001254 }
1255 }
1256 }
reed@android.come522ca52009-11-23 20:10:41 +00001257 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001258 if (fShowZoomer && !fSaveToPdf) {
Scroggo3272ba82011-05-25 20:50:42 +00001259 showZoomer(canvas);
1260 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001261 if (fMagnify && !fSaveToPdf) {
1262 magnify(canvas);
1263 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001264
djsollen@google.com796763e2012-12-10 14:12:55 +00001265 if (fMeasureFPS && fMeasureFPS_Time) {
1266 this->updateTitle();
1267 this->postInvalDelay();
1268 }
1269
reed@google.com29038ed2011-07-06 17:56:47 +00001270 // do this last
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001271 fDevManager->publishCanvas(fDeviceType, canvas, this);
Scroggo3272ba82011-05-25 20:50:42 +00001272}
1273
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001274static float clipW = 200;
1275static float clipH = 200;
1276void SampleWindow::magnify(SkCanvas* canvas) {
1277 SkRect r;
1278 int count = canvas->save();
chudy@google.com4605a3f2012-08-01 17:58:01 +00001279
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001280 SkMatrix m = canvas->getTotalMatrix();
robertphillips@google.com07ef9112012-06-04 13:22:14 +00001281 if (!m.invert(&m)) {
1282 return;
1283 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001284 SkPoint offset, center;
bsalomon@google.com820e80a2011-10-24 21:09:40 +00001285 SkScalar mouseX = fMouseX * SK_Scalar1;
1286 SkScalar mouseY = fMouseY * SK_Scalar1;
1287 m.mapXY(mouseX - clipW/2, mouseY - clipH/2, &offset);
1288 m.mapXY(mouseX, mouseY, &center);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001289
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001290 r.set(0, 0, clipW * m.getScaleX(), clipH * m.getScaleX());
1291 r.offset(offset.fX, offset.fY);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001292
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001293 SkPaint paint;
1294 paint.setColor(0xFF66AAEE);
1295 paint.setStyle(SkPaint::kStroke_Style);
bsalomon@google.com820e80a2011-10-24 21:09:40 +00001296 paint.setStrokeWidth(10.f * m.getScaleX());
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001297 //lense offset
1298 //canvas->translate(0, -250);
1299 canvas->drawRect(r, paint);
1300 canvas->clipRect(r);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001301
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001302 m = canvas->getTotalMatrix();
1303 m.setTranslate(-center.fX, -center.fY);
bsalomon@google.com820e80a2011-10-24 21:09:40 +00001304 m.postScale(0.5f * fFatBitsScale, 0.5f * fFatBitsScale);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001305 m.postTranslate(center.fX, center.fY);
1306 canvas->concat(m);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001307
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001308 this->INHERITED::draw(canvas);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001309
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001310 canvas->restoreToCount(count);
1311}
1312
Scroggo3272ba82011-05-25 20:50:42 +00001313void SampleWindow::showZoomer(SkCanvas* canvas) {
Scroggo0f185c22011-03-24 18:35:50 +00001314 int count = canvas->save();
1315 canvas->resetMatrix();
1316 // Ensure the mouse position is on screen.
reed@google.com261b8e22011-04-14 17:53:24 +00001317 int width = SkScalarRound(this->width());
1318 int height = SkScalarRound(this->height());
Scroggo0f185c22011-03-24 18:35:50 +00001319 if (fMouseX >= width) fMouseX = width - 1;
1320 else if (fMouseX < 0) fMouseX = 0;
1321 if (fMouseY >= height) fMouseY = height - 1;
1322 else if (fMouseY < 0) fMouseY = 0;
reed@google.comb36334d2011-05-18 15:07:20 +00001323
Scroggo0f185c22011-03-24 18:35:50 +00001324 SkBitmap bitmap = capture_bitmap(canvas);
reed@google.comb36334d2011-05-18 15:07:20 +00001325 bitmap.lockPixels();
1326
Scroggo0f185c22011-03-24 18:35:50 +00001327 // 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 +00001328 int zoomedWidth = (width >> 1) | 1;
1329 int zoomedHeight = (height >> 1) | 1;
Scroggo0f185c22011-03-24 18:35:50 +00001330 SkIRect src;
1331 src.set(0, 0, zoomedWidth / fFatBitsScale, zoomedHeight / fFatBitsScale);
1332 src.offset(fMouseX - (src.width()>>1), fMouseY - (src.height()>>1));
1333 SkRect dest;
1334 dest.set(0, 0, SkIntToScalar(zoomedWidth), SkIntToScalar(zoomedHeight));
1335 dest.offset(SkIntToScalar(width - zoomedWidth), SkIntToScalar(height - zoomedHeight));
1336 SkPaint paint;
1337 // Clear the background behind our zoomed in view
1338 paint.setColor(SK_ColorWHITE);
1339 canvas->drawRect(dest, paint);
1340 canvas->drawBitmapRect(bitmap, &src, dest);
1341 paint.setColor(SK_ColorBLACK);
1342 paint.setStyle(SkPaint::kStroke_Style);
1343 // Draw a border around the pixel in the middle
1344 SkRect originalPixel;
1345 originalPixel.set(SkIntToScalar(fMouseX), SkIntToScalar(fMouseY), SkIntToScalar(fMouseX + 1), SkIntToScalar(fMouseY + 1));
1346 SkMatrix matrix;
1347 SkRect scalarSrc;
1348 scalarSrc.set(src);
1349 SkColor color = bitmap.getColor(fMouseX, fMouseY);
1350 if (matrix.setRectToRect(scalarSrc, dest, SkMatrix::kFill_ScaleToFit)) {
1351 SkRect pixel;
1352 matrix.mapRect(&pixel, originalPixel);
1353 // TODO Perhaps measure the values and make the outline white if it's "dark"
1354 if (color == SK_ColorBLACK) {
1355 paint.setColor(SK_ColorWHITE);
1356 }
1357 canvas->drawRect(pixel, paint);
1358 }
1359 paint.setColor(SK_ColorBLACK);
1360 // Draw a border around the destination rectangle
1361 canvas->drawRect(dest, paint);
1362 paint.setStyle(SkPaint::kStrokeAndFill_Style);
1363 // Identify the pixel and its color on screen
1364 paint.setTypeface(fTypeface);
1365 paint.setAntiAlias(true);
1366 SkScalar lineHeight = paint.getFontMetrics(NULL);
1367 SkString string;
1368 string.appendf("(%i, %i)", fMouseX, fMouseY);
1369 SkScalar left = dest.fLeft + SkIntToScalar(3);
1370 SkScalar i = SK_Scalar1;
1371 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1372 // Alpha
1373 i += SK_Scalar1;
1374 string.reset();
1375 string.appendf("A: %X", SkColorGetA(color));
1376 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1377 // Red
1378 i += SK_Scalar1;
1379 string.reset();
1380 string.appendf("R: %X", SkColorGetR(color));
1381 paint.setColor(SK_ColorRED);
1382 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1383 // Green
1384 i += SK_Scalar1;
1385 string.reset();
1386 string.appendf("G: %X", SkColorGetG(color));
1387 paint.setColor(SK_ColorGREEN);
1388 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1389 // Blue
1390 i += SK_Scalar1;
1391 string.reset();
1392 string.appendf("B: %X", SkColorGetB(color));
1393 paint.setColor(SK_ColorBLUE);
1394 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1395 canvas->restoreToCount(count);
reed@android.come522ca52009-11-23 20:10:41 +00001396}
1397
reed@android.com8a1c16f2008-12-17 15:59:43 +00001398void SampleWindow::onDraw(SkCanvas* canvas) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001399}
1400
1401#include "SkColorPriv.h"
1402
caryclark@google.com02939ce2012-06-06 12:09:51 +00001403#if 0 // UNUSED
reed@android.com8a1c16f2008-12-17 15:59:43 +00001404static void reverseRedAndBlue(const SkBitmap& bm) {
1405 SkASSERT(bm.config() == SkBitmap::kARGB_8888_Config);
1406 uint8_t* p = (uint8_t*)bm.getPixels();
1407 uint8_t* stop = p + bm.getSize();
1408 while (p < stop) {
1409 // swap red/blue (to go from ARGB(int) to RGBA(memory) and premultiply
1410 unsigned scale = SkAlpha255To256(p[3]);
1411 unsigned r = p[2];
1412 unsigned b = p[0];
1413 p[0] = SkAlphaMul(r, scale);
1414 p[1] = SkAlphaMul(p[1], scale);
1415 p[2] = SkAlphaMul(b, scale);
1416 p += 4;
1417 }
1418}
caryclark@google.com02939ce2012-06-06 12:09:51 +00001419#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +00001420
Scroggo8ac0d542011-06-21 14:44:57 +00001421void SampleWindow::saveToPdf()
1422{
1423 fSaveToPdf = true;
1424 this->inval(NULL);
1425}
1426
reed@android.com8a1c16f2008-12-17 15:59:43 +00001427SkCanvas* SampleWindow::beforeChildren(SkCanvas* canvas) {
Scroggo8ac0d542011-06-21 14:44:57 +00001428 if (fSaveToPdf) {
1429 const SkBitmap& bmp = canvas->getDevice()->accessBitmap(false);
1430 SkISize size = SkISize::Make(bmp.width(), bmp.height());
1431 SkPDFDevice* pdfDevice = new SkPDFDevice(size, size,
1432 canvas->getTotalMatrix());
1433 fPdfCanvas = new SkCanvas(pdfDevice);
1434 pdfDevice->unref();
1435 canvas = fPdfCanvas;
bsalomon@google.com82502e22013-01-24 20:47:18 +00001436 } else if (kPicture_DeviceType == fDeviceType) {
1437 fPicture = new SkPicture;
1438 canvas = fPicture->beginRecording(9999, 9999);
Scroggo8ac0d542011-06-21 14:44:57 +00001439 } else {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001440#if SK_SUPPORT_GPU
bsalomon@google.com82502e22013-01-24 20:47:18 +00001441 if (kNullGPU_DeviceType != fDeviceType)
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001442#endif
bsalomon@google.com82502e22013-01-24 20:47:18 +00001443 {
1444 canvas = this->INHERITED::beforeChildren(canvas);
reed@google.comac10a2d2010-12-22 21:39:39 +00001445 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001446 }
1447
1448 if (fUseClip) {
1449 canvas->drawColor(0xFFFF88FF);
reed@google.com045e62d2011-10-24 12:19:46 +00001450 canvas->clipPath(fClipPath, SkRegion::kIntersect_Op, true);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001451 }
1452
1453 return canvas;
1454}
1455
1456static void paint_rgn(const SkBitmap& bm, const SkIRect& r,
1457 const SkRegion& rgn) {
1458 SkCanvas canvas(bm);
1459 SkRegion inval(rgn);
1460
1461 inval.translate(r.fLeft, r.fTop);
1462 canvas.clipRegion(inval);
1463 canvas.drawColor(0xFFFF8080);
1464}
yangsu@google.com501775e2011-06-24 16:04:50 +00001465#include "SkData.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +00001466void SampleWindow::afterChildren(SkCanvas* orig) {
Scroggo8ac0d542011-06-21 14:44:57 +00001467 if (fSaveToPdf) {
1468 fSaveToPdf = false;
1469 if (fShowZoomer) {
1470 showZoomer(fPdfCanvas);
1471 }
1472 SkString name;
1473 name.printf("%s.pdf", this->getTitle());
1474 SkPDFDocument doc;
1475 SkPDFDevice* device = static_cast<SkPDFDevice*>(fPdfCanvas->getDevice());
1476 doc.appendPage(device);
djsollen@google.com56c69772011-11-08 19:00:26 +00001477#ifdef SK_BUILD_FOR_ANDROID
Scroggo8ac0d542011-06-21 14:44:57 +00001478 name.prepend("/sdcard/");
1479#endif
chudy@google.com4605a3f2012-08-01 17:58:01 +00001480
yangsu@google.com501775e2011-06-24 16:04:50 +00001481#ifdef SK_BUILD_FOR_IOS
1482 SkDynamicMemoryWStream mstream;
1483 doc.emitPDF(&mstream);
yangsu@google.comae8a2e52011-06-24 21:09:39 +00001484 fPDFData = mstream.copyToData();
yangsu@google.com501775e2011-06-24 16:04:50 +00001485#endif
Scroggo8ac0d542011-06-21 14:44:57 +00001486 SkFILEWStream stream(name.c_str());
1487 if (stream.isValid()) {
1488 doc.emitPDF(&stream);
1489 const char* desc = "File saved from Skia SampleApp";
1490 this->onPDFSaved(this->getTitle(), desc, name.c_str());
1491 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001492
Scroggo8ac0d542011-06-21 14:44:57 +00001493 delete fPdfCanvas;
1494 fPdfCanvas = NULL;
1495
1496 // We took over the draw calls in order to create the PDF, so we need
1497 // to redraw.
1498 this->inval(NULL);
1499 return;
1500 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001501
reed@android.comf2b98d62010-12-20 18:26:13 +00001502 if (fRequestGrabImage) {
1503 fRequestGrabImage = false;
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001504
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00001505 SkBaseDevice* device = orig->getDevice();
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001506 SkBitmap bmp;
1507 if (device->accessBitmap(false).copyTo(&bmp, SkBitmap::kARGB_8888_Config)) {
reed@android.comf2b98d62010-12-20 18:26:13 +00001508 static int gSampleGrabCounter;
1509 SkString name;
reed@google.com7c57e0e2012-09-08 21:20:33 +00001510 name.printf("sample_grab_%d.png", gSampleGrabCounter++);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001511 SkImageEncoder::EncodeFile(name.c_str(), bmp,
reed@android.comf2b98d62010-12-20 18:26:13 +00001512 SkImageEncoder::kPNG_Type, 100);
1513 }
1514 }
1515
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001516 if (kPicture_DeviceType == fDeviceType) {
1517 if (true) {
1518 SkPicture* pict = new SkPicture(*fPicture);
1519 fPicture->unref();
reed@google.come23f1942011-12-08 19:36:00 +00001520 this->installDrawFilter(orig);
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001521 orig->drawPicture(*pict);
1522 pict->unref();
1523 } else if (true) {
1524 SkDynamicMemoryWStream ostream;
1525 fPicture->serialize(&ostream);
1526 fPicture->unref();
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001527
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001528 SkAutoDataUnref data(ostream.copyToData());
robertphillips@google.com59f46b82012-07-10 17:30:58 +00001529 SkMemoryStream istream(data->data(), data->size());
scroggo@google.comf1754ec2013-06-28 21:32:00 +00001530 SkAutoTUnref<SkPicture> pict(SkPicture::CreateFromStream(&istream));
1531 if (pict.get() != NULL) {
1532 orig->drawPicture(*pict.get());
1533 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001534 } else {
1535 fPicture->draw(orig);
1536 fPicture->unref();
1537 }
1538 fPicture = NULL;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001539 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001540
reed@google.com17d7aec2011-04-25 14:31:44 +00001541 // Do this after presentGL and other finishing, rather than in afterChild
djsollen@google.com796763e2012-12-10 14:12:55 +00001542 if (fMeasureFPS && fMeasureFPS_StartTime) {
1543 fMeasureFPS_Time += SkTime::GetMSecs() - fMeasureFPS_StartTime;
reed@google.com17d7aec2011-04-25 14:31:44 +00001544 }
1545
1546 // if ((fScrollTestX | fScrollTestY) != 0)
reed@android.comf2b98d62010-12-20 18:26:13 +00001547 if (false) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001548 const SkBitmap& bm = orig->getDevice()->accessBitmap(true);
1549 int dx = fScrollTestX * 7;
1550 int dy = fScrollTestY * 7;
1551 SkIRect r;
1552 SkRegion inval;
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001553
reed@android.com8a1c16f2008-12-17 15:59:43 +00001554 r.set(50, 50, 50+100, 50+100);
1555 bm.scrollRect(&r, dx, dy, &inval);
1556 paint_rgn(bm, r, inval);
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001557 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001558}
1559
reed@android.com6c5f6f22009-08-14 16:08:38 +00001560void SampleWindow::beforeChild(SkView* child, SkCanvas* canvas) {
reed@android.com6c5f6f22009-08-14 16:08:38 +00001561 if (fRotate) {
bungeman@google.comb1785912013-07-09 21:58:56 +00001562 fRotateAnimTime += SampleCode::GetAnimSecondsDelta();
1563
reed@android.com6c5f6f22009-08-14 16:08:38 +00001564 SkScalar cx = this->width() / 2;
1565 SkScalar cy = this->height() / 2;
1566 canvas->translate(cx, cy);
bungeman@google.comb1785912013-07-09 21:58:56 +00001567 canvas->rotate(fRotateAnimTime * 10);
reed@android.com6c5f6f22009-08-14 16:08:38 +00001568 canvas->translate(-cx, -cy);
1569 }
bungeman@google.comb1785912013-07-09 21:58:56 +00001570
bsalomon@google.come8f09102011-09-08 18:48:12 +00001571 if (fPerspAnim) {
bsalomon@google.com6fb736f2011-09-16 18:51:57 +00001572 fPerspAnimTime += SampleCode::GetAnimSecondsDelta();
1573
1574 static const SkScalar gAnimPeriod = 10 * SK_Scalar1;
1575 static const SkScalar gAnimMag = SK_Scalar1 / 1000;
1576 SkScalar t = SkScalarMod(fPerspAnimTime, gAnimPeriod);
1577 if (SkScalarFloorToInt(SkScalarDiv(fPerspAnimTime, gAnimPeriod)) & 0x1) {
1578 t = gAnimPeriod - t;
1579 }
1580 t = 2 * t - gAnimPeriod;
1581 t = SkScalarMul(SkScalarDiv(t, gAnimPeriod), gAnimMag);
1582 SkMatrix m;
1583 m.reset();
1584 m.setPerspY(t);
bsalomon@google.come8f09102011-09-08 18:48:12 +00001585 canvas->concat(m);
1586 }
reed@google.comf0b5f682011-03-11 20:08:25 +00001587
reed@google.come23f1942011-12-08 19:36:00 +00001588 this->installDrawFilter(canvas);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001589
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001590 if (fMeasureFPS) {
reed@google.comf2183392011-04-22 14:10:48 +00001591 if (SampleView::SetRepeatDraw(child, FPS_REPEAT_COUNT)) {
djsollen@google.com796763e2012-12-10 14:12:55 +00001592 fMeasureFPS_StartTime = SkTime::GetMSecs();
reed@google.comf2183392011-04-22 14:10:48 +00001593 }
1594 } else {
1595 (void)SampleView::SetRepeatDraw(child, 1);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001596 }
bungeman@google.comb1785912013-07-09 21:58:56 +00001597 if (fPerspAnim || fRotate) {
bsalomon@google.come8f09102011-09-08 18:48:12 +00001598 this->inval(NULL);
1599 }
reed@android.com6c5f6f22009-08-14 16:08:38 +00001600}
1601
1602void SampleWindow::afterChild(SkView* child, SkCanvas* canvas) {
reed@google.comf0b5f682011-03-11 20:08:25 +00001603 canvas->setDrawFilter(NULL);
reed@android.com6c5f6f22009-08-14 16:08:38 +00001604}
1605
reed@android.com8a1c16f2008-12-17 15:59:43 +00001606static SkBitmap::Config gConfigCycle[] = {
1607 SkBitmap::kNo_Config, // none -> none
reed@android.com8a1c16f2008-12-17 15:59:43 +00001608 SkBitmap::kNo_Config, // a8 -> none
1609 SkBitmap::kNo_Config, // index8 -> none
1610 SkBitmap::kARGB_4444_Config, // 565 -> 4444
1611 SkBitmap::kARGB_8888_Config, // 4444 -> 8888
1612 SkBitmap::kRGB_565_Config // 8888 -> 565
1613};
1614
1615static SkBitmap::Config cycle_configs(SkBitmap::Config c) {
1616 return gConfigCycle[c];
1617}
1618
djsollen@google.come32b5832011-06-13 16:58:40 +00001619void SampleWindow::changeZoomLevel(float delta) {
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +00001620 fZoomLevel += delta;
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001621 if (fZoomLevel > 0) {
djsollen@google.come32b5832011-06-13 16:58:40 +00001622 fZoomLevel = SkMinScalar(fZoomLevel, MAX_ZOOM_LEVEL);
1623 fZoomScale = fZoomLevel + SK_Scalar1;
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001624 } else if (fZoomLevel < 0) {
djsollen@google.come32b5832011-06-13 16:58:40 +00001625 fZoomLevel = SkMaxScalar(fZoomLevel, MIN_ZOOM_LEVEL);
1626 fZoomScale = SK_Scalar1 / (SK_Scalar1 - fZoomLevel);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001627 } else {
1628 fZoomScale = SK_Scalar1;
1629 }
reed@google.comf03bb562011-11-11 21:42:12 +00001630 this->updateMatrix();
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001631}
1632
reed@google.comf03bb562011-11-11 21:42:12 +00001633void SampleWindow::updateMatrix(){
1634 SkMatrix m;
1635 m.reset();
1636 if (fZoomLevel) {
1637 SkPoint center;
1638 //m = this->getLocalMatrix();//.invert(&m);
1639 m.mapXY(fZoomCenterX, fZoomCenterY, &center);
1640 SkScalar cx = center.fX;
1641 SkScalar cy = center.fY;
chudy@google.com4605a3f2012-08-01 17:58:01 +00001642
reed@google.comf03bb562011-11-11 21:42:12 +00001643 m.setTranslate(-cx, -cy);
1644 m.postScale(fZoomScale, fZoomScale);
1645 m.postTranslate(cx, cy);
1646 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001647
reed@google.comf03bb562011-11-11 21:42:12 +00001648 if (fFlipAxis) {
1649 m.preTranslate(fZoomCenterX, fZoomCenterY);
1650 if (fFlipAxis & kFlipAxis_X) {
1651 m.preScale(-SK_Scalar1, SK_Scalar1);
1652 }
1653 if (fFlipAxis & kFlipAxis_Y) {
1654 m.preScale(SK_Scalar1, -SK_Scalar1);
1655 }
1656 m.preTranslate(-fZoomCenterX, -fZoomCenterY);
1657 //canvas->concat(m);
1658 }
1659 // Apply any gesture matrix
1660 m.preConcat(fGesture.localM());
1661 m.preConcat(fGesture.globalM());
chudy@google.com4605a3f2012-08-01 17:58:01 +00001662
reed@google.comf03bb562011-11-11 21:42:12 +00001663 this->setLocalMatrix(m);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001664
reed@google.comf03bb562011-11-11 21:42:12 +00001665 this->updateTitle();
1666 this->inval(NULL);
1667}
Scroggo2c8208f2011-06-15 16:49:08 +00001668bool SampleWindow::previousSample() {
Scroggo62b65b02011-06-21 16:01:26 +00001669 fCurrIndex = (fCurrIndex - 1 + fSamples.count()) % fSamples.count();
chudy@google.com4605a3f2012-08-01 17:58:01 +00001670 this->loadView(create_transition(curr_view(this), (*fSamples[fCurrIndex])(),
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001671 fTransitionPrev));
Scroggo2c8208f2011-06-15 16:49:08 +00001672 return true;
1673}
1674
reed@android.com8a1c16f2008-12-17 15:59:43 +00001675bool SampleWindow::nextSample() {
reed@android.com34245c72009-11-03 04:00:48 +00001676 fCurrIndex = (fCurrIndex + 1) % fSamples.count();
chudy@google.com4605a3f2012-08-01 17:58:01 +00001677 this->loadView(create_transition(curr_view(this), (*fSamples[fCurrIndex])(),
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001678 fTransitionNext));
reed@android.com34245c72009-11-03 04:00:48 +00001679 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001680}
1681
yangsu@google.com501775e2011-06-24 16:04:50 +00001682bool SampleWindow::goToSample(int i) {
1683 fCurrIndex = (i) % fSamples.count();
bsalomon@google.com48dd1a22011-10-31 14:18:20 +00001684 this->loadView(create_transition(curr_view(this),(*fSamples[fCurrIndex])(), 6));
yangsu@google.com501775e2011-06-24 16:04:50 +00001685 return true;
1686}
1687
1688SkString SampleWindow::getSampleTitle(int i) {
edisonn@google.comf8b6b012013-07-11 14:28:04 +00001689 return ::getSampleTitle(fSamples[i]);
yangsu@google.com501775e2011-06-24 16:04:50 +00001690}
1691
1692int SampleWindow::sampleCount() {
1693 return fSamples.count();
1694}
1695
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001696void SampleWindow::showOverview() {
chudy@google.com4605a3f2012-08-01 17:58:01 +00001697 this->loadView(create_transition(curr_view(this),
1698 create_overview(fSamples.count(), fSamples.begin()),
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001699 4));
1700}
1701
reed@google.come23f1942011-12-08 19:36:00 +00001702void SampleWindow::installDrawFilter(SkCanvas* canvas) {
reed@google.com15bc13d2013-12-10 16:53:13 +00001703 canvas->setDrawFilter(new FlagsDrawFilter(fLCDState, fAAState, fSubpixelState,
1704 fHintingState, fFilterLevelIndex))->unref();
reed@google.come23f1942011-12-08 19:36:00 +00001705}
1706
Scroggo2c8208f2011-06-15 16:49:08 +00001707void SampleWindow::postAnimatingEvent() {
1708 if (fAnimating) {
reed@google.com87fac4a2011-08-04 13:50:17 +00001709 (new SkEvent(ANIMATING_EVENTTYPE, this->getSinkID()))->postDelay(ANIMATING_DELAY);
Scroggo2c8208f2011-06-15 16:49:08 +00001710 }
1711}
reed@google.come23f1942011-12-08 19:36:00 +00001712
reed@android.com8a1c16f2008-12-17 15:59:43 +00001713bool SampleWindow::onEvent(const SkEvent& evt) {
reed@google.com2072db82011-11-08 15:18:10 +00001714 if (evt.isType(gUpdateWindowTitleEvtName)) {
1715 this->updateTitle();
1716 return true;
1717 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001718 if (evt.isType(ANIMATING_EVENTTYPE)) {
1719 if (fAnimating) {
1720 this->nextSample();
1721 this->postAnimatingEvent();
1722 }
1723 return true;
1724 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001725 if (evt.isType("replace-transition-view")) {
1726 this->loadView((SkView*)SkEventSink::FindSink(evt.getFast32()));
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001727 return true;
1728 }
reed@android.com34245c72009-11-03 04:00:48 +00001729 if (evt.isType("set-curr-index")) {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001730 this->goToSample(evt.getFast32());
reed@android.com34245c72009-11-03 04:00:48 +00001731 return true;
1732 }
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001733 if (isInvalEvent(evt)) {
1734 this->inval(NULL);
1735 return true;
1736 }
yangsu@google.com921091f2011-08-02 13:39:12 +00001737 int selected = -1;
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001738 if (SkOSMenu::FindListIndex(evt, "Device Type", &selected)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001739 this->setDeviceType((DeviceType)selected);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001740 return true;
yangsu@google.com921091f2011-08-02 13:39:12 +00001741 }
scroggo@google.comb073d922012-06-08 15:35:03 +00001742 if (SkOSMenu::FindTriState(evt, "Pipe", &fPipeState)) {
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001743#ifdef PIPE_NET
scroggo@google.comb073d922012-06-08 15:35:03 +00001744 if (!fPipeState != SkOSMenu::kOnState)
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001745 gServer.disconnectAll();
1746#endif
scroggo@google.comb073d922012-06-08 15:35:03 +00001747 (void)SampleView::SetUsePipe(curr_view(this), fPipeState);
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001748 this->updateTitle();
1749 this->inval(NULL);
yangsu@google.com921091f2011-08-02 13:39:12 +00001750 return true;
1751 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001752 if (SkOSMenu::FindSwitchState(evt, "Slide Show", NULL)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001753 this->toggleSlideshow();
1754 return true;
1755 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001756 if (SkOSMenu::FindTriState(evt, "AA", &fAAState) ||
1757 SkOSMenu::FindTriState(evt, "LCD", &fLCDState) ||
reed@google.com15bc13d2013-12-10 16:53:13 +00001758 SkOSMenu::FindListIndex(evt, "FilterLevel", &fFilterLevelIndex) ||
bungeman@google.com96aabc82013-06-03 21:26:34 +00001759 SkOSMenu::FindTriState(evt, "Subpixel", &fSubpixelState) ||
1760 SkOSMenu::FindListIndex(evt, "Hinting", &fHintingState) ||
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001761 SkOSMenu::FindSwitchState(evt, "Clip", &fUseClip) ||
1762 SkOSMenu::FindSwitchState(evt, "Zoomer", &fShowZoomer) ||
1763 SkOSMenu::FindSwitchState(evt, "Magnify", &fMagnify) ||
1764 SkOSMenu::FindListIndex(evt, "Transition-Next", &fTransitionNext) ||
commit-bot@chromium.orgbbe43a92013-12-10 21:51:06 +00001765 SkOSMenu::FindListIndex(evt, "Transition-Prev", &fTransitionPrev)) {
1766 this->inval(NULL);
1767 this->updateTitle();
1768 return true;
1769 }
1770 if (SkOSMenu::FindListIndex(evt, "Tiling", &fTilingMode)) {
1771 if (SampleView::IsSampleView(curr_view(this))) {
1772 ((SampleView*)curr_view(this))->onTileSizeChanged(this->tileSize());
1773 }
yangsu@google.com921091f2011-08-02 13:39:12 +00001774 this->inval(NULL);
1775 this->updateTitle();
1776 return true;
1777 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001778 if (SkOSMenu::FindSwitchState(evt, "Flip X", NULL)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001779 fFlipAxis ^= kFlipAxis_X;
reed@google.comf03bb562011-11-11 21:42:12 +00001780 this->updateMatrix();
yangsu@google.com921091f2011-08-02 13:39:12 +00001781 return true;
1782 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001783 if (SkOSMenu::FindSwitchState(evt, "Flip Y", NULL)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001784 fFlipAxis ^= kFlipAxis_Y;
reed@google.comf03bb562011-11-11 21:42:12 +00001785 this->updateMatrix();
yangsu@google.com921091f2011-08-02 13:39:12 +00001786 return true;
1787 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001788 if (SkOSMenu::FindAction(evt,"Save to PDF")) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001789 this->saveToPdf();
1790 return true;
chudy@google.com4605a3f2012-08-01 17:58:01 +00001791 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001792 return this->INHERITED::onEvent(evt);
1793}
1794
reed@android.comf2b98d62010-12-20 18:26:13 +00001795bool SampleWindow::onQuery(SkEvent* query) {
1796 if (query->isType("get-slide-count")) {
1797 query->setFast32(fSamples.count());
1798 return true;
1799 }
1800 if (query->isType("get-slide-title")) {
bsalomon@google.com48dd1a22011-10-31 14:18:20 +00001801 SkView* view = (*fSamples[query->getFast32()])();
reed@android.comf2b98d62010-12-20 18:26:13 +00001802 SkEvent evt(gTitleEvtName);
1803 if (view->doQuery(&evt)) {
1804 query->setString("title", evt.findString(gTitleEvtName));
1805 }
1806 SkSafeUnref(view);
1807 return true;
1808 }
1809 if (query->isType("use-fast-text")) {
1810 SkEvent evt(gFastTextEvtName);
1811 return curr_view(this)->doQuery(&evt);
1812 }
reed@google.com29038ed2011-07-06 17:56:47 +00001813 if (query->isType("ignore-window-bitmap")) {
1814 query->setFast32(this->getGrContext() != NULL);
1815 return true;
1816 }
reed@android.comf2b98d62010-12-20 18:26:13 +00001817 return this->INHERITED::onQuery(query);
1818}
1819
caryclark@google.com02939ce2012-06-06 12:09:51 +00001820#if 0 // UNUSED
reed@android.com0ae6b242008-12-23 16:49:54 +00001821static void cleanup_for_filename(SkString* name) {
1822 char* str = name->writable_str();
reed@android.come191b162009-12-18 21:33:39 +00001823 for (size_t i = 0; i < name->size(); i++) {
reed@android.com0ae6b242008-12-23 16:49:54 +00001824 switch (str[i]) {
1825 case ':': str[i] = '-'; break;
1826 case '/': str[i] = '-'; break;
1827 case ' ': str[i] = '_'; break;
1828 default: break;
1829 }
1830 }
1831}
caryclark@google.com02939ce2012-06-06 12:09:51 +00001832#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +00001833
1834bool SampleWindow::onHandleChar(SkUnichar uni) {
reed@android.comf2b98d62010-12-20 18:26:13 +00001835 {
1836 SkView* view = curr_view(this);
1837 if (view) {
1838 SkEvent evt(gCharEvtName);
1839 evt.setFast32(uni);
1840 if (view->doQuery(&evt)) {
1841 return true;
1842 }
1843 }
1844 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001845
reed@android.com8a1c16f2008-12-17 15:59:43 +00001846 int dx = 0xFF;
1847 int dy = 0xFF;
1848
1849 switch (uni) {
1850 case '5': dx = 0; dy = 0; break;
1851 case '8': dx = 0; dy = -1; break;
1852 case '6': dx = 1; dy = 0; break;
1853 case '2': dx = 0; dy = 1; break;
1854 case '4': dx = -1; dy = 0; break;
1855 case '7': dx = -1; dy = -1; break;
1856 case '9': dx = 1; dy = -1; break;
1857 case '3': dx = 1; dy = 1; break;
1858 case '1': dx = -1; dy = 1; break;
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001859
reed@android.com8a1c16f2008-12-17 15:59:43 +00001860 default:
1861 break;
1862 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001863
reed@android.com8a1c16f2008-12-17 15:59:43 +00001864 if (0xFF != dx && 0xFF != dy) {
1865 if ((dx | dy) == 0) {
1866 fScrollTestX = fScrollTestY = 0;
1867 } else {
1868 fScrollTestX += dx;
1869 fScrollTestY += dy;
1870 }
1871 this->inval(NULL);
1872 return true;
1873 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001874
reed@android.com0ae6b242008-12-23 16:49:54 +00001875 switch (uni) {
reed@google.coma4f81372012-11-15 15:56:38 +00001876 case 'B':
commit-bot@chromium.org6de4a782013-12-11 17:05:23 +00001877 post_event_to_sink(SkNEW_ARGS(SkEvent, ("PictFileView::toggleBBox")), curr_view(this));
1878 // Cannot call updateTitle() synchronously, because the toggleBBox event is still in
1879 // the queue.
1880 post_event_to_sink(SkNEW_ARGS(SkEvent, (gUpdateWindowTitleEvtName)), this);
reed@google.coma4f81372012-11-15 15:56:38 +00001881 this->inval(NULL);
1882 break;
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001883 case 'f':
chudy@google.com4605a3f2012-08-01 17:58:01 +00001884 // only
djsollen@google.com6ff82552011-11-07 15:43:57 +00001885 toggleFPS();
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001886 break;
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001887 case 'g':
1888 fRequestGrabImage = true;
1889 this->inval(NULL);
1890 break;
reed@google.coma4f81372012-11-15 15:56:38 +00001891 case 'G':
1892 gShowGMBounds = !gShowGMBounds;
commit-bot@chromium.org6de4a782013-12-11 17:05:23 +00001893 post_event_to_sink(GMSampleView::NewShowSizeEvt(gShowGMBounds),
reed@google.coma4f81372012-11-15 15:56:38 +00001894 curr_view(this));
1895 this->inval(NULL);
1896 break;
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001897 case 'i':
1898 this->zoomIn();
1899 break;
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001900 case 'o':
1901 this->zoomOut();
1902 break;
reed@android.com6c5f6f22009-08-14 16:08:38 +00001903 case 'r':
1904 fRotate = !fRotate;
bungeman@google.comb1785912013-07-09 21:58:56 +00001905 fRotateAnimTime = 0;
reed@android.com6c5f6f22009-08-14 16:08:38 +00001906 this->inval(NULL);
1907 this->updateTitle();
1908 return true;
bsalomon@google.come8f09102011-09-08 18:48:12 +00001909 case 'k':
1910 fPerspAnim = !fPerspAnim;
1911 this->inval(NULL);
1912 this->updateTitle();
1913 return true;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001914#if SK_SUPPORT_GPU
bsalomon@google.com74913722011-10-27 20:44:19 +00001915 case '\\':
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001916 this->setDeviceType(kNullGPU_DeviceType);
1917 this->inval(NULL);
1918 this->updateTitle();
bsalomon@google.com74913722011-10-27 20:44:19 +00001919 return true;
twiz@google.com05e70242012-01-27 19:12:00 +00001920 case 'p':
1921 {
1922 GrContext* grContext = this->getGrContext();
1923 if (grContext) {
1924 size_t cacheBytes = grContext->getGpuTextureCacheBytes();
1925 grContext->freeGpuResources();
1926 SkDebugf("Purged %d bytes from the GPU resource cache.\n",
1927 cacheBytes);
1928 }
1929 }
1930 return true;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001931#endif
reed@android.com0ae6b242008-12-23 16:49:54 +00001932 default:
1933 break;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001934 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001935
scroggo@google.com7dadc742012-04-18 14:07:57 +00001936 if (fAppMenu->handleKeyEquivalent(uni)|| fSlideMenu->handleKeyEquivalent(uni)) {
1937 this->onUpdateMenu(fAppMenu);
1938 this->onUpdateMenu(fSlideMenu);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001939 return true;
1940 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001941 return this->INHERITED::onHandleChar(uni);
1942}
1943
yangsu@google.com921091f2011-08-02 13:39:12 +00001944void SampleWindow::setDeviceType(DeviceType type) {
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001945 if (type == fDeviceType)
1946 return;
1947
1948 fDevManager->tearDownBackend(this);
1949
1950 fDeviceType = type;
1951
bsalomon@google.com11959252012-04-06 20:13:38 +00001952 fDevManager->setUpBackend(this, fMSAASampleCount);
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001953
yangsu@google.com921091f2011-08-02 13:39:12 +00001954 this->updateTitle();
1955 this->inval(NULL);
1956}
1957
Scroggo2c8208f2011-06-15 16:49:08 +00001958void SampleWindow::toggleSlideshow() {
1959 fAnimating = !fAnimating;
1960 this->postAnimatingEvent();
1961 this->updateTitle();
1962}
1963
1964void SampleWindow::toggleRendering() {
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001965 this->setDeviceType(cycle_devicetype(fDeviceType));
Scroggo2c8208f2011-06-15 16:49:08 +00001966 this->updateTitle();
1967 this->inval(NULL);
1968}
1969
djsollen@google.com6ff82552011-11-07 15:43:57 +00001970void SampleWindow::toggleFPS() {
1971 fMeasureFPS = !fMeasureFPS;
1972 this->updateTitle();
1973 this->inval(NULL);
1974}
1975
reed@android.com8a1c16f2008-12-17 15:59:43 +00001976#include "SkDumpCanvas.h"
1977
1978bool SampleWindow::onHandleKey(SkKey key) {
reed@android.comf2b98d62010-12-20 18:26:13 +00001979 {
1980 SkView* view = curr_view(this);
1981 if (view) {
1982 SkEvent evt(gKeyEvtName);
1983 evt.setFast32(key);
1984 if (view->doQuery(&evt)) {
1985 return true;
1986 }
1987 }
1988 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001989 switch (key) {
1990 case kRight_SkKey:
1991 if (this->nextSample()) {
1992 return true;
1993 }
1994 break;
1995 case kLeft_SkKey:
scroggo@google.come2dd9732012-08-15 20:03:06 +00001996 if (this->previousSample()) {
1997 return true;
1998 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001999 return true;
2000 case kUp_SkKey:
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002001 if (USE_ARROWS_FOR_ZOOM) {
bungeman@google.comcefd9812013-05-15 15:07:32 +00002002 this->changeZoomLevel(1.f / 32.f);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002003 } else {
2004 fNClip = !fNClip;
2005 this->inval(NULL);
djsollen@google.come32b5832011-06-13 16:58:40 +00002006 this->updateTitle();
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002007 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00002008 return true;
2009 case kDown_SkKey:
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002010 if (USE_ARROWS_FOR_ZOOM) {
bungeman@google.comcefd9812013-05-15 15:07:32 +00002011 this->changeZoomLevel(-1.f / 32.f);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002012 } else {
2013 this->setConfig(cycle_configs(this->getBitmap().config()));
djsollen@google.come32b5832011-06-13 16:58:40 +00002014 this->updateTitle();
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002015 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00002016 return true;
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00002017 case kOK_SkKey: {
2018 SkString title;
2019 if (curr_title(this, &title)) {
2020 writeTitleToPrefs(title.c_str());
reed@android.com8a1c16f2008-12-17 15:59:43 +00002021 }
2022 return true;
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00002023 }
reed@android.com34245c72009-11-03 04:00:48 +00002024 case kBack_SkKey:
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002025 this->showOverview();
reed@android.com34245c72009-11-03 04:00:48 +00002026 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +00002027 default:
2028 break;
2029 }
2030 return this->INHERITED::onHandleKey(key);
2031}
2032
reed@google.com52f57e12011-03-16 12:10:02 +00002033///////////////////////////////////////////////////////////////////////////////
2034
2035static const char gGestureClickType[] = "GestureClickType";
2036
Scroggod3aed392011-06-22 13:26:56 +00002037bool SampleWindow::onDispatchClick(int x, int y, Click::State state,
reed@google.com4d5c26d2013-01-08 16:17:50 +00002038 void* owner, unsigned modi) {
Scroggo0f185c22011-03-24 18:35:50 +00002039 if (Click::kMoved_State == state) {
2040 updatePointer(x, y);
2041 }
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002042 int w = SkScalarRound(this->width());
2043 int h = SkScalarRound(this->height());
2044
2045 // check for the resize-box
2046 if (w - x < 16 && h - y < 16) {
2047 return false; // let the OS handle the click
chudy@google.com4605a3f2012-08-01 17:58:01 +00002048 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002049 else if (fMagnify) {
2050 //it's only necessary to update the drawing if there's a click
2051 this->inval(NULL);
2052 return false; //prevent dragging while magnify is enabled
reed@google.com4d5c26d2013-01-08 16:17:50 +00002053 } else {
2054 // capture control+option, and trigger debugger
2055 if ((modi & kControl_SkModifierKey) && (modi & kOption_SkModifierKey)) {
2056 if (Click::kDown_State == state) {
2057 SkEvent evt("debug-hit-test");
2058 evt.setS32("debug-hit-test-x", x);
2059 evt.setS32("debug-hit-test-y", y);
2060 curr_view(this)->doEvent(evt);
2061 }
2062 return true;
2063 } else {
2064 return this->INHERITED::onDispatchClick(x, y, state, owner, modi);
2065 }
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002066 }
2067}
2068
reed@google.com52f57e12011-03-16 12:10:02 +00002069class GestureClick : public SkView::Click {
2070public:
2071 GestureClick(SkView* target) : SkView::Click(target) {
2072 this->setType(gGestureClickType);
2073 }
2074
2075 static bool IsGesture(Click* click) {
2076 return click->isType(gGestureClickType);
2077 }
2078};
2079
reed@google.com4d5c26d2013-01-08 16:17:50 +00002080SkView::Click* SampleWindow::onFindClickHandler(SkScalar x, SkScalar y,
2081 unsigned modi) {
reed@google.com52f57e12011-03-16 12:10:02 +00002082 return new GestureClick(this);
2083}
2084
2085bool SampleWindow::onClick(Click* click) {
2086 if (GestureClick::IsGesture(click)) {
bsalomon@google.com4d4f2812011-12-12 18:34:01 +00002087 float x = static_cast<float>(click->fICurr.fX);
2088 float y = static_cast<float>(click->fICurr.fY);
chudy@google.com4605a3f2012-08-01 17:58:01 +00002089
reed@google.com52f57e12011-03-16 12:10:02 +00002090 switch (click->fState) {
2091 case SkView::Click::kDown_State:
Scroggod3aed392011-06-22 13:26:56 +00002092 fGesture.touchBegin(click->fOwner, x, y);
reed@google.com52f57e12011-03-16 12:10:02 +00002093 break;
2094 case SkView::Click::kMoved_State:
Scroggod3aed392011-06-22 13:26:56 +00002095 fGesture.touchMoved(click->fOwner, x, y);
reed@google.comf03bb562011-11-11 21:42:12 +00002096 this->updateMatrix();
reed@google.com52f57e12011-03-16 12:10:02 +00002097 break;
2098 case SkView::Click::kUp_State:
Scroggod3aed392011-06-22 13:26:56 +00002099 fGesture.touchEnd(click->fOwner);
reed@google.comf03bb562011-11-11 21:42:12 +00002100 this->updateMatrix();
reed@google.com52f57e12011-03-16 12:10:02 +00002101 break;
2102 }
2103 return true;
2104 }
2105 return false;
2106}
2107
2108///////////////////////////////////////////////////////////////////////////////
2109
reed@android.com8a1c16f2008-12-17 15:59:43 +00002110void SampleWindow::loadView(SkView* view) {
2111 SkView::F2BIter iter(this);
2112 SkView* prev = iter.next();
2113 if (prev) {
2114 prev->detachFromParent();
2115 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00002116
reed@android.com8a1c16f2008-12-17 15:59:43 +00002117 view->setVisibleP(true);
reed@android.comf2b98d62010-12-20 18:26:13 +00002118 view->setClipToBounds(false);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002119 this->attachChildToFront(view)->unref();
2120 view->setSize(this->width(), this->height());
2121
yangsu@google.com921091f2011-08-02 13:39:12 +00002122 //repopulate the slide menu when a view is loaded
scroggo@google.com7dadc742012-04-18 14:07:57 +00002123 fSlideMenu->reset();
djsollen@google.com388974f2013-01-17 13:20:01 +00002124
scroggo@google.comb073d922012-06-08 15:35:03 +00002125 (void)SampleView::SetUsePipe(view, fPipeState);
commit-bot@chromium.orgbbe43a92013-12-10 21:51:06 +00002126 if (SampleView::IsSampleView(view)) {
2127 SampleView* sampleView = (SampleView*)view;
2128 sampleView->requestMenu(fSlideMenu);
2129 sampleView->onTileSizeChanged(this->tileSize());
2130 }
scroggo@google.com7dadc742012-04-18 14:07:57 +00002131 this->onUpdateMenu(fSlideMenu);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002132 this->updateTitle();
2133}
2134
2135static const char* gConfigNames[] = {
2136 "unknown config",
reed@android.com8a1c16f2008-12-17 15:59:43 +00002137 "A8",
2138 "Index8",
2139 "565",
2140 "4444",
2141 "8888"
2142};
2143
2144static const char* configToString(SkBitmap::Config c) {
2145 return gConfigNames[c];
2146}
2147
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002148static const char* gDeviceTypePrefix[] = {
reed@android.com8a1c16f2008-12-17 15:59:43 +00002149 "raster: ",
2150 "picture: ",
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002151#if SK_SUPPORT_GPU
bsalomon@google.com74913722011-10-27 20:44:19 +00002152 "opengl: ",
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00002153#if SK_ANGLE
2154 "angle: ",
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002155#endif // SK_ANGLE
bsalomon@google.com74913722011-10-27 20:44:19 +00002156 "null-gl: "
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002157#endif // SK_SUPPORT_GPU
reed@android.com8a1c16f2008-12-17 15:59:43 +00002158};
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002159SK_COMPILE_ASSERT(SK_ARRAY_COUNT(gDeviceTypePrefix) == SampleWindow::kDeviceTypeCnt,
2160 array_size_mismatch);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002161
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002162static const char* trystate_str(SkOSMenu::TriState state,
reed@google.com569e0432011-04-05 13:07:03 +00002163 const char trueStr[], const char falseStr[]) {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002164 if (SkOSMenu::kOnState == state) {
reed@google.com569e0432011-04-05 13:07:03 +00002165 return trueStr;
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002166 } else if (SkOSMenu::kOffState == state) {
reed@google.com569e0432011-04-05 13:07:03 +00002167 return falseStr;
2168 }
2169 return NULL;
2170}
2171
reed@android.com8a1c16f2008-12-17 15:59:43 +00002172void SampleWindow::updateTitle() {
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00002173 SkView* view = curr_view(this);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002174
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00002175 SkString title;
2176 if (!curr_title(this, &title)) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00002177 title.set("<unknown>");
2178 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002179
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002180 title.prepend(gDeviceTypePrefix[fDeviceType]);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002181
2182 title.prepend(" ");
2183 title.prepend(configToString(this->getBitmap().config()));
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002184
commit-bot@chromium.orgcc63b322013-12-06 20:14:55 +00002185 if (fTilingMode != kNo_Tiling) {
2186 title.prependf("<T: %s> ", gTilingInfo[fTilingMode].label);
2187 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00002188 if (fAnimating) {
2189 title.prepend("<A> ");
2190 }
reed@android.com6c5f6f22009-08-14 16:08:38 +00002191 if (fRotate) {
2192 title.prepend("<R> ");
2193 }
reed@android.come522ca52009-11-23 20:10:41 +00002194 if (fNClip) {
2195 title.prepend("<C> ");
2196 }
bsalomon@google.come8f09102011-09-08 18:48:12 +00002197 if (fPerspAnim) {
2198 title.prepend("<K> ");
2199 }
reed@google.com569e0432011-04-05 13:07:03 +00002200
2201 title.prepend(trystate_str(fLCDState, "LCD ", "lcd "));
2202 title.prepend(trystate_str(fAAState, "AA ", "aa "));
reed@google.com15bc13d2013-12-10 16:53:13 +00002203 title.prepend(gFilterLevelStates[fFilterLevelIndex].fLabel);
bungeman@google.com96aabc82013-06-03 21:26:34 +00002204 title.prepend(trystate_str(fSubpixelState, "S ", "s "));
reed@google.com569e0432011-04-05 13:07:03 +00002205 title.prepend(fFlipAxis & kFlipAxis_X ? "X " : NULL);
2206 title.prepend(fFlipAxis & kFlipAxis_Y ? "Y " : NULL);
bungeman@google.com96aabc82013-06-03 21:26:34 +00002207 title.prepend(gHintingStates[fHintingState].label);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002208
2209 if (fZoomLevel) {
djsollen@google.come32b5832011-06-13 16:58:40 +00002210 title.prependf("{%.2f} ", SkScalarToFloat(fZoomLevel));
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002211 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00002212
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002213 if (fMeasureFPS) {
reed@google.com43e10142012-09-10 11:52:52 +00002214 title.appendf(" %8.3f ms", fMeasureFPS_Time / (float)FPS_REPEAT_COUNT);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002215 }
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002216 if (SampleView::IsSampleView(view)) {
scroggo@google.comb073d922012-06-08 15:35:03 +00002217 switch (fPipeState) {
2218 case SkOSMenu::kOnState:
2219 title.prepend("<Pipe> ");
2220 break;
2221 case SkOSMenu::kMixedState:
2222 title.prepend("<Tiled Pipe> ");
2223 break;
chudy@google.com4605a3f2012-08-01 17:58:01 +00002224
scroggo@google.comb073d922012-06-08 15:35:03 +00002225 default:
2226 break;
2227 }
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002228 title.prepend("! ");
2229 }
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002230
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002231#if SK_SUPPORT_GPU
bsalomon@google.com82502e22013-01-24 20:47:18 +00002232 if (IsGpuDeviceType(fDeviceType) &&
robertphillips@google.com4750fa52012-04-10 13:34:11 +00002233 NULL != fDevManager &&
bsalomon@google.com82502e22013-01-24 20:47:18 +00002234 fDevManager->getGrRenderTarget() &&
bsalomon@google.com11959252012-04-06 20:13:38 +00002235 fDevManager->getGrRenderTarget()->numSamples() > 0) {
2236 title.appendf(" [MSAA: %d]",
2237 fDevManager->getGrRenderTarget()->numSamples());
2238 }
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002239#endif
bsalomon@google.com11959252012-04-06 20:13:38 +00002240
reed@android.com8a1c16f2008-12-17 15:59:43 +00002241 this->setTitle(title.c_str());
2242}
2243
2244void SampleWindow::onSizeChange() {
2245 this->INHERITED::onSizeChange();
chudy@google.com4605a3f2012-08-01 17:58:01 +00002246
reed@android.com8a1c16f2008-12-17 15:59:43 +00002247 SkView::F2BIter iter(this);
2248 SkView* view = iter.next();
2249 view->setSize(this->width(), this->height());
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002250
reed@android.com8a1c16f2008-12-17 15:59:43 +00002251 // rebuild our clippath
2252 {
2253 const SkScalar W = this->width();
2254 const SkScalar H = this->height();
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002255
reed@android.com8a1c16f2008-12-17 15:59:43 +00002256 fClipPath.reset();
2257#if 0
2258 for (SkScalar y = SK_Scalar1; y < H; y += SkIntToScalar(32)) {
2259 SkRect r;
2260 r.set(SK_Scalar1, y, SkIntToScalar(30), y + SkIntToScalar(30));
2261 for (; r.fLeft < W; r.offset(SkIntToScalar(32), 0))
2262 fClipPath.addRect(r);
2263 }
2264#else
2265 SkRect r;
2266 r.set(0, 0, W, H);
2267 fClipPath.addRect(r, SkPath::kCCW_Direction);
2268 r.set(W/4, H/4, W*3/4, H*3/4);
2269 fClipPath.addRect(r, SkPath::kCW_Direction);
2270#endif
2271 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002272
Scroggo2c8208f2011-06-15 16:49:08 +00002273 fZoomCenterX = SkScalarHalf(this->width());
2274 fZoomCenterY = SkScalarHalf(this->height());
2275
djsollen@google.com56c69772011-11-08 19:00:26 +00002276#ifdef SK_BUILD_FOR_ANDROID
Scroggob4490c72011-06-17 13:53:05 +00002277 // FIXME: The first draw after a size change does not work on Android, so
2278 // we post an invalidate.
Scroggo62b65b02011-06-21 16:01:26 +00002279 this->postInvalDelay();
Scroggo716a0382011-06-16 14:00:15 +00002280#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +00002281 this->updateTitle(); // to refresh our config
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002282 fDevManager->windowSizeChanged(this);
commit-bot@chromium.orgbbe43a92013-12-10 21:51:06 +00002283
2284 if (fTilingMode != kNo_Tiling && SampleView::IsSampleView(view)) {
2285 ((SampleView*)view)->onTileSizeChanged(this->tileSize());
2286 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00002287}
2288
2289///////////////////////////////////////////////////////////////////////////////
2290
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002291static const char is_sample_view_tag[] = "sample-is-sample-view";
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002292static const char repeat_count_tag[] = "sample-set-repeat-count";
reed@google.com0faac1e2011-05-11 05:58:58 +00002293static const char set_use_pipe_tag[] = "sample-set-use-pipe";
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002294
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002295bool SampleView::IsSampleView(SkView* view) {
2296 SkEvent evt(is_sample_view_tag);
2297 return view->doQuery(&evt);
2298}
2299
reed@google.comf2183392011-04-22 14:10:48 +00002300bool SampleView::SetRepeatDraw(SkView* view, int count) {
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002301 SkEvent evt(repeat_count_tag);
2302 evt.setFast32(count);
reed@google.comf2183392011-04-22 14:10:48 +00002303 return view->doEvent(evt);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002304}
2305
scroggo@google.comb073d922012-06-08 15:35:03 +00002306bool SampleView::SetUsePipe(SkView* view, SkOSMenu::TriState state) {
2307 SkEvent evt;
2308 evt.setS32(set_use_pipe_tag, state);
reed@google.com0faac1e2011-05-11 05:58:58 +00002309 return view->doEvent(evt);
2310}
2311
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002312bool SampleView::onEvent(const SkEvent& evt) {
2313 if (evt.isType(repeat_count_tag)) {
2314 fRepeatCount = evt.getFast32();
2315 return true;
2316 }
reed@google.com4d5c26d2013-01-08 16:17:50 +00002317
scroggo@google.comb073d922012-06-08 15:35:03 +00002318 int32_t pipeHolder;
2319 if (evt.findS32(set_use_pipe_tag, &pipeHolder)) {
2320 fPipeState = static_cast<SkOSMenu::TriState>(pipeHolder);
reed@google.com0faac1e2011-05-11 05:58:58 +00002321 return true;
2322 }
reed@google.com4d5c26d2013-01-08 16:17:50 +00002323
2324 if (evt.isType("debug-hit-test")) {
2325 fDebugHitTest = true;
2326 evt.findS32("debug-hit-test-x", &fDebugHitTestLoc.fX);
2327 evt.findS32("debug-hit-test-y", &fDebugHitTestLoc.fY);
2328 this->inval(NULL);
2329 return true;
2330 }
2331
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002332 return this->INHERITED::onEvent(evt);
2333}
2334
2335bool SampleView::onQuery(SkEvent* evt) {
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002336 if (evt->isType(is_sample_view_tag)) {
2337 return true;
2338 }
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002339 return this->INHERITED::onQuery(evt);
2340}
2341
reed@google.com64e3eb22011-05-04 14:32:04 +00002342
2343class SimplePC : public SkGPipeController {
2344public:
2345 SimplePC(SkCanvas* target);
2346 ~SimplePC();
chudy@google.com4605a3f2012-08-01 17:58:01 +00002347
reed@google.com64e3eb22011-05-04 14:32:04 +00002348 virtual void* requestBlock(size_t minRequest, size_t* actual);
2349 virtual void notifyWritten(size_t bytes);
2350
2351private:
reed@google.com961ddb02011-05-05 14:03:48 +00002352 SkGPipeReader fReader;
2353 void* fBlock;
2354 size_t fBlockSize;
2355 size_t fBytesWritten;
2356 int fAtomsWritten;
reed@google.com64e3eb22011-05-04 14:32:04 +00002357 SkGPipeReader::Status fStatus;
2358
2359 size_t fTotalWritten;
2360};
2361
2362SimplePC::SimplePC(SkCanvas* target) : fReader(target) {
2363 fBlock = NULL;
2364 fBlockSize = fBytesWritten = 0;
2365 fStatus = SkGPipeReader::kDone_Status;
2366 fTotalWritten = 0;
reed@google.com961ddb02011-05-05 14:03:48 +00002367 fAtomsWritten = 0;
scroggo@google.com74b7ffd2013-04-30 02:32:41 +00002368 fReader.setBitmapDecoder(&SkImageDecoder::DecodeMemory);
reed@google.com64e3eb22011-05-04 14:32:04 +00002369}
2370
2371SimplePC::~SimplePC() {
2372// SkASSERT(SkGPipeReader::kDone_Status == fStatus);
reed@google.com0faac1e2011-05-11 05:58:58 +00002373 if (fTotalWritten) {
scroggo@google.comb073d922012-06-08 15:35:03 +00002374 SkDebugf("--- %d bytes %d atoms, status %d\n", fTotalWritten,
2375 fAtomsWritten, fStatus);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002376#ifdef PIPE_FILE
scroggo@google.comb073d922012-06-08 15:35:03 +00002377 //File is open in append mode
2378 FILE* f = fopen(FILE_PATH, "ab");
2379 SkASSERT(f != NULL);
2380 fwrite((const char*)fBlock + fBytesWritten, 1, bytes, f);
2381 fclose(f);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002382#endif
2383#ifdef PIPE_NET
scroggo@google.comb073d922012-06-08 15:35:03 +00002384 if (fAtomsWritten > 1 && fTotalWritten > 4) { //ignore done
2385 gServer.acceptConnections();
2386 gServer.writePacket(fBlock, fTotalWritten);
2387 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002388#endif
reed@google.com0faac1e2011-05-11 05:58:58 +00002389 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002390 sk_free(fBlock);
reed@google.com64e3eb22011-05-04 14:32:04 +00002391}
2392
2393void* SimplePC::requestBlock(size_t minRequest, size_t* actual) {
2394 sk_free(fBlock);
2395
2396 fBlockSize = minRequest * 4;
2397 fBlock = sk_malloc_throw(fBlockSize);
2398 fBytesWritten = 0;
2399 *actual = fBlockSize;
2400 return fBlock;
2401}
2402
2403void SimplePC::notifyWritten(size_t bytes) {
2404 SkASSERT(fBytesWritten + bytes <= fBlockSize);
reed@google.com64e3eb22011-05-04 14:32:04 +00002405 fStatus = fReader.playback((const char*)fBlock + fBytesWritten, bytes);
2406 SkASSERT(SkGPipeReader::kError_Status != fStatus);
2407 fBytesWritten += bytes;
2408 fTotalWritten += bytes;
chudy@google.com4605a3f2012-08-01 17:58:01 +00002409
reed@google.com961ddb02011-05-05 14:03:48 +00002410 fAtomsWritten += 1;
reed@google.com64e3eb22011-05-04 14:32:04 +00002411}
2412
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002413void SampleView::draw(SkCanvas* canvas) {
scroggo@google.comb073d922012-06-08 15:35:03 +00002414 if (SkOSMenu::kOffState == fPipeState) {
2415 this->INHERITED::draw(canvas);
2416 } else {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002417 SkGPipeWriter writer;
2418 SimplePC controller(canvas);
scroggo@google.comb073d922012-06-08 15:35:03 +00002419 TiledPipeController tc(canvas->getDevice()->accessBitmap(false),
scroggo@google.com74b7ffd2013-04-30 02:32:41 +00002420 &SkImageDecoder::DecodeMemory,
scroggo@google.comb073d922012-06-08 15:35:03 +00002421 &canvas->getTotalMatrix());
2422 SkGPipeController* pc;
2423 if (SkOSMenu::kMixedState == fPipeState) {
2424 pc = &tc;
2425 } else {
2426 pc = &controller;
2427 }
reed@google.comdde09562011-05-23 12:21:05 +00002428 uint32_t flags = SkGPipeWriter::kCrossProcess_Flag;
chudy@google.com4605a3f2012-08-01 17:58:01 +00002429
scroggo@google.comb073d922012-06-08 15:35:03 +00002430 canvas = writer.startRecording(pc, flags);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002431 //Must draw before controller goes out of scope and sends data
2432 this->INHERITED::draw(canvas);
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00002433 //explicitly end recording to ensure writer is flushed before the memory
2434 //is freed in the deconstructor of the controller
2435 writer.endRecording();
reed@google.com0faac1e2011-05-11 05:58:58 +00002436 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002437}
reed@google.com4d5c26d2013-01-08 16:17:50 +00002438
2439#include "SkBounder.h"
2440
2441class DebugHitTestBounder : public SkBounder {
2442public:
2443 DebugHitTestBounder(int x, int y) {
2444 fLoc.set(x, y);
2445 }
2446
2447 virtual bool onIRect(const SkIRect& bounds) SK_OVERRIDE {
2448 if (bounds.contains(fLoc.x(), fLoc.y())) {
2449 //
2450 // Set a break-point here to see what was being drawn under
2451 // the click point (just needed a line of code to stop the debugger)
2452 //
2453 bounds.centerX();
2454 }
2455 return true;
2456 }
2457
2458private:
2459 SkIPoint fLoc;
2460 typedef SkBounder INHERITED;
2461};
2462
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002463void SampleView::onDraw(SkCanvas* canvas) {
reed@google.com81e3d7f2011-06-01 12:42:36 +00002464 this->onDrawBackground(canvas);
2465
reed@google.com4d5c26d2013-01-08 16:17:50 +00002466 DebugHitTestBounder bounder(fDebugHitTestLoc.x(), fDebugHitTestLoc.y());
2467 if (fDebugHitTest) {
2468 canvas->setBounder(&bounder);
2469 }
2470
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002471 for (int i = 0; i < fRepeatCount; i++) {
scroggo@google.com85cade02012-08-17 13:29:50 +00002472 SkAutoCanvasRestore acr(canvas, true);
2473 this->onDrawContent(canvas);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002474 }
reed@google.com4d5c26d2013-01-08 16:17:50 +00002475
2476 fDebugHitTest = false;
2477 canvas->setBounder(NULL);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002478}
2479
2480void SampleView::onDrawBackground(SkCanvas* canvas) {
reed@google.comf2183392011-04-22 14:10:48 +00002481 canvas->drawColor(fBGColor);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002482}
2483
2484///////////////////////////////////////////////////////////////////////////////
2485
reed@android.comf2b98d62010-12-20 18:26:13 +00002486template <typename T> void SkTBSort(T array[], int count) {
2487 for (int i = 1; i < count - 1; i++) {
2488 bool didSwap = false;
2489 for (int j = count - 1; j > i; --j) {
2490 if (array[j] < array[j-1]) {
2491 T tmp(array[j-1]);
2492 array[j-1] = array[j];
2493 array[j] = tmp;
2494 didSwap = true;
2495 }
2496 }
2497 if (!didSwap) {
2498 break;
2499 }
2500 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002501
reed@android.comf2b98d62010-12-20 18:26:13 +00002502 for (int k = 0; k < count - 1; k++) {
2503 SkASSERT(!(array[k+1] < array[k]));
2504 }
2505}
2506
2507#include "SkRandom.h"
2508
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +00002509static void rand_rect(SkIRect* rect, SkRandom& rand) {
reed@android.comf2b98d62010-12-20 18:26:13 +00002510 int bits = 8;
2511 int shift = 32 - bits;
2512 rect->set(rand.nextU() >> shift, rand.nextU() >> shift,
2513 rand.nextU() >> shift, rand.nextU() >> shift);
2514 rect->sort();
2515}
2516
2517static void dumpRect(const SkIRect& r) {
2518 SkDebugf(" { %d, %d, %d, %d },\n",
2519 r.fLeft, r.fTop,
2520 r.fRight, r.fBottom);
2521}
2522
2523static void test_rects(const SkIRect rect[], int count) {
2524 SkRegion rgn0, rgn1;
2525
2526 for (int i = 0; i < count; i++) {
2527 rgn0.op(rect[i], SkRegion::kUnion_Op);
2528 // dumpRect(rect[i]);
2529 }
2530 rgn1.setRects(rect, count);
2531
2532 if (rgn0 != rgn1) {
2533 SkDebugf("\n");
2534 for (int i = 0; i < count; i++) {
2535 dumpRect(rect[i]);
2536 }
2537 SkDebugf("\n");
2538 }
2539}
2540
2541static void test() {
2542 size_t i;
2543
2544 const SkIRect r0[] = {
2545 { 0, 0, 1, 1 },
2546 { 2, 2, 3, 3 },
2547 };
2548 const SkIRect r1[] = {
2549 { 0, 0, 1, 3 },
2550 { 1, 1, 2, 2 },
2551 { 2, 0, 3, 3 },
2552 };
2553 const SkIRect r2[] = {
2554 { 0, 0, 1, 2 },
2555 { 2, 1, 3, 3 },
2556 { 4, 0, 5, 1 },
2557 { 6, 0, 7, 4 },
2558 };
2559
2560 static const struct {
2561 const SkIRect* fRects;
2562 int fCount;
2563 } gRecs[] = {
2564 { r0, SK_ARRAY_COUNT(r0) },
2565 { r1, SK_ARRAY_COUNT(r1) },
2566 { r2, SK_ARRAY_COUNT(r2) },
2567 };
2568
2569 for (i = 0; i < SK_ARRAY_COUNT(gRecs); i++) {
2570 test_rects(gRecs[i].fRects, gRecs[i].fCount);
2571 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002572
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +00002573 SkRandom rand;
reed@android.comf2b98d62010-12-20 18:26:13 +00002574 for (i = 0; i < 10000; i++) {
2575 SkRegion rgn0, rgn1;
2576
2577 const int N = 8;
2578 SkIRect rect[N];
2579 for (int j = 0; j < N; j++) {
2580 rand_rect(&rect[j], rand);
2581 }
2582 test_rects(rect, N);
2583 }
2584}
2585
caryclark@google.com02939ce2012-06-06 12:09:51 +00002586// FIXME: this should be in a header
2587SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv);
senorblanco@chromium.org78b82532011-06-28 19:44:03 +00002588SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv) {
caryclark@google.com02939ce2012-06-06 12:09:51 +00002589 if (false) { // avoid bit rot, suppress warning
2590 test();
2591 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002592 return new SampleWindow(hwnd, argc, argv, NULL);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002593}
2594
caryclark@google.com02939ce2012-06-06 12:09:51 +00002595// FIXME: this should be in a header
2596void get_preferred_size(int* x, int* y, int* width, int* height);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002597void get_preferred_size(int* x, int* y, int* width, int* height) {
2598 *x = 10;
2599 *y = 50;
2600 *width = 640;
2601 *height = 480;
2602}
2603
caryclark@google.com5987f582012-10-02 18:33:14 +00002604#ifdef SK_BUILD_FOR_IOS
2605void save_args(int argc, char *argv[]) {
2606}
2607#endif
2608
caryclark@google.com02939ce2012-06-06 12:09:51 +00002609// FIXME: this should be in a header
2610void application_init();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002611void application_init() {
2612// setenv("ANDROID_ROOT", "../../../data", 0);
reed@android.come191b162009-12-18 21:33:39 +00002613#ifdef SK_BUILD_FOR_MAC
reed@android.com8a1c16f2008-12-17 15:59:43 +00002614 setenv("ANDROID_ROOT", "/android/device/data", 0);
reed@android.come191b162009-12-18 21:33:39 +00002615#endif
bsalomon@google.com2fbc7fa2011-01-05 16:34:41 +00002616 SkGraphics::Init();
2617 SkEvent::Init();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002618}
2619
caryclark@google.com02939ce2012-06-06 12:09:51 +00002620// FIXME: this should be in a header
2621void application_term();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002622void application_term() {
bsalomon@google.com2fbc7fa2011-01-05 16:34:41 +00002623 SkEvent::Term();
2624 SkGraphics::Term();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002625}