blob: 9e7ec2dcfe4d8f455182a264dbb6586fe652ca7f [file] [log] [blame]
Romain Guy9f5dab32012-09-04 12:55:44 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_HWUI_FONT_H
18#define ANDROID_HWUI_FONT_H
19
20#include <utils/KeyedVector.h>
21
22#include <SkScalerContext.h>
23#include <SkPaint.h>
24#include <SkPathMeasure.h>
25
26#include "CachedGlyphInfo.h"
27#include "../Rect.h"
Romain Guye3a9b242013-01-08 11:15:30 -080028#include "../Matrix.h"
Romain Guy9f5dab32012-09-04 12:55:44 -070029
30namespace android {
31namespace uirenderer {
32
33///////////////////////////////////////////////////////////////////////////////
34// Font
35///////////////////////////////////////////////////////////////////////////////
36
37class FontRenderer;
38
39/**
40 * Represents a font, defined by a Skia font id and a font size. A font is used
41 * to generate glyphs and cache them in the FontState.
42 */
43class Font {
44public:
45 enum Style {
46 kFakeBold = 1
47 };
48
Romain Guye3a9b242013-01-08 11:15:30 -080049 struct FontDescription {
50 FontDescription(const SkPaint* paint, const mat4& matrix);
51
52 static int compare(const FontDescription& lhs, const FontDescription& rhs);
53
54 hash_t hash() const;
55
56 bool operator==(const FontDescription& other) const {
57 return compare(*this, other) == 0;
58 }
59
60 bool operator!=(const FontDescription& other) const {
61 return compare(*this, other) != 0;
62 }
63
64 SkFontID mFontId;
65 float mFontSize;
66 int mFlags;
67 float mItalicStyle;
68 float mScaleX;
69 uint8_t mStyle;
70 float mStrokeWidth;
Romain Guyb969a0d2013-02-05 14:38:40 -080071 bool mAntiAliasing;
Romain Guy2d5945e2013-06-18 12:59:25 -070072 uint8_t mHinting;
Romain Guyc74f45a2013-02-26 19:10:14 -080073 SkMatrix mLookupTransform;
Romain Guy874f5c62013-03-01 18:07:35 -080074 SkMatrix mInverseLookupTransform;
Romain Guye3a9b242013-01-08 11:15:30 -080075 };
76
Romain Guy9f5dab32012-09-04 12:55:44 -070077 ~Font();
78
Romain Guye3a9b242013-01-08 11:15:30 -080079 void render(SkPaint* paint, const char* text, uint32_t start, uint32_t len,
Romain Guy9f5dab32012-09-04 12:55:44 -070080 int numGlyphs, int x, int y, const float* positions);
81
Romain Guye3a9b242013-01-08 11:15:30 -080082 void render(SkPaint* paint, const char* text, uint32_t start, uint32_t len,
Romain Guy9f5dab32012-09-04 12:55:44 -070083 int numGlyphs, SkPath* path, float hOffset, float vOffset);
84
Romain Guye3a9b242013-01-08 11:15:30 -080085 const Font::FontDescription& getDescription() const {
86 return mDescription;
87 }
88
Romain Guy9f5dab32012-09-04 12:55:44 -070089 /**
90 * Creates a new font associated with the specified font state.
91 */
Romain Guye3a9b242013-01-08 11:15:30 -080092 static Font* create(FontRenderer* state, const SkPaint* paint, const mat4& matrix);
Romain Guy9f5dab32012-09-04 12:55:44 -070093
94private:
95 friend class FontRenderer;
Romain Guye3a9b242013-01-08 11:15:30 -080096
97 Font(FontRenderer* state, const Font::FontDescription& desc);
98
Romain Guy9f5dab32012-09-04 12:55:44 -070099 typedef void (Font::*RenderGlyph)(CachedGlyphInfo*, int, int, uint8_t*,
100 uint32_t, uint32_t, Rect*, const float*);
101
102 enum RenderMode {
103 FRAMEBUFFER,
104 BITMAP,
105 MEASURE,
106 };
107
108 void precache(SkPaint* paint, const char* text, int numGlyphs);
109
110 void render(SkPaint* paint, const char *text, uint32_t start, uint32_t len,
111 int numGlyphs, int x, int y, RenderMode mode, uint8_t *bitmap,
112 uint32_t bitmapW, uint32_t bitmapH, Rect *bounds, const float* positions);
113
114 void measure(SkPaint* paint, const char* text, uint32_t start, uint32_t len,
115 int numGlyphs, Rect *bounds, const float* positions);
116
Romain Guy80872462012-09-04 16:42:01 -0700117 void invalidateTextureCache(CacheTexture* cacheTexture = NULL);
Romain Guy9f5dab32012-09-04 12:55:44 -0700118
119 CachedGlyphInfo* cacheGlyph(SkPaint* paint, glyph_t glyph, bool precaching);
120 void updateGlyphCache(SkPaint* paint, const SkGlyph& skiaGlyph, CachedGlyphInfo* glyph,
121 bool precaching);
122
123 void measureCachedGlyph(CachedGlyphInfo* glyph, int x, int y,
124 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
125 Rect* bounds, const float* pos);
126 void drawCachedGlyph(CachedGlyphInfo* glyph, int x, int y,
127 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
128 Rect* bounds, const float* pos);
Romain Guy624234f2013-03-05 16:43:31 -0800129 void drawCachedGlyphTransformed(CachedGlyphInfo* glyph, int x, int y,
Romain Guya4adcf02013-02-28 12:15:35 -0800130 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
131 Rect* bounds, const float* pos);
Romain Guy9f5dab32012-09-04 12:55:44 -0700132 void drawCachedGlyphBitmap(CachedGlyphInfo* glyph, int x, int y,
133 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
134 Rect* bounds, const float* pos);
135 void drawCachedGlyph(CachedGlyphInfo* glyph, float x, float hOffset, float vOffset,
136 SkPathMeasure& measure, SkPoint* position, SkVector* tangent);
137
138 CachedGlyphInfo* getCachedGlyph(SkPaint* paint, glyph_t textUnit, bool precaching = false);
139
140 FontRenderer* mState;
Romain Guye3a9b242013-01-08 11:15:30 -0800141 FontDescription mDescription;
142
143 // Cache of glyphs
144 DefaultKeyedVector<glyph_t, CachedGlyphInfo*> mCachedGlyphs;
Romain Guyc74f45a2013-02-26 19:10:14 -0800145
Romain Guy624234f2013-03-05 16:43:31 -0800146 bool mIdentityTransform;
Romain Guy9f5dab32012-09-04 12:55:44 -0700147};
148
Romain Guye3a9b242013-01-08 11:15:30 -0800149inline int strictly_order_type(const Font::FontDescription& lhs,
150 const Font::FontDescription& rhs) {
151 return Font::FontDescription::compare(lhs, rhs) < 0;
152}
153
154inline int compare_type(const Font::FontDescription& lhs, const Font::FontDescription& rhs) {
155 return Font::FontDescription::compare(lhs, rhs);
156}
157
158inline hash_t hash_type(const Font::FontDescription& entry) {
159 return entry.hash();
160}
161
Romain Guy9f5dab32012-09-04 12:55:44 -0700162}; // namespace uirenderer
163}; // namespace android
164
165#endif // ANDROID_HWUI_FONT_H