blob: 48198bfdd68a2e57021f8c335cb2bd3d08eaf6a5 [file] [log] [blame]
Jim Van Verthfc4f7682018-01-25 16:26:25 -05001/*
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 Kleinc0bd9f92019-04-23 12:05:21 -05008#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 Kleinc0bd9f92019-04-23 12:05:21 -050017#include "tools/timer/Timer.h"
Jim Van Verthfc4f7682018-01-25 16:26:25 -050018
Jim Van Verthfc4f7682018-01-25 16:26:25 -050019// 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 Wagnerb2c4ea62018-08-08 11:36:17 -040021class FlutterAnimateView : public Sample {
Jim Van Verthfc4f7682018-01-25 16:26:25 -050022public:
23 FlutterAnimateView() : fCurrTime(0), fResetTime(0) {}
24
25protected:
26 void onOnceBeforeDraw() override {
27 fTypeface = SkTypeface::MakeFromFile("/skimages/samplefont.ttf");
28 initChars();
29 }
30
Hal Canary8a027312019-07-03 10:55:44 -040031 SkString name() override { return SkString("FlutterAnimate"); }
Jim Van Verthfc4f7682018-01-25 16:26:25 -050032
33 void onDrawContent(SkCanvas* canvas) override {
Hal Canary4484b8f2019-01-08 14:00:08 -050034 SkFont font(fTypeface, 50);
Jim Van Verthfc4f7682018-01-25 16:26:25 -050035 SkPaint paint;
Jim Van Verthfc4f7682018-01-25 16:26:25 -050036
37 // rough center of each glyph
38 static constexpr auto kMidX = 35;
39 static constexpr auto kMidY = 50;
40
41 canvas->clear(SK_ColorWHITE);
42 for (int i = 0; i < kNumChars; ++i) {
43 canvas->save();
44 double rot = SkScalarInterp(fChars[i].fStartRotation, fChars[i].fEndRotation,
45 fCurrTime/kDuration);
46 canvas->translate(fChars[i].fPosition.fX + kMidX, fChars[i].fPosition.fY - kMidY);
47 canvas->rotate(SkRadiansToDegrees(rot));
48 canvas->translate(-35,+50);
Hal Canary4484b8f2019-01-08 14:00:08 -050049 canvas->drawString(fChars[i].fChar, 0, 0, font, paint);
Jim Van Verthfc4f7682018-01-25 16:26:25 -050050 canvas->restore();
51 }
52 }
53
Hal Canary41248072019-07-11 16:32:53 -040054 bool onAnimate(double nanos) override {
55 fCurrTime = 1e-9 * nanos - fResetTime;
Jim Van Verthfc4f7682018-01-25 16:26:25 -050056 if (fCurrTime > kDuration) {
57 this->initChars();
Hal Canary41248072019-07-11 16:32:53 -040058 fResetTime = 1e-9 * nanos;
Jim Van Verthfc4f7682018-01-25 16:26:25 -050059 fCurrTime = 0;
60 }
61
62 return true;
63 }
64
65private:
66 void initChars() {
67 for (int i = 0; i < kNumChars; ++i) {
68 char c = fRand.nextULessThan(26) + 65;
69 fChars[i].fChar[0] = c;
70 fChars[i].fChar[1] = '\0';
71 fChars[i].fPosition = SkPoint::Make(fRand.nextF()*748 + 10, fRand.nextF()*1004 + 10);
72 fChars[i].fStartRotation = fRand.nextF();
73 fChars[i].fEndRotation = fRand.nextF() * 20 - 10;
74 }
75 }
76
Brian Salomon9fa47cc2021-10-08 18:48:26 -040077 inline static constexpr double kDuration = 5.0;
Jim Van Verthfc4f7682018-01-25 16:26:25 -050078 double fCurrTime;
79 double fResetTime;
80 SkRandom fRand;
81
82 struct AnimatedChar {
83 char fChar[2];
84 SkPoint fPosition;
85 SkScalar fStartRotation;
86 SkScalar fEndRotation;
87 };
88 sk_sp<SkTypeface> fTypeface;
Brian Salomon9fa47cc2021-10-08 18:48:26 -040089 inline static constexpr int kNumChars = 40;
Jim Van Verthfc4f7682018-01-25 16:26:25 -050090 AnimatedChar fChars[kNumChars];
91
John Stiles7571f9e2020-09-02 22:42:33 -040092 using INHERITED = Sample;
Jim Van Verthfc4f7682018-01-25 16:26:25 -050093};
94
95//////////////////////////////////////////////////////////////////////////////
96
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040097DEF_SAMPLE( return new FlutterAnimateView(); )