blob: 8e7ed0e099daada64900e3dfacf50e299c48a42a [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"
jvanverth629162d2015-11-08 08:07:24 -080017
kkinnunen83a5d422015-11-17 09:38:05 -080018#if SK_SUPPORT_GPU
Mike Kleinc0bd9f92019-04-23 12:05:21 -050019#include "include/gpu/GrContext.h"
20#include "src/gpu/GrContextPriv.h"
kkinnunen83a5d422015-11-17 09:38:05 -080021#endif
jvanverth629162d2015-11-08 08:07:24 -080022
23SkRandom gRand;
24
25static void DrawTheText(SkCanvas* canvas, const char text[], size_t length, SkScalar x, SkScalar y,
Mike Reed12a6d452018-12-21 22:22:31 -050026 const SkFont& font, const SkPaint& paint) {
27 SkFont f(font);
28 f.setSubpixel(true);
Ben Wagner51e15a62019-05-07 15:38:46 -040029 canvas->drawSimpleText(text, length, SkTextEncoding::kUTF8, x, y, f, paint);
jvanverth629162d2015-11-08 08:07:24 -080030}
31
32// This sample demonstrates the cache behavior of bitmap vs. distance field text
33// It renders variously sized text with an animated scale and rotation.
34// Specifically one should:
35// use 'D' to toggle between bitmap and distance field fonts
36// use '2' to toggle between scaling the image by 2x
37// -- this feature boosts the rendering out of the small point-size
38// SDF-text special case (which falls back to bitmap fonts for small points)
39
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040040class AnimatedTextView : public Sample {
Hal Canaryd7639af2019-07-17 09:08:11 -040041 float fScale = 1;
42 float fScaleInc = 0.1f;
43 float fRotation = 0;
44 int fSizeScale = 1;
jvanverth629162d2015-11-08 08:07:24 -080045
Hal Canary8a027312019-07-03 10:55:44 -040046 SkString name() override { return SkString("AnimatedText"); }
jvanverth629162d2015-11-08 08:07:24 -080047
Hal Canary6cc65e12019-07-03 15:53:04 -040048 bool onChar(SkUnichar uni) override {
jvanverth629162d2015-11-08 08:07:24 -080049 if ('2' == uni) {
50 if (fSizeScale == 2) {
51 fSizeScale = 1;
52 } else {
53 fSizeScale = 2;
54 }
55 return true;
56 }
Hal Canary6cc65e12019-07-03 15:53:04 -040057 return false;
jvanverth629162d2015-11-08 08:07:24 -080058 }
59
60 void onDrawContent(SkCanvas* canvas) override {
Mike Reed12a6d452018-12-21 22:22:31 -050061 SkFont font(SkTypeface::MakeFromFile("/skimages/samplefont.ttf"));
62
jvanverth629162d2015-11-08 08:07:24 -080063 SkPaint paint;
jvanverth629162d2015-11-08 08:07:24 -080064 paint.setAntiAlias(true);
65 paint.setFilterQuality(kMedium_SkFilterQuality);
66
jvanverth629162d2015-11-08 08:07:24 -080067 canvas->save();
68
69#if SK_SUPPORT_GPU
jvanverth629162d2015-11-08 08:07:24 -080070 GrContext* grContext = canvas->getGrContext();
71 if (grContext) {
Robert Phillipsdbaf3172019-02-06 15:12:53 -050072 sk_sp<SkImage> image = grContext->priv().testingOnly_getFontAtlasImage(
Robert Phillips0c4b7b12018-03-06 08:20:37 -050073 GrMaskFormat::kA8_GrMaskFormat);
Robert Phillips22f4a1f2016-12-20 08:57:26 -050074 canvas->drawImageRect(image,
75 SkRect::MakeXYWH(512.0f, 10.0f, 512.0f, 512.0f), &paint);
jvanverth629162d2015-11-08 08:07:24 -080076 }
77#endif
78 canvas->translate(180, 180);
79 canvas->rotate(fRotation);
80 canvas->scale(fScale, fScale);
81 canvas->translate(-180, -180);
82
83 const char* text = "Hamburgefons";
84 size_t length = strlen(text);
85
86 SkScalar y = SkIntToScalar(0);
87 for (int i = 12; i <= 26; i++) {
Mike Reed12a6d452018-12-21 22:22:31 -050088 font.setSize(SkIntToScalar(i*fSizeScale));
89 y += font.getSpacing();
90 DrawTheText(canvas, text, length, SkIntToScalar(110), y, font, paint);
jvanverth629162d2015-11-08 08:07:24 -080091 }
92 canvas->restore();
93
Mike Reed12a6d452018-12-21 22:22:31 -050094 font.setSize(16);
jvanverth629162d2015-11-08 08:07:24 -080095 }
96
Hal Canary41248072019-07-11 16:32:53 -040097 bool onAnimate(double nanos) override {
Ben Wagneracf98df2019-07-12 12:51:44 -040098 // TODO: use nanos
halcanary9d524f22016-03-29 09:03:52 -070099 // We add noise to the scale and rotation animations to
jvanverth629162d2015-11-08 08:07:24 -0800100 // keep the font atlas from falling into a steady state
101 fRotation += (1.0f + gRand.nextRangeF(-0.1f, 0.1f));
102 fScale += (fScaleInc + gRand.nextRangeF(-0.025f, 0.025f));
103 if (fScale >= 2.0f) {
104 fScaleInc = -0.1f;
105 } else if (fScale <= 1.0f) {
106 fScaleInc = 0.1f;
107 }
108 return true;
109 }
jvanverth629162d2015-11-08 08:07:24 -0800110};
111
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400112DEF_SAMPLE( return new AnimatedTextView(); )