#include "components/TextComponent.h" #include "Renderer.h" #include "Log.h" #include "Window.h" #include "ThemeData.h" #include "Util.h" #include "Settings.h" TextComponent::TextComponent(Window* window) : GuiComponent(window), mFont(Font::get(FONT_SIZE_MEDIUM)), mUppercase(false), mColor(0x000000FF), mAutoCalcExtent(true, true), mAlignment(ALIGN_LEFT), mLineSpacing(1.5f), mBgColor(NULL) { } TextComponent::TextComponent(Window* window, const std::string& text, const std::shared_ptr& font, unsigned int color, Alignment align, Eigen::Vector3f pos, Eigen::Vector2f size, unsigned int bgcolor) : GuiComponent(window), mFont(NULL), mUppercase(false), mColor(0x000000FF), mAutoCalcExtent(true, true), mAlignment(align), mLineSpacing(1.5f), mBgColor(NULL) { setFont(font); setColor(color); setBackgroundColor(bgcolor); setText(text); setPosition(pos); setSize(size); } void TextComponent::onSizeChanged() { mAutoCalcExtent << (getSize().x() == 0), (getSize().y() == 0); onTextChanged(); } void TextComponent::setFont(const std::shared_ptr& font) { mFont = font; onTextChanged(); } // Set the color of the font/text void TextComponent::setColor(unsigned int color) { mColor = color; mColorOpacity = mColor & 0x000000FF; onColorChanged(); } // Set the color of the background box void TextComponent::setBackgroundColor(unsigned int color) { mBgColor = color; mBgColorOpacity = mBgColor & 0x000000FF; } // Scale the opacity void TextComponent::setOpacity(unsigned char opacity) { // This method is mostly called to do fading in-out of the Text component element. // Therefore, we assume here that opacity is a fractional value (expressed as an int 0-255), // of the opacity originally set with setColor() or setBackgroundColor(). unsigned char o = (unsigned char)((float)opacity / 255.f * (float) mColorOpacity); mColor = (mColor & 0xFFFFFF00) | (unsigned char) o; unsigned char bgo = (unsigned char)((float)opacity / 255.f * (float)mBgColorOpacity); mBgColor = (mBgColor & 0xFFFFFF00) | (unsigned char)bgo; onColorChanged(); GuiComponent::setOpacity(opacity); } unsigned char TextComponent::getOpacity() const { return mColor & 0x000000FF; } void TextComponent::setText(const std::string& text) { mText = text; onTextChanged(); } void TextComponent::setUppercase(bool uppercase) { mUppercase = uppercase; onTextChanged(); } void TextComponent::render(const Eigen::Affine3f& parentTrans) { Eigen::Affine3f trans = parentTrans * getTransform(); if (mBgColor) { Renderer::drawRect(getPosition().x(), getPosition().y() - 1, getSize().x(), getSize().y(), mBgColor); } if(mTextCache) { const Eigen::Vector2f& textSize = mTextCache->metrics.size; Eigen::Vector3f off(0, (getSize().y() - textSize.y()) / 2.0f, 0); if(Settings::getInstance()->getBool("DebugText")) { // draw the "textbox" area, what we are aligned within Renderer::setMatrix(trans); Renderer::drawRect(0.f, 0.f, mSize.x(), mSize.y(), 0xFF000033); } trans.translate(off); trans = roundMatrix(trans); Renderer::setMatrix(trans); // draw the text area, where the text actually is going if(Settings::getInstance()->getBool("DebugText")) { switch(mAlignment) { case ALIGN_LEFT: Renderer::drawRect(0.0f, 0.0f, mTextCache->metrics.size.x(), mTextCache->metrics.size.y(), 0x00000033); break; case ALIGN_CENTER: Renderer::drawRect((mSize.x() - mTextCache->metrics.size.x()) / 2.0f, 0.0f, mTextCache->metrics.size.x(), mTextCache->metrics.size.y(), 0x00000033); break; case ALIGN_RIGHT: Renderer::drawRect(mSize.x() - mTextCache->metrics.size.x(), 0.0f, mTextCache->metrics.size.x(), mTextCache->metrics.size.y(), 0x00000033); break; } } mFont->renderTextCache(mTextCache.get()); } } void TextComponent::calculateExtent() { if(mAutoCalcExtent.x()) { mSize = mFont->sizeText(mUppercase ? strToUpper(mText) : mText, mLineSpacing); }else{ if(mAutoCalcExtent.y()) { mSize[1] = mFont->sizeWrappedText(mUppercase ? strToUpper(mText) : mText, getSize().x(), mLineSpacing).y(); } } } void TextComponent::onTextChanged() { calculateExtent(); if(!mFont || mText.empty()) { mTextCache.reset(); return; } std::string text = mUppercase ? strToUpper(mText) : mText; std::shared_ptr f = mFont; const bool isMultiline = (mSize.y() == 0 || mSize.y() > f->getHeight()*1.2f); bool addAbbrev = false; if(!isMultiline) { size_t newline = text.find('\n'); text = text.substr(0, newline); // single line of text - stop at the first newline since it'll mess everything up addAbbrev = newline != std::string::npos; } Eigen::Vector2f size = f->sizeText(text); if(!isMultiline && mSize.x() && text.size() && (size.x() > mSize.x() || addAbbrev)) { // abbreviate text const std::string abbrev = "..."; Eigen::Vector2f abbrevSize = f->sizeText(abbrev); while(text.size() && size.x() + abbrevSize.x() > mSize.x()) { size_t newSize = Font::getPrevCursor(text, text.size()); text.erase(newSize, text.size() - newSize); size = f->sizeText(text); } text.append(abbrev); mTextCache = std::shared_ptr(f->buildTextCache(text, Eigen::Vector2f(0, 0), (mColor >> 8 << 8) | mOpacity, mSize.x(), mAlignment, mLineSpacing)); }else{ mTextCache = std::shared_ptr(f->buildTextCache(f->wrapText(text, mSize.x()), Eigen::Vector2f(0, 0), (mColor >> 8 << 8) | mOpacity, mSize.x(), mAlignment, mLineSpacing)); } } void TextComponent::onColorChanged() { if(mTextCache) { mTextCache->setColor(mColor); } } void TextComponent::setAlignment(Alignment align) { mAlignment = align; onTextChanged(); } void TextComponent::setLineSpacing(float spacing) { mLineSpacing = spacing; onTextChanged(); } void TextComponent::setValue(const std::string& value) { setText(value); } std::string TextComponent::getValue() const { return mText; } void TextComponent::applyTheme(const std::shared_ptr& theme, const std::string& view, const std::string& element, unsigned int properties) { GuiComponent::applyTheme(theme, view, element, properties); using namespace ThemeFlags; const ThemeData::ThemeElement* elem = theme->getElement(view, element, "text"); if(!elem) return; if (properties & COLOR && elem->has("color")) setColor(elem->get("color")); if (properties & COLOR && elem->has("backgroundColor")) setBackgroundColor(elem->get("backgroundColor")); if(properties & ALIGNMENT && elem->has("alignment")) { std::string str = elem->get("alignment"); if(str == "left") setAlignment(ALIGN_LEFT); else if(str == "center") setAlignment(ALIGN_CENTER); else if(str == "right") setAlignment(ALIGN_RIGHT); else LOG(LogError) << "Unknown text alignment string: " << str; } if(properties & TEXT && elem->has("text")) setText(elem->get("text")); if(properties & FORCE_UPPERCASE && elem->has("forceUppercase")) setUppercase(elem->get("forceUppercase")); if(properties & LINE_SPACING && elem->has("lineSpacing")) setLineSpacing(elem->get("lineSpacing")); setFont(Font::getFromTheme(elem, properties, mFont)); }