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

82 lines
3.1 KiB
C
Raw Normal View History

2011-08-28 15:17:58 +02:00
/*
2012-01-02 17:58:37 +01:00
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
2011-08-28 15:17:58 +02:00
*
* 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-08-15 16:06:15 +02:00
#include "declarations.h"
#include <framework/otml/declarations.h>
2011-04-06 21:46:58 +02:00
class Font
{
public:
2011-08-14 04:09:11 +02:00
Font(const std::string& name) : m_name(name) { }
2011-08-14 04:09:11 +02:00
/// Load font from otml node
void load(const OTMLNodePtr& fontNode);
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 = Fw::white);
2011-04-07 02:58:36 +02:00
2011-08-14 04:09:11 +02:00
/// Advanced text render delimited by a screen region and alignment
2011-04-07 22:36:40 +02:00
void renderText(const std::string& text,
const Rect& screenCoords,
Fw::AlignmentFlag align = Fw::AlignTopLeft,
const Color& color = Fw::white);
2011-04-07 22:36:40 +02:00
/// Calculate glyphs positions to use on render, also calculates textBoxSize if wanted
2011-08-14 04:09:11 +02:00
const std::vector<Point>& calculateGlyphsPositions(const std::string& text,
Fw::AlignmentFlag align = Fw::AlignTopLeft,
2011-08-14 04:09:11 +02:00
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-08-14 04:09:11 +02:00
const Rect* getGlyphsTextureCoords() const { return m_glyphsTextureCoords; }
const Size* getGlyphsSize() const { return m_glyphsSize; }
2011-04-15 04:13:53 +02:00
const TexturePtr& getTexture() const { return m_texture; }
2011-11-17 22:41:02 +01:00
int getYOffset() const { return m_yOffset; }
2011-05-12 00:16:11 +02:00
Size getGlyphSpacing() const { return m_glyphSpacing; }
2011-04-15 04:13:53 +02:00
private:
2011-08-14 04:09:11 +02:00
/// Calculates each font character by inspecting font bitmap
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-11-17 22:41:02 +01:00
int m_yOffset;
2011-04-10 00:55:58 +02:00
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-10 22:40:44 +02:00
2011-08-14 04:09:11 +02:00
#endif