• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
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 
8 #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 
18 #if SK_SUPPORT_GPU
19 #include "include/gpu/GrContext.h"
20 #include "src/gpu/GrContextPriv.h"
21 #endif
22 
23 SkRandom gRand;
24 
DrawTheText(SkCanvas * canvas,const char text[],size_t length,SkScalar x,SkScalar y,const SkFont & font,const SkPaint & paint)25 static void DrawTheText(SkCanvas* canvas, const char text[], size_t length, SkScalar x, SkScalar y,
26                         const SkFont& font, const SkPaint& paint) {
27     SkFont f(font);
28     f.setSubpixel(true);
29     canvas->drawSimpleText(text, length, SkTextEncoding::kUTF8, x, y, f, paint);
30 }
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 
40 class AnimatedTextView : public Sample {
41     float fScale = 1;
42     float fScaleInc = 0.1f;
43     float fRotation = 0;
44     int   fSizeScale = 1;
45 
name()46     SkString name() override { return SkString("AnimatedText"); }
47 
onChar(SkUnichar uni)48     bool onChar(SkUnichar uni) override {
49             if ('2' == uni) {
50                 if (fSizeScale == 2) {
51                     fSizeScale = 1;
52                 } else {
53                     fSizeScale = 2;
54                 }
55                 return true;
56             }
57             return false;
58     }
59 
onDrawContent(SkCanvas * canvas)60     void onDrawContent(SkCanvas* canvas) override {
61         SkFont font(SkTypeface::MakeFromFile("/skimages/samplefont.ttf"));
62 
63         SkPaint paint;
64         paint.setAntiAlias(true);
65         paint.setFilterQuality(kMedium_SkFilterQuality);
66 
67         canvas->save();
68 
69 #if SK_SUPPORT_GPU
70         GrContext* grContext = canvas->getGrContext();
71         if (grContext) {
72             sk_sp<SkImage> image = grContext->priv().testingOnly_getFontAtlasImage(
73                                                                 GrMaskFormat::kA8_GrMaskFormat);
74             canvas->drawImageRect(image,
75                                   SkRect::MakeXYWH(512.0f, 10.0f, 512.0f, 512.0f), &paint);
76         }
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++) {
88             font.setSize(SkIntToScalar(i*fSizeScale));
89             y += font.getSpacing();
90             DrawTheText(canvas, text, length, SkIntToScalar(110), y, font, paint);
91         }
92         canvas->restore();
93 
94         font.setSize(16);
95     }
96 
onAnimate(double nanos)97     bool onAnimate(double nanos) override {
98         // TODO: use nanos
99         // We add noise to the scale and rotation animations to
100         // 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     }
110 };
111 
112 DEF_SAMPLE( return new AnimatedTextView(); )
113