Changeset 7450 in orxonox.OLD for trunk/src/lib/graphics/text_engine
- Timestamp:
- Apr 29, 2006, 9:38:44 PM (19 years ago)
- Location:
- trunk/src/lib/graphics/text_engine
- Files:
-
- 4 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/text_engine/font.cc
r7449 r7450 307 307 308 308 /** 309 * initializes the default font309 * @brief initializes the default font 310 310 */ 311 311 void Font::initDefaultFont() … … 316 316 317 317 /** 318 * deletes the default font318 * @brief deletes the default font 319 319 */ 320 320 void Font::removeDefaultFont() … … 334 334 return TTF_FontHeight(this->fontTTF); 335 335 else 336 return 0;336 return 1; 337 337 } 338 338 -
trunk/src/lib/graphics/text_engine/font.h
r7449 r7450 72 72 inline TTF_Font* getTTF() const { return this->fontTTF; }; 73 73 74 int getMaxHeight() const; 75 int getMaxAscent() const; 76 int getMaxDescent() const; 77 74 78 /** @returns the default Font */ 75 79 inline static Font* getDefaultFont() { if (Font::defaultFont == NULL) initDefaultFont(); return Font::defaultFont; }; … … 81 85 private: 82 86 void init(); 83 int getMaxHeight() const;84 int getMaxAscent() const;85 int getMaxDescent() const;86 87 bool getGlyphMetrics(Glyph* glyph, Uint16 character); 87 88 -
trunk/src/lib/graphics/text_engine/multi_line_text.cc
r7449 r7450 16 16 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GRAPHICS 17 17 18 #include " text.h"18 #include "multi_line_text.h" 19 19 #include "font.h" 20 21 #include "util/loading/resource_manager.h"22 #include "debug.h"23 20 24 21 using namespace std; … … 29 26 * @param type The renderType to display this font in 30 27 */ 31 Text::Text(const std::string& fontFile, unsigned int textSize) 28 MultiLineText::MultiLineText(const std::string& fontFile, unsigned int textSize) 29 : Text(fontFile, textSize) 32 30 { 33 this->setClassID(CL_ TEXT, "Text");31 this->setClassID(CL_MULTI_LINE_TEXT, "MultiLineText"); 34 32 35 // initialize this Text 36 this->font = NULL; 37 this->text = ""; 38 this->setAlignment(TEXT_DEFAULT_ALIGNMENT); 39 this->blending = TEXT_DEFAULT_BLENDING; 40 this->color = TEXT_DEFAULT_COLOR; 41 this->setSize(TEXT_DEFAULT_SIZE); 42 this->setText(""); 43 44 45 if (!fontFile.empty()) 46 this->setFont(fontFile, FONT_DEFAULT_RENDER_SIZE); 47 this->setSizeY2D(textSize); 33 this->lineSpacing = 1.0f; 34 this->lineWidth = 100.0f; 35 this->setupTextWidth(); 48 36 } 49 37 50 38 /** 51 * @brief deletes a Text out of memory 39 * @brief sets the maximum Line width 40 * @param lineWidth the maximum lineWidth. 52 41 */ 53 Text::~Text()42 void MultiLineText::setLineWidth(float lineWidth) 54 43 { 55 if (this->font != NULL && this->font != Font::getDefaultFont())56 ResourceManager::getInstance()->unload(this->font);44 this->lineWidth = lineWidth; 45 this->setupTextWidth(); 57 46 } 58 47 59 48 60 49 /** 61 * @brief sets the Font of this Text to font from fontFile62 * @param fontFile the File to load the Font from.63 * @param fontSize the Size of the Font64 */65 void Text::setFont(const std::string& fontFile, unsigned int fontSize)66 {67 Font* newFont;68 Font* oldFont = this->font;69 70 // load a new Font71 if (!fontFile.empty())72 {73 newFont = (Font*)ResourceManager::getInstance()->load(fontFile, TTF, RP_GAME, (int)fontSize);74 if (newFont == NULL)75 {76 newFont = Font::getDefaultFont();77 PRINTF(2)("Font %s could not be loaded, probably file not found\n", fontFile.c_str());78 }79 }80 else81 newFont = Font::getDefaultFont();82 83 // unloading the Font if we alrady have one loaded.84 this->font = newFont;85 if (oldFont != NULL && oldFont != Font::getDefaultFont())86 ResourceManager::getInstance()->unload(oldFont);87 }88 89 /**90 * @brief Sets a new Text to the font91 * @param text the new text to set92 */93 void Text::setText(const std::string& text)94 {95 this->text = text;96 97 // setting up the Text-Width if DYNAMIC98 // if (this->type & TEXT_RENDER_DYNAMIC && this->getAlignment() != TEXT_ALIGN_LEFT && this->font != NULL)99 const Font* calcSizeFont = this->font;100 if (calcSizeFont != NULL || (calcSizeFont = Font::getDefaultFont()) != NULL)101 {102 Glyph** glyphArray = calcSizeFont->getGlyphArray();103 104 float width = 0;105 if (!this->text.empty())106 {107 for (unsigned int i = 0; i < this->text.size(); i++)108 {109 if(glyphArray[this->text[i]] != NULL)110 {111 width += glyphArray[this->text[i]]->advance;112 }113 }114 this->setSizeX2D(width *this->getSizeY2D());115 }116 }117 }118 119 /**120 50 * @brief draws the Text 121 51 */ 122 void Text::draw() const52 void MultiLineText::draw() const 123 53 { 124 if (unlikely(this-> text.empty()))54 if (unlikely(this->getText().empty())) 125 55 return; 126 56 glPushMatrix(); 127 57 // transform for alignment. 58 // TODO make the Stuff with the alignment 128 59 if (this->getAlignment() == TEXT_ALIGN_RIGHT) 129 60 glTranslatef(-this->getSizeX2D(), 0, 0); … … 133 64 // drawing this Text. 134 65 // setting the Blending effects 135 glColor4f(this-> color.x, this->color.y, this->color.z, this->blending);66 glColor4f(this->getColor().x, this->getColor().y, this->getColor().z, this->getBlending()); 136 67 glEnable(GL_BLEND); 137 68 glEnable(GL_TEXTURE_2D); … … 139 70 glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_COLOR, GL_MODULATE ); 140 71 141 Glyph** glyphArray = this->font->getGlyphArray(); 142 glBindTexture(GL_TEXTURE_2D, font->getTexture()); 143 glTranslatef(getAbsCoor2D().x, getAbsCoor2D().y, 0); 72 glBindTexture(GL_TEXTURE_2D, this->getFont()->getTexture()); 73 glTranslatef(this->getAbsCoor2D().x, this->getAbsCoor2D().y, 0); 144 74 glRotatef(this->getAbsDir2D(), 0, 0, 1); 145 75 146 76 Glyph* tmpGlyph; 147 77 float posX = 0.0f; 78 float posY = 0.0f; 79 unsigned int lineNumber = 0; 80 148 81 glBegin(GL_QUADS); 149 for (unsigned int i = 0; i < this-> text.size(); i++)82 for (unsigned int i = 0; i < this->getText().size(); i++) 150 83 { 151 if(likely((tmpGlyph = glyphArray[this->text[i]]) != NULL)) 84 if (unlikely(tmpGlyph->character == '\n' || i == this->lineEnds[lineNumber])) 85 { 86 // go to the next Line. 87 lineNumber++; 88 posX = 0.0f; 89 posY += this->lineSpacing + this->getFont()->getMaxHeight(); 90 } 91 92 if(likely((tmpGlyph = this->getFont()->getGlyphArray()[this->getText()[i]]) != NULL)) 152 93 { 153 94 glTexCoord2f(tmpGlyph->texCoord[1], tmpGlyph->texCoord[2]); 154 glVertex2d(posX+tmpGlyph->maxX*this->getSize Y2D(), 0);95 glVertex2d(posX+tmpGlyph->maxX*this->getSize(), posY); 155 96 156 97 glTexCoord2f(tmpGlyph->texCoord[1], tmpGlyph->texCoord[3]); 157 glVertex2d(posX+tmpGlyph->maxX*this->getSize Y2D(), this->getSizeY2D());98 glVertex2d(posX+tmpGlyph->maxX*this->getSize(), posY + this->getSize()); 158 99 159 100 glTexCoord2f(tmpGlyph->texCoord[0], tmpGlyph->texCoord[3]); 160 glVertex2d(posX+tmpGlyph->minX*this->getSize Y2D(), this->getSizeY2D());101 glVertex2d(posX+tmpGlyph->minX*this->getSize(), posY+ this->getSize()); 161 102 162 103 glTexCoord2f(tmpGlyph->texCoord[0], tmpGlyph->texCoord[2]); 163 glVertex2d(posX+tmpGlyph->minX*this->getSize Y2D(), 0);104 glVertex2d(posX+tmpGlyph->minX*this->getSize(), posY); 164 105 165 posX += tmpGlyph->advance * this->getSize Y2D();106 posX += tmpGlyph->advance * this->getSize(); 166 107 } 167 108 } … … 171 112 172 113 /** 173 * @brief prints out some nice debug information about this text114 * @brief setting up the Text-Width if DYNAMIC 174 115 */ 175 void Text::debug() const116 void MultiLineText::setupTextWidth() 176 117 { 177 PRINT(0)("=== TEXT: %s ===\n", this->text.c_str()); 178 PRINT(0)("Color: %0.2f %0.2f %0.2f\n", this->color.x, this->color.y, this->color.z); 118 this->lineEnds.clear(); 119 float width = 0.0f; 120 // TODO make size local to this (not using the one from Element2D. 121 float maxWidth = this->lineWidth / this->getSize(); 122 123 for (unsigned int i = 0; i < this->getText().size(); i++) 124 { 125 if (width > maxWidth || this->getText()[i] == '\n') 126 { 127 this->lineEnds.push_back(i); 128 width = 0.0f; 129 } 130 // Advance the Text. 131 if(this->getFont()->getGlyphArray()[this->getText()[i]] != NULL) 132 width += this->getFont()->getGlyphArray()[this->getText()[i]]->advance; 133 } 179 134 } 180 181 182 ////////////183 /// UTIL ///184 ////////////185 /**186 * @brief Loads a Font from an SDL_surface into a texture.187 * @param surface The surface to make the texture of188 * @param texCoord The texture coordinates of the 4 corners of the texture189 * @returns the ID of the texture190 */191 GLuint Text::loadTexture(SDL_Surface *surface, TexCoord* texCoord)192 {193 GLuint texture;194 int w, h;195 SDL_Surface *image;196 SDL_Rect area;197 Uint32 saved_flags;198 Uint8 saved_alpha;199 200 /* Use the surface width and height expanded to powers of 2 */201 w = powerOfTwo(surface->w);202 h = powerOfTwo(surface->h);203 if (texCoord != NULL)204 {205 texCoord->minU = 0.0f;206 texCoord->minV = 0.0f;207 texCoord->maxU = (GLfloat)surface->w / w;208 texCoord->maxV = (GLfloat)surface->h / h;209 }210 image = SDL_CreateRGBSurface(SDL_SWSURFACE,211 w, h,212 32,213 #if SDL_BYTEORDER == SDL_LIL_ENDIAN /* OpenGL RGBA masks */214 0x000000FF,215 0x0000FF00,216 0x00FF0000,217 0xFF000000218 #else219 0xFF000000,220 0x00FF0000,221 0x0000FF00,222 0x000000FF223 #endif224 );225 if ( image == NULL )226 {227 return 0;228 }229 230 /* Save the alpha blending attributes */231 saved_flags = surface->flags&(SDL_SRCALPHA|SDL_RLEACCELOK);232 saved_alpha = surface->format->alpha;233 if ( (saved_flags & SDL_SRCALPHA) == SDL_SRCALPHA )234 {235 SDL_SetAlpha(surface, 0, 0);236 }237 238 /* Copy the surface into the GL texture image */239 area.x = 0;240 area.y = 0;241 area.w = surface->w;242 area.h = surface->h;243 SDL_BlitSurface(surface, &area, image, &area);244 245 /* Restore the alpha blending attributes */246 if ( (saved_flags & SDL_SRCALPHA) == SDL_SRCALPHA )247 {248 SDL_SetAlpha(surface, saved_flags, saved_alpha);249 }250 251 /* Create an OpenGL texture for the image */252 glGenTextures(1, &texture);253 glBindTexture(GL_TEXTURE_2D, texture);254 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);255 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);256 glTexImage2D(GL_TEXTURE_2D,257 0,258 GL_RGBA,259 w, h,260 0,261 GL_RGBA,262 GL_UNSIGNED_BYTE,263 image->pixels);264 SDL_FreeSurface(image); /* No longer needed the data */265 266 return texture;267 }268 269 /**270 * @brief Quick utility function for texture creation271 * @param input an integer272 * @returns the next bigger 2^n-integer than input273 */274 int Text::powerOfTwo(int input)275 {276 int value = 1;277 278 while ( value < input )279 value <<= 1;280 return value;281 } -
trunk/src/lib/graphics/text_engine/multi_line_text.h
r7449 r7450 1 1 /*! 2 * @file text.h2 * @file multi_line_text.h 3 3 * @brief Definition of a text Class, that is able to render text. 4 4 */ 5 5 6 #ifndef _ TEXT_H7 #define _ TEXT_H6 #ifndef _MULTI_LINE_TEXT_H 7 #define _MULTI_LINE_TEXT_H 8 8 9 #include " element_2d.h"9 #include "text.h" 10 10 11 #include "glincl.h" 12 13 #define TEXT_ALIGN_LEFT E2D_ALIGN_LEFT 14 #define TEXT_ALIGN_RIGHT E2D_ALIGN_RIGHT 15 #define TEXT_ALIGN_CENTER E2D_ALIGN_CENTER 16 #define TEXT_ALIGN_SCREEN_CENTER E2D_ALIGN_SCREEN_CENTER 17 #define TEXT_DEFAULT_COLOR Vector(1.0, 1.0, 1.0) //!< the default Color (white) 18 #define TEXT_DEFAULT_BLENDING 1.0f //!< the default blending of the text, (no blending at all) 19 20 #define TEXT_DEFAULT_ALIGNMENT TEXT_ALIGN_LEFT //!< default alignment 21 #define TEXT_DEFAULT_SIZE 20 //!< default size of the Text 22 23 24 // FORWARD DECLARATION 25 class Font; 26 struct SDL_Surface; 27 28 //! A Struct to handel Texture Coordinates for quads 29 struct TexCoord 30 { 31 float minU; //!< The minimum U-Coordinate 32 float maxU; //!< The maximum U-Coordinate 33 float minV; //!< The minimum V-Coordinate 34 float maxV; //!< The maximum V-Coordinate 35 }; 11 #include <vector> 36 12 37 13 //! Represents one textElement. 38 class Text : public Element2D14 class MultiLineText : public Text 39 15 { 40 16 public: 41 Text(const std::string& fontFile = "", unsigned int fontSize = TEXT_DEFAULT_SIZE); 42 virtual ~Text(); 17 MultiLineText(const std::string& fontFile = "", unsigned int fontSize = TEXT_DEFAULT_SIZE); 43 18 44 void setFont(const std::string& fontFile, unsigned int renderSize); 19 // Setup: 20 void setLineWidth(float lineWidth); 21 /** @param lineSpacing: the Spacing between the lines */ 22 void setLineSpacing(float lineSpacing) { this->lineSpacing = lineSpacing; }; 45 23 46 void setText(const std::string& text); 47 48 /** @returns the String this Text displays */ 49 inline const std::string& getText() const { return this->text; }; 50 /** @param blending the blending intensity to set (between 0.0 and 1.0) */ 51 inline void setBlending(float blending) { this->blending = blending; }; 52 /** sets the Color of the Text to render (values in [0-1]) @param r red @param g green @param b blue */ 53 void setColor(float r, float g, float b) { this->color = Vector(r, g, b); }; 54 /** sets the Size of the Font */ 55 void setSize(float size) { this->setSizeY2D(size); }; 56 /** @returns the Size of the Text */ 57 // void getSize(float &x, float& y) const { return this->size; }; 24 // Retrieve: 25 /** @returns the LineWidth (maximum distance from the left to the right */ 26 inline float getLineWidth() const { return this->lineWidth; }; 27 /** @returns the LineSpacing */ 28 inline float getLineSpacing() const { return this->lineSpacing; }; 58 29 59 30 virtual void draw() const; 60 31 61 void debug() const; 62 63 // helpers. 64 static GLuint loadTexture(SDL_Surface* surface, TexCoord* texCoord); 65 static int powerOfTwo(int input); 32 protected: 33 virtual void setupTextWidth(); 66 34 67 35 private: 68 Font* font; //!< Font of this text 69 70 std::string text; //!< The text to display 71 Vector color; //!< The color of the font. 72 float blending; //!< The blending intensity. 36 float lineWidth; 37 float lineSpacing; 38 std::vector<unsigned int> lineEnds; 73 39 }; 74 40 75 #endif /* _ TEXT_H */41 #endif /* _MULTI_LINE_TEXT_H */ -
trunk/src/lib/graphics/text_engine/text.cc
r7448 r7450 85 85 if (oldFont != NULL && oldFont != Font::getDefaultFont()) 86 86 ResourceManager::getInstance()->unload(oldFont); 87 88 this->setupTextWidth(); 87 89 } 88 90 … … 95 97 this->text = text; 96 98 97 // setting up the Text-Width if DYNAMIC 98 // if (this->type & TEXT_RENDER_DYNAMIC && this->getAlignment() != TEXT_ALIGN_LEFT && this->font != NULL) 99 const Font* calcSizeFont = this->font; 100 if (calcSizeFont != NULL || (calcSizeFont = Font::getDefaultFont()) != NULL) 101 { 102 Glyph** glyphArray = calcSizeFont->getGlyphArray(); 103 104 float width = 0; 105 if (!this->text.empty()) 106 { 107 for (unsigned int i = 0; i < this->text.size(); i++) 108 { 109 if(glyphArray[this->text[i]] != NULL) 110 { 111 width += glyphArray[this->text[i]]->advance; 112 } 113 } 114 this->setSizeX2D(width *this->getSizeY2D()); 115 } 116 } 99 this->setupTextWidth(); 117 100 } 118 101 … … 139 122 glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_COLOR, GL_MODULATE ); 140 123 141 Glyph** glyphArray = this->font->getGlyphArray();142 124 glBindTexture(GL_TEXTURE_2D, font->getTexture()); 143 125 glTranslatef(getAbsCoor2D().x, getAbsCoor2D().y, 0); … … 149 131 for (unsigned int i = 0; i < this->text.size(); i++) 150 132 { 151 if(likely((tmpGlyph = glyphArray[this->text[i]]) != NULL))133 if(likely((tmpGlyph = this->getFont()->getGlyphArray()[this->text[i]]) != NULL)) 152 134 { 153 135 glTexCoord2f(tmpGlyph->texCoord[1], tmpGlyph->texCoord[2]); 154 glVertex2d(posX+tmpGlyph->maxX*this->getSize Y2D(), 0);136 glVertex2d(posX+tmpGlyph->maxX*this->getSize(), 0); 155 137 156 138 glTexCoord2f(tmpGlyph->texCoord[1], tmpGlyph->texCoord[3]); 157 glVertex2d(posX+tmpGlyph->maxX*this->getSize Y2D(), this->getSizeY2D());139 glVertex2d(posX+tmpGlyph->maxX*this->getSize(), this->getSize()); 158 140 159 141 glTexCoord2f(tmpGlyph->texCoord[0], tmpGlyph->texCoord[3]); 160 glVertex2d(posX+tmpGlyph->minX*this->getSize Y2D(), this->getSizeY2D());142 glVertex2d(posX+tmpGlyph->minX*this->getSize(), this->getSize()); 161 143 162 144 glTexCoord2f(tmpGlyph->texCoord[0], tmpGlyph->texCoord[2]); 163 glVertex2d(posX+tmpGlyph->minX*this->getSize Y2D(), 0);145 glVertex2d(posX+tmpGlyph->minX*this->getSize(), 0); 164 146 165 posX += tmpGlyph->advance * this->getSize Y2D();147 posX += tmpGlyph->advance * this->getSize(); 166 148 } 167 149 } … … 170 152 } 171 153 154 155 /** 156 * @brief setting up the Text-Width. 157 */ 158 void Text::setupTextWidth() 159 { 160 float width = 0; 161 for (unsigned int i = 0; i < this->text.size(); i++) 162 if(this->font->getGlyphArray()[this->text[i]] != NULL) 163 width += this->font->getGlyphArray()[this->text[i]]->advance; 164 this->setSizeX2D(width *this->getSize()); 165 } 166 167 172 168 /** 173 169 * @brief prints out some nice debug information about this text … … 175 171 void Text::debug() const 176 172 { 177 PRINT(0)("=== TEXT: %s ===\n", this->text.c_str());173 PRINT(0)("=== TEXT: %s (with Font:'%s') displaying %s ===\n", this->getName(), this->font->getName(), this->text.c_str()); 178 174 PRINT(0)("Color: %0.2f %0.2f %0.2f\n", this->color.x, this->color.y, this->color.z); 179 175 } 180 176 181 182 ////////////183 /// UTIL ///184 ////////////185 /**186 * @brief Loads a Font from an SDL_surface into a texture.187 * @param surface The surface to make the texture of188 * @param texCoord The texture coordinates of the 4 corners of the texture189 * @returns the ID of the texture190 */191 GLuint Text::loadTexture(SDL_Surface *surface, TexCoord* texCoord)192 {193 GLuint texture;194 int w, h;195 SDL_Surface *image;196 SDL_Rect area;197 Uint32 saved_flags;198 Uint8 saved_alpha;199 200 /* Use the surface width and height expanded to powers of 2 */201 w = powerOfTwo(surface->w);202 h = powerOfTwo(surface->h);203 if (texCoord != NULL)204 {205 texCoord->minU = 0.0f;206 texCoord->minV = 0.0f;207 texCoord->maxU = (GLfloat)surface->w / w;208 texCoord->maxV = (GLfloat)surface->h / h;209 }210 image = SDL_CreateRGBSurface(SDL_SWSURFACE,211 w, h,212 32,213 #if SDL_BYTEORDER == SDL_LIL_ENDIAN /* OpenGL RGBA masks */214 0x000000FF,215 0x0000FF00,216 0x00FF0000,217 0xFF000000218 #else219 0xFF000000,220 0x00FF0000,221 0x0000FF00,222 0x000000FF223 #endif224 );225 if ( image == NULL )226 {227 return 0;228 }229 230 /* Save the alpha blending attributes */231 saved_flags = surface->flags&(SDL_SRCALPHA|SDL_RLEACCELOK);232 saved_alpha = surface->format->alpha;233 if ( (saved_flags & SDL_SRCALPHA) == SDL_SRCALPHA )234 {235 SDL_SetAlpha(surface, 0, 0);236 }237 238 /* Copy the surface into the GL texture image */239 area.x = 0;240 area.y = 0;241 area.w = surface->w;242 area.h = surface->h;243 SDL_BlitSurface(surface, &area, image, &area);244 245 /* Restore the alpha blending attributes */246 if ( (saved_flags & SDL_SRCALPHA) == SDL_SRCALPHA )247 {248 SDL_SetAlpha(surface, saved_flags, saved_alpha);249 }250 251 /* Create an OpenGL texture for the image */252 glGenTextures(1, &texture);253 glBindTexture(GL_TEXTURE_2D, texture);254 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);255 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);256 glTexImage2D(GL_TEXTURE_2D,257 0,258 GL_RGBA,259 w, h,260 0,261 GL_RGBA,262 GL_UNSIGNED_BYTE,263 image->pixels);264 SDL_FreeSurface(image); /* No longer needed the data */265 266 return texture;267 }268 269 /**270 * @brief Quick utility function for texture creation271 * @param input an integer272 * @returns the next bigger 2^n-integer than input273 */274 int Text::powerOfTwo(int input)275 {276 int value = 1;277 278 while ( value < input )279 value <<= 1;280 return value;281 } -
trunk/src/lib/graphics/text_engine/text.h
r7355 r7450 8 8 9 9 #include "element_2d.h" 10 11 #include "glincl.h"12 10 13 11 #define TEXT_ALIGN_LEFT E2D_ALIGN_LEFT … … 21 19 #define TEXT_DEFAULT_SIZE 20 //!< default size of the Text 22 20 23 24 21 // FORWARD DECLARATION 25 22 class Font; 26 23 struct SDL_Surface; 27 28 //! A Struct to handel Texture Coordinates for quads29 struct TexCoord30 {31 float minU; //!< The minimum U-Coordinate32 float maxU; //!< The maximum U-Coordinate33 float minV; //!< The minimum V-Coordinate34 float maxV; //!< The maximum V-Coordinate35 };36 24 37 25 //! Represents one textElement. … … 42 30 virtual ~Text(); 43 31 32 // SETUP 44 33 void setFont(const std::string& fontFile, unsigned int renderSize); 34 void setText(const std::string& text); 35 /** @param blending the blending intensity to set (between 0.0 and 1.0) */ 36 inline void setBlending(float blending) { this->blending = blending; }; 37 /** @param r red @param g green @param b blue @brief sets the Color of the Text to render (values in [0-1]) */ 38 void setColor(float r, float g, float b) { this->color = Vector(r, g, b); }; 39 /** @param size the Size of the Text @brief sets the Size of the Font */ 40 inline void setSize(float size) { this->setSizeY2D(size); }; 45 41 46 void setText(const std::string& text); 47 42 /// RETRIEVE 43 /** @returns the pointer to the stored Font (not changeable) */ 44 inline const Font* const getFont() const { return this->font; }; 48 45 /** @returns the String this Text displays */ 49 46 inline const std::string& getText() const { return this->text; }; 50 /** @param blending the blending intensity to set (between 0.0 and 1.0) */ 51 inline void setBlending(float blending) { this->blending = blending; }; 52 /** sets the Color of the Text to render (values in [0-1]) @param r red @param g green @param b blue */ 53 void setColor(float r, float g, float b) { this->color = Vector(r, g, b); }; 54 /** sets the Size of the Font */ 55 void setSize(float size) { this->setSizeY2D(size); }; 47 /** @returns the Blending Value [0 invisible 1.0 full visible */ 48 inline float getBlending() const { return this->blending; }; 49 /** @returns: a Vector(r,g,b) @brief: retrieve a Vector holding the Color of the Text */ 50 inline const Vector& getColor() const { return this->color; }; 56 51 /** @returns the Size of the Text */ 57 // void getSize(float &x, float& y) const { return this->size; };52 inline float getSize() const { return this->getSizeY2D(); }; 58 53 59 54 virtual void draw() const; … … 61 56 void debug() const; 62 57 63 // helpers. 64 static GLuint loadTexture(SDL_Surface* surface, TexCoord* texCoord); 65 static int powerOfTwo(int input); 66 58 protected: 59 virtual void setupTextWidth(); 67 60 private: 68 61 Font* font; //!< Font of this text
Note: See TracChangeset
for help on using the changeset viewer.