32using std::string_view;
58GUIStyledTextNode::GUIStyledTextNode(
66 const string& backgroundImage,
68 const GUIColor& backgroundImageEffectColorMul,
69 const GUIColor& backgroundImageEffectColorAdd,
79 GUINode(screenNode, parentNode, id, flow, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScale9Grid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn)
95 if (this->font !=
nullptr) this->font->initialize();
101 return "multiline-text";
132 if (
font ==
nullptr)
return;
142 auto textStyleIdx = 0;
143 for (
auto i = 0; i <
text.
size(); ) {
215 auto parseStyle =
false;
216 auto parseImage =
false;
218 int styleStartIdx = -1;
220 for (
auto i = 0; i <
text.
size(); i++) {
222 if (parseStyle ==
true) {
226 auto styleTokenized = StringTools::tokenize(currentStyle,
"=");
228 if (styleStartIdx != -1 &&
229 (styleFont.empty() ==
false ||
230 styleColor.empty() ==
false ||
231 styleUrl.empty() ==
false)) {
232 if (styleColor.empty() ==
false) {
235 if (this->text.
size() > styleStartIdx)
setTextStyle(styleStartIdx, this->text.
size() - 1, styleFont, styleUrl);
238 if (styleTokenized.size() == 2) {
239 auto command = StringTools::toLowerCase(StringTools::trim(styleTokenized[0]));
240 auto argument = StringTools::trim(styleTokenized[1]);
241 if (command ==
"font") {
242 styleFont = argument;
243 styleStartIdx = this->text.
size();
245 if (command ==
"color") {
246 styleColor = argument;
247 styleStartIdx = this->text.
size();
249 if (command ==
"url") {
251 styleStartIdx = this->text.
size();
253 Console::println(
"GUIStyledTextNode::setText(): unknown style command: " + currentStyle);
256 if (styleTokenized.size() == 1) {
257 auto command = StringTools::toLowerCase(StringTools::trim(styleTokenized[0]));
258 if (command ==
"/font") {
261 if (command ==
"/color") {
264 if (command ==
"/url") {
267 if (command ==
"image") {
270 if (command ==
"/image") {
272 this->text.
append(
static_cast<char>(0));
273 setImage(this->text.
size() - 1, styleImage, styleUrl, -1, -1);
276 Console::println(
"GUIStyledTextNode::setText(): unknown style command: " + currentStyle);
279 Console::println(
"GUIStyledTextNode::setText(): unknown style command: " + currentStyle);
282 currentStyle.clear();
284 if (styleFont.empty() ==
false ||
285 styleColor.empty() ==
false ||
286 styleUrl.empty() ==
false) {
287 styleStartIdx = this->text.
size();
307 if (c ==
']' && lc ==
'\\') {
310 if (parseImage ==
true) {
322 if (styleStartIdx != -1 &&
323 (styleFont.empty() ==
false ||
324 styleColor.empty() ==
false ||
325 styleUrl.empty() ==
false)) {
326 if (styleColor.empty() ==
false) {
329 if (this->text.
size() > styleStartIdx)
setTextStyle(styleStartIdx, this->text.
size() - 1, styleFont, styleUrl);
333 Console::println(
"'" + this->text.
getString() +
"'");
381 if (
line.empty() ==
false && c ==
' ' && StringTools::endsWith(
line,
spaceString) ==
true) {
384 if (
line.empty() ==
true && (c ==
' ' || c ==
'\t')) {
389 if (
line.empty() ==
false) {
410 if (
line.empty() ==
true) {
424 auto baseLine = 0.0f;
425 auto lineHeight = 0.0f;
426 auto lineWidth = 0.0f;
427 auto lineWidthSpaceWrap = 0.0f;
428 auto lineHeightSpaceWrap = 0.0f;
429 auto baseLineSpaceWrap = 0.0f;
430 auto imageHeight = 0.0f;
445 auto currentTextStyleIdx = textStyleIdx;
446 for (
auto k = 0; k <
line.size(); k++) {
448 auto currentFont = textStyle !=
nullptr && textStyle->font !=
nullptr?textStyle->font:
font;
449 baseLine = Math::max(baseLine, currentFont->getBaseLine());
450 baseLineSpaceWrap = Math::max(baseLineSpaceWrap, currentFont->getBaseLine());
451 lineHeight = Math::max(lineHeight, currentFont->getLineHeight());
452 lineHeightSpaceWrap = Math::max(lineHeightSpaceWrap, currentFont->getLineHeight());
454 if (textStyle !=
nullptr && textStyle->image !=
nullptr) {
459 .height = Math::max(lineHeight, baseLine + imageHeight),
460 .lineHeight = lineHeight,
461 .baseLine = baseLine,
464 lineWidthSpaceWrap = 0.0f;
465 lineHeightSpaceWrap = 0.0f;
466 baseLineSpaceWrap = 0.0f;
468 if (lineWidth > maxLineWidth) {
470 lineWidth = lineWidthSpaceWrap;
471 lineHeight = lineHeightSpaceWrap;
472 baseLine = baseLineSpaceWrap;
484 lineWidth+= textStyle->width;
485 lineWidthSpaceWrap+= textStyle->width;
486 imageHeight = Math::max(imageHeight,
static_cast<float>(textStyle->height));
489 if (
line[k] ==
' ') {
493 .height = Math::max(lineHeight, baseLine + imageHeight),
494 .lineHeight = lineHeight,
495 .baseLine = baseLine,
498 lineWidthSpaceWrap = 0.0f;
499 lineHeightSpaceWrap = 0.0f;
500 baseLineSpaceWrap = 0.0f;
502 auto character = currentFont->getCharacter(
line[k]);
503 if (character !=
nullptr) {
508 .height = Math::max(lineHeight, baseLine + imageHeight),
509 .lineHeight = lineHeight,
510 .baseLine = baseLine,
513 lineWidthSpaceWrap = 0.0f;
514 lineHeightSpaceWrap = 0.0f;
515 baseLineSpaceWrap = 0.0f;
517 if (lineWidth > maxLineWidth) {
518 lineWidth = lineWidthSpaceWrap;
519 if (k !=
line.size() - 1) {
521 lineHeight = lineHeightSpaceWrap;
522 baseLine = baseLineSpaceWrap;
535 lineWidth+= character->getXAdvance();
536 lineWidthSpaceWrap+= lineWidthSpaceWrap < Math::EPSILON &&
line[k] ==
' '?0.0f:character->getXAdvance();
544 .idx =
static_cast<int>(
line.size()),
546 .height = Math::max(lineHeight, baseLine + imageHeight),
547 .lineHeight = lineHeight,
548 .baseLine = baseLine,
562 if (
font ==
nullptr)
return;
587 bool visible =
false;
612 auto boundTexture = -1;
616 currentCharStartIdx = i;
620 if (
line.empty() ==
true) {
622 y+= lineConstraint.height;
662 auto skipSpaces =
false;
663 auto& currentTextStyleIdx = textStyleIdx;
678 float left = x + xIndentLeft;
679 float top = y + yIndentTop;
683 ((left) / (screenWidth / 2.0f)) - 1.0f,
684 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
685 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
686 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
687 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
688 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
689 ((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f) ==
true) {
702 if (visible ==
true) {
709 if (visible ==
false) {
732 if (textStyle !=
nullptr) {
733 currentFont = textStyle->font !=
nullptr?textStyle->font:
font;
734 currentColor = textStyle->color;
736 if (textStyle !=
nullptr && textStyle->image !=
nullptr) {
739 float left = x + xIndentLeft;
741 float width = textStyle->width;
742 float height = textStyle->height;
744 ((left) / (screenWidth / 2.0f)) - 1.0f,
745 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
746 1.0f, 1.0f, 1.0f, 1.0f,
749 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
750 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
751 1.0f, 1.0f, 1.0f, 1.0f,
754 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
755 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
756 1.0f, 1.0f, 1.0f, 1.0f,
759 ((left) / (screenWidth / 2.0f)) - 1.0f,
760 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
761 1.0f, 1.0f, 1.0f, 1.0f,
767 x+= textStyle->width;
790 float left = x + xIndentLeft;
791 float top = y + yIndentTop;
795 ((left) / (screenWidth / 2.0f)) - 1.0f,
796 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
797 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
798 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
799 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
800 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
801 ((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f) ==
false) {
803 if (visible ==
true) {
812 if (skipSpaces ==
true) {
813 if (
line[k] ==
' ') {
821 if (character !=
nullptr) {
822 float left = x + xIndentLeft;
824 if (boundTexture == -1) {
827 lastColor = currentColor;
833 lastColor = currentColor;
835 if (currentColor.
equals(lastColor) ==
false) {
837 lastColor = currentColor;
839 currentFont->
drawCharacter(guiRenderer, character, left, top, currentColor);
840 x+= character->getXAdvance();
872 Console::print(
"GUIStyledTextNode::setTextStyle(): " + to_string(startIdx) +
" ... " + to_string(endIdx) +
": '");
873 for (
auto i = startIdx; i <= endIdx; i++) Console::print(
string() +
text.
charAt(i));
876 Console::print(
", url = '" + url +
"'");
881 if (_font !=
nullptr) _font->initialize();
885 .startIdx = startIdx,
899 Console::print(
"GUIStyledTextNode::setTextStyle(): " + to_string(startIdx) +
" ... " + to_string(endIdx) +
": '");
900 for (
auto i = startIdx; i <= endIdx; i++) Console::print(
string() +
text.
charAt(i));
902 Console::print(
", url = '" + url +
"'");
907 if (_font !=
nullptr) _font->initialize();
911 .startIdx = startIdx,
925 Console::println(
"GUIStyledTextNode::setImage(): " + to_string(idx) +
": " + image +
", url = '" + url +
"', width = " + to_string(width) +
", height = " + to_string(height));
938 .textureId = Engine::getInstance()->getTextureManager()->addTexture(_image, 0),
939 .width = width == -1?_image->getWidth():width,
940 .height = height == -1?_image->getHeight():height,
946 for (
auto& style:
styles) {
948 if (style.image !=
nullptr) Engine::getInstance()->getTextureManager()->removeTexture(style.image->getId());
bool equals(const Color4Base &c) const
Compares this color with given color.
static Texture * getImage(const string &applicationRootPath, const string &fileName)
Get image.
static GUIFont * getFont(const string &applicationRootPath, const string &fileName)
Get font.
GUI element node conditions.
GUI node horizontal alignment enum.
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * RIGHT
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * CENTER
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * LEFT
GUI node vertical alignment enum.
static STATIC_DLL_IMPEXT GUINode_AlignmentVertical * BOTTOM
static STATIC_DLL_IMPEXT GUINode_AlignmentVertical * CENTER
static STATIC_DLL_IMPEXT GUINode_AlignmentVertical * TOP
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * AUTO
float computeParentChildrenRenderOffsetXTotal()
virtual void render(GUIRenderer *guiRenderer)
Render.
GUINode_ComputedConstraints computedConstraints
GUIScreenNode * screenNode
virtual int getAutoWidth()
GUINode_RequestedConstraints requestedConstraints
float computeParentChildrenRenderOffsetYTotal()
bool shouldRender()
Determine if to render.
virtual void dispose()
Dispose node.
GUINode_Alignments alignments
GUI parent node base class thats supporting child nodes.
GUI screen node that represents a screen that can be rendered via GUI system.
void invalidateLayout(GUINode *node)
Mark a node to be invalidated regarding layout.
const string & getApplicationRootPathName()
vector< Line > lineConstraints
vector< TextStyle > styles
const string getNodeType() override
void dispose() override
Dispose node.
int getContentWidth() override
void setTextStyle(int startIdx, int endIdx, const GUIColor &color, const string &font=string(), const string &url=string())
Set text style.
void unsetTextStyle(int startIdx, int endIdx)
Unset text style.
vector< int > lineCharIdxs
int getContentHeight() override
void setText(const MutableString &text)
Set text.
void determineNextLineConstraints(int &i, int charEndIdx, int textStyleIdx)
Determine next line constraints.
TextStyle * getTextStyle(const vector< int > &lineCharIdxs, int lineCharIdx, int &textStyleIdx)
Get text style for.
void setImage(int idx, const string &image, const string &url=string(), int width=-1, int height=-1)
Set image.
void disposeStyles()
Dispose styles.
void computeContentAlignment() override
Do content alignment.
void render(GUIRenderer *guiRenderer) override
Render.
bool parentOffsetsChanged
bool isContentNode() override
The definition of a single character as defined in the AngelCode file format.
GUI Font A font implementation that will parse the output of the AngelCode font tool available at:
GUICharacter * getCharacter(uint32_t charId)
Get character defintion.
void drawCharacter(GUIRenderer *guiRenderer, GUICharacter *character, int x, int y, const GUIColor &color=GUIColor::GUICOLOR_WHITE)
Draw character.
void bindTexture(int32_t textureId)
Bind texture.
bool isQuadVisible(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4)
void addQuad(float x1, float y1, float colorR1, float colorG1, float colorB1, float colorA1, float tu1, float tv1, float x2, float y2, float colorR2, float colorG2, float colorB2, float colorA2, float tu2, float tv2, float x3, float y3, float colorR3, float colorG3, float colorB3, float colorA3, float tu3, float tv3, float x4, float y4, float colorR4, float colorG4, float colorB4, float colorA4, float tu4, float tv4)
Add quad Note: quad vertices order 1 2 +-—+ | | | | +-—+ 4 3.
MutableString & append(char c)
Append character.
MutableString & reset()
Reset.
MutableString & remove(int32_t idx, int32_t count)
Remove characters at idx with given length.
char charAt(int32_t idx) const
Get char at index.
const string & getString() const
std::exception Exception
Exception base class.
GUINode_AlignmentVertical * vertical
GUINode_AlignmentHorizontal * horizontal
GUI node computed constraints.
GUI node requested constraints entity.
GUINode_RequestedConstraints_RequestedConstraintsType * widthType
GUINode_RequestedConstraints_RequestedConstraintsType * heightType
GUI node scale 9 grid entity.