From f776422c67c8f912a5c794c1d5655e5c3485c17f Mon Sep 17 00:00:00 2001 From: Laserlicht <13953785+Laserlicht@users.noreply.github.com> Date: Tue, 12 Sep 2023 16:27:31 +0200 Subject: [PATCH] color linesplit --- client/windows/CMessage.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/client/windows/CMessage.cpp b/client/windows/CMessage.cpp index 94917a8bc..27ba0be22 100644 --- a/client/windows/CMessage.cpp +++ b/client/windows/CMessage.cpp @@ -131,6 +131,7 @@ std::vector CMessage::breakText( std::string text, size_t maxLineWi ui32 wordBreak = -1; //last position for line break (last space character) ui32 currPos = 0; //current position in text bool opened = false; //set to true when opening brace is found + std::string color = ""; //color found size_t symbolSize = 0; // width of character, in bytes size_t glyphWidth = 0; // width of printable glyph, pixels @@ -151,15 +152,19 @@ std::vector CMessage::breakText( std::string text, size_t maxLineWi opened=true; std::smatch match; - std::regex expr("^\\{#([0-9a-fA-F]{6})$"); + std::regex expr("^\\{(#[0-9a-fA-F]{6})$"); std::string tmp = text.substr(currPos, 8); if(std::regex_search(tmp, match, expr)) { + color = match[1].str(); currPos += 7; } } else if (text[currPos]=='}') + { opened=false; + color = ""; + } else lineWidth += (ui32)glyphWidth; currPos += (ui32)symbolSize; @@ -206,7 +211,7 @@ std::vector CMessage::breakText( std::string text, size_t maxLineWi { /* Add an opening brace for the next line. */ if (text.length() != 0) - text.insert(0, "{"); + text.insert(0, "{" + color); } }