Added a strikethrough text style to sf::Text. Fixes issue #243.
This commit is contained in:
parent
337df1ea5f
commit
5f3b6cb57a
2 changed files with 46 additions and 10 deletions
|
@ -34,7 +34,7 @@
|
|||
namespace sf
|
||||
{
|
||||
////////////////////////////////////////////////////////////
|
||||
Text::Text() :
|
||||
Text::Text() :
|
||||
m_string (),
|
||||
m_font (NULL),
|
||||
m_characterSize (30),
|
||||
|
@ -42,14 +42,14 @@ m_style (Regular),
|
|||
m_color (255, 255, 255),
|
||||
m_vertices (Triangles),
|
||||
m_bounds (),
|
||||
m_geometryNeedUpdate(false)
|
||||
m_geometryNeedUpdate(false)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
Text::Text(const String& string, const Font& font, unsigned int characterSize) :
|
||||
Text::Text(const String& string, const Font& font, unsigned int characterSize) :
|
||||
m_string (string),
|
||||
m_font (&font),
|
||||
m_characterSize (characterSize),
|
||||
|
@ -57,7 +57,7 @@ m_style (Regular),
|
|||
m_color (255, 255, 255),
|
||||
m_vertices (Triangles),
|
||||
m_bounds (),
|
||||
m_geometryNeedUpdate(true)
|
||||
m_geometryNeedUpdate(true)
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -261,10 +261,17 @@ void Text::ensureGeometryUpdate() const
|
|||
// Compute values related to the text style
|
||||
bool bold = (m_style & Bold) != 0;
|
||||
bool underlined = (m_style & Underlined) != 0;
|
||||
bool strikeThrough = (m_style & StrikeThrough) != 0;
|
||||
float italic = (m_style & Italic) ? 0.208f : 0.f; // 12 degrees
|
||||
float underlineOffset = static_cast<float>(m_font->getUnderlinePosition(m_characterSize));
|
||||
float underlineThickness = static_cast<float>(m_font->getUnderlineThickness(m_characterSize));
|
||||
|
||||
// Compute the location of the strike through dynamically
|
||||
// We use the center point of the lowercase 'x' glyph as the reference
|
||||
// We reuse the underline thickness as the thickness of the strike through as well
|
||||
IntRect xBounds = m_font->getGlyph(L'x', m_characterSize, bold).bounds;
|
||||
float strikeThroughOffset = static_cast<float>(xBounds.top) + static_cast<float>(xBounds.height) / 2.f;
|
||||
|
||||
// Precompute the variables needed by the algorithm
|
||||
float hspace = static_cast<float>(m_font->getGlyph(L' ', m_characterSize, bold).advance);
|
||||
float vspace = static_cast<float>(m_font->getLineSpacing(m_characterSize));
|
||||
|
@ -299,6 +306,20 @@ void Text::ensureGeometryUpdate() const
|
|||
m_vertices.append(Vertex(Vector2f(x, bottom), m_color, Vector2f(1, 1)));
|
||||
}
|
||||
|
||||
// If we're using the strike through style and there's a new line, draw a line across all characters
|
||||
if (strikeThrough && (curChar == L'\n'))
|
||||
{
|
||||
float top = y + strikeThroughOffset;
|
||||
float bottom = top + underlineThickness;
|
||||
|
||||
m_vertices.append(Vertex(Vector2f(0, top), m_color, Vector2f(1, 1)));
|
||||
m_vertices.append(Vertex(Vector2f(x, top), m_color, Vector2f(1, 1)));
|
||||
m_vertices.append(Vertex(Vector2f(0, bottom), m_color, Vector2f(1, 1)));
|
||||
m_vertices.append(Vertex(Vector2f(0, bottom), m_color, Vector2f(1, 1)));
|
||||
m_vertices.append(Vertex(Vector2f(x, top), m_color, Vector2f(1, 1)));
|
||||
m_vertices.append(Vertex(Vector2f(x, bottom), m_color, Vector2f(1, 1)));
|
||||
}
|
||||
|
||||
// Handle special characters
|
||||
if ((curChar == ' ') || (curChar == '\t') || (curChar == '\n'))
|
||||
{
|
||||
|
@ -366,6 +387,20 @@ void Text::ensureGeometryUpdate() const
|
|||
m_vertices.append(Vertex(Vector2f(x, bottom), m_color, Vector2f(1, 1)));
|
||||
}
|
||||
|
||||
// If we're using the strike through style, add the last line across all characters
|
||||
if (strikeThrough)
|
||||
{
|
||||
float top = y + strikeThroughOffset;
|
||||
float bottom = top + underlineThickness;
|
||||
|
||||
m_vertices.append(Vertex(Vector2f(0, top), m_color, Vector2f(1, 1)));
|
||||
m_vertices.append(Vertex(Vector2f(x, top), m_color, Vector2f(1, 1)));
|
||||
m_vertices.append(Vertex(Vector2f(0, bottom), m_color, Vector2f(1, 1)));
|
||||
m_vertices.append(Vertex(Vector2f(0, bottom), m_color, Vector2f(1, 1)));
|
||||
m_vertices.append(Vertex(Vector2f(x, top), m_color, Vector2f(1, 1)));
|
||||
m_vertices.append(Vertex(Vector2f(x, bottom), m_color, Vector2f(1, 1)));
|
||||
}
|
||||
|
||||
// Update the bounding rectangle
|
||||
m_bounds.left = minX;
|
||||
m_bounds.top = minY;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue