[4744] | 1 | /* |
---|
[1853] | 2 | orxonox - the future of 3D-vertical-scrollers |
---|
| 3 | |
---|
| 4 | Copyright (C) 2004 orx |
---|
| 5 | |
---|
| 6 | This program is free software; you can redistribute it and/or modify |
---|
| 7 | it under the terms of the GNU General Public License as published by |
---|
| 8 | the Free Software Foundation; either version 2, or (at your option) |
---|
| 9 | any later version. |
---|
[1855] | 10 | |
---|
| 11 | ### File Specific: |
---|
[5343] | 12 | main-programmer: Benjamin Grauer |
---|
[1855] | 13 | co-programmer: ... |
---|
[1853] | 14 | */ |
---|
| 15 | |
---|
[5357] | 16 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GRAPHICS |
---|
[1853] | 17 | |
---|
[5343] | 18 | #include "font.h" |
---|
| 19 | #include "text.h" |
---|
[1853] | 20 | |
---|
[5343] | 21 | #ifdef HAVE_SDL_IMAGE_H |
---|
| 22 | #include <SDL_image.h> |
---|
| 23 | #else |
---|
| 24 | #include <SDL/SDL_image.h> |
---|
| 25 | #endif |
---|
[5347] | 26 | #include "default_font.xpm" |
---|
[5343] | 27 | |
---|
| 28 | #include "debug.h" |
---|
| 29 | #include "compiler.h" |
---|
| 30 | |
---|
[1856] | 31 | using namespace std; |
---|
[1853] | 32 | |
---|
[5343] | 33 | /** |
---|
[5347] | 34 | * constructs a Font out of a TTF-FIle |
---|
[5343] | 35 | * @param fontFile the File to load the font from |
---|
| 36 | * @param fontSize the Size of the Font in Pixels |
---|
| 37 | */ |
---|
[5368] | 38 | Font::Font(const char* fontFile, unsigned int renderSize) |
---|
[5343] | 39 | { |
---|
| 40 | this->init(); |
---|
[1856] | 41 | |
---|
[5368] | 42 | this->renderSize = renderSize; |
---|
[5347] | 43 | this->setStyle("c"); |
---|
[5343] | 44 | |
---|
| 45 | if (fontFile != NULL) |
---|
[5368] | 46 | this->loadFontFromTTF(fontFile); |
---|
[5347] | 47 | } |
---|
[5343] | 48 | |
---|
[5347] | 49 | /** |
---|
| 50 | * constructs a Font out of an ImageFile |
---|
| 51 | * @param imageFile the ImageFile to load the Font From. |
---|
| 52 | */ |
---|
| 53 | Font::Font(const char* imageFile) |
---|
| 54 | { |
---|
| 55 | this->init(); |
---|
| 56 | this->setName(imageFile); |
---|
| 57 | // this->setSize(fontSize); |
---|
| 58 | SDL_Surface* image = NULL; |
---|
| 59 | if (imageFile != NULL) |
---|
| 60 | image = IMG_Load(imageFile); |
---|
| 61 | else |
---|
| 62 | return; |
---|
| 63 | if (image != NULL) |
---|
| 64 | { |
---|
| 65 | this->loadFontFromSDL_Surface(image); |
---|
| 66 | SDL_FreeSurface(image); |
---|
| 67 | } |
---|
| 68 | else |
---|
| 69 | PRINTF(1)("loading from surface %s failed: %s\n", imageFile, IMG_GetError()); |
---|
[5343] | 70 | } |
---|
| 71 | |
---|
[3245] | 72 | /** |
---|
[5343] | 73 | * constructs a Font |
---|
[5347] | 74 | * @param xpmArray the xpm-ARRAY to load the font from |
---|
[5343] | 75 | */ |
---|
| 76 | Font::Font(char** xpmArray) |
---|
[3365] | 77 | { |
---|
[5343] | 78 | this->init(); |
---|
[5347] | 79 | this->setName("XPM-array-font"); |
---|
[5343] | 80 | // this->setSize(fontSize); |
---|
| 81 | SDL_Surface* image = NULL; |
---|
| 82 | if (xpmArray != NULL) |
---|
| 83 | image = IMG_ReadXPMFromArray(xpmArray); |
---|
| 84 | if (image != NULL) |
---|
| 85 | { |
---|
| 86 | this->loadFontFromSDL_Surface(image); |
---|
| 87 | SDL_FreeSurface(image); |
---|
| 88 | } |
---|
| 89 | else |
---|
| 90 | PRINTF(1)("loading from surface failed: %s\n", IMG_GetError()); |
---|
[3365] | 91 | } |
---|
[1853] | 92 | |
---|
| 93 | |
---|
[3245] | 94 | /** |
---|
[5343] | 95 | * destructs a font |
---|
| 96 | * this releases the memory a font uses to be opened. |
---|
| 97 | * deletes the glLists, and the TTF-handler, if present. |
---|
| 98 | */ |
---|
| 99 | Font::~Font() |
---|
[3543] | 100 | { |
---|
[5343] | 101 | // deleting all Glyphs |
---|
| 102 | if (this->glyphArray != NULL) |
---|
| 103 | { |
---|
| 104 | for (int i = 0; i < FONT_HIGHEST_KNOWN_CHAR; i++) |
---|
| 105 | { |
---|
| 106 | if (this->glyphArray[i] != NULL) |
---|
| 107 | { |
---|
| 108 | delete this->glyphArray[i]; |
---|
| 109 | } |
---|
| 110 | } |
---|
| 111 | delete[] this->glyphArray; |
---|
| 112 | } |
---|
| 113 | |
---|
[5347] | 114 | //! @todo check if we really do not need to delete the fastTextureID here. |
---|
| 115 | // if (this->fastTextureID != 0) |
---|
| 116 | // if(glIsTexture(this->fastTextureID)) |
---|
| 117 | // glDeleteTextures(1, &this->fastTextureID); |
---|
| 118 | |
---|
[5343] | 119 | // erease this font out of the memory. |
---|
[5368] | 120 | if (likely(this->fontTTF != NULL)) |
---|
| 121 | TTF_CloseFont(this->fontTTF); |
---|
[3543] | 122 | } |
---|
[5343] | 123 | |
---|
| 124 | /** |
---|
| 125 | * initializes a Font (with default values) |
---|
| 126 | */ |
---|
| 127 | void Font::init() |
---|
| 128 | { |
---|
| 129 | this->setClassID(CL_FONT, "Font"); |
---|
| 130 | // setting default values. |
---|
[5368] | 131 | this->fontTTF = NULL; |
---|
[5343] | 132 | this->glyphArray = NULL; |
---|
| 133 | this->fastTextureID = 0; |
---|
| 134 | } |
---|
| 135 | |
---|
| 136 | |
---|
| 137 | /** |
---|
| 138 | * sets The Font. |
---|
| 139 | * @param fontFile The file containing the font. |
---|
| 140 | * @returns true if loaded, false if something went wrong, or if a font was loaded before. |
---|
| 141 | */ |
---|
[5368] | 142 | bool Font::loadFontFromTTF(const char* fontFile) |
---|
[5343] | 143 | { |
---|
[5347] | 144 | // checking for existent Font. |
---|
[5368] | 145 | if (this->fontTTF != NULL) |
---|
[5343] | 146 | { |
---|
[5368] | 147 | TTF_CloseFont(this->fontTTF); |
---|
| 148 | this->fontTTF = NULL; |
---|
[5347] | 149 | } |
---|
| 150 | if (this->fastTextureID != 0) |
---|
| 151 | { |
---|
| 152 | if(glIsTexture(this->fastTextureID)) |
---|
| 153 | glDeleteTextures(1, &this->fastTextureID); |
---|
| 154 | this->fastTextureID = 0; |
---|
| 155 | } |
---|
[5343] | 156 | |
---|
[5347] | 157 | this->setName(fontFile); |
---|
[5368] | 158 | this->fontTTF = TTF_OpenFont(this->getName(), this->renderSize); |
---|
[5347] | 159 | |
---|
[5368] | 160 | if(this->fontTTF != NULL) |
---|
[5347] | 161 | { |
---|
| 162 | this->fastTextureID = this->createFastTexture(); |
---|
| 163 | if (this->fastTextureID != 0) |
---|
| 164 | return true; |
---|
| 165 | else |
---|
[5343] | 166 | return false; |
---|
| 167 | } |
---|
| 168 | else |
---|
| 169 | { |
---|
[5347] | 170 | PRINTF(1)("TTF_OpenFont: %s\n", TTF_GetError()); |
---|
[5343] | 171 | return false; |
---|
| 172 | } |
---|
[5347] | 173 | |
---|
[5343] | 174 | } |
---|
| 175 | |
---|
| 176 | /** |
---|
| 177 | * loads a font From an XPM-array. |
---|
| 178 | * @param xpmArray the array of the XPM to load the font from. |
---|
| 179 | */ |
---|
| 180 | bool Font::loadFontFromSDL_Surface(SDL_Surface* surface) |
---|
| 181 | { |
---|
| 182 | // loading to a texture. |
---|
| 183 | if(surface == NULL) |
---|
| 184 | return false; |
---|
[5347] | 185 | |
---|
[5368] | 186 | if (this->fontTTF != NULL) |
---|
[5347] | 187 | { |
---|
[5368] | 188 | TTF_CloseFont(this->fontTTF); |
---|
| 189 | this->fontTTF = NULL; |
---|
[5347] | 190 | } |
---|
| 191 | if (this->fastTextureID != 0) |
---|
| 192 | { |
---|
| 193 | if(glIsTexture(this->fastTextureID)) |
---|
| 194 | glDeleteTextures(1, &this->fastTextureID); |
---|
| 195 | this->fastTextureID = 0; |
---|
| 196 | } |
---|
| 197 | |
---|
[5343] | 198 | this->fastTextureID = Text::loadTexture(surface, NULL); |
---|
| 199 | |
---|
| 200 | // initializing the Glyphs. |
---|
| 201 | if (this->glyphArray == NULL) |
---|
| 202 | { |
---|
| 203 | float cx,cy; |
---|
[5367] | 204 | Glyph* tmpGlyph; |
---|
[5343] | 205 | this->glyphArray = new Glyph*[FONT_HIGHEST_KNOWN_CHAR]; |
---|
| 206 | for (int i = 0; i < FONT_HIGHEST_KNOWN_CHAR; i++) |
---|
| 207 | { |
---|
[5367] | 208 | tmpGlyph = this->glyphArray[i] = new Glyph; |
---|
[5343] | 209 | cx=(float)(i%16)/16.0f; // X Position Of Current Character |
---|
| 210 | cy=(float)(i/16)/16.0f; // Y Position Of Current Character |
---|
[5367] | 211 | |
---|
| 212 | tmpGlyph->texCoord[0] = cx; |
---|
| 213 | tmpGlyph->texCoord[1] = cx+0.0625f; |
---|
| 214 | tmpGlyph->texCoord[2] = cy+0.001f; |
---|
| 215 | tmpGlyph->texCoord[3] = cy+0.0625f; |
---|
[5368] | 216 | tmpGlyph->width = 1; |
---|
[5418] | 217 | tmpGlyph->advance = 1; |
---|
[5368] | 218 | tmpGlyph->bearingX = 1; |
---|
| 219 | tmpGlyph->bearingY = 1; |
---|
| 220 | tmpGlyph->height = 1; |
---|
[5343] | 221 | } |
---|
| 222 | } |
---|
| 223 | return true; |
---|
| 224 | } |
---|
| 225 | |
---|
| 226 | |
---|
| 227 | /** |
---|
| 228 | * sets a specific renderStyle |
---|
[5347] | 229 | * @param renderStyle the Style to render: a string (char-array) containing: |
---|
| 230 | * i: italic, b: bold, u, underline |
---|
[5343] | 231 | */ |
---|
| 232 | void Font::setStyle(const char* renderStyle) |
---|
| 233 | { |
---|
| 234 | this->renderStyle = TTF_STYLE_NORMAL; |
---|
| 235 | |
---|
| 236 | for (int i = 0; i < strlen(renderStyle); i++) |
---|
| 237 | if (strncmp(renderStyle+i, "b", 1) == 0) |
---|
| 238 | this->renderStyle |= TTF_STYLE_BOLD; |
---|
| 239 | else if (strncmp(renderStyle+i, "i", 1) == 0) |
---|
| 240 | this->renderStyle |= TTF_STYLE_ITALIC; |
---|
| 241 | else if (strncmp(renderStyle+i, "u", 1) == 0) |
---|
| 242 | this->renderStyle |= TTF_STYLE_UNDERLINE; |
---|
| 243 | |
---|
[5368] | 244 | if (likely(this->fontTTF != NULL)) |
---|
| 245 | TTF_SetFontStyle(this->fontTTF, this->renderStyle); |
---|
[5347] | 246 | // else |
---|
| 247 | // PRINTF(2)("Font was not initialized, please do so before setting the Font-Style.\n"); |
---|
[5343] | 248 | } |
---|
| 249 | |
---|
| 250 | Font* Font::defaultFont = NULL; |
---|
| 251 | |
---|
| 252 | void Font::createAsciiImage(const char* fileName) |
---|
| 253 | { |
---|
[5368] | 254 | if (this->fontTTF == NULL) |
---|
[5343] | 255 | return; |
---|
| 256 | int height = this->getMaxHeight(); |
---|
| 257 | |
---|
| 258 | // |
---|
| 259 | SDL_Color tmpColor = {0, 0, 0}; |
---|
| 260 | // Surface definition. |
---|
| 261 | SDL_Rect tmpRect; // this represents a Rectangle for blitting. |
---|
| 262 | SDL_Surface* tmpSurf = SDL_CreateRGBSurface(SDL_SWSURFACE, |
---|
| 263 | height*16, height*16, |
---|
| 264 | 32, |
---|
| 265 | #if SDL_BYTEORDER == SDL_LIL_ENDIAN /* OpenGL RGBA masks */ |
---|
| 266 | 0x000000FF, |
---|
| 267 | 0x0000FF00, |
---|
| 268 | 0x00FF0000, |
---|
| 269 | 0xFF000000 |
---|
| 270 | #else |
---|
[5367] | 271 | 0xFF000000, |
---|
[5343] | 272 | 0x00FF0000, |
---|
| 273 | 0x0000FF00, |
---|
| 274 | 0x000000FF |
---|
| 275 | #endif |
---|
| 276 | ); |
---|
| 277 | tmpRect.x = 0; tmpRect.y = 0; tmpRect.w = tmpSurf->w; tmpRect.h = tmpSurf->h; |
---|
| 278 | SDL_SetClipRect(tmpSurf, &tmpRect); |
---|
| 279 | int maxLineHeight = 0; |
---|
| 280 | |
---|
| 281 | int posX, posY; |
---|
| 282 | // all the interessting Glyphs |
---|
| 283 | for (posY = 0; posY < 16; posY++) |
---|
| 284 | { |
---|
| 285 | for (posX = 0; posX < 16; posX++) |
---|
| 286 | { |
---|
| 287 | SDL_Surface* glyphSurf = NULL; |
---|
[5368] | 288 | if (likely(this->fontTTF != NULL)) |
---|
[5343] | 289 | { |
---|
| 290 | SDL_Color white = {255, 255, 255}; |
---|
[5368] | 291 | glyphSurf = TTF_RenderGlyph_Blended(this->fontTTF, posX+16*posY, white); |
---|
[5343] | 292 | } |
---|
| 293 | if( glyphSurf != NULL ) |
---|
| 294 | { |
---|
| 295 | tmpRect.x = height*posX; |
---|
| 296 | tmpRect.y = height*posY; |
---|
| 297 | SDL_SetAlpha(glyphSurf, 0, 0); |
---|
| 298 | |
---|
| 299 | SDL_BlitSurface(glyphSurf, NULL, tmpSurf, &tmpRect); |
---|
| 300 | SDL_FreeSurface(glyphSurf); |
---|
| 301 | } |
---|
| 302 | } |
---|
| 303 | } |
---|
| 304 | SDL_SaveBMP(tmpSurf, fileName); |
---|
| 305 | SDL_FreeSurface(tmpSurf); |
---|
| 306 | } |
---|
| 307 | |
---|
| 308 | /** |
---|
| 309 | * initializes the default font |
---|
| 310 | */ |
---|
| 311 | void Font::initDefaultFont() |
---|
| 312 | { |
---|
| 313 | if (Font::defaultFont == NULL) |
---|
| 314 | Font::defaultFont = new Font(font_xpm); |
---|
| 315 | } |
---|
| 316 | |
---|
| 317 | /** |
---|
| 318 | * deletes the default font |
---|
| 319 | */ |
---|
| 320 | void Font::removeDefaultFont() |
---|
| 321 | { |
---|
| 322 | if (Font::defaultFont != NULL) |
---|
| 323 | delete Font::defaultFont; |
---|
| 324 | Font::defaultFont = NULL; |
---|
| 325 | } |
---|
| 326 | |
---|
| 327 | |
---|
| 328 | /** |
---|
| 329 | * @returns the maximum height of the Font, if the font was initialized, 0 otherwise |
---|
| 330 | */ |
---|
| 331 | int Font::getMaxHeight() |
---|
| 332 | { |
---|
[5368] | 333 | if (likely (this->fontTTF != NULL)) |
---|
| 334 | return TTF_FontHeight(this->fontTTF); |
---|
[5343] | 335 | else |
---|
| 336 | return 0; |
---|
| 337 | } |
---|
| 338 | |
---|
| 339 | /** |
---|
| 340 | * @returns the maximum ascent of the Font, if the font was initialized, 0 otherwise |
---|
| 341 | |
---|
| 342 | the ascent is the pixels of the font above the baseline |
---|
| 343 | */ |
---|
| 344 | int Font::getMaxAscent() |
---|
| 345 | { |
---|
[5368] | 346 | if (likely(this->fontTTF != NULL)) |
---|
| 347 | return TTF_FontAscent(this->fontTTF); |
---|
[5343] | 348 | else |
---|
| 349 | return 0; |
---|
| 350 | } |
---|
| 351 | |
---|
| 352 | /** |
---|
| 353 | * @returns the maximum descent of the Font, if the font was initialized, 0 otherwise |
---|
| 354 | |
---|
| 355 | the descent is the pixels of the font below the baseline |
---|
| 356 | */ |
---|
| 357 | int Font::getMaxDescent() |
---|
| 358 | { |
---|
[5368] | 359 | if (likely(this->fontTTF != NULL)) |
---|
| 360 | return TTF_FontDescent(this->fontTTF); |
---|
[5343] | 361 | else |
---|
| 362 | return 0; |
---|
| 363 | } |
---|
| 364 | |
---|
| 365 | /** |
---|
| 366 | * @param character The character to get info about. |
---|
| 367 | * @returns a Glyph struct of a character. This Glyph is a pointer, |
---|
| 368 | and MUST be deleted by the user.. |
---|
| 369 | |
---|
| 370 | This only works for horizontal fonts. see |
---|
| 371 | http://freetype.sourceforge.net/freetype2/docs/tutorial/step2.html |
---|
| 372 | for more info about vertical Fonts |
---|
| 373 | */ |
---|
| 374 | Glyph* Font::getGlyphMetrics(Uint16 character) |
---|
| 375 | { |
---|
| 376 | Glyph* rg = new Glyph; |
---|
| 377 | rg->character = character; |
---|
[5368] | 378 | if (likely (this->fontTTF!= NULL)) |
---|
| 379 | { |
---|
| 380 | int miX, maX, miY, maY, adv; |
---|
| 381 | TTF_GlyphMetrics(this->fontTTF, rg->character, |
---|
| 382 | &miX, &maX, |
---|
| 383 | &miY, &maY, |
---|
| 384 | &adv); |
---|
| 385 | rg->minX = (float)miX / (float)this->renderSize; |
---|
| 386 | rg->maxX = (float)maX / (float)this->renderSize; |
---|
| 387 | rg->minY = (float)miY / (float)this->renderSize; |
---|
| 388 | rg->maxY = (float)maY / (float)this->renderSize; |
---|
| 389 | rg->advance = (float)adv / (float)this->renderSize; |
---|
| 390 | } |
---|
[5343] | 391 | rg->height = rg->maxY - rg->minY; |
---|
| 392 | rg->width = rg->maxX - rg->minX; |
---|
| 393 | rg->bearingX = (rg->advance - rg->width) / 2; |
---|
| 394 | rg->bearingY = rg->maxY; |
---|
| 395 | return rg; |
---|
| 396 | } |
---|
| 397 | |
---|
| 398 | /** |
---|
| 399 | * creates a Fast-Texture of this Font |
---|
| 400 | */ |
---|
| 401 | GLuint Font::createFastTexture() |
---|
| 402 | { |
---|
| 403 | /* interesting GLYPHS: |
---|
| 404 | * 32: space |
---|
| 405 | * 33-47: Special Characters. |
---|
| 406 | * 48-57: 0-9 |
---|
| 407 | * 58-63: some more special chars (minor) |
---|
| 408 | * 65-90: A-Z |
---|
| 409 | * 97-122: a-z |
---|
| 410 | */ |
---|
| 411 | int numberOfGlyphs = 91; |
---|
| 412 | |
---|
| 413 | this->initGlyphs(32, numberOfGlyphs); |
---|
[5368] | 414 | this->glyphArray[32]->width = .5f; //!< @todo find out the real size of a Space |
---|
[5343] | 415 | |
---|
| 416 | int rectSize = this->findOptimalFastTextureSize(); |
---|
| 417 | |
---|
| 418 | // setting default values. (maybe not needed afterwards) |
---|
| 419 | SDL_Color tmpColor; tmpColor.r = tmpColor.g = tmpColor.b = 0; |
---|
| 420 | // Surface definition. |
---|
| 421 | SDL_Rect tmpRect; // this represents a Rectangle for blitting. |
---|
| 422 | SDL_Surface* tmpSurf = SDL_CreateRGBSurface(SDL_SWSURFACE, |
---|
| 423 | rectSize, rectSize, |
---|
| 424 | 32, |
---|
| 425 | #if SDL_BYTEORDER == SDL_LIL_ENDIAN /* OpenGL RGBA masks */ |
---|
| 426 | 0x000000FF, |
---|
| 427 | 0x0000FF00, |
---|
| 428 | 0x00FF0000, |
---|
| 429 | 0xFF000000 |
---|
| 430 | #else |
---|
[5369] | 431 | 0xFF000000, |
---|
[5343] | 432 | 0x00FF0000, |
---|
| 433 | 0x0000FF00, |
---|
| 434 | 0x000000FF |
---|
| 435 | #endif |
---|
| 436 | ); |
---|
| 437 | tmpRect.x = 0; tmpRect.y = 0; tmpRect.w = tmpSurf->w; tmpRect.h = tmpSurf->h; |
---|
| 438 | SDL_SetClipRect(tmpSurf, &tmpRect); |
---|
| 439 | int maxLineHeight = 0; |
---|
| 440 | |
---|
| 441 | // all the interessting Glyphs |
---|
| 442 | for (int i = 0; i < 128; i++) |
---|
| 443 | { |
---|
| 444 | SDL_Surface* glyphSurf = NULL; |
---|
| 445 | Glyph* tmpGlyph; |
---|
| 446 | |
---|
| 447 | if (tmpGlyph = this->glyphArray[i]) |
---|
| 448 | { |
---|
[5368] | 449 | if (tmpGlyph->height*this->renderSize > maxLineHeight) |
---|
| 450 | maxLineHeight = (int)(tmpGlyph->height*this->renderSize); |
---|
[5343] | 451 | |
---|
[5368] | 452 | if (tmpRect.x+tmpGlyph->advance*this->renderSize > tmpSurf->w) |
---|
[5343] | 453 | { |
---|
| 454 | tmpRect.x = 0; |
---|
| 455 | tmpRect.y = tmpRect.y + maxLineHeight + 1; |
---|
| 456 | maxLineHeight = 0; |
---|
| 457 | } |
---|
| 458 | if (tmpRect.y + maxLineHeight > tmpSurf->h) |
---|
| 459 | { |
---|
[5367] | 460 | PRINTF(1)("Protection, so font cannot write over the boundraries (!!this should not heappen!!)\n"); |
---|
[5343] | 461 | break; |
---|
| 462 | } |
---|
| 463 | // reading in the new Glyph |
---|
[5368] | 464 | if (likely(this->fontTTF != NULL)) |
---|
[5343] | 465 | { |
---|
| 466 | SDL_Color white = {255, 255, 255}; |
---|
[5368] | 467 | glyphSurf = TTF_RenderGlyph_Blended(this->fontTTF, i, white); |
---|
[5343] | 468 | } |
---|
| 469 | if( glyphSurf != NULL ) |
---|
| 470 | { |
---|
| 471 | SDL_SetAlpha(glyphSurf, 0, 0); |
---|
| 472 | |
---|
| 473 | SDL_BlitSurface(glyphSurf, NULL, tmpSurf, &tmpRect); |
---|
[5367] | 474 | tmpGlyph->texCoord[0] = (float)tmpRect.x/(float)tmpSurf->w; |
---|
[5368] | 475 | tmpGlyph->texCoord[1] = (float)(tmpRect.x + tmpGlyph->advance*this->renderSize)/(float)tmpSurf->w; |
---|
[5367] | 476 | tmpGlyph->texCoord[2] = (float)(tmpRect.y)/(float)tmpSurf->w; |
---|
[5368] | 477 | tmpGlyph->texCoord[3] = (float)(tmpRect.y+tmpGlyph->height*this->renderSize)/(float)tmpSurf->w; |
---|
[5343] | 478 | SDL_FreeSurface(glyphSurf); |
---|
| 479 | |
---|
[5370] | 480 | tmpRect.x += (int)(tmpGlyph->advance*this->renderSize)+1; |
---|
[5343] | 481 | |
---|
| 482 | // Outputting Glyphs to BMP-files. |
---|
[5368] | 483 | /* |
---|
[5343] | 484 | char outname[512]; |
---|
| 485 | if (i < 10) |
---|
| 486 | sprintf( outname, "%s-glyph-00%d.bmp", this->getName(), i ); |
---|
| 487 | else if (i <100) |
---|
| 488 | sprintf( outname, "%s-glyph-0%d.bmp", this->getName(), i ); |
---|
| 489 | else |
---|
| 490 | sprintf( outname, "%s-glyph-%d.bmp", this->getName(), i ); |
---|
[5368] | 491 | SDL_SaveBMP(tmpSurf, outname); |
---|
| 492 | */ |
---|
[5343] | 493 | } |
---|
| 494 | } |
---|
| 495 | } |
---|
| 496 | |
---|
| 497 | GLuint texture; |
---|
| 498 | glGenTextures(1, &texture); |
---|
| 499 | glBindTexture(GL_TEXTURE_2D, texture); |
---|
[5369] | 500 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); |
---|
| 501 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); |
---|
[5343] | 502 | glTexImage2D(GL_TEXTURE_2D, |
---|
| 503 | 0, |
---|
| 504 | GL_RGBA, |
---|
| 505 | tmpSurf->w, tmpSurf->h, |
---|
| 506 | 0, |
---|
| 507 | GL_RGBA, |
---|
| 508 | GL_UNSIGNED_BYTE, |
---|
| 509 | tmpSurf->pixels); |
---|
| 510 | SDL_FreeSurface(tmpSurf); |
---|
| 511 | return texture; |
---|
| 512 | } |
---|
| 513 | |
---|
| 514 | /** |
---|
| 515 | * stores Glyph Metrics in an Array. |
---|
| 516 | * @param from The Glyph to start from. |
---|
| 517 | * @param count The number of Glyphs to start From. |
---|
| 518 | */ |
---|
| 519 | void Font::initGlyphs(Uint16 from, Uint16 count) |
---|
| 520 | { |
---|
| 521 | /* initialize the Array, and set all its entries to NULL |
---|
| 522 | * only if the Glyph-array has not been initialized |
---|
| 523 | */ |
---|
| 524 | if (!this->glyphArray) |
---|
| 525 | { |
---|
| 526 | this->glyphArray = new Glyph*[FONT_HIGHEST_KNOWN_CHAR]; |
---|
| 527 | for (int i = 0; i < FONT_HIGHEST_KNOWN_CHAR; i++) |
---|
| 528 | this->glyphArray[i] = NULL; |
---|
| 529 | } |
---|
| 530 | |
---|
| 531 | Uint16 lastGlyph = from + count; |
---|
| 532 | |
---|
| 533 | for (int i = from; i <= lastGlyph; i++) |
---|
| 534 | { |
---|
| 535 | // setting up all the Glyphs we like. |
---|
| 536 | glyphArray[i] = getGlyphMetrics(i); |
---|
| 537 | } |
---|
| 538 | return; |
---|
| 539 | } |
---|
| 540 | |
---|
| 541 | /** |
---|
| 542 | * @returns the optimal size to use as the texture size |
---|
| 543 | |
---|
[5347] | 544 | @todo: this algorithm can be a lot faster, althought it does |
---|
[5343] | 545 | not really matter within the init-context, and 128 glyphs. |
---|
| 546 | |
---|
| 547 | This function searches for a 2^n sizes texture-size, this is for |
---|
| 548 | openGL-version < 1.2 compatibility ( and because it is realy easy like this :)) |
---|
| 549 | */ |
---|
| 550 | int Font::findOptimalFastTextureSize() |
---|
| 551 | { |
---|
[5347] | 552 | if (this->glyphArray == NULL) |
---|
| 553 | return 0; |
---|
| 554 | |
---|
[5343] | 555 | int i; |
---|
| 556 | int x,y; // the counters |
---|
| 557 | int maxLineHeight = this->getMaxHeight(); |
---|
| 558 | unsigned int size = 32; // starting Value, we have to start somewhere 32 seems reasonable. (take any small enough 2^i number) |
---|
| 559 | bool sizeOK = false; |
---|
| 560 | Glyph* tmpGlyph; |
---|
| 561 | |
---|
| 562 | while (!sizeOK) |
---|
| 563 | { |
---|
| 564 | x = 0; y = 0; |
---|
[5347] | 565 | for (i = 0; i < FONT_HIGHEST_KNOWN_CHAR; i++) |
---|
[5343] | 566 | { |
---|
| 567 | if((tmpGlyph = this->glyphArray[i]) != NULL) |
---|
| 568 | { |
---|
| 569 | // getting the height of the highest Glyph in the Line. |
---|
[5368] | 570 | if (tmpGlyph->height*this->renderSize > maxLineHeight) |
---|
| 571 | maxLineHeight = (int)(tmpGlyph->height*this->renderSize); |
---|
[5343] | 572 | |
---|
[5368] | 573 | if (x + tmpGlyph->advance*this->renderSize > size) |
---|
[5343] | 574 | { |
---|
| 575 | x = 0; |
---|
| 576 | y = y + maxLineHeight; |
---|
| 577 | //maxLineHeight = 0; |
---|
| 578 | } |
---|
| 579 | if (y + maxLineHeight + 1 > size) |
---|
| 580 | break; |
---|
[5370] | 581 | x += (int)(tmpGlyph->advance*this->renderSize)+1; |
---|
[5343] | 582 | |
---|
| 583 | } |
---|
| 584 | } |
---|
| 585 | if (i >= FONT_HIGHEST_KNOWN_CHAR-1 || size > 8192) |
---|
| 586 | sizeOK = true; |
---|
| 587 | else |
---|
| 588 | size *= 2; |
---|
| 589 | } |
---|
| 590 | return size; |
---|
| 591 | } |
---|
| 592 | |
---|
| 593 | |
---|
| 594 | /** |
---|
| 595 | * a simple function to get some interesting information about this class |
---|
| 596 | */ |
---|
| 597 | void Font::debug() |
---|
| 598 | { |
---|
| 599 | // print the loaded font's style |
---|
| 600 | int style; |
---|
[5368] | 601 | if (likely(this->fontTTF != NULL)) |
---|
| 602 | style = TTF_GetFontStyle(this->fontTTF); |
---|
[5343] | 603 | PRINTF(0)("The font style is:"); |
---|
| 604 | if(style==TTF_STYLE_NORMAL) |
---|
| 605 | PRINTF(0)(" normal"); |
---|
| 606 | else { |
---|
| 607 | if(style&TTF_STYLE_BOLD) |
---|
| 608 | PRINTF(0)(" bold"); |
---|
| 609 | if(style&TTF_STYLE_ITALIC) |
---|
| 610 | PRINTF(0)(" italic"); |
---|
| 611 | if(style&TTF_STYLE_UNDERLINE) |
---|
| 612 | PRINTF(0)(" underline"); |
---|
| 613 | } |
---|
| 614 | PRINTF(0)("\n"); |
---|
| 615 | } |
---|