Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright (C) 2009 The Android Open Source Project |
| 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 18 | #include "rsContext.h" |
Alex Sakhartchouk | 137ccbb | 2012-03-09 09:24:39 -0800 | [diff] [blame] | 19 | #include "rs.h" |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 20 | #include "rsFont.h" |
| 21 | #include "rsProgramFragment.h" |
Alex Sakhartchouk | bedc023 | 2012-03-09 10:47:27 -0800 | [diff] [blame] | 22 | #include "rsMesh.h" |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 23 | #include <cutils/properties.h> |
Alex Sakhartchouk | ebd65bb | 2011-02-25 09:34:33 -0800 | [diff] [blame] | 24 | |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 25 | #ifndef ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | ebd65bb | 2011-02-25 09:34:33 -0800 | [diff] [blame] | 26 | #include <ft2build.h> |
| 27 | #include FT_FREETYPE_H |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 28 | #include FT_BITMAP_H |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 29 | #endif //ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 30 | |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 31 | using namespace android; |
| 32 | using namespace android::renderscript; |
| 33 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 34 | Font::Font(Context *rsc) : ObjectBase(rsc), mCachedGlyphs(NULL) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 35 | mInitialized = false; |
| 36 | mHasKerning = false; |
Alex Sakhartchouk | b6b3489 | 2010-06-30 16:53:43 -0700 | [diff] [blame] | 37 | mFace = NULL; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 38 | } |
| 39 | |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 40 | bool Font::init(const char *name, float fontSize, uint32_t dpi, const void *data, uint32_t dataLen) { |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 41 | #ifndef ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 42 | if (mInitialized) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 43 | ALOGE("Reinitialization of fonts not supported"); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 44 | return false; |
| 45 | } |
| 46 | |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 47 | FT_Error error = 0; |
| 48 | if (data != NULL && dataLen > 0) { |
| 49 | error = FT_New_Memory_Face(mRSC->mStateFont.getLib(), (const FT_Byte*)data, dataLen, 0, &mFace); |
| 50 | } else { |
| 51 | error = FT_New_Face(mRSC->mStateFont.getLib(), name, 0, &mFace); |
| 52 | } |
| 53 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 54 | if (error) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 55 | ALOGE("Unable to initialize font %s", name); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 56 | return false; |
| 57 | } |
| 58 | |
| 59 | mFontName = name; |
| 60 | mFontSize = fontSize; |
| 61 | mDpi = dpi; |
| 62 | |
Alex Sakhartchouk | e27cdee | 2010-12-17 11:41:08 -0800 | [diff] [blame] | 63 | error = FT_Set_Char_Size(mFace, (FT_F26Dot6)(fontSize * 64.0f), 0, dpi, 0); |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 64 | if (error) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 65 | ALOGE("Unable to set font size on %s", name); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 66 | return false; |
| 67 | } |
| 68 | |
| 69 | mHasKerning = FT_HAS_KERNING(mFace); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 70 | |
| 71 | mInitialized = true; |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 72 | #endif //ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 73 | return true; |
| 74 | } |
| 75 | |
Jason Sams | 38f8d9d | 2011-01-27 00:14:13 -0800 | [diff] [blame] | 76 | void Font::preDestroy() const { |
| 77 | for (uint32_t ct = 0; ct < mRSC->mStateFont.mActiveFonts.size(); ct++) { |
| 78 | if (mRSC->mStateFont.mActiveFonts[ct] == this) { |
| 79 | mRSC->mStateFont.mActiveFonts.removeAt(ct); |
| 80 | break; |
| 81 | } |
| 82 | } |
| 83 | } |
| 84 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 85 | void Font::invalidateTextureCache() { |
| 86 | for (uint32_t i = 0; i < mCachedGlyphs.size(); i ++) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 87 | mCachedGlyphs.valueAt(i)->mIsValid = false; |
| 88 | } |
| 89 | } |
| 90 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 91 | void Font::drawCachedGlyph(CachedGlyphInfo *glyph, int32_t x, int32_t y) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 92 | FontState *state = &mRSC->mStateFont; |
| 93 | |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 94 | int32_t nPenX = x + glyph->mBitmapLeft; |
| 95 | int32_t nPenY = y - glyph->mBitmapTop + glyph->mBitmapHeight; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 96 | |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 97 | float u1 = glyph->mBitmapMinU; |
| 98 | float u2 = glyph->mBitmapMaxU; |
| 99 | float v1 = glyph->mBitmapMinV; |
| 100 | float v2 = glyph->mBitmapMaxV; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 101 | |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 102 | int32_t width = (int32_t) glyph->mBitmapWidth; |
| 103 | int32_t height = (int32_t) glyph->mBitmapHeight; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 104 | |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 105 | state->appendMeshQuad(nPenX, nPenY, 0, u1, v2, |
| 106 | nPenX + width, nPenY, 0, u2, v2, |
| 107 | nPenX + width, nPenY - height, 0, u2, v1, |
| 108 | nPenX, nPenY - height, 0, u1, v1); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 109 | } |
| 110 | |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 111 | void Font::drawCachedGlyph(CachedGlyphInfo* glyph, int32_t x, int32_t y, |
| 112 | uint8_t* bitmap, uint32_t bitmapW, uint32_t bitmapH) { |
| 113 | int32_t nPenX = x + glyph->mBitmapLeft; |
| 114 | int32_t nPenY = y + glyph->mBitmapTop; |
| 115 | |
| 116 | uint32_t endX = glyph->mBitmapMinX + glyph->mBitmapWidth; |
| 117 | uint32_t endY = glyph->mBitmapMinY + glyph->mBitmapHeight; |
| 118 | |
| 119 | FontState *state = &mRSC->mStateFont; |
| 120 | uint32_t cacheWidth = state->getCacheTextureType()->getDimX(); |
| 121 | const uint8_t* cacheBuffer = state->getTextTextureData(); |
| 122 | |
| 123 | uint32_t cacheX = 0, cacheY = 0; |
| 124 | int32_t bX = 0, bY = 0; |
| 125 | for (cacheX = glyph->mBitmapMinX, bX = nPenX; cacheX < endX; cacheX++, bX++) { |
| 126 | for (cacheY = glyph->mBitmapMinY, bY = nPenY; cacheY < endY; cacheY++, bY++) { |
| 127 | if (bX < 0 || bY < 0 || bX >= (int32_t) bitmapW || bY >= (int32_t) bitmapH) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 128 | ALOGE("Skipping invalid index"); |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 129 | continue; |
| 130 | } |
| 131 | uint8_t tempCol = cacheBuffer[cacheY * cacheWidth + cacheX]; |
| 132 | bitmap[bY * bitmapW + bX] = tempCol; |
| 133 | } |
| 134 | } |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | void Font::measureCachedGlyph(CachedGlyphInfo *glyph, int32_t x, int32_t y, Rect *bounds) { |
| 138 | int32_t nPenX = x + glyph->mBitmapLeft; |
| 139 | int32_t nPenY = y - glyph->mBitmapTop + glyph->mBitmapHeight; |
| 140 | |
| 141 | int32_t width = (int32_t) glyph->mBitmapWidth; |
| 142 | int32_t height = (int32_t) glyph->mBitmapHeight; |
| 143 | |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 144 | // 0, 0 is top left, so bottom is a positive number |
| 145 | if (bounds->bottom < nPenY) { |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 146 | bounds->bottom = nPenY; |
| 147 | } |
| 148 | if (bounds->left > nPenX) { |
| 149 | bounds->left = nPenX; |
| 150 | } |
| 151 | if (bounds->right < nPenX + width) { |
| 152 | bounds->right = nPenX + width; |
| 153 | } |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 154 | if (bounds->top > nPenY - height) { |
| 155 | bounds->top = nPenY - height; |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 156 | } |
| 157 | } |
| 158 | |
| 159 | void Font::renderUTF(const char *text, uint32_t len, int32_t x, int32_t y, |
| 160 | uint32_t start, int32_t numGlyphs, |
| 161 | RenderMode mode, Rect *bounds, |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 162 | uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) { |
| 163 | if (!mInitialized || numGlyphs == 0 || text == NULL || len == 0) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 164 | return; |
| 165 | } |
| 166 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 167 | if (mode == Font::MEASURE) { |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 168 | if (bounds == NULL) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 169 | ALOGE("No return rectangle provided to measure text"); |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 170 | return; |
| 171 | } |
| 172 | // Reset min and max of the bounding box to something large |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 173 | bounds->set(1e6, -1e6, 1e6, -1e6); |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | int32_t penX = x, penY = y; |
| 177 | int32_t glyphsLeft = 1; |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 178 | if (numGlyphs > 0) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 179 | glyphsLeft = numGlyphs; |
| 180 | } |
| 181 | |
| 182 | size_t index = start; |
| 183 | size_t nextIndex = 0; |
| 184 | |
| 185 | while (glyphsLeft > 0) { |
| 186 | |
Kenny Root | 300ba68 | 2010-11-09 14:37:23 -0800 | [diff] [blame] | 187 | int32_t utfChar = utf32_from_utf8_at(text, len, index, &nextIndex); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 188 | |
| 189 | // Reached the end of the string or encountered |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 190 | if (utfChar < 0) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 191 | break; |
| 192 | } |
| 193 | |
| 194 | // Move to the next character in the array |
| 195 | index = nextIndex; |
| 196 | |
Alex Sakhartchouk | 94bbccc | 2010-08-17 11:09:49 -0700 | [diff] [blame] | 197 | CachedGlyphInfo *cachedGlyph = getCachedUTFChar(utfChar); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 198 | |
| 199 | // If it's still not valid, we couldn't cache it, so we shouldn't draw garbage |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 200 | if (cachedGlyph->mIsValid) { |
| 201 | switch (mode) { |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 202 | case FRAMEBUFFER: |
| 203 | drawCachedGlyph(cachedGlyph, penX, penY); |
| 204 | break; |
| 205 | case BITMAP: |
| 206 | drawCachedGlyph(cachedGlyph, penX, penY, bitmap, bitmapW, bitmapH); |
| 207 | break; |
| 208 | case MEASURE: |
| 209 | measureCachedGlyph(cachedGlyph, penX, penY, bounds); |
| 210 | break; |
| 211 | } |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 212 | } |
| 213 | |
Alex Sakhartchouk | ebd65bb | 2011-02-25 09:34:33 -0800 | [diff] [blame] | 214 | penX += (cachedGlyph->mAdvanceX >> 6); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 215 | |
| 216 | // If we were given a specific number of glyphs, decrement |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 217 | if (numGlyphs > 0) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 218 | glyphsLeft --; |
| 219 | } |
| 220 | } |
| 221 | } |
| 222 | |
Alex Sakhartchouk | 94bbccc | 2010-08-17 11:09:49 -0700 | [diff] [blame] | 223 | Font::CachedGlyphInfo* Font::getCachedUTFChar(int32_t utfChar) { |
| 224 | |
| 225 | CachedGlyphInfo *cachedGlyph = mCachedGlyphs.valueFor((uint32_t)utfChar); |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 226 | if (cachedGlyph == NULL) { |
Alex Sakhartchouk | 94bbccc | 2010-08-17 11:09:49 -0700 | [diff] [blame] | 227 | cachedGlyph = cacheGlyph((uint32_t)utfChar); |
| 228 | } |
| 229 | // Is the glyph still in texture cache? |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 230 | if (!cachedGlyph->mIsValid) { |
Alex Sakhartchouk | 94bbccc | 2010-08-17 11:09:49 -0700 | [diff] [blame] | 231 | updateGlyphCache(cachedGlyph); |
| 232 | } |
| 233 | |
| 234 | return cachedGlyph; |
| 235 | } |
| 236 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 237 | void Font::updateGlyphCache(CachedGlyphInfo *glyph) { |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 238 | #ifndef ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 239 | FT_Error error = FT_Load_Glyph( mFace, glyph->mGlyphIndex, FT_LOAD_RENDER ); |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 240 | if (error) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 241 | ALOGE("Couldn't load glyph."); |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 242 | return; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 243 | } |
| 244 | |
Alex Sakhartchouk | ebd65bb | 2011-02-25 09:34:33 -0800 | [diff] [blame] | 245 | glyph->mAdvanceX = mFace->glyph->advance.x; |
| 246 | glyph->mAdvanceY = mFace->glyph->advance.y; |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 247 | glyph->mBitmapLeft = mFace->glyph->bitmap_left; |
| 248 | glyph->mBitmapTop = mFace->glyph->bitmap_top; |
| 249 | |
| 250 | FT_Bitmap *bitmap = &mFace->glyph->bitmap; |
| 251 | |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 252 | // Now copy the bitmap into the cache texture |
| 253 | uint32_t startX = 0; |
| 254 | uint32_t startY = 0; |
| 255 | |
| 256 | // Let the font state figure out where to put the bitmap |
| 257 | FontState *state = &mRSC->mStateFont; |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 258 | glyph->mIsValid = state->cacheBitmap(bitmap, &startX, &startY); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 259 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 260 | if (!glyph->mIsValid) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 261 | return; |
| 262 | } |
| 263 | |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 264 | uint32_t endX = startX + bitmap->width; |
| 265 | uint32_t endY = startY + bitmap->rows; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 266 | |
| 267 | glyph->mBitmapMinX = startX; |
| 268 | glyph->mBitmapMinY = startY; |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 269 | glyph->mBitmapWidth = bitmap->width; |
| 270 | glyph->mBitmapHeight = bitmap->rows; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 271 | |
| 272 | uint32_t cacheWidth = state->getCacheTextureType()->getDimX(); |
| 273 | uint32_t cacheHeight = state->getCacheTextureType()->getDimY(); |
| 274 | |
| 275 | glyph->mBitmapMinU = (float)startX / (float)cacheWidth; |
| 276 | glyph->mBitmapMinV = (float)startY / (float)cacheHeight; |
| 277 | glyph->mBitmapMaxU = (float)endX / (float)cacheWidth; |
| 278 | glyph->mBitmapMaxV = (float)endY / (float)cacheHeight; |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 279 | #endif //ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 280 | } |
| 281 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 282 | Font::CachedGlyphInfo *Font::cacheGlyph(uint32_t glyph) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 283 | CachedGlyphInfo *newGlyph = new CachedGlyphInfo(); |
| 284 | mCachedGlyphs.add(glyph, newGlyph); |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 285 | #ifndef ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 286 | newGlyph->mGlyphIndex = FT_Get_Char_Index(mFace, glyph); |
| 287 | newGlyph->mIsValid = false; |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 288 | #endif //ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 289 | updateGlyphCache(newGlyph); |
| 290 | |
| 291 | return newGlyph; |
| 292 | } |
| 293 | |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 294 | Font * Font::create(Context *rsc, const char *name, float fontSize, uint32_t dpi, |
| 295 | const void *data, uint32_t dataLen) { |
Alex Sakhartchouk | 27f5052 | 2010-08-18 15:46:43 -0700 | [diff] [blame] | 296 | rsc->mStateFont.checkInit(); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 297 | Vector<Font*> &activeFonts = rsc->mStateFont.mActiveFonts; |
| 298 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 299 | for (uint32_t i = 0; i < activeFonts.size(); i ++) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 300 | Font *ithFont = activeFonts[i]; |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 301 | if (ithFont->mFontName == name && ithFont->mFontSize == fontSize && ithFont->mDpi == dpi) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 302 | return ithFont; |
| 303 | } |
| 304 | } |
| 305 | |
| 306 | Font *newFont = new Font(rsc); |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 307 | bool isInitialized = newFont->init(name, fontSize, dpi, data, dataLen); |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 308 | if (isInitialized) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 309 | activeFonts.push(newFont); |
Alex Sakhartchouk | 94bbccc | 2010-08-17 11:09:49 -0700 | [diff] [blame] | 310 | rsc->mStateFont.precacheLatin(newFont); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 311 | return newFont; |
| 312 | } |
| 313 | |
Jason Sams | b38d534 | 2010-10-21 14:06:55 -0700 | [diff] [blame] | 314 | ObjectBase::checkDelete(newFont); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 315 | return NULL; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 316 | } |
| 317 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 318 | Font::~Font() { |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 319 | #ifndef ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 320 | if (mFace) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 321 | FT_Done_Face(mFace); |
| 322 | } |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 323 | #endif |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 324 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 325 | for (uint32_t i = 0; i < mCachedGlyphs.size(); i ++) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 326 | CachedGlyphInfo *glyph = mCachedGlyphs.valueAt(i); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 327 | delete glyph; |
| 328 | } |
| 329 | } |
| 330 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 331 | FontState::FontState() { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 332 | mInitialized = false; |
| 333 | mMaxNumberOfQuads = 1024; |
| 334 | mCurrentQuadIndex = 0; |
| 335 | mRSC = NULL; |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 336 | #ifndef ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | b6b3489 | 2010-06-30 16:53:43 -0700 | [diff] [blame] | 337 | mLibrary = NULL; |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 338 | #endif //ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 339 | |
| 340 | // Get the renderer properties |
| 341 | char property[PROPERTY_VALUE_MAX]; |
| 342 | |
| 343 | // Get the gamma |
| 344 | float gamma = DEFAULT_TEXT_GAMMA; |
| 345 | if (property_get(PROPERTY_TEXT_GAMMA, property, NULL) > 0) { |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 346 | gamma = atof(property); |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | // Get the black gamma threshold |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 350 | int32_t blackThreshold = DEFAULT_TEXT_BLACK_GAMMA_THRESHOLD; |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 351 | if (property_get(PROPERTY_TEXT_BLACK_GAMMA_THRESHOLD, property, NULL) > 0) { |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 352 | blackThreshold = atoi(property); |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 353 | } |
| 354 | mBlackThreshold = (float)(blackThreshold) / 255.0f; |
| 355 | |
| 356 | // Get the white gamma threshold |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 357 | int32_t whiteThreshold = DEFAULT_TEXT_WHITE_GAMMA_THRESHOLD; |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 358 | if (property_get(PROPERTY_TEXT_WHITE_GAMMA_THRESHOLD, property, NULL) > 0) { |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 359 | whiteThreshold = atoi(property); |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 360 | } |
| 361 | mWhiteThreshold = (float)(whiteThreshold) / 255.0f; |
| 362 | |
| 363 | // Compute the gamma tables |
| 364 | mBlackGamma = gamma; |
| 365 | mWhiteGamma = 1.0f / gamma; |
Alex Sakhartchouk | 960ae15 | 2010-10-12 14:15:17 -0700 | [diff] [blame] | 366 | |
| 367 | setFontColor(0.1f, 0.1f, 0.1f, 1.0f); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 368 | } |
| 369 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 370 | FontState::~FontState() { |
| 371 | for (uint32_t i = 0; i < mCacheLines.size(); i ++) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 372 | delete mCacheLines[i]; |
| 373 | } |
| 374 | |
| 375 | rsAssert(!mActiveFonts.size()); |
| 376 | } |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 377 | #ifndef ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 378 | FT_Library FontState::getLib() { |
| 379 | if (!mLibrary) { |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 380 | FT_Error error = FT_Init_FreeType(&mLibrary); |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 381 | if (error) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 382 | ALOGE("Unable to initialize freetype"); |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 383 | return NULL; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 384 | } |
| 385 | } |
Alex Sakhartchouk | b6b3489 | 2010-06-30 16:53:43 -0700 | [diff] [blame] | 386 | |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 387 | return mLibrary; |
| 388 | } |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 389 | #endif //ANDROID_RS_SERIALIZE |
| 390 | |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 391 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 392 | void FontState::init(Context *rsc) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 393 | mRSC = rsc; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 394 | } |
| 395 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 396 | void FontState::flushAllAndInvalidate() { |
| 397 | if (mCurrentQuadIndex != 0) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 398 | issueDrawCommand(); |
| 399 | mCurrentQuadIndex = 0; |
| 400 | } |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 401 | for (uint32_t i = 0; i < mActiveFonts.size(); i ++) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 402 | mActiveFonts[i]->invalidateTextureCache(); |
| 403 | } |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 404 | for (uint32_t i = 0; i < mCacheLines.size(); i ++) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 405 | mCacheLines[i]->mCurrentCol = 0; |
| 406 | } |
| 407 | } |
| 408 | |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 409 | #ifndef ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 410 | bool FontState::cacheBitmap(FT_Bitmap *bitmap, uint32_t *retOriginX, uint32_t *retOriginY) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 411 | // If the glyph is too tall, don't cache it |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 412 | if ((uint32_t)bitmap->rows > mCacheLines[mCacheLines.size()-1]->mMaxHeight) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 413 | ALOGE("Font size to large to fit in cache. width, height = %i, %i", (int)bitmap->width, (int)bitmap->rows); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 414 | return false; |
| 415 | } |
| 416 | |
| 417 | // Now copy the bitmap into the cache texture |
| 418 | uint32_t startX = 0; |
| 419 | uint32_t startY = 0; |
| 420 | |
| 421 | bool bitmapFit = false; |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 422 | for (uint32_t i = 0; i < mCacheLines.size(); i ++) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 423 | bitmapFit = mCacheLines[i]->fitBitmap(bitmap, &startX, &startY); |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 424 | if (bitmapFit) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 425 | break; |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | // If the new glyph didn't fit, flush the state so far and invalidate everything |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 430 | if (!bitmapFit) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 431 | flushAllAndInvalidate(); |
| 432 | |
| 433 | // Try to fit it again |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 434 | for (uint32_t i = 0; i < mCacheLines.size(); i ++) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 435 | bitmapFit = mCacheLines[i]->fitBitmap(bitmap, &startX, &startY); |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 436 | if (bitmapFit) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 437 | break; |
| 438 | } |
| 439 | } |
| 440 | |
| 441 | // if we still don't fit, something is wrong and we shouldn't draw |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 442 | if (!bitmapFit) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 443 | ALOGE("Bitmap doesn't fit in cache. width, height = %i, %i", (int)bitmap->width, (int)bitmap->rows); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 444 | return false; |
| 445 | } |
| 446 | } |
| 447 | |
| 448 | *retOriginX = startX; |
| 449 | *retOriginY = startY; |
| 450 | |
| 451 | uint32_t endX = startX + bitmap->width; |
| 452 | uint32_t endY = startY + bitmap->rows; |
| 453 | |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 454 | uint32_t cacheWidth = getCacheTextureType()->getDimX(); |
| 455 | |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 456 | uint8_t *cacheBuffer = (uint8_t*)mTextTexture->getPtr(); |
| 457 | uint8_t *bitmapBuffer = bitmap->buffer; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 458 | |
| 459 | uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0; |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 460 | for (cacheX = startX, bX = 0; cacheX < endX; cacheX ++, bX ++) { |
| 461 | for (cacheY = startY, bY = 0; cacheY < endY; cacheY ++, bY ++) { |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 462 | uint8_t tempCol = bitmapBuffer[bY * bitmap->width + bX]; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 463 | cacheBuffer[cacheY*cacheWidth + cacheX] = tempCol; |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | // This will dirty the texture and the shader so next time |
| 468 | // we draw it will upload the data |
Jason Sams | 7e8aae7 | 2011-05-26 16:33:01 -0700 | [diff] [blame] | 469 | |
| 470 | mTextTexture->sendDirty(mRSC); |
Alex Sakhartchouk | b89aaac | 2010-09-23 16:16:33 -0700 | [diff] [blame] | 471 | mFontShaderF->bindTexture(mRSC, 0, mTextTexture.get()); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 472 | |
| 473 | // Some debug code |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 474 | /*for (uint32_t i = 0; i < mCacheLines.size(); i ++) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 475 | ALOGE("Cache Line: H: %u Empty Space: %f", |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 476 | mCacheLines[i]->mMaxHeight, |
| 477 | (1.0f - (float)mCacheLines[i]->mCurrentCol/(float)mCacheLines[i]->mMaxWidth)*100.0f); |
| 478 | |
| 479 | }*/ |
| 480 | |
| 481 | return true; |
| 482 | } |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 483 | #endif //ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 484 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 485 | void FontState::initRenderState() { |
Alex Sakhartchouk | d209163 | 2010-10-06 11:15:01 -0700 | [diff] [blame] | 486 | String8 shaderString("varying vec2 varTex0;\n"); |
Alex Sakhartchouk | c984dd7 | 2010-09-14 09:50:43 -0700 | [diff] [blame] | 487 | shaderString.append("void main() {\n"); |
| 488 | shaderString.append(" lowp vec4 col = UNI_Color;\n"); |
| 489 | shaderString.append(" col.a = texture2D(UNI_Tex0, varTex0.xy).a;\n"); |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 490 | shaderString.append(" col.a = pow(col.a, UNI_Gamma);\n"); |
Alex Sakhartchouk | c984dd7 | 2010-09-14 09:50:43 -0700 | [diff] [blame] | 491 | shaderString.append(" gl_FragColor = col;\n"); |
| 492 | shaderString.append("}\n"); |
| 493 | |
Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 494 | const char *textureNames[] = { "Tex0" }; |
| 495 | const size_t textureNamesLengths[] = { 4 }; |
| 496 | size_t numTextures = sizeof(textureNamesLengths)/sizeof(*textureNamesLengths); |
| 497 | |
| 498 | ObjectBaseRef<const Element> colorElem = Element::createRef(mRSC, RS_TYPE_FLOAT_32, |
| 499 | RS_KIND_USER, false, 4); |
| 500 | ObjectBaseRef<const Element> gammaElem = Element::createRef(mRSC, RS_TYPE_FLOAT_32, |
| 501 | RS_KIND_USER, false, 1); |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 502 | Element::Builder builder; |
| 503 | builder.add(colorElem.get(), "Color", 1); |
| 504 | builder.add(gammaElem.get(), "Gamma", 1); |
| 505 | ObjectBaseRef<const Element> constInput = builder.create(mRSC); |
Alex Sakhartchouk | c984dd7 | 2010-09-14 09:50:43 -0700 | [diff] [blame] | 506 | |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 507 | ObjectBaseRef<Type> inputType = Type::getTypeRef(mRSC, constInput.get(), 1, 0, 0, false, false); |
Alex Sakhartchouk | c984dd7 | 2010-09-14 09:50:43 -0700 | [diff] [blame] | 508 | |
| 509 | uint32_t tmp[4]; |
| 510 | tmp[0] = RS_PROGRAM_PARAM_CONSTANT; |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 511 | tmp[1] = (uint32_t)inputType.get(); |
Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 512 | tmp[2] = RS_PROGRAM_PARAM_TEXTURE_TYPE; |
| 513 | tmp[3] = RS_TEXTURE_2D; |
Alex Sakhartchouk | c984dd7 | 2010-09-14 09:50:43 -0700 | [diff] [blame] | 514 | |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 515 | mFontShaderFConstant.set(Allocation::createAllocation(mRSC, inputType.get(), |
Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 516 | RS_ALLOCATION_USAGE_SCRIPT | |
| 517 | RS_ALLOCATION_USAGE_GRAPHICS_CONSTANTS)); |
| 518 | ProgramFragment *pf = new ProgramFragment(mRSC, shaderString.string(), shaderString.length(), |
| 519 | textureNames, numTextures, textureNamesLengths, |
| 520 | tmp, 4); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 521 | mFontShaderF.set(pf); |
Alex Sakhartchouk | b89aaac | 2010-09-23 16:16:33 -0700 | [diff] [blame] | 522 | mFontShaderF->bindAllocation(mRSC, mFontShaderFConstant.get(), 0); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 523 | |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 524 | mFontSampler.set(Sampler::getSampler(mRSC, RS_SAMPLER_NEAREST, RS_SAMPLER_NEAREST, |
Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 525 | RS_SAMPLER_CLAMP, RS_SAMPLER_CLAMP, |
| 526 | RS_SAMPLER_CLAMP).get()); |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 527 | mFontShaderF->bindSampler(mRSC, 0, mFontSampler.get()); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 528 | |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 529 | mFontProgramStore.set(ProgramStore::getProgramStore(mRSC, true, true, true, true, |
| 530 | false, false, |
| 531 | RS_BLEND_SRC_SRC_ALPHA, |
| 532 | RS_BLEND_DST_ONE_MINUS_SRC_ALPHA, |
| 533 | RS_DEPTH_FUNC_ALWAYS).get()); |
Jason Sams | 48f5056 | 2011-03-18 15:03:25 -0700 | [diff] [blame] | 534 | mFontProgramStore->init(); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 535 | } |
| 536 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 537 | void FontState::initTextTexture() { |
Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 538 | ObjectBaseRef<const Element> alphaElem = Element::createRef(mRSC, RS_TYPE_UNSIGNED_8, |
| 539 | RS_KIND_PIXEL_A, true, 1); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 540 | |
| 541 | // We will allocate a texture to initially hold 32 character bitmaps |
Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 542 | ObjectBaseRef<Type> texType = Type::getTypeRef(mRSC, alphaElem.get(), |
| 543 | 1024, 256, 0, false, false); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 544 | |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 545 | Allocation *cacheAlloc = Allocation::createAllocation(mRSC, texType.get(), |
Jason Sams | 7e8aae7 | 2011-05-26 16:33:01 -0700 | [diff] [blame] | 546 | RS_ALLOCATION_USAGE_SCRIPT | RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 547 | mTextTexture.set(cacheAlloc); |
Jason Sams | 6d8eb26 | 2010-12-15 01:41:00 -0800 | [diff] [blame] | 548 | mTextTexture->syncAll(mRSC, RS_ALLOCATION_USAGE_SCRIPT); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 549 | |
| 550 | // Split up our cache texture into lines of certain widths |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 551 | int32_t nextLine = 0; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 552 | mCacheLines.push(new CacheTextureLine(16, texType->getDimX(), nextLine, 0)); |
| 553 | nextLine += mCacheLines.top()->mMaxHeight; |
| 554 | mCacheLines.push(new CacheTextureLine(24, texType->getDimX(), nextLine, 0)); |
| 555 | nextLine += mCacheLines.top()->mMaxHeight; |
Alex Sakhartchouk | 94bbccc | 2010-08-17 11:09:49 -0700 | [diff] [blame] | 556 | mCacheLines.push(new CacheTextureLine(24, texType->getDimX(), nextLine, 0)); |
| 557 | nextLine += mCacheLines.top()->mMaxHeight; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 558 | mCacheLines.push(new CacheTextureLine(32, texType->getDimX(), nextLine, 0)); |
| 559 | nextLine += mCacheLines.top()->mMaxHeight; |
| 560 | mCacheLines.push(new CacheTextureLine(32, texType->getDimX(), nextLine, 0)); |
| 561 | nextLine += mCacheLines.top()->mMaxHeight; |
| 562 | mCacheLines.push(new CacheTextureLine(40, texType->getDimX(), nextLine, 0)); |
| 563 | nextLine += mCacheLines.top()->mMaxHeight; |
| 564 | mCacheLines.push(new CacheTextureLine(texType->getDimY() - nextLine, texType->getDimX(), nextLine, 0)); |
| 565 | } |
| 566 | |
| 567 | // Avoid having to reallocate memory and render quad by quad |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 568 | void FontState::initVertexArrayBuffers() { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 569 | // Now lets write index data |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 570 | ObjectBaseRef<const Element> indexElem = Element::createRef(mRSC, RS_TYPE_UNSIGNED_16, RS_KIND_USER, false, 1); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 571 | uint32_t numIndicies = mMaxNumberOfQuads * 6; |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 572 | ObjectBaseRef<Type> indexType = Type::getTypeRef(mRSC, indexElem.get(), numIndicies, 0, 0, false, false); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 573 | |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 574 | Allocation *indexAlloc = Allocation::createAllocation(mRSC, indexType.get(), |
Jason Sams | 7e8aae7 | 2011-05-26 16:33:01 -0700 | [diff] [blame] | 575 | RS_ALLOCATION_USAGE_SCRIPT | |
| 576 | RS_ALLOCATION_USAGE_GRAPHICS_VERTEX); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 577 | uint16_t *indexPtr = (uint16_t*)indexAlloc->getPtr(); |
| 578 | |
| 579 | // Four verts, two triangles , six indices per quad |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 580 | for (uint32_t i = 0; i < mMaxNumberOfQuads; i ++) { |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 581 | int32_t i6 = i * 6; |
| 582 | int32_t i4 = i * 4; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 583 | |
| 584 | indexPtr[i6 + 0] = i4 + 0; |
| 585 | indexPtr[i6 + 1] = i4 + 1; |
| 586 | indexPtr[i6 + 2] = i4 + 2; |
| 587 | |
| 588 | indexPtr[i6 + 3] = i4 + 0; |
| 589 | indexPtr[i6 + 4] = i4 + 2; |
| 590 | indexPtr[i6 + 5] = i4 + 3; |
| 591 | } |
| 592 | |
Jason Sams | 7e8aae7 | 2011-05-26 16:33:01 -0700 | [diff] [blame] | 593 | indexAlloc->sendDirty(mRSC); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 594 | |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 595 | ObjectBaseRef<const Element> posElem = Element::createRef(mRSC, RS_TYPE_FLOAT_32, RS_KIND_USER, false, 3); |
| 596 | ObjectBaseRef<const Element> texElem = Element::createRef(mRSC, RS_TYPE_FLOAT_32, RS_KIND_USER, false, 2); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 597 | |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 598 | Element::Builder builder; |
| 599 | builder.add(posElem.get(), "position", 1); |
| 600 | builder.add(texElem.get(), "texture0", 1); |
| 601 | ObjectBaseRef<const Element> vertexDataElem = builder.create(mRSC); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 602 | |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 603 | ObjectBaseRef<Type> vertexDataType = Type::getTypeRef(mRSC, vertexDataElem.get(), |
| 604 | mMaxNumberOfQuads * 4, |
| 605 | 0, 0, false, false); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 606 | |
Alex Sakhartchouk | 117abdb | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 607 | Allocation *vertexAlloc = Allocation::createAllocation(mRSC, vertexDataType.get(), |
Jason Sams | 7e8aae7 | 2011-05-26 16:33:01 -0700 | [diff] [blame] | 608 | RS_ALLOCATION_USAGE_SCRIPT); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 609 | mTextMeshPtr = (float*)vertexAlloc->getPtr(); |
| 610 | |
Alex Sakhartchouk | 4a36b45 | 2011-04-29 16:49:08 -0700 | [diff] [blame] | 611 | mMesh.set(new Mesh(mRSC, 1, 1)); |
| 612 | mMesh->setVertexBuffer(vertexAlloc, 0); |
| 613 | mMesh->setPrimitive(indexAlloc, RS_PRIMITIVE_TRIANGLE, 0); |
| 614 | mMesh->init(); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 615 | } |
| 616 | |
| 617 | // We don't want to allocate anything unless we actually draw text |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 618 | void FontState::checkInit() { |
| 619 | if (mInitialized) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 620 | return; |
| 621 | } |
| 622 | |
| 623 | initTextTexture(); |
| 624 | initRenderState(); |
| 625 | |
| 626 | initVertexArrayBuffers(); |
| 627 | |
Alex Sakhartchouk | 27f5052 | 2010-08-18 15:46:43 -0700 | [diff] [blame] | 628 | // We store a string with letters in a rough frequency of occurrence |
| 629 | mLatinPrecache = String8(" eisarntolcdugpmhbyfvkwzxjq"); |
| 630 | mLatinPrecache += String8("EISARNTOLCDUGPMHBYFVKWZXJQ"); |
| 631 | mLatinPrecache += String8(",.?!()-+@;:`'"); |
| 632 | mLatinPrecache += String8("0123456789"); |
| 633 | |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 634 | mInitialized = true; |
| 635 | } |
| 636 | |
| 637 | void FontState::issueDrawCommand() { |
Jason Sams | a17af04 | 2010-11-17 15:29:32 -0800 | [diff] [blame] | 638 | Context::PushState ps(mRSC); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 639 | |
Jason Sams | a17af04 | 2010-11-17 15:29:32 -0800 | [diff] [blame] | 640 | mRSC->setProgramVertex(mRSC->getDefaultProgramVertex()); |
| 641 | mRSC->setProgramRaster(mRSC->getDefaultProgramRaster()); |
| 642 | mRSC->setProgramFragment(mFontShaderF.get()); |
| 643 | mRSC->setProgramStore(mFontProgramStore.get()); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 644 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 645 | if (mConstantsDirty) { |
Jason Sams | 49a05d7 | 2010-12-29 14:31:29 -0800 | [diff] [blame] | 646 | mFontShaderFConstant->data(mRSC, 0, 0, 1, &mConstants, sizeof(mConstants)); |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 647 | mConstantsDirty = false; |
Alex Sakhartchouk | 55e8198 | 2010-08-05 11:24:14 -0700 | [diff] [blame] | 648 | } |
| 649 | |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 650 | if (!mRSC->setupCheck()) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 651 | return; |
| 652 | } |
| 653 | |
Alex Sakhartchouk | 4a36b45 | 2011-04-29 16:49:08 -0700 | [diff] [blame] | 654 | mMesh->renderPrimitiveRange(mRSC, 0, 0, mCurrentQuadIndex * 6); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 655 | } |
| 656 | |
| 657 | void FontState::appendMeshQuad(float x1, float y1, float z1, |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 658 | float u1, float v1, |
| 659 | float x2, float y2, float z2, |
| 660 | float u2, float v2, |
| 661 | float x3, float y3, float z3, |
| 662 | float u3, float v3, |
| 663 | float x4, float y4, float z4, |
| 664 | float u4, float v4) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 665 | const uint32_t vertsPerQuad = 4; |
Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 666 | const uint32_t floatsPerVert = 6; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 667 | float *currentPos = mTextMeshPtr + mCurrentQuadIndex * vertsPerQuad * floatsPerVert; |
| 668 | |
Alex Sakhartchouk | 2d8ef49 | 2011-11-16 12:22:10 -0800 | [diff] [blame] | 669 | if (x1 > mSurfaceWidth || y1 < 0.0f || x2 < 0 || y4 > mSurfaceHeight) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 670 | return; |
| 671 | } |
| 672 | |
| 673 | /*LOGE("V0 x: %f y: %f z: %f", x1, y1, z1); |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 674 | ALOGE("V1 x: %f y: %f z: %f", x2, y2, z2); |
| 675 | ALOGE("V2 x: %f y: %f z: %f", x3, y3, z3); |
| 676 | ALOGE("V3 x: %f y: %f z: %f", x4, y4, z4);*/ |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 677 | |
| 678 | (*currentPos++) = x1; |
| 679 | (*currentPos++) = y1; |
| 680 | (*currentPos++) = z1; |
Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 681 | (*currentPos++) = 0; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 682 | (*currentPos++) = u1; |
| 683 | (*currentPos++) = v1; |
| 684 | |
| 685 | (*currentPos++) = x2; |
| 686 | (*currentPos++) = y2; |
| 687 | (*currentPos++) = z2; |
Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 688 | (*currentPos++) = 0; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 689 | (*currentPos++) = u2; |
| 690 | (*currentPos++) = v2; |
| 691 | |
| 692 | (*currentPos++) = x3; |
| 693 | (*currentPos++) = y3; |
| 694 | (*currentPos++) = z3; |
Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 695 | (*currentPos++) = 0; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 696 | (*currentPos++) = u3; |
| 697 | (*currentPos++) = v3; |
| 698 | |
| 699 | (*currentPos++) = x4; |
| 700 | (*currentPos++) = y4; |
| 701 | (*currentPos++) = z4; |
Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 702 | (*currentPos++) = 0; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 703 | (*currentPos++) = u4; |
| 704 | (*currentPos++) = v4; |
| 705 | |
| 706 | mCurrentQuadIndex ++; |
| 707 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 708 | if (mCurrentQuadIndex == mMaxNumberOfQuads) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 709 | issueDrawCommand(); |
| 710 | mCurrentQuadIndex = 0; |
| 711 | } |
| 712 | } |
| 713 | |
Alex Sakhartchouk | 94bbccc | 2010-08-17 11:09:49 -0700 | [diff] [blame] | 714 | uint32_t FontState::getRemainingCacheCapacity() { |
| 715 | uint32_t remainingCapacity = 0; |
Alex Sakhartchouk | 27f5052 | 2010-08-18 15:46:43 -0700 | [diff] [blame] | 716 | uint32_t totalPixels = 0; |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 717 | for (uint32_t i = 0; i < mCacheLines.size(); i ++) { |
Alex Sakhartchouk | 94bbccc | 2010-08-17 11:09:49 -0700 | [diff] [blame] | 718 | remainingCapacity += (mCacheLines[i]->mMaxWidth - mCacheLines[i]->mCurrentCol); |
| 719 | totalPixels += mCacheLines[i]->mMaxWidth; |
| 720 | } |
| 721 | remainingCapacity = (remainingCapacity * 100) / totalPixels; |
| 722 | return remainingCapacity; |
| 723 | } |
| 724 | |
| 725 | void FontState::precacheLatin(Font *font) { |
| 726 | // Remaining capacity is measured in % |
| 727 | uint32_t remainingCapacity = getRemainingCacheCapacity(); |
| 728 | uint32_t precacheIdx = 0; |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 729 | while (remainingCapacity > 25 && precacheIdx < mLatinPrecache.size()) { |
Alex Sakhartchouk | 94bbccc | 2010-08-17 11:09:49 -0700 | [diff] [blame] | 730 | font->getCachedUTFChar((int32_t)mLatinPrecache[precacheIdx]); |
| 731 | remainingCapacity = getRemainingCacheCapacity(); |
| 732 | precacheIdx ++; |
| 733 | } |
| 734 | } |
| 735 | |
| 736 | |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 737 | void FontState::renderText(const char *text, uint32_t len, int32_t x, int32_t y, |
| 738 | uint32_t startIndex, int32_t numGlyphs, |
| 739 | Font::RenderMode mode, |
| 740 | Font::Rect *bounds, |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 741 | uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 742 | checkInit(); |
| 743 | |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 744 | // Render code here |
| 745 | Font *currentFont = mRSC->getFont(); |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 746 | if (!currentFont) { |
| 747 | if (!mDefault.get()) { |
Christian Robertson | beb2b5c | 2011-08-09 15:24:25 -0700 | [diff] [blame] | 748 | String8 fontsDir("/fonts/Roboto-Regular.ttf"); |
Alex Sakhartchouk | e27cdee | 2010-12-17 11:41:08 -0800 | [diff] [blame] | 749 | String8 fullPath(getenv("ANDROID_ROOT")); |
| 750 | fullPath += fontsDir; |
| 751 | |
Alex Sakhartchouk | 2c74ad9 | 2011-03-16 19:28:25 -0700 | [diff] [blame] | 752 | mDefault.set(Font::create(mRSC, fullPath.string(), 8, mRSC->getDPI())); |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 753 | } |
| 754 | currentFont = mDefault.get(); |
| 755 | } |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 756 | if (!currentFont) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 757 | ALOGE("Unable to initialize any fonts"); |
Alex Sakhartchouk | b6b3489 | 2010-06-30 16:53:43 -0700 | [diff] [blame] | 758 | return; |
| 759 | } |
| 760 | |
Alex Sakhartchouk | 2d8ef49 | 2011-11-16 12:22:10 -0800 | [diff] [blame] | 761 | // Cull things that are off the screen |
| 762 | mSurfaceWidth = (float)mRSC->getCurrentSurfaceWidth(); |
| 763 | mSurfaceHeight = (float)mRSC->getCurrentSurfaceHeight(); |
| 764 | |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 765 | currentFont->renderUTF(text, len, x, y, startIndex, numGlyphs, |
| 766 | mode, bounds, bitmap, bitmapW, bitmapH); |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 767 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 768 | if (mCurrentQuadIndex != 0) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 769 | issueDrawCommand(); |
| 770 | mCurrentQuadIndex = 0; |
| 771 | } |
| 772 | } |
| 773 | |
Alex Sakhartchouk | 10825a0 | 2010-10-05 11:33:27 -0700 | [diff] [blame] | 774 | void FontState::measureText(const char *text, uint32_t len, Font::Rect *bounds) { |
| 775 | renderText(text, len, 0, 0, 0, -1, Font::MEASURE, bounds); |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 776 | bounds->bottom = - bounds->bottom; |
| 777 | bounds->top = - bounds->top; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 778 | } |
| 779 | |
Alex Sakhartchouk | fb10c16 | 2010-08-04 14:45:48 -0700 | [diff] [blame] | 780 | void FontState::setFontColor(float r, float g, float b, float a) { |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 781 | mConstants.mFontColor[0] = r; |
| 782 | mConstants.mFontColor[1] = g; |
| 783 | mConstants.mFontColor[2] = b; |
| 784 | mConstants.mFontColor[3] = a; |
| 785 | |
| 786 | mConstants.mGamma = 1.0f; |
Alex Sakhartchouk | 76322af | 2010-10-05 13:23:55 -0700 | [diff] [blame] | 787 | const float luminance = (r * 2.0f + g * 5.0f + b) / 8.0f; |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 788 | if (luminance <= mBlackThreshold) { |
| 789 | mConstants.mGamma = mBlackGamma; |
| 790 | } else if (luminance >= mWhiteThreshold) { |
| 791 | mConstants.mGamma = mWhiteGamma; |
| 792 | } |
Alex Sakhartchouk | 960ae15 | 2010-10-12 14:15:17 -0700 | [diff] [blame] | 793 | |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 794 | mConstantsDirty = true; |
Alex Sakhartchouk | fb10c16 | 2010-08-04 14:45:48 -0700 | [diff] [blame] | 795 | } |
| 796 | |
Alex Sakhartchouk | 55e8198 | 2010-08-05 11:24:14 -0700 | [diff] [blame] | 797 | void FontState::getFontColor(float *r, float *g, float *b, float *a) const { |
Alex Sakhartchouk | 3bf3ea0 | 2010-10-01 15:20:41 -0700 | [diff] [blame] | 798 | *r = mConstants.mFontColor[0]; |
| 799 | *g = mConstants.mFontColor[1]; |
| 800 | *b = mConstants.mFontColor[2]; |
| 801 | *a = mConstants.mFontColor[3]; |
Alex Sakhartchouk | 55e8198 | 2010-08-05 11:24:14 -0700 | [diff] [blame] | 802 | } |
| 803 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 804 | void FontState::deinit(Context *rsc) { |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 805 | mInitialized = false; |
| 806 | |
Stephen Hines | 01f0ad7 | 2010-09-28 15:45:45 -0700 | [diff] [blame] | 807 | mFontShaderFConstant.clear(); |
| 808 | |
Alex Sakhartchouk | 4a36b45 | 2011-04-29 16:49:08 -0700 | [diff] [blame] | 809 | mMesh.clear(); |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 810 | |
| 811 | mFontShaderF.clear(); |
| 812 | mFontSampler.clear(); |
| 813 | mFontProgramStore.clear(); |
| 814 | |
| 815 | mTextTexture.clear(); |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 816 | for (uint32_t i = 0; i < mCacheLines.size(); i ++) { |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 817 | delete mCacheLines[i]; |
| 818 | } |
| 819 | mCacheLines.clear(); |
| 820 | |
| 821 | mDefault.clear(); |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 822 | #ifndef ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 823 | if (mLibrary) { |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 824 | FT_Done_FreeType( mLibrary ); |
Alex Sakhartchouk | b6b3489 | 2010-06-30 16:53:43 -0700 | [diff] [blame] | 825 | mLibrary = NULL; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 826 | } |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 827 | #endif //ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 828 | } |
| 829 | |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 830 | #ifndef ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | ebd65bb | 2011-02-25 09:34:33 -0800 | [diff] [blame] | 831 | bool FontState::CacheTextureLine::fitBitmap(FT_Bitmap_ *bitmap, uint32_t *retOriginX, uint32_t *retOriginY) { |
| 832 | if ((uint32_t)bitmap->rows > mMaxHeight) { |
| 833 | return false; |
| 834 | } |
| 835 | |
| 836 | if (mCurrentCol + (uint32_t)bitmap->width < mMaxWidth) { |
| 837 | *retOriginX = mCurrentCol; |
| 838 | *retOriginY = mCurrentRow; |
| 839 | mCurrentCol += bitmap->width; |
| 840 | mDirty = true; |
| 841 | return true; |
| 842 | } |
| 843 | |
| 844 | return false; |
| 845 | } |
Alex Sakhartchouk | 17a8a19 | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 846 | #endif //ANDROID_RS_SERIALIZE |
Alex Sakhartchouk | ebd65bb | 2011-02-25 09:34:33 -0800 | [diff] [blame] | 847 | |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 848 | namespace android { |
| 849 | namespace renderscript { |
| 850 | |
Alex Sakhartchouk | e7c4a75 | 2011-04-06 10:57:51 -0700 | [diff] [blame] | 851 | RsFont rsi_FontCreateFromFile(Context *rsc, |
| 852 | char const *name, size_t name_length, |
| 853 | float fontSize, uint32_t dpi) { |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 854 | Font *newFont = Font::create(rsc, name, fontSize, dpi); |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 855 | if (newFont) { |
Alex Sakhartchouk | 071508d | 2010-06-30 12:49:27 -0700 | [diff] [blame] | 856 | newFont->incUserRef(); |
| 857 | } |
| 858 | return newFont; |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 859 | } |
| 860 | |
Alex Sakhartchouk | e7c4a75 | 2011-04-06 10:57:51 -0700 | [diff] [blame] | 861 | RsFont rsi_FontCreateFromMemory(Context *rsc, |
| 862 | char const *name, size_t name_length, |
| 863 | float fontSize, uint32_t dpi, |
| 864 | const void *data, size_t data_length) { |
| 865 | Font *newFont = Font::create(rsc, name, fontSize, dpi, data, data_length); |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 866 | if (newFont) { |
| 867 | newFont->incUserRef(); |
| 868 | } |
| 869 | return newFont; |
| 870 | } |
| 871 | |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 872 | } // renderscript |
| 873 | } // android |