Jim Van Verth | fc4f768 | 2018-01-25 16:26:25 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018 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 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "include/core/SkCanvas.h" |
| 9 | #include "include/core/SkColorFilter.h" |
| 10 | #include "include/core/SkColorPriv.h" |
| 11 | #include "include/core/SkFont.h" |
| 12 | #include "include/core/SkImage.h" |
| 13 | #include "include/core/SkTime.h" |
| 14 | #include "include/core/SkTypeface.h" |
| 15 | #include "include/utils/SkRandom.h" |
| 16 | #include "samplecode/Sample.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 17 | #include "tools/timer/Timer.h" |
Jim Van Verth | fc4f768 | 2018-01-25 16:26:25 -0500 | [diff] [blame] | 18 | |
Jim Van Verth | fc4f768 | 2018-01-25 16:26:25 -0500 | [diff] [blame] | 19 | // Create an animation of a bunch of letters that rotate in place. This is intended to stress |
| 20 | // the glyph atlas and test that we don't see corruption or bad slowdowns. |
Ben Wagner | b2c4ea6 | 2018-08-08 11:36:17 -0400 | [diff] [blame] | 21 | class FlutterAnimateView : public Sample { |
Jim Van Verth | fc4f768 | 2018-01-25 16:26:25 -0500 | [diff] [blame] | 22 | public: |
| 23 | FlutterAnimateView() : fCurrTime(0), fResetTime(0) {} |
| 24 | |
| 25 | protected: |
| 26 | void onOnceBeforeDraw() override { |
| 27 | fTypeface = SkTypeface::MakeFromFile("/skimages/samplefont.ttf"); |
| 28 | initChars(); |
| 29 | } |
| 30 | |
Hal Canary | 8a02731 | 2019-07-03 10:55:44 -0400 | [diff] [blame] | 31 | SkString name() override { return SkString("FlutterAnimate"); } |
Jim Van Verth | fc4f768 | 2018-01-25 16:26:25 -0500 | [diff] [blame] | 32 | |
| 33 | void onDrawContent(SkCanvas* canvas) override { |
Hal Canary | 4484b8f | 2019-01-08 14:00:08 -0500 | [diff] [blame] | 34 | SkFont font(fTypeface, 50); |
Jim Van Verth | fc4f768 | 2018-01-25 16:26:25 -0500 | [diff] [blame] | 35 | SkPaint paint; |
Jim Van Verth | fc4f768 | 2018-01-25 16:26:25 -0500 | [diff] [blame] | 36 | paint.setFilterQuality(kMedium_SkFilterQuality); |
Jim Van Verth | fc4f768 | 2018-01-25 16:26:25 -0500 | [diff] [blame] | 37 | |
| 38 | // rough center of each glyph |
| 39 | static constexpr auto kMidX = 35; |
| 40 | static constexpr auto kMidY = 50; |
| 41 | |
| 42 | canvas->clear(SK_ColorWHITE); |
| 43 | for (int i = 0; i < kNumChars; ++i) { |
| 44 | canvas->save(); |
| 45 | double rot = SkScalarInterp(fChars[i].fStartRotation, fChars[i].fEndRotation, |
| 46 | fCurrTime/kDuration); |
| 47 | canvas->translate(fChars[i].fPosition.fX + kMidX, fChars[i].fPosition.fY - kMidY); |
| 48 | canvas->rotate(SkRadiansToDegrees(rot)); |
| 49 | canvas->translate(-35,+50); |
Hal Canary | 4484b8f | 2019-01-08 14:00:08 -0500 | [diff] [blame] | 50 | canvas->drawString(fChars[i].fChar, 0, 0, font, paint); |
Jim Van Verth | fc4f768 | 2018-01-25 16:26:25 -0500 | [diff] [blame] | 51 | canvas->restore(); |
| 52 | } |
| 53 | } |
| 54 | |
Hal Canary | 4124807 | 2019-07-11 16:32:53 -0400 | [diff] [blame] | 55 | bool onAnimate(double nanos) override { |
| 56 | fCurrTime = 1e-9 * nanos - fResetTime; |
Jim Van Verth | fc4f768 | 2018-01-25 16:26:25 -0500 | [diff] [blame] | 57 | if (fCurrTime > kDuration) { |
| 58 | this->initChars(); |
Hal Canary | 4124807 | 2019-07-11 16:32:53 -0400 | [diff] [blame] | 59 | fResetTime = 1e-9 * nanos; |
Jim Van Verth | fc4f768 | 2018-01-25 16:26:25 -0500 | [diff] [blame] | 60 | fCurrTime = 0; |
| 61 | } |
| 62 | |
| 63 | return true; |
| 64 | } |
| 65 | |
| 66 | private: |
| 67 | void initChars() { |
| 68 | for (int i = 0; i < kNumChars; ++i) { |
| 69 | char c = fRand.nextULessThan(26) + 65; |
| 70 | fChars[i].fChar[0] = c; |
| 71 | fChars[i].fChar[1] = '\0'; |
| 72 | fChars[i].fPosition = SkPoint::Make(fRand.nextF()*748 + 10, fRand.nextF()*1004 + 10); |
| 73 | fChars[i].fStartRotation = fRand.nextF(); |
| 74 | fChars[i].fEndRotation = fRand.nextF() * 20 - 10; |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | static constexpr double kDuration = 5.0; |
| 79 | double fCurrTime; |
| 80 | double fResetTime; |
| 81 | SkRandom fRand; |
| 82 | |
| 83 | struct AnimatedChar { |
| 84 | char fChar[2]; |
| 85 | SkPoint fPosition; |
| 86 | SkScalar fStartRotation; |
| 87 | SkScalar fEndRotation; |
| 88 | }; |
| 89 | sk_sp<SkTypeface> fTypeface; |
| 90 | static constexpr int kNumChars = 40; |
| 91 | AnimatedChar fChars[kNumChars]; |
| 92 | |
Ben Wagner | b2c4ea6 | 2018-08-08 11:36:17 -0400 | [diff] [blame] | 93 | typedef Sample INHERITED; |
Jim Van Verth | fc4f768 | 2018-01-25 16:26:25 -0500 | [diff] [blame] | 94 | }; |
| 95 | |
| 96 | ////////////////////////////////////////////////////////////////////////////// |
| 97 | |
Ben Wagner | b2c4ea6 | 2018-08-08 11:36:17 -0400 | [diff] [blame] | 98 | DEF_SAMPLE( return new FlutterAnimateView(); ) |