blob: 13e81d6cbb241a2408b10058fbe43f74f6050c0b [file] [log] [blame]
jvanverth629162d2015-11-08 08:07:24 -08001/*
2 * Copyright 2015 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/SkImage.h"
12#include "include/core/SkTime.h"
13#include "include/core/SkTypeface.h"
14#include "include/utils/SkRandom.h"
15#include "samplecode/Sample.h"
16#include "src/utils/SkUTF.h"
17#include "tools/timer/Timer.h"
jvanverth629162d2015-11-08 08:07:24 -080018
kkinnunen83a5d422015-11-17 09:38:05 -080019#if SK_SUPPORT_GPU
Mike Kleinc0bd9f92019-04-23 12:05:21 -050020#include "include/gpu/GrContext.h"
21#include "src/gpu/GrContextPriv.h"
kkinnunen83a5d422015-11-17 09:38:05 -080022#endif
jvanverth629162d2015-11-08 08:07:24 -080023
24SkRandom gRand;
25
26static void DrawTheText(SkCanvas* canvas, const char text[], size_t length, SkScalar x, SkScalar y,
Mike Reed12a6d452018-12-21 22:22:31 -050027 const SkFont& font, const SkPaint& paint) {
28 SkFont f(font);
29 f.setSubpixel(true);
Ben Wagner51e15a62019-05-07 15:38:46 -040030 canvas->drawSimpleText(text, length, SkTextEncoding::kUTF8, x, y, f, paint);
jvanverth629162d2015-11-08 08:07:24 -080031}
32
33// This sample demonstrates the cache behavior of bitmap vs. distance field text
34// It renders variously sized text with an animated scale and rotation.
35// Specifically one should:
36// use 'D' to toggle between bitmap and distance field fonts
37// use '2' to toggle between scaling the image by 2x
38// -- this feature boosts the rendering out of the small point-size
39// SDF-text special case (which falls back to bitmap fonts for small points)
40
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040041class AnimatedTextView : public Sample {
jvanverth629162d2015-11-08 08:07:24 -080042public:
43 AnimatedTextView() : fScale(1.0f), fScaleInc(0.1f), fRotation(0.0f), fSizeScale(1) {
44 fCurrentTime = 0;
45 fTimer.start();
46 memset(fTimes, 0, sizeof(fTimes));
47 }
48
49protected:
Hal Canary8a027312019-07-03 10:55:44 -040050 SkString name() override { return SkString("AnimatedText"); }
jvanverth629162d2015-11-08 08:07:24 -080051
Hal Canary6cc65e12019-07-03 15:53:04 -040052 bool onChar(SkUnichar uni) override {
jvanverth629162d2015-11-08 08:07:24 -080053 if ('2' == uni) {
54 if (fSizeScale == 2) {
55 fSizeScale = 1;
56 } else {
57 fSizeScale = 2;
58 }
59 return true;
60 }
Hal Canary6cc65e12019-07-03 15:53:04 -040061 return false;
jvanverth629162d2015-11-08 08:07:24 -080062 }
63
64 void onDrawContent(SkCanvas* canvas) override {
Mike Reed12a6d452018-12-21 22:22:31 -050065 SkFont font(SkTypeface::MakeFromFile("/skimages/samplefont.ttf"));
66
jvanverth629162d2015-11-08 08:07:24 -080067 SkPaint paint;
jvanverth629162d2015-11-08 08:07:24 -080068 paint.setAntiAlias(true);
69 paint.setFilterQuality(kMedium_SkFilterQuality);
70
71 SkString outString("fps: ");
72 fTimer.end();
73
74 // TODO: generalize this timing code in utils
75 fTimes[fCurrentTime] = (float)(fTimer.fWall);
76 fCurrentTime = (fCurrentTime + 1) & 0x1f;
77
78 float meanTime = 0.0f;
79 for (int i = 0; i < 32; ++i) {
80 meanTime += fTimes[i];
81 }
82 meanTime /= 32.f;
83 SkScalar fps = 1000.f / meanTime;
84 outString.appendScalar(fps);
85 outString.append(" ms: ");
86 outString.appendScalar(meanTime);
87
88 SkString modeString("Text scale: ");
89 modeString.appendU32(fSizeScale);
90 modeString.append("x");
91
92 fTimer.start();
93
94 canvas->save();
95
96#if SK_SUPPORT_GPU
jvanverth629162d2015-11-08 08:07:24 -080097 GrContext* grContext = canvas->getGrContext();
98 if (grContext) {
Robert Phillipsdbaf3172019-02-06 15:12:53 -050099 sk_sp<SkImage> image = grContext->priv().testingOnly_getFontAtlasImage(
Robert Phillips0c4b7b12018-03-06 08:20:37 -0500100 GrMaskFormat::kA8_GrMaskFormat);
Robert Phillips22f4a1f2016-12-20 08:57:26 -0500101 canvas->drawImageRect(image,
102 SkRect::MakeXYWH(512.0f, 10.0f, 512.0f, 512.0f), &paint);
jvanverth629162d2015-11-08 08:07:24 -0800103 }
104#endif
105 canvas->translate(180, 180);
106 canvas->rotate(fRotation);
107 canvas->scale(fScale, fScale);
108 canvas->translate(-180, -180);
109
110 const char* text = "Hamburgefons";
111 size_t length = strlen(text);
112
113 SkScalar y = SkIntToScalar(0);
114 for (int i = 12; i <= 26; i++) {
Mike Reed12a6d452018-12-21 22:22:31 -0500115 font.setSize(SkIntToScalar(i*fSizeScale));
116 y += font.getSpacing();
117 DrawTheText(canvas, text, length, SkIntToScalar(110), y, font, paint);
jvanverth629162d2015-11-08 08:07:24 -0800118 }
119 canvas->restore();
120
Mike Reed12a6d452018-12-21 22:22:31 -0500121 font.setSize(16);
Cary Clark2a475ea2017-04-28 15:35:12 -0400122// canvas->drawString(outString, 512.f, 540.f, paint);
Hal Canary89a644b2019-01-07 09:36:09 -0500123 canvas->drawString(modeString, 768.f, 540.f, font, paint);
jvanverth629162d2015-11-08 08:07:24 -0800124 }
125
Mike Kleincd5104e2019-03-20 11:55:08 -0500126 bool onAnimate(const AnimTimer& timer) override {
halcanary9d524f22016-03-29 09:03:52 -0700127 // We add noise to the scale and rotation animations to
jvanverth629162d2015-11-08 08:07:24 -0800128 // keep the font atlas from falling into a steady state
129 fRotation += (1.0f + gRand.nextRangeF(-0.1f, 0.1f));
130 fScale += (fScaleInc + gRand.nextRangeF(-0.025f, 0.025f));
131 if (fScale >= 2.0f) {
132 fScaleInc = -0.1f;
133 } else if (fScale <= 1.0f) {
134 fScaleInc = 0.1f;
135 }
136 return true;
137 }
138
139private:
140 float fScale;
141 float fScaleInc;
142 float fRotation;
143 int fSizeScale;
144
145 WallTimer fTimer;
146 float fTimes[32];
147 int fCurrentTime;
148
149
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400150 typedef Sample INHERITED;
jvanverth629162d2015-11-08 08:07:24 -0800151};
152
153//////////////////////////////////////////////////////////////////////////////
154
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400155DEF_SAMPLE( return new AnimatedTextView(); )