jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 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 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 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" |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 17 | |
kkinnunen | 83a5d42 | 2015-11-17 09:38:05 -0800 | [diff] [blame] | 18 | #if SK_SUPPORT_GPU |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 19 | #include "include/gpu/GrContext.h" |
| 20 | #include "src/gpu/GrContextPriv.h" |
kkinnunen | 83a5d42 | 2015-11-17 09:38:05 -0800 | [diff] [blame] | 21 | #endif |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 22 | |
| 23 | SkRandom gRand; |
| 24 | |
| 25 | static void DrawTheText(SkCanvas* canvas, const char text[], size_t length, SkScalar x, SkScalar y, |
Mike Reed | 12a6d45 | 2018-12-21 22:22:31 -0500 | [diff] [blame] | 26 | const SkFont& font, const SkPaint& paint) { |
| 27 | SkFont f(font); |
| 28 | f.setSubpixel(true); |
Ben Wagner | 51e15a6 | 2019-05-07 15:38:46 -0400 | [diff] [blame] | 29 | canvas->drawSimpleText(text, length, SkTextEncoding::kUTF8, x, y, f, paint); |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 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 | |
Ben Wagner | b2c4ea6 | 2018-08-08 11:36:17 -0400 | [diff] [blame] | 40 | class AnimatedTextView : public Sample { |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 41 | public: |
Ben Wagner | acf98df | 2019-07-12 12:51:44 -0400 | [diff] [blame] | 42 | AnimatedTextView() : fScale(1.0f), fScaleInc(0.1f), fRotation(0.0f), fSizeScale(1) {} |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 43 | |
| 44 | protected: |
Hal Canary | 8a02731 | 2019-07-03 10:55:44 -0400 | [diff] [blame] | 45 | SkString name() override { return SkString("AnimatedText"); } |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 46 | |
Hal Canary | 6cc65e1 | 2019-07-03 15:53:04 -0400 | [diff] [blame] | 47 | bool onChar(SkUnichar uni) override { |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 48 | if ('2' == uni) { |
| 49 | if (fSizeScale == 2) { |
| 50 | fSizeScale = 1; |
| 51 | } else { |
| 52 | fSizeScale = 2; |
| 53 | } |
| 54 | return true; |
| 55 | } |
Hal Canary | 6cc65e1 | 2019-07-03 15:53:04 -0400 | [diff] [blame] | 56 | return false; |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | void onDrawContent(SkCanvas* canvas) override { |
Mike Reed | 12a6d45 | 2018-12-21 22:22:31 -0500 | [diff] [blame] | 60 | SkFont font(SkTypeface::MakeFromFile("/skimages/samplefont.ttf")); |
| 61 | |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 62 | SkPaint paint; |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 63 | paint.setAntiAlias(true); |
| 64 | paint.setFilterQuality(kMedium_SkFilterQuality); |
| 65 | |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 66 | canvas->save(); |
| 67 | |
| 68 | #if SK_SUPPORT_GPU |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 69 | GrContext* grContext = canvas->getGrContext(); |
| 70 | if (grContext) { |
Robert Phillips | dbaf317 | 2019-02-06 15:12:53 -0500 | [diff] [blame] | 71 | sk_sp<SkImage> image = grContext->priv().testingOnly_getFontAtlasImage( |
Robert Phillips | 0c4b7b1 | 2018-03-06 08:20:37 -0500 | [diff] [blame] | 72 | GrMaskFormat::kA8_GrMaskFormat); |
Robert Phillips | 22f4a1f | 2016-12-20 08:57:26 -0500 | [diff] [blame] | 73 | canvas->drawImageRect(image, |
| 74 | SkRect::MakeXYWH(512.0f, 10.0f, 512.0f, 512.0f), &paint); |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 75 | } |
| 76 | #endif |
| 77 | canvas->translate(180, 180); |
| 78 | canvas->rotate(fRotation); |
| 79 | canvas->scale(fScale, fScale); |
| 80 | canvas->translate(-180, -180); |
| 81 | |
| 82 | const char* text = "Hamburgefons"; |
| 83 | size_t length = strlen(text); |
| 84 | |
| 85 | SkScalar y = SkIntToScalar(0); |
| 86 | for (int i = 12; i <= 26; i++) { |
Mike Reed | 12a6d45 | 2018-12-21 22:22:31 -0500 | [diff] [blame] | 87 | font.setSize(SkIntToScalar(i*fSizeScale)); |
| 88 | y += font.getSpacing(); |
| 89 | DrawTheText(canvas, text, length, SkIntToScalar(110), y, font, paint); |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 90 | } |
| 91 | canvas->restore(); |
| 92 | |
Mike Reed | 12a6d45 | 2018-12-21 22:22:31 -0500 | [diff] [blame] | 93 | font.setSize(16); |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 94 | } |
| 95 | |
Hal Canary | 4124807 | 2019-07-11 16:32:53 -0400 | [diff] [blame] | 96 | bool onAnimate(double nanos) override { |
Ben Wagner | acf98df | 2019-07-12 12:51:44 -0400 | [diff] [blame] | 97 | // TODO: use nanos |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 98 | // We add noise to the scale and rotation animations to |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 99 | // keep the font atlas from falling into a steady state |
| 100 | fRotation += (1.0f + gRand.nextRangeF(-0.1f, 0.1f)); |
| 101 | fScale += (fScaleInc + gRand.nextRangeF(-0.025f, 0.025f)); |
| 102 | if (fScale >= 2.0f) { |
| 103 | fScaleInc = -0.1f; |
| 104 | } else if (fScale <= 1.0f) { |
| 105 | fScaleInc = 0.1f; |
| 106 | } |
| 107 | return true; |
| 108 | } |
| 109 | |
| 110 | private: |
| 111 | float fScale; |
| 112 | float fScaleInc; |
| 113 | float fRotation; |
| 114 | int fSizeScale; |
| 115 | |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 116 | |
Ben Wagner | b2c4ea6 | 2018-08-08 11:36:17 -0400 | [diff] [blame] | 117 | typedef Sample INHERITED; |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | ////////////////////////////////////////////////////////////////////////////// |
| 121 | |
Ben Wagner | b2c4ea6 | 2018-08-08 11:36:17 -0400 | [diff] [blame] | 122 | DEF_SAMPLE( return new AnimatedTextView(); ) |