blob: e3e53e0e702520a07a70abadee47ac6277f2ccec [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
19#if SK_SUPPORT_GPU
Mike Kleinc0bd9f92019-04-23 12:05:21 -050020#include "include/gpu/GrContext.h"
Jim Van Verthfc4f7682018-01-25 16:26:25 -050021#endif
22
23// Create an animation of a bunch of letters that rotate in place. This is intended to stress
24// the glyph atlas and test that we don't see corruption or bad slowdowns.
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040025class FlutterAnimateView : public Sample {
Jim Van Verthfc4f7682018-01-25 16:26:25 -050026public:
27 FlutterAnimateView() : fCurrTime(0), fResetTime(0) {}
28
29protected:
30 void onOnceBeforeDraw() override {
31 fTypeface = SkTypeface::MakeFromFile("/skimages/samplefont.ttf");
32 initChars();
33 }
34
Hal Canary8a027312019-07-03 10:55:44 -040035 SkString name() override { return SkString("FlutterAnimate"); }
Jim Van Verthfc4f7682018-01-25 16:26:25 -050036
37 void onDrawContent(SkCanvas* canvas) override {
Hal Canary4484b8f2019-01-08 14:00:08 -050038 SkFont font(fTypeface, 50);
Jim Van Verthfc4f7682018-01-25 16:26:25 -050039 SkPaint paint;
Jim Van Verthfc4f7682018-01-25 16:26:25 -050040 paint.setFilterQuality(kMedium_SkFilterQuality);
Jim Van Verthfc4f7682018-01-25 16:26:25 -050041
42 // rough center of each glyph
43 static constexpr auto kMidX = 35;
44 static constexpr auto kMidY = 50;
45
46 canvas->clear(SK_ColorWHITE);
47 for (int i = 0; i < kNumChars; ++i) {
48 canvas->save();
49 double rot = SkScalarInterp(fChars[i].fStartRotation, fChars[i].fEndRotation,
50 fCurrTime/kDuration);
51 canvas->translate(fChars[i].fPosition.fX + kMidX, fChars[i].fPosition.fY - kMidY);
52 canvas->rotate(SkRadiansToDegrees(rot));
53 canvas->translate(-35,+50);
Hal Canary4484b8f2019-01-08 14:00:08 -050054 canvas->drawString(fChars[i].fChar, 0, 0, font, paint);
Jim Van Verthfc4f7682018-01-25 16:26:25 -050055 canvas->restore();
56 }
57 }
58
Hal Canary41248072019-07-11 16:32:53 -040059 bool onAnimate(double nanos) override {
60 fCurrTime = 1e-9 * nanos - fResetTime;
Jim Van Verthfc4f7682018-01-25 16:26:25 -050061 if (fCurrTime > kDuration) {
62 this->initChars();
Hal Canary41248072019-07-11 16:32:53 -040063 fResetTime = 1e-9 * nanos;
Jim Van Verthfc4f7682018-01-25 16:26:25 -050064 fCurrTime = 0;
65 }
66
67 return true;
68 }
69
70private:
71 void initChars() {
72 for (int i = 0; i < kNumChars; ++i) {
73 char c = fRand.nextULessThan(26) + 65;
74 fChars[i].fChar[0] = c;
75 fChars[i].fChar[1] = '\0';
76 fChars[i].fPosition = SkPoint::Make(fRand.nextF()*748 + 10, fRand.nextF()*1004 + 10);
77 fChars[i].fStartRotation = fRand.nextF();
78 fChars[i].fEndRotation = fRand.nextF() * 20 - 10;
79 }
80 }
81
82 static constexpr double kDuration = 5.0;
83 double fCurrTime;
84 double fResetTime;
85 SkRandom fRand;
86
87 struct AnimatedChar {
88 char fChar[2];
89 SkPoint fPosition;
90 SkScalar fStartRotation;
91 SkScalar fEndRotation;
92 };
93 sk_sp<SkTypeface> fTypeface;
94 static constexpr int kNumChars = 40;
95 AnimatedChar fChars[kNumChars];
96
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040097 typedef Sample INHERITED;
Jim Van Verthfc4f7682018-01-25 16:26:25 -050098};
99
100//////////////////////////////////////////////////////////////////////////////
101
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400102DEF_SAMPLE( return new FlutterAnimateView(); )