blob: 87ca4872e1cee89e0aac2259bafeaf6c25872dc2 [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 "SkDevice.h"
12#include "SkPaint.h"
13
14// ensure that we don't accidentally screw up the bounds when the oval is
15// fractional, and the impl computes the center and radii, and uses them to
16// reconstruct the edges of the circle.
17// see bug# 1504910
sugoi@google.com93c7ee32013-03-12 14:36:57 +000018static void test_circlebounds(SkCanvas*) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000019#ifdef SK_SCALAR_IS_FLOAT
reed@google.com261b8e22011-04-14 17:53:24 +000020 SkRect r = { 1.39999998f, 1, 21.3999996f, 21 };
reed@android.com8a1c16f2008-12-17 15:59:43 +000021 SkPath p;
22 p.addOval(r);
reed@android.comd252db02009-04-01 18:31:44 +000023 SkASSERT(r == p.getBounds());
reed@android.com8a1c16f2008-12-17 15:59:43 +000024#endif
25}
26
mike@reedtribe.org5fd92432011-05-05 01:59:48 +000027class CircleView : public SampleView {
reed@android.com8a1c16f2008-12-17 15:59:43 +000028public:
reed@android.comf2b98d62010-12-20 18:26:13 +000029 static const SkScalar ANIM_DX;
30 static const SkScalar ANIM_DY;
31 static const SkScalar ANIM_RAD;
reed@android.com8a1c16f2008-12-17 15:59:43 +000032 SkScalar fDX, fDY, fRAD;
33
34 CircleView() {
35 fDX = fDY = fRAD = 0;
reed@android.com7a99eb12009-07-16 01:13:14 +000036 fN = 3;
reed@android.com8a1c16f2008-12-17 15:59:43 +000037 }
rmistry@google.comae933ce2012-08-23 18:19:56 +000038
reed@android.com8a1c16f2008-12-17 15:59:43 +000039protected:
40 // overrides from SkEventSink
41 virtual bool onQuery(SkEvent* evt) {
42 if (SampleCode::TitleQ(*evt)) {
43 SampleCode::TitleR(evt, "Circles");
44 return true;
45 }
46 return this->INHERITED::onQuery(evt);
47 }
rmistry@google.comae933ce2012-08-23 18:19:56 +000048
reed@android.com8a1c16f2008-12-17 15:59:43 +000049 void circle(SkCanvas* canvas, int width, bool aa) {
50 SkPaint paint;
rmistry@google.comae933ce2012-08-23 18:19:56 +000051
reed@android.com8a1c16f2008-12-17 15:59:43 +000052 paint.setAntiAlias(aa);
53 if (width < 0) {
54 paint.setStyle(SkPaint::kFill_Style);
55 } else {
56 paint.setStyle(SkPaint::kStroke_Style);
57 paint.setStrokeWidth(SkIntToScalar(width));
58 }
59 canvas->drawCircle(0, 0, SkIntToScalar(9) + fRAD, paint);
caryclark@google.com02939ce2012-06-06 12:09:51 +000060 if (false) { // avoid bit rot, suppress warning
61 test_circlebounds(canvas);
62 }
reed@android.com8a1c16f2008-12-17 15:59:43 +000063 }
rmistry@google.comae933ce2012-08-23 18:19:56 +000064
reed@android.com8a1c16f2008-12-17 15:59:43 +000065 void drawSix(SkCanvas* canvas, SkScalar dx, SkScalar dy) {
66 for (int width = -1; width <= 1; width++) {
67 canvas->save();
68 circle(canvas, width, false);
69 canvas->translate(0, dy);
70 circle(canvas, width, true);
71 canvas->restore();
72 canvas->translate(dx, 0);
73 }
74 }
rmistry@google.comae933ce2012-08-23 18:19:56 +000075
reed@android.com8a1c16f2008-12-17 15:59:43 +000076 static void blowup(SkCanvas* canvas, const SkIRect& src, const SkRect& dst) {
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000077 SkBaseDevice* device = canvas->getDevice();
reed@android.com8a1c16f2008-12-17 15:59:43 +000078 const SkBitmap& bm = device->accessBitmap(false);
79 canvas->drawBitmapRect(bm, &src, dst, NULL);
80 }
rmistry@google.comae933ce2012-08-23 18:19:56 +000081
reed@android.com7a99eb12009-07-16 01:13:14 +000082 static void make_poly(SkPath* path, int n) {
83 if (n <= 0) {
84 return;
85 }
86 path->incReserve(n + 1);
87 path->moveTo(SK_Scalar1, 0);
88 SkScalar step = SK_ScalarPI * 2 / n;
89 SkScalar angle = 0;
90 for (int i = 1; i < n; i++) {
91 angle += step;
92 SkScalar c, s = SkScalarSinCos(angle, &c);
93 path->lineTo(c, s);
94 }
95 path->close();
96 }
rmistry@google.comae933ce2012-08-23 18:19:56 +000097
reed@android.com7a99eb12009-07-16 01:13:14 +000098 static void rotate(SkCanvas* canvas, SkScalar angle, SkScalar px, SkScalar py) {
99 canvas->translate(-px, -py);
100 canvas->rotate(angle);
101 canvas->translate(px, py);
102 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000103
mike@reedtribe.org5fd92432011-05-05 01:59:48 +0000104 virtual void onDrawContent(SkCanvas* canvas) {
reed@android.com7a99eb12009-07-16 01:13:14 +0000105 SkPaint paint;
106 paint.setAntiAlias(true);
107 paint.setStyle(SkPaint::kStroke_Style);
108// canvas->drawCircle(250, 250, 220, paint);
109 SkMatrix matrix;
110 matrix.setScale(SkIntToScalar(100), SkIntToScalar(100));
111 matrix.postTranslate(SkIntToScalar(200), SkIntToScalar(200));
112 canvas->concat(matrix);
113 for (int n = 3; n < 20; n++) {
114 SkPath path;
115 make_poly(&path, n);
116 SkAutoCanvasRestore acr(canvas, true);
117 canvas->rotate(SkIntToScalar(10) * (n - 3));
118 canvas->translate(-SK_Scalar1, 0);
119 canvas->drawPath(path, paint);
120 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000121 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000122
reed@android.com8a1c16f2008-12-17 15:59:43 +0000123private:
reed@android.com7a99eb12009-07-16 01:13:14 +0000124 int fN;
mike@reedtribe.org5fd92432011-05-05 01:59:48 +0000125 typedef SampleView INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000126};
127
reed@android.comf2b98d62010-12-20 18:26:13 +0000128const SkScalar CircleView::ANIM_DX(SK_Scalar1 / 67);
129const SkScalar CircleView::ANIM_DY(SK_Scalar1 / 29);
130const SkScalar CircleView::ANIM_RAD(SK_Scalar1 / 19);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000131
132//////////////////////////////////////////////////////////////////////////////
133
134static SkView* MyFactory() { return new CircleView; }
135static SkViewRegister reg(MyFactory);