tibia-client/src/framework/graphics/font.h

81 lines
2.9 KiB
C
Raw Normal View History

/* The MIT License
*
* Copyright (c) 2010 OTClient, https://github.com/edubart/otclient
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
2011-04-06 21:46:58 +02:00
#ifndef FONT_H
#define FONT_H
2011-07-13 23:12:36 +02:00
#include <global.h>
#include <graphics/graphics.h>
2011-04-06 21:46:58 +02:00
class Font
{
public:
2011-04-10 22:40:44 +02:00
Font(const std::string& name) :
2011-05-12 00:16:11 +02:00
m_name(name) { }
2011-04-06 21:46:58 +02:00
/// Load font from file
bool load(const std::string &file);
2011-04-16 18:08:55 +02:00
/// Simple text render starting at startPos
2011-04-07 22:36:40 +02:00
void renderText(const std::string& text,
2011-04-11 22:06:03 +02:00
const Point& startPos,
const Color& color = Color::white);
2011-04-07 02:58:36 +02:00
2011-04-16 18:08:55 +02:00
/// Advanced text render
2011-04-07 22:36:40 +02:00
void renderText(const std::string& text,
const Rect& screenCoords,
2011-05-12 00:16:11 +02:00
AlignmentFlag align = AlignTopLeft,
2011-04-15 04:13:53 +02:00
const Color& color = Color::white);
2011-04-07 22:36:40 +02:00
/// Calculate glyphs positions to use on render, also calculates textBoxSize if wanted
2011-05-12 00:16:11 +02:00
const std::vector<Point>& calculateGlyphsPositions(const std::string& text, AlignmentFlag align = AlignTopLeft, Size *textBoxSize = NULL) const;
2011-04-07 10:38:29 +02:00
/// Simulate render and calculate text size
2011-04-08 07:10:00 +02:00
Size calculateTextRectSize(const std::string& text);
2011-04-07 02:58:36 +02:00
2011-05-12 00:16:11 +02:00
std::string getName() const { return m_name; }
2011-04-11 06:08:56 +02:00
int getGlyphHeight() const { return m_glyphHeight; }
2011-04-15 04:13:53 +02:00
const Rect *getGlyphsTextureCoords() const { return m_glyphsTextureCoords; }
const Size *getGlyphsSize() const { return m_glyphsSize; }
const TexturePtr& getTexture() const { return m_texture; }
int getTopMargin() const { return m_topMargin; }
2011-05-12 00:16:11 +02:00
Size getGlyphSpacing() const { return m_glyphSpacing; }
2011-04-15 04:13:53 +02:00
private:
2011-04-10 00:55:58 +02:00
void calculateGlyphsWidthsAutomatically(const Size& glyphSize);
2011-04-10 22:40:44 +02:00
std::string m_name;
2011-04-10 00:55:58 +02:00
int m_glyphHeight;
2011-05-12 00:16:11 +02:00
int m_firstGlyph;
2011-04-10 00:55:58 +02:00
int m_topMargin;
Size m_glyphSpacing;
2011-04-07 02:58:36 +02:00
TexturePtr m_texture;
2011-04-07 09:30:32 +02:00
Rect m_glyphsTextureCoords[256];
Size m_glyphsSize[256];
};
2011-04-11 23:22:01 +02:00
typedef boost::shared_ptr<Font> FontPtr;
2011-04-10 22:40:44 +02:00
2011-04-06 21:46:58 +02:00
#endif // FONT_H