2011-08-28 15:17:58 +02:00
|
|
|
/*
|
2013-01-08 19:21:54 +01:00
|
|
|
* Copyright (c) 2010-2013 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.
|
|
|
|
*/
|
|
|
|
|
2012-06-17 01:19:43 +02:00
|
|
|
#ifndef BITMAPFONT_H
|
|
|
|
#define BITMAPFONT_H
|
2010-11-21 22:48:58 +01:00
|
|
|
|
2011-08-15 16:06:15 +02:00
|
|
|
#include "declarations.h"
|
2012-07-29 05:34:40 +02:00
|
|
|
#include "texture.h"
|
2011-08-15 16:06:15 +02:00
|
|
|
|
|
|
|
#include <framework/otml/declarations.h>
|
2012-03-20 20:10:04 +01:00
|
|
|
#include <framework/graphics/coordsbuffer.h>
|
2010-11-21 22:48:58 +01:00
|
|
|
|
2012-07-29 05:34:40 +02:00
|
|
|
class BitmapFont : public stdext::shared_object
|
2010-11-21 22:48:58 +01:00
|
|
|
{
|
|
|
|
public:
|
2012-06-17 01:19:43 +02:00
|
|
|
BitmapFont(const std::string& name) : m_name(name) { }
|
2010-11-21 22:48:58 +01:00
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
/// Load font from otml node
|
|
|
|
void load(const OTMLNodePtr& fontNode);
|
2010-11-21 22:48:58 +01:00
|
|
|
|
2011-04-16 18:08:55 +02:00
|
|
|
/// Simple text render starting at startPos
|
2012-03-20 20:10:04 +01:00
|
|
|
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
|
2012-03-20 20:10:04 +01:00
|
|
|
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,
|
2011-08-28 18:02:26 +02:00
|
|
|
Fw::AlignmentFlag align = Fw::AlignTopLeft,
|
2012-06-17 17:21:46 +02:00
|
|
|
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);
|
|
|
|
|
2012-06-17 17:21:46 +02:00
|
|
|
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
|
|
|
|
2010-11-21 22:48:58 +01:00
|
|
|
private:
|
2011-08-14 04:09:11 +02:00
|
|
|
/// Calculates each font character by inspecting font bitmap
|
2012-04-20 12:16:03 +02:00
|
|
|
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];
|
2010-11-21 22:48:58 +01:00
|
|
|
};
|
|
|
|
|
2011-04-10 22:40:44 +02:00
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
#endif
|
|
|
|
|