1 /*
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 */
7
8 #include "include/core/SkBitmap.h"
9 #include "include/core/SkCanvas.h"
10 #include "include/core/SkColorFilter.h"
11 #include "include/core/SkColorPriv.h"
12 #include "include/core/SkFont.h"
13 #include "include/core/SkGraphics.h"
14 #include "include/core/SkPath.h"
15 #include "include/core/SkRegion.h"
16 #include "include/core/SkShader.h"
17 #include "include/core/SkTime.h"
18 #include "include/core/SkTypeface.h"
19 #include "include/effects/SkGradientShader.h"
20 #include "samplecode/Sample.h"
21 #include "src/utils/SkUTF.h"
22
23 #include "include/core/SkStream.h"
24 #include "src/core/SkOSFile.h"
25
26 static constexpr int INT_SIZE = 64;
27 static constexpr float SCALAR_SIZE = (float)INT_SIZE;
28
make_bitmap(SkBitmap * bitmap)29 static void make_bitmap(SkBitmap* bitmap) {
30 bitmap->allocN32Pixels(INT_SIZE, INT_SIZE);
31 SkCanvas canvas(*bitmap);
32
33 canvas.drawColor(SK_ColorRED);
34 SkPaint paint;
35 paint.setAntiAlias(true);
36 const SkPoint pts[] = { { 0, 0 }, { SCALAR_SIZE, SCALAR_SIZE } };
37 const SkColor colors[] = { SK_ColorWHITE, SK_ColorBLUE };
38 paint.setShader(SkGradientShader::MakeLinear(pts, colors, nullptr, 2, SkTileMode::kClamp));
39 canvas.drawCircle(SCALAR_SIZE/2, SCALAR_SIZE/2, SCALAR_SIZE/2, paint);
40 }
41
bounce(SkScalar * value,SkScalar * delta,SkScalar min,SkScalar max)42 static void bounce(SkScalar* value, SkScalar* delta, SkScalar min, SkScalar max) {
43 *value += *delta;
44 if (*value < min) {
45 *value = min;
46 *delta = - *delta;
47 } else if (*value > max) {
48 *value = max;
49 *delta = - *delta;
50 }
51 }
52
bounce_pt(SkPoint * pt,SkVector * vec,const SkRect & limit)53 static void bounce_pt(SkPoint* pt, SkVector* vec, const SkRect& limit) {
54 bounce(&pt->fX, &vec->fX, limit.fLeft, limit.fRight);
55 bounce(&pt->fY, &vec->fY, limit.fTop, limit.fBottom);
56 }
57
58 class BitmapRectView : public Sample {
59 SkPoint fSrcPt = {0, 0};
60 SkPoint fSrcVec = {0.866025f, 0.5f};
61
62 SkRect fSrcLimit = {-SCALAR_SIZE/4, -SCALAR_SIZE/4,
63 SCALAR_SIZE*5/4, SCALAR_SIZE*5/4};
64 SkRect fDstR[2] = {{10, 100, 260, 400}, {322.5, 100, 572.5, 400}};
65 SkBitmap fBitmap;
66
name()67 SkString name() override { return SkString("BitmapRect"); }
68
onOnceBeforeDraw()69 void onOnceBeforeDraw() override {
70 this->setBGColor(SK_ColorGRAY);
71 make_bitmap(&fBitmap);
72 }
73
onDrawContent(SkCanvas * canvas)74 void onDrawContent(SkCanvas* canvas) override {
75 SkRect srcR = {fSrcPt.fX - 16, fSrcPt.fY - 16,
76 fSrcPt.fX + 16, fSrcPt.fY + 16};
77
78 SkPaint paint(SkColors::kYellow);
79 paint.setStyle(SkPaint::kStroke_Style);
80
81 canvas->translate(20, 20);
82
83 canvas->drawBitmap(fBitmap, 0, 0, &paint);
84 canvas->drawRect(srcR, paint);
85
86 for (int i = 0; i < 2; ++i) {
87 paint.setFilterQuality(1 == i ? kLow_SkFilterQuality : kNone_SkFilterQuality);
88 canvas->drawBitmapRect(fBitmap, srcR, fDstR[i], &paint,
89 SkCanvas::kStrict_SrcRectConstraint);
90 canvas->drawRect(fDstR[i], paint);
91 }
92 }
93
onAnimate(double nanos)94 bool onAnimate(double nanos) override {
95 bounce_pt(&fSrcPt, &fSrcVec, fSrcLimit);
96 return true;
97 }
98 };
99
100 static constexpr int BIG_H = 120;
101
make_big_bitmap(SkBitmap * bm)102 static void make_big_bitmap(SkBitmap* bm) {
103 static const char gText[] =
104 "We the people, in order to form a more perfect union, establish justice,"
105 " ensure domestic tranquility, provide for the common defense, promote the"
106 " general welfare and ensure the blessings of liberty to ourselves and our"
107 " posterity, do ordain and establish this constitution for the United"
108 " States of America.";
109
110 SkFont font;
111 font.setSize(SkIntToScalar(BIG_H));
112
113 const int BIG_W = SkScalarRoundToInt(font.measureText(gText, strlen(gText), SkTextEncoding::kUTF8));
114
115 bm->allocN32Pixels(BIG_W, BIG_H);
116 bm->eraseColor(SK_ColorWHITE);
117
118 SkCanvas canvas(*bm);
119
120 canvas.drawSimpleText(gText, strlen(gText), SkTextEncoding::kUTF8, 0, font.getSize()*4/5, font, SkPaint());
121 }
122
123 class BitmapRectView2 : public Sample {
124 SkBitmap fBitmap;
125 SkRect fSrcR = {0, 0, 3 * BIG_H, BIG_H};
126 SkRect fLimitR;
127 SkScalar fDX = 1;
128 SkRect fDstR[2] = {{20, 20, 620, 220}, {20, 270, 620, 470}};
129
name()130 SkString name() override { return SkString("BigBitmapRect"); }
131
onOnceBeforeDraw()132 void onOnceBeforeDraw() override {
133 this->setBGColor(SK_ColorGRAY);
134 make_big_bitmap(&fBitmap);
135 fLimitR = SkRect::Make(fBitmap.dimensions());
136 }
137
onDrawContent(SkCanvas * canvas)138 void onDrawContent(SkCanvas* canvas) override {
139 SkPaint paint;
140 paint.setStyle(SkPaint::kStroke_Style);
141 paint.setColor(SK_ColorYELLOW);
142
143 for (int i = 0; i < 2; ++i) {
144 paint.setFilterQuality(1 == i ? kLow_SkFilterQuality : kNone_SkFilterQuality);
145 canvas->drawBitmapRect(fBitmap, fSrcR, fDstR[i], &paint,
146 SkCanvas::kStrict_SrcRectConstraint);
147 canvas->drawRect(fDstR[i], paint);
148 }
149 }
150
onAnimate(double nanos)151 bool onAnimate(double nanos) override {
152 SkScalar width = fSrcR.width();
153 bounce(&fSrcR.fLeft, &fDX, fLimitR.fLeft, fLimitR.fRight - width);
154 fSrcR.fRight = fSrcR.fLeft + width;
155 return true;
156 }
157 };
158
159 DEF_SAMPLE( return new BitmapRectView(); )
160 DEF_SAMPLE( return new BitmapRectView2(); )
161