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

83 lines
3.2 KiB
C
Raw Normal View History

2011-08-28 15:17:58 +02:00
/*
2017-01-13 11:47:07 +01:00
* Copyright (c) 2010-2017 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.
*/
#ifndef BITMAPFONT_H
#define BITMAPFONT_H
2011-08-15 16:06:15 +02:00
#include "declarations.h"
#include "texture.h"
2011-08-15 16:06:15 +02:00
#include <framework/otml/declarations.h>
#include <framework/graphics/coordsbuffer.h>
class BitmapFont : public stdext::shared_object
{
public:
BitmapFont(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
void drawText(const std::string& text, const Point& startPos);
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
void drawText(const std::string& text, const Rect& screenCoords, Fw::AlignmentFlag align = Fw::AlignTopLeft);
void calculateDrawTextCoords(CoordsBuffer& coordsBuffer, const std::string& text, const Rect& screenCoords, Fw::AlignmentFlag align = Fw::AlignTopLeft);
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,
Size* textBoxSize = NULL);
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
2012-01-25 01:50:30 +01:00
std::string wrapText(const std::string& text, int maxWidth);
std::string getName() { return m_name; }
int getGlyphHeight() { return m_glyphHeight; }
const Rect* getGlyphsTextureCoords() { return m_glyphsTextureCoords; }
const Size* getGlyphsSize() { return m_glyphsSize; }
const TexturePtr& getTexture() { return m_texture; }
int getYOffset() { return m_yOffset; }
Size getGlyphSpacing() { 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
void calculateGlyphsWidthsAutomatically(const ImagePtr& image, const Size& glyphSize);
2011-04-10 00:55:58 +02:00
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