blob: 24c3efff79b6066f7720700d337eb93e311e9aeb [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 */
reed76113a92015-02-02 12:55:02 -08007
reed@android.com8a1c16f2008-12-17 15:59:43 +00008#include "SampleCode.h"
reed76113a92015-02-02 12:55:02 -08009#include "SkAnimTimer.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#include "SkView.h"
11#include "SkCanvas.h"
12#include "SkGradientShader.h"
13#include "SkGraphics.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000014#include "SkPath.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000015#include "SkRegion.h"
16#include "SkShader.h"
17#include "SkUtils.h"
18#include "SkXfermode.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000019#include "SkColorPriv.h"
20#include "SkColorFilter.h"
21#include "SkTime.h"
22#include "SkTypeface.h"
23
reed@android.com8a1c16f2008-12-17 15:59:43 +000024#include "SkOSFile.h"
25#include "SkStream.h"
26
reed@google.com33535f32012-09-25 15:37:50 +000027#define INT_SIZE 64
28#define SCALAR_SIZE SkIntToScalar(INT_SIZE)
reed@google.com3cec4d72011-07-06 13:59:47 +000029
reed@google.com33535f32012-09-25 15:37:50 +000030static void make_bitmap(SkBitmap* bitmap) {
commit-bot@chromium.orga8c18312014-02-17 02:55:57 +000031 bitmap->allocN32Pixels(INT_SIZE, INT_SIZE);
reed@google.com33535f32012-09-25 15:37:50 +000032 SkCanvas canvas(*bitmap);
reed@google.com3cec4d72011-07-06 13:59:47 +000033
reed@android.comfead49e2009-10-15 18:51:46 +000034 canvas.drawColor(SK_ColorRED);
35 SkPaint paint;
36 paint.setAntiAlias(true);
reed@google.com33535f32012-09-25 15:37:50 +000037 const SkPoint pts[] = { { 0, 0 }, { SCALAR_SIZE, SCALAR_SIZE } };
reed@android.comfead49e2009-10-15 18:51:46 +000038 const SkColor colors[] = { SK_ColorWHITE, SK_ColorBLUE };
reed8a21c9f2016-03-08 18:50:00 -080039 paint.setShader(SkGradientShader::MakeLinear(pts, colors, nullptr, 2,
40 SkShader::kClamp_TileMode));
reed@google.com33535f32012-09-25 15:37:50 +000041 canvas.drawCircle(SCALAR_SIZE/2, SCALAR_SIZE/2, SCALAR_SIZE/2, paint);
42}
43
44static SkPoint unit_vec(int degrees) {
45 SkScalar rad = SkDegreesToRadians(SkIntToScalar(degrees));
46 SkScalar s, c;
47 s = SkScalarSinCos(rad, &c);
48 return SkPoint::Make(c, s);
49}
50
51static void bounce(SkScalar* value, SkScalar* delta, SkScalar min, SkScalar max) {
52 *value += *delta;
53 if (*value < min) {
54 *value = min;
55 *delta = - *delta;
56 } else if (*value > max) {
57 *value = max;
58 *delta = - *delta;
59 }
60}
61
62static void bounce_pt(SkPoint* pt, SkVector* vec, const SkRect& limit) {
63 bounce(&pt->fX, &vec->fX, limit.fLeft, limit.fRight);
64 bounce(&pt->fY, &vec->fY, limit.fTop, limit.fBottom);
reed@android.comfead49e2009-10-15 18:51:46 +000065}
reed@android.com8a1c16f2008-12-17 15:59:43 +000066
reed@google.comf2183392011-04-22 14:10:48 +000067class BitmapRectView : public SampleView {
reed@google.com33535f32012-09-25 15:37:50 +000068 SkPoint fSrcPts[2];
69 SkPoint fSrcVec[2];
70 SkRect fSrcLimit;
71 SkRect fDstR[2];
72
73 void bounce() {
74 bounce_pt(&fSrcPts[0], &fSrcVec[0], fSrcLimit);
75 bounce_pt(&fSrcPts[1], &fSrcVec[1], fSrcLimit);
76 }
77
reed76113a92015-02-02 12:55:02 -080078 void resetBounce() {
79 fSrcPts[0].set(0, 0);
80 fSrcPts[1].set(SCALAR_SIZE, SCALAR_SIZE);
halcanary9d524f22016-03-29 09:03:52 -070081
reed76113a92015-02-02 12:55:02 -080082 fSrcVec[0] = unit_vec(30);
83 fSrcVec[1] = unit_vec(107);
84 }
85
reed@android.com8a1c16f2008-12-17 15:59:43 +000086public:
rmistry@google.comae933ce2012-08-23 18:19:56 +000087 BitmapRectView() {
reed@google.comf2183392011-04-22 14:10:48 +000088 this->setBGColor(SK_ColorGRAY);
reed@google.com33535f32012-09-25 15:37:50 +000089
reed76113a92015-02-02 12:55:02 -080090 this->resetBounce();
reed@google.com33535f32012-09-25 15:37:50 +000091
92 fSrcLimit.set(-SCALAR_SIZE/4, -SCALAR_SIZE/4,
93 SCALAR_SIZE*5/4, SCALAR_SIZE*5/4);
94
95 fDstR[0] = SkRect::MakeXYWH(SkIntToScalar(10), SkIntToScalar(100),
96 SkIntToScalar(250), SkIntToScalar(300));
97 fDstR[1] = fDstR[0];
98 fDstR[1].offset(fDstR[0].width() * 5/4, 0);
99
100 fSrcPts[0].set(32, 32);
101 fSrcPts[1].set(90, 90);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000102 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000103
reed@android.com8a1c16f2008-12-17 15:59:43 +0000104protected:
mtklein36352bf2015-03-25 18:17:31 -0700105 bool onQuery(SkEvent* evt) override {
reed@android.comfead49e2009-10-15 18:51:46 +0000106 if (SampleCode::TitleQ(*evt)) {
107 SampleCode::TitleR(evt, "BitmapRect");
reed@android.com8a1c16f2008-12-17 15:59:43 +0000108 return true;
109 }
110 return this->INHERITED::onQuery(evt);
111 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000112
mtklein36352bf2015-03-25 18:17:31 -0700113 void onDrawContent(SkCanvas* canvas) override {
reed@google.com33535f32012-09-25 15:37:50 +0000114 SkRect srcR;
115 srcR.set(fSrcPts[0], fSrcPts[1]);
116 srcR = SkRect::MakeXYWH(fSrcPts[0].fX, fSrcPts[0].fY, 32, 32);
117 srcR.offset(-srcR.width()/2, -srcR.height()/2);
reed@android.comfead49e2009-10-15 18:51:46 +0000118
reed@android.com8a1c16f2008-12-17 15:59:43 +0000119 SkPaint paint;
reed@android.comfead49e2009-10-15 18:51:46 +0000120 paint.setStyle(SkPaint::kStroke_Style);
reed@google.com33535f32012-09-25 15:37:50 +0000121 paint.setColor(SK_ColorYELLOW);
reed@android.comfead49e2009-10-15 18:51:46 +0000122
reed@google.com3cec4d72011-07-06 13:59:47 +0000123 SkBitmap bitmap;
reed@google.com33535f32012-09-25 15:37:50 +0000124 make_bitmap(&bitmap);
reed@google.com3cec4d72011-07-06 13:59:47 +0000125
reed@google.com33535f32012-09-25 15:37:50 +0000126 canvas->translate(20, 20);
reed@android.comfead49e2009-10-15 18:51:46 +0000127
reed@google.com33535f32012-09-25 15:37:50 +0000128 canvas->drawBitmap(bitmap, 0, 0, &paint);
129 canvas->drawRect(srcR, paint);
reed@android.comf2b98d62010-12-20 18:26:13 +0000130
reed@google.com33535f32012-09-25 15:37:50 +0000131 for (int i = 0; i < 2; ++i) {
reed93a12152015-03-16 10:08:34 -0700132 paint.setFilterQuality(1 == i ? kLow_SkFilterQuality : kNone_SkFilterQuality);
reede47829b2015-08-06 10:02:53 -0700133 canvas->drawBitmapRect(bitmap, srcR, fDstR[i], &paint,
reed84984ef2015-07-17 07:09:43 -0700134 SkCanvas::kStrict_SrcRectConstraint);
reed@google.com33535f32012-09-25 15:37:50 +0000135 canvas->drawRect(fDstR[i], paint);
reed@android.comfead49e2009-10-15 18:51:46 +0000136 }
reed76113a92015-02-02 12:55:02 -0800137 }
reed@google.com33535f32012-09-25 15:37:50 +0000138
mtklein36352bf2015-03-25 18:17:31 -0700139 bool onAnimate(const SkAnimTimer& timer) override {
reed76113a92015-02-02 12:55:02 -0800140 if (timer.isStopped()) {
141 this->resetBounce();
142 } else if (timer.isRunning()) {
143 this->bounce();
144 }
145 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000146 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000147
reed@android.com8a1c16f2008-12-17 15:59:43 +0000148private:
reed76113a92015-02-02 12:55:02 -0800149 typedef SampleView INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000150};
151
152//////////////////////////////////////////////////////////////////////////////
153
reed@google.com33535f32012-09-25 15:37:50 +0000154static void make_big_bitmap(SkBitmap* bm) {
155 static const char gText[] =
156 "We the people, in order to form a more perfect union, establish justice,"
157 " ensure domestic tranquility, provide for the common defense, promote the"
158 " general welfare and ensure the blessings of liberty to ourselves and our"
159 " posterity, do ordain and establish this constitution for the United"
160 " States of America.";
161
162 const int BIG_H = 120;
163
164 SkPaint paint;
165 paint.setAntiAlias(true);
166 paint.setTextSize(SkIntToScalar(BIG_H));
167
168 const int BIG_W = SkScalarRoundToInt(paint.measureText(gText, strlen(gText)));
169
commit-bot@chromium.orga8c18312014-02-17 02:55:57 +0000170 bm->allocN32Pixels(BIG_W, BIG_H);
reed@google.com33535f32012-09-25 15:37:50 +0000171 bm->eraseColor(SK_ColorWHITE);
172
173 SkCanvas canvas(*bm);
174
175 canvas.drawText(gText, strlen(gText), 0, paint.getTextSize()*4/5, paint);
176}
177
178class BitmapRectView2 : public SampleView {
179 SkBitmap fBitmap;
180
181 SkRect fSrcR;
182 SkRect fLimitR;
183 SkScalar fDX;
184 SkRect fDstR[2];
skia.committer@gmail.com7064e9a2012-09-26 02:01:18 +0000185
reed@google.com33535f32012-09-25 15:37:50 +0000186 void bounceMe() {
187 SkScalar width = fSrcR.width();
188 bounce(&fSrcR.fLeft, &fDX, fLimitR.fLeft, fLimitR.fRight - width);
189 fSrcR.fRight = fSrcR.fLeft + width;
190 }
skia.committer@gmail.com7064e9a2012-09-26 02:01:18 +0000191
reed76113a92015-02-02 12:55:02 -0800192 void resetBounce() {
193 fSrcR.iset(0, 0, fBitmap.height() * 3, fBitmap.height());
194 fDX = SK_Scalar1;
195 }
196
reed@google.com33535f32012-09-25 15:37:50 +0000197public:
198 BitmapRectView2() {
199 make_big_bitmap(&fBitmap);
200
201 this->setBGColor(SK_ColorGRAY);
202
reed76113a92015-02-02 12:55:02 -0800203 this->resetBounce();
reed@google.com33535f32012-09-25 15:37:50 +0000204
reed76113a92015-02-02 12:55:02 -0800205 fLimitR.iset(0, 0, fBitmap.width(), fBitmap.height());
reed@google.com33535f32012-09-25 15:37:50 +0000206
reed76113a92015-02-02 12:55:02 -0800207 fDstR[0] = SkRect::MakeXYWH(20, 20, 600, 200);
reed@google.com33535f32012-09-25 15:37:50 +0000208 fDstR[1] = fDstR[0];
209 fDstR[1].offset(0, fDstR[0].height() * 5/4);
210 }
skia.committer@gmail.com7064e9a2012-09-26 02:01:18 +0000211
reed@google.com33535f32012-09-25 15:37:50 +0000212protected:
mtklein36352bf2015-03-25 18:17:31 -0700213 bool onQuery(SkEvent* evt) override {
reed@google.com33535f32012-09-25 15:37:50 +0000214 if (SampleCode::TitleQ(*evt)) {
215 SampleCode::TitleR(evt, "BigBitmapRect");
216 return true;
217 }
218 return this->INHERITED::onQuery(evt);
219 }
skia.committer@gmail.com7064e9a2012-09-26 02:01:18 +0000220
mtklein36352bf2015-03-25 18:17:31 -0700221 void onDrawContent(SkCanvas* canvas) override {
reed@google.com33535f32012-09-25 15:37:50 +0000222 SkPaint paint;
223 paint.setStyle(SkPaint::kStroke_Style);
224 paint.setColor(SK_ColorYELLOW);
225
226 for (int i = 0; i < 2; ++i) {
reed93a12152015-03-16 10:08:34 -0700227 paint.setFilterQuality(1 == i ? kLow_SkFilterQuality : kNone_SkFilterQuality);
reede47829b2015-08-06 10:02:53 -0700228 canvas->drawBitmapRect(fBitmap, fSrcR, fDstR[i], &paint,
reed84984ef2015-07-17 07:09:43 -0700229 SkCanvas::kStrict_SrcRectConstraint);
reed@google.com33535f32012-09-25 15:37:50 +0000230 canvas->drawRect(fDstR[i], paint);
231 }
reed76113a92015-02-02 12:55:02 -0800232 }
skia.committer@gmail.com7064e9a2012-09-26 02:01:18 +0000233
mtklein36352bf2015-03-25 18:17:31 -0700234 bool onAnimate(const SkAnimTimer& timer) override {
reed76113a92015-02-02 12:55:02 -0800235 if (timer.isStopped()) {
236 this->resetBounce();
237 } else if (timer.isRunning()) {
238 this->bounceMe();
239 }
240 return true;
reed@google.com33535f32012-09-25 15:37:50 +0000241 }
skia.committer@gmail.com7064e9a2012-09-26 02:01:18 +0000242
reed@google.com33535f32012-09-25 15:37:50 +0000243private:
reed76113a92015-02-02 12:55:02 -0800244 typedef SampleView INHERITED;
reed@google.com33535f32012-09-25 15:37:50 +0000245};
246
247//////////////////////////////////////////////////////////////////////////////
248
249static SkView* F0() { return new BitmapRectView; }
250static SkView* F1() { return new BitmapRectView2; }
251static SkViewRegister gR0(F0);
252static SkViewRegister gR1(F1);