blob: 696be8db0818dc4b59f87b727664f8d289a5b2ef [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:
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040050 bool onQuery(Sample::Event* evt) override {
51 if (Sample::TitleQ(*evt)) {
52 Sample::TitleR(evt, "AnimatedText");
jvanverth629162d2015-11-08 08:07:24 -080053 return true;
54 }
55
56 SkUnichar uni;
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040057 if (Sample::CharQ(*evt, &uni)) {
jvanverth629162d2015-11-08 08:07:24 -080058 if ('2' == uni) {
59 if (fSizeScale == 2) {
60 fSizeScale = 1;
61 } else {
62 fSizeScale = 2;
63 }
64 return true;
65 }
66 }
67 return this->INHERITED::onQuery(evt);
68 }
69
70 void onDrawContent(SkCanvas* canvas) override {
Mike Reed12a6d452018-12-21 22:22:31 -050071 SkFont font(SkTypeface::MakeFromFile("/skimages/samplefont.ttf"));
72
jvanverth629162d2015-11-08 08:07:24 -080073 SkPaint paint;
jvanverth629162d2015-11-08 08:07:24 -080074 paint.setAntiAlias(true);
75 paint.setFilterQuality(kMedium_SkFilterQuality);
76
77 SkString outString("fps: ");
78 fTimer.end();
79
80 // TODO: generalize this timing code in utils
81 fTimes[fCurrentTime] = (float)(fTimer.fWall);
82 fCurrentTime = (fCurrentTime + 1) & 0x1f;
83
84 float meanTime = 0.0f;
85 for (int i = 0; i < 32; ++i) {
86 meanTime += fTimes[i];
87 }
88 meanTime /= 32.f;
89 SkScalar fps = 1000.f / meanTime;
90 outString.appendScalar(fps);
91 outString.append(" ms: ");
92 outString.appendScalar(meanTime);
93
94 SkString modeString("Text scale: ");
95 modeString.appendU32(fSizeScale);
96 modeString.append("x");
97
98 fTimer.start();
99
100 canvas->save();
101
102#if SK_SUPPORT_GPU
jvanverth629162d2015-11-08 08:07:24 -0800103 GrContext* grContext = canvas->getGrContext();
104 if (grContext) {
Robert Phillipsdbaf3172019-02-06 15:12:53 -0500105 sk_sp<SkImage> image = grContext->priv().testingOnly_getFontAtlasImage(
Robert Phillips0c4b7b12018-03-06 08:20:37 -0500106 GrMaskFormat::kA8_GrMaskFormat);
Robert Phillips22f4a1f2016-12-20 08:57:26 -0500107 canvas->drawImageRect(image,
108 SkRect::MakeXYWH(512.0f, 10.0f, 512.0f, 512.0f), &paint);
jvanverth629162d2015-11-08 08:07:24 -0800109 }
110#endif
111 canvas->translate(180, 180);
112 canvas->rotate(fRotation);
113 canvas->scale(fScale, fScale);
114 canvas->translate(-180, -180);
115
116 const char* text = "Hamburgefons";
117 size_t length = strlen(text);
118
119 SkScalar y = SkIntToScalar(0);
120 for (int i = 12; i <= 26; i++) {
Mike Reed12a6d452018-12-21 22:22:31 -0500121 font.setSize(SkIntToScalar(i*fSizeScale));
122 y += font.getSpacing();
123 DrawTheText(canvas, text, length, SkIntToScalar(110), y, font, paint);
jvanverth629162d2015-11-08 08:07:24 -0800124 }
125 canvas->restore();
126
Mike Reed12a6d452018-12-21 22:22:31 -0500127 font.setSize(16);
Cary Clark2a475ea2017-04-28 15:35:12 -0400128// canvas->drawString(outString, 512.f, 540.f, paint);
Hal Canary89a644b2019-01-07 09:36:09 -0500129 canvas->drawString(modeString, 768.f, 540.f, font, paint);
jvanverth629162d2015-11-08 08:07:24 -0800130 }
131
Mike Kleincd5104e2019-03-20 11:55:08 -0500132 bool onAnimate(const AnimTimer& timer) override {
halcanary9d524f22016-03-29 09:03:52 -0700133 // We add noise to the scale and rotation animations to
jvanverth629162d2015-11-08 08:07:24 -0800134 // keep the font atlas from falling into a steady state
135 fRotation += (1.0f + gRand.nextRangeF(-0.1f, 0.1f));
136 fScale += (fScaleInc + gRand.nextRangeF(-0.025f, 0.025f));
137 if (fScale >= 2.0f) {
138 fScaleInc = -0.1f;
139 } else if (fScale <= 1.0f) {
140 fScaleInc = 0.1f;
141 }
142 return true;
143 }
144
145private:
146 float fScale;
147 float fScaleInc;
148 float fRotation;
149 int fSizeScale;
150
151 WallTimer fTimer;
152 float fTimes[32];
153 int fCurrentTime;
154
155
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400156 typedef Sample INHERITED;
jvanverth629162d2015-11-08 08:07:24 -0800157};
158
159//////////////////////////////////////////////////////////////////////////////
160
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400161DEF_SAMPLE( return new AnimatedTextView(); )