blob: 9af0abb59adb20bf597772e767d08c15f198be46 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
reed@android.com8a1c16f2008-12-17 15:59:43 +00008#include "SampleCode.h"
9#include "SkView.h"
10#include "SkCanvas.h"
11#include "SkGradientShader.h"
12#include "SkPath.h"
13#include "SkRegion.h"
14#include "SkShader.h"
15#include "SkUtils.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000016#include "Sk1DPathEffect.h"
17#include "SkCornerPathEffect.h"
18#include "SkPathMeasure.h"
19#include "SkRandom.h"
20#include "SkColorPriv.h"
21#include "SkPixelXorXfermode.h"
22
reed@android.com8a1c16f2008-12-17 15:59:43 +000023#define CORNER_RADIUS 12
24static SkScalar gPhase;
25
26static const int gXY[] = {
27 4, 0, 0, -4, 8, -4, 12, 0, 8, 4, 0, 4
28};
29
reed@android.comf2b98d62010-12-20 18:26:13 +000030static SkPathEffect* make_pe(int flags) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000031 if (flags == 1)
commit-bot@chromium.org0a2bf902014-02-20 20:40:19 +000032 return SkCornerPathEffect::Create(SkIntToScalar(CORNER_RADIUS));
reed@android.com8a1c16f2008-12-17 15:59:43 +000033
34 SkPath path;
35 path.moveTo(SkIntToScalar(gXY[0]), SkIntToScalar(gXY[1]));
36 for (unsigned i = 2; i < SK_ARRAY_COUNT(gXY); i += 2)
37 path.lineTo(SkIntToScalar(gXY[i]), SkIntToScalar(gXY[i+1]));
38 path.close();
39 path.offset(SkIntToScalar(-6), 0);
40
commit-bot@chromium.org0a2bf902014-02-20 20:40:19 +000041 SkPathEffect* outer = SkPath1DPathEffect::Create(path, SkIntToScalar(12), gPhase, SkPath1DPathEffect::kRotate_Style);
rmistry@google.comae933ce2012-08-23 18:19:56 +000042
reed@android.com8a1c16f2008-12-17 15:59:43 +000043 if (flags == 2)
44 return outer;
45
commit-bot@chromium.org0a2bf902014-02-20 20:40:19 +000046 SkPathEffect* inner = SkCornerPathEffect::Create(SkIntToScalar(CORNER_RADIUS));
reed@android.com8a1c16f2008-12-17 15:59:43 +000047
commit-bot@chromium.org0a2bf902014-02-20 20:40:19 +000048 SkPathEffect* pe = SkComposePathEffect::Create(outer, inner);
reed@android.com8a1c16f2008-12-17 15:59:43 +000049 outer->unref();
50 inner->unref();
51 return pe;
52}
53
reed@android.comf2b98d62010-12-20 18:26:13 +000054static SkPathEffect* make_warp_pe() {
reed@android.com8a1c16f2008-12-17 15:59:43 +000055 SkPath path;
56 path.moveTo(SkIntToScalar(gXY[0]), SkIntToScalar(gXY[1]));
57 for (unsigned i = 2; i < SK_ARRAY_COUNT(gXY); i += 2)
58 path.lineTo(SkIntToScalar(gXY[i]), SkIntToScalar(gXY[i+1]));
59 path.close();
60 path.offset(SkIntToScalar(-6), 0);
61
commit-bot@chromium.org0a2bf902014-02-20 20:40:19 +000062 SkPathEffect* outer = SkPath1DPathEffect::Create(
63 path, SkIntToScalar(12), gPhase, SkPath1DPathEffect::kMorph_Style);
64 SkPathEffect* inner = SkCornerPathEffect::Create(SkIntToScalar(CORNER_RADIUS));
reed@android.com8a1c16f2008-12-17 15:59:43 +000065
commit-bot@chromium.org0a2bf902014-02-20 20:40:19 +000066 SkPathEffect* pe = SkComposePathEffect::Create(outer, inner);
reed@android.com8a1c16f2008-12-17 15:59:43 +000067 outer->unref();
68 inner->unref();
69 return pe;
70}
71
72///////////////////////////////////////////////////////////
73
74#include "SkColorFilter.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000075#include "SkLayerRasterizer.h"
76
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000077class TestRastBuilder : public SkLayerRasterizer::Builder {
reed@android.com8a1c16f2008-12-17 15:59:43 +000078public:
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000079 TestRastBuilder() {
reed@android.com8a1c16f2008-12-17 15:59:43 +000080 SkPaint paint;
81 paint.setAntiAlias(true);
82
rmistry@google.comae933ce2012-08-23 18:19:56 +000083#if 0
reed@android.com8a1c16f2008-12-17 15:59:43 +000084 paint.setStyle(SkPaint::kStroke_Style);
85 paint.setStrokeWidth(SK_Scalar1*4);
86 this->addLayer(paint);
rmistry@google.comae933ce2012-08-23 18:19:56 +000087
reed@android.com8a1c16f2008-12-17 15:59:43 +000088 paint.setStrokeWidth(SK_Scalar1*1);
reed@android.com048522d2009-06-23 12:19:41 +000089 paint.setXfermode(SkXfermode::kClear_Mode);
reed@android.com8a1c16f2008-12-17 15:59:43 +000090 this->addLayer(paint);
91#else
92 paint.setAlpha(0x66);
93 this->addLayer(paint, SkIntToScalar(4), SkIntToScalar(4));
rmistry@google.comae933ce2012-08-23 18:19:56 +000094
reed@android.com8a1c16f2008-12-17 15:59:43 +000095 paint.setAlpha(0xFF);
96 this->addLayer(paint);
97#endif
98 }
99};
100
reed@google.come5ff4392011-06-01 11:59:08 +0000101class PathEffectView : public SampleView {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000102 SkPath fPath;
103 SkPoint fClickPt;
104public:
rmistry@google.comae933ce2012-08-23 18:19:56 +0000105 PathEffectView() {
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000106 SkRandom rand;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000107 int steps = 20;
reed@android.com92a50ea2009-08-14 19:27:37 +0000108 SkScalar dist = SkIntToScalar(400);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000109 SkScalar x = SkIntToScalar(20);
110 SkScalar y = SkIntToScalar(50);
rmistry@google.comae933ce2012-08-23 18:19:56 +0000111
reed@android.com8a1c16f2008-12-17 15:59:43 +0000112 fPath.moveTo(x, y);
reed@android.comf2b98d62010-12-20 18:26:13 +0000113 for (int i = 0; i < steps; i++) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000114 x += dist/steps;
reed@android.com92a50ea2009-08-14 19:27:37 +0000115 SkScalar tmpY = y + SkIntToScalar(rand.nextS() % 25);
116 if (i == steps/2) {
117 fPath.moveTo(x, tmpY);
118 } else {
119 fPath.lineTo(x, tmpY);
120 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000121 }
122
reed@android.com92a50ea2009-08-14 19:27:37 +0000123 {
124 SkRect oval;
125 oval.set(SkIntToScalar(20), SkIntToScalar(30),
126 SkIntToScalar(100), SkIntToScalar(60));
127 oval.offset(x, 0);
128 fPath.addRoundRect(oval, SkIntToScalar(8), SkIntToScalar(8));
129 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000130
reed@android.com8a1c16f2008-12-17 15:59:43 +0000131 fClickPt.set(SkIntToScalar(200), SkIntToScalar(200));
rmistry@google.comae933ce2012-08-23 18:19:56 +0000132
reed@google.come5ff4392011-06-01 11:59:08 +0000133 this->setBGColor(0xFFDDDDDD);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000134 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000135
reed@android.com8a1c16f2008-12-17 15:59:43 +0000136protected:
137 // overrides from SkEventSink
reed@android.comf2b98d62010-12-20 18:26:13 +0000138 virtual bool onQuery(SkEvent* evt) {
139 if (SampleCode::TitleQ(*evt)) {
140 SampleCode::TitleR(evt, "PathEffects");
141 return true;
142 }
143 return this->INHERITED::onQuery(evt);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000144 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000145
reed@google.come5ff4392011-06-01 11:59:08 +0000146 virtual void onDrawContent(SkCanvas* canvas) {
reed@android.comf2b98d62010-12-20 18:26:13 +0000147 gPhase -= SampleCode::GetAnimSecondsDelta() * 40;
reed@android.com671cd652009-05-22 20:44:12 +0000148 this->inval(NULL);
rmistry@google.comae933ce2012-08-23 18:19:56 +0000149
reed@android.com8a1c16f2008-12-17 15:59:43 +0000150 SkPaint paint;
rmistry@google.comae933ce2012-08-23 18:19:56 +0000151
reed@android.comf2b98d62010-12-20 18:26:13 +0000152#if 0
reed@android.com8a1c16f2008-12-17 15:59:43 +0000153 paint.setAntiAlias(true);
154 paint.setStyle(SkPaint::kStroke_Style);
155 paint.setStrokeWidth(SkIntToScalar(5));
156 canvas->drawPath(fPath, paint);
157 paint.setStrokeWidth(0);
rmistry@google.comae933ce2012-08-23 18:19:56 +0000158
reed@android.com92a50ea2009-08-14 19:27:37 +0000159 paint.setColor(SK_ColorWHITE);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000160 paint.setPathEffect(make_pe(1))->unref();
161 canvas->drawPath(fPath, paint);
reed@android.comf2b98d62010-12-20 18:26:13 +0000162#endif
rmistry@google.comae933ce2012-08-23 18:19:56 +0000163
reed@android.com8a1c16f2008-12-17 15:59:43 +0000164 canvas->translate(0, SkIntToScalar(50));
rmistry@google.comae933ce2012-08-23 18:19:56 +0000165
reed@android.com8a1c16f2008-12-17 15:59:43 +0000166 paint.setColor(SK_ColorBLUE);
167 paint.setPathEffect(make_pe(2))->unref();
168 canvas->drawPath(fPath, paint);
rmistry@google.comae933ce2012-08-23 18:19:56 +0000169
reed@android.com8a1c16f2008-12-17 15:59:43 +0000170 canvas->translate(0, SkIntToScalar(50));
rmistry@google.comae933ce2012-08-23 18:19:56 +0000171
reed@android.com8a1c16f2008-12-17 15:59:43 +0000172 paint.setARGB(0xFF, 0, 0xBB, 0);
173 paint.setPathEffect(make_pe(3))->unref();
174 canvas->drawPath(fPath, paint);
rmistry@google.comae933ce2012-08-23 18:19:56 +0000175
reed@android.com8a1c16f2008-12-17 15:59:43 +0000176 canvas->translate(0, SkIntToScalar(50));
177
178 paint.setARGB(0xFF, 0, 0, 0);
179 paint.setPathEffect(make_warp_pe())->unref();
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +0000180 TestRastBuilder testRastBuilder;
181 paint.setRasterizer(testRastBuilder.detachRasterizer())->unref();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000182 canvas->drawPath(fPath, paint);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000183 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000184
reed@android.com8a1c16f2008-12-17 15:59:43 +0000185private:
reed@google.come5ff4392011-06-01 11:59:08 +0000186 typedef SampleView INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000187};
188
189//////////////////////////////////////////////////////////////////////////////
190
191static SkView* MyFactory() { return new PathEffectView; }
192static SkViewRegister reg(MyFactory);