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 { |
Hal Canary | d7639af | 2019-07-17 09:08:11 -0400 | [diff] [blame] | 41 | float fScale = 1; |
| 42 | float fScaleInc = 0.1f; |
| 43 | float fRotation = 0; |
| 44 | int fSizeScale = 1; |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 45 | |
Hal Canary | 8a02731 | 2019-07-03 10:55:44 -0400 | [diff] [blame] | 46 | SkString name() override { return SkString("AnimatedText"); } |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 47 | |
Hal Canary | 6cc65e1 | 2019-07-03 15:53:04 -0400 | [diff] [blame] | 48 | bool onChar(SkUnichar uni) override { |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 49 | if ('2' == uni) { |
| 50 | if (fSizeScale == 2) { |
| 51 | fSizeScale = 1; |
| 52 | } else { |
| 53 | fSizeScale = 2; |
| 54 | } |
| 55 | return true; |
| 56 | } |
Hal Canary | 6cc65e1 | 2019-07-03 15:53:04 -0400 | [diff] [blame] | 57 | return false; |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | void onDrawContent(SkCanvas* canvas) override { |
Mike Reed | 12a6d45 | 2018-12-21 22:22:31 -0500 | [diff] [blame] | 61 | SkFont font(SkTypeface::MakeFromFile("/skimages/samplefont.ttf")); |
| 62 | |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 63 | SkPaint paint; |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 64 | paint.setAntiAlias(true); |
| 65 | paint.setFilterQuality(kMedium_SkFilterQuality); |
| 66 | |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 67 | canvas->save(); |
| 68 | |
| 69 | #if SK_SUPPORT_GPU |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 70 | GrContext* grContext = canvas->getGrContext(); |
| 71 | if (grContext) { |
Robert Phillips | dbaf317 | 2019-02-06 15:12:53 -0500 | [diff] [blame] | 72 | sk_sp<SkImage> image = grContext->priv().testingOnly_getFontAtlasImage( |
Robert Phillips | 0c4b7b1 | 2018-03-06 08:20:37 -0500 | [diff] [blame] | 73 | GrMaskFormat::kA8_GrMaskFormat); |
Robert Phillips | 22f4a1f | 2016-12-20 08:57:26 -0500 | [diff] [blame] | 74 | canvas->drawImageRect(image, |
| 75 | SkRect::MakeXYWH(512.0f, 10.0f, 512.0f, 512.0f), &paint); |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 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++) { |
Mike Reed | 12a6d45 | 2018-12-21 22:22:31 -0500 | [diff] [blame] | 88 | font.setSize(SkIntToScalar(i*fSizeScale)); |
| 89 | y += font.getSpacing(); |
| 90 | DrawTheText(canvas, text, length, SkIntToScalar(110), y, font, paint); |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 91 | } |
| 92 | canvas->restore(); |
| 93 | |
Mike Reed | 12a6d45 | 2018-12-21 22:22:31 -0500 | [diff] [blame] | 94 | font.setSize(16); |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 95 | } |
| 96 | |
Hal Canary | 4124807 | 2019-07-11 16:32:53 -0400 | [diff] [blame] | 97 | bool onAnimate(double nanos) override { |
Ben Wagner | acf98df | 2019-07-12 12:51:44 -0400 | [diff] [blame] | 98 | // TODO: use nanos |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 99 | // We add noise to the scale and rotation animations to |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 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 | } |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 110 | }; |
| 111 | |
Ben Wagner | b2c4ea6 | 2018-08-08 11:36:17 -0400 | [diff] [blame] | 112 | DEF_SAMPLE( return new AnimatedTextView(); ) |