epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 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 | */ |
bungeman | d3ebb48 | 2015-08-05 13:57:49 -0700 | [diff] [blame] | 7 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 8 | #include "SampleCode.h" |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 9 | #include "SkCanvas.h" |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 10 | #include "SkPaint.h" |
bungeman | d3ebb48 | 2015-08-05 13:57:49 -0700 | [diff] [blame] | 11 | #include "SkPath.h" |
| 12 | #include "SkView.h" |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 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.com | 93c7ee3 | 2013-03-12 14:36:57 +0000 | [diff] [blame] | 18 | static void test_circlebounds(SkCanvas*) { |
reed@google.com | 261b8e2 | 2011-04-14 17:53:24 +0000 | [diff] [blame] | 19 | SkRect r = { 1.39999998f, 1, 21.3999996f, 21 }; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 20 | SkPath p; |
| 21 | p.addOval(r); |
reed@android.com | d252db0 | 2009-04-01 18:31:44 +0000 | [diff] [blame] | 22 | SkASSERT(r == p.getBounds()); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 23 | } |
| 24 | |
mike@reedtribe.org | 5fd9243 | 2011-05-05 01:59:48 +0000 | [diff] [blame] | 25 | class CircleView : public SampleView { |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 26 | public: |
reed@android.com | f2b98d6 | 2010-12-20 18:26:13 +0000 | [diff] [blame] | 27 | static const SkScalar ANIM_DX; |
| 28 | static const SkScalar ANIM_DY; |
| 29 | static const SkScalar ANIM_RAD; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 30 | SkScalar fDX, fDY, fRAD; |
| 31 | |
| 32 | CircleView() { |
| 33 | fDX = fDY = fRAD = 0; |
reed@android.com | 7a99eb1 | 2009-07-16 01:13:14 +0000 | [diff] [blame] | 34 | fN = 3; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 35 | } |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 36 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 37 | protected: |
| 38 | // overrides from SkEventSink |
| 39 | virtual bool onQuery(SkEvent* evt) { |
| 40 | if (SampleCode::TitleQ(*evt)) { |
| 41 | SampleCode::TitleR(evt, "Circles"); |
| 42 | return true; |
| 43 | } |
| 44 | return this->INHERITED::onQuery(evt); |
| 45 | } |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 46 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 47 | void circle(SkCanvas* canvas, int width, bool aa) { |
| 48 | SkPaint paint; |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 49 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 50 | paint.setAntiAlias(aa); |
| 51 | if (width < 0) { |
| 52 | paint.setStyle(SkPaint::kFill_Style); |
| 53 | } else { |
| 54 | paint.setStyle(SkPaint::kStroke_Style); |
| 55 | paint.setStrokeWidth(SkIntToScalar(width)); |
| 56 | } |
| 57 | canvas->drawCircle(0, 0, SkIntToScalar(9) + fRAD, paint); |
caryclark@google.com | 02939ce | 2012-06-06 12:09:51 +0000 | [diff] [blame] | 58 | if (false) { // avoid bit rot, suppress warning |
| 59 | test_circlebounds(canvas); |
| 60 | } |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 61 | } |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 62 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 63 | void drawSix(SkCanvas* canvas, SkScalar dx, SkScalar dy) { |
| 64 | for (int width = -1; width <= 1; width++) { |
| 65 | canvas->save(); |
| 66 | circle(canvas, width, false); |
| 67 | canvas->translate(0, dy); |
| 68 | circle(canvas, width, true); |
| 69 | canvas->restore(); |
| 70 | canvas->translate(dx, 0); |
| 71 | } |
| 72 | } |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 73 | |
reed@android.com | 7a99eb1 | 2009-07-16 01:13:14 +0000 | [diff] [blame] | 74 | static void make_poly(SkPath* path, int n) { |
| 75 | if (n <= 0) { |
| 76 | return; |
| 77 | } |
| 78 | path->incReserve(n + 1); |
| 79 | path->moveTo(SK_Scalar1, 0); |
| 80 | SkScalar step = SK_ScalarPI * 2 / n; |
| 81 | SkScalar angle = 0; |
| 82 | for (int i = 1; i < n; i++) { |
| 83 | angle += step; |
| 84 | SkScalar c, s = SkScalarSinCos(angle, &c); |
| 85 | path->lineTo(c, s); |
| 86 | } |
| 87 | path->close(); |
| 88 | } |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 89 | |
mike@reedtribe.org | 5fd9243 | 2011-05-05 01:59:48 +0000 | [diff] [blame] | 90 | virtual void onDrawContent(SkCanvas* canvas) { |
reed@android.com | 7a99eb1 | 2009-07-16 01:13:14 +0000 | [diff] [blame] | 91 | SkPaint paint; |
| 92 | paint.setAntiAlias(true); |
| 93 | paint.setStyle(SkPaint::kStroke_Style); |
reed@android.com | 7a99eb1 | 2009-07-16 01:13:14 +0000 | [diff] [blame] | 94 | SkMatrix matrix; |
| 95 | matrix.setScale(SkIntToScalar(100), SkIntToScalar(100)); |
| 96 | matrix.postTranslate(SkIntToScalar(200), SkIntToScalar(200)); |
| 97 | canvas->concat(matrix); |
| 98 | for (int n = 3; n < 20; n++) { |
| 99 | SkPath path; |
| 100 | make_poly(&path, n); |
| 101 | SkAutoCanvasRestore acr(canvas, true); |
| 102 | canvas->rotate(SkIntToScalar(10) * (n - 3)); |
| 103 | canvas->translate(-SK_Scalar1, 0); |
| 104 | canvas->drawPath(path, paint); |
| 105 | } |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 106 | } |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 107 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 108 | private: |
reed@android.com | 7a99eb1 | 2009-07-16 01:13:14 +0000 | [diff] [blame] | 109 | int fN; |
mike@reedtribe.org | 5fd9243 | 2011-05-05 01:59:48 +0000 | [diff] [blame] | 110 | typedef SampleView INHERITED; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 111 | }; |
| 112 | |
reed@android.com | f2b98d6 | 2010-12-20 18:26:13 +0000 | [diff] [blame] | 113 | const SkScalar CircleView::ANIM_DX(SK_Scalar1 / 67); |
| 114 | const SkScalar CircleView::ANIM_DY(SK_Scalar1 / 29); |
| 115 | const SkScalar CircleView::ANIM_RAD(SK_Scalar1 / 19); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 116 | |
| 117 | ////////////////////////////////////////////////////////////////////////////// |
| 118 | |
| 119 | static SkView* MyFactory() { return new CircleView; } |
| 120 | static SkViewRegister reg(MyFactory); |