/***************************************************************************** * Copyright (c) 2014-2020 OpenRCT2 developers * * For a complete list of all authors, please refer to contributors.md * Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2 * * OpenRCT2 is licensed under the GNU General Public License version 3. *****************************************************************************/ #include "../common.h" #include "../config/Config.h" #include "../core/String.hpp" #include "../drawing/Drawing.h" #include "../interface/Viewport.h" #include "../localisation/Formatting.h" #include "../localisation/Localisation.h" #include "../localisation/LocalisationService.h" #include "../platform/platform.h" #include "../sprites.h" #include "../util/Util.h" #include "TTF.h" #include using namespace OpenRCT2; enum : uint32_t { TEXT_DRAW_FLAG_INSET = 1 << 0, TEXT_DRAW_FLAG_OUTLINE = 1 << 1, TEXT_DRAW_FLAG_DARK = 1 << 2, TEXT_DRAW_FLAG_EXTRA_DARK = 1 << 3, TEXT_DRAW_FLAG_NO_FORMATTING = 1 << 28, TEXT_DRAW_FLAG_Y_OFFSET_EFFECT = 1 << 29, TEXT_DRAW_FLAG_TTF = 1 << 30, TEXT_DRAW_FLAG_NO_DRAW = 1u << 31 }; static int32_t ttf_get_string_width(std::string_view text, bool noFormatting); /** * * rct2: 0x006C23B1 */ int32_t gfx_get_string_width_new_lined(std::string_view text) { thread_local std::string buffer; buffer.clear(); std::optional maxWidth; FmtString fmt(text); for (const auto& token : fmt) { if (token.kind == FormatToken::Newline || token.kind == FormatToken::NewlineSmall) { auto width = gfx_get_string_width(buffer); if (!maxWidth || maxWidth > width) { maxWidth = width; } buffer.clear(); } else { buffer.append(token.text); } } if (!maxWidth) { maxWidth = gfx_get_string_width(buffer); } return *maxWidth; } /** * Return the width of the string in buffer * * rct2: 0x006C2321 * buffer (esi) */ int32_t gfx_get_string_width(std::string_view text) { return ttf_get_string_width(text, false); } int32_t gfx_get_string_width_no_formatting(std::string_view text) { return ttf_get_string_width(text, true); } /** * Clip the text in buffer to width, add ellipsis and return the new width of the clipped string * * rct2: 0x006C2460 * buffer (esi) * width (edi) */ int32_t gfx_clip_string(utf8* text, int32_t width) { if (width < 6) { *text = 0; return 0; } // If width of the full string is less than allowed width then we don't need to clip auto clippedWidth = gfx_get_string_width(text); if (clippedWidth <= width) { return clippedWidth; } // Append each character 1 by 1 with an ellipsis on the end until width is exceeded thread_local std::string buffer; buffer.clear(); size_t bestLength = 0; int32_t bestWidth = 0; FmtString fmt(text); for (const auto& token : fmt) { CodepointView codepoints(token.text); for (auto codepoint : codepoints) { // Add the ellipsis before checking the width buffer.append("..."); auto currentWidth = gfx_get_string_width(buffer); if (currentWidth < width) { bestLength = buffer.size(); bestWidth = currentWidth; // Trim the ellipsis buffer.resize(bestLength - 3); } else { // Width exceeded, rollback to best length and put ellipsis back buffer.resize(bestLength); for (auto i = static_cast(bestLength) - 1; i >= 0 && i >= static_cast(bestLength) - 3; i--) { buffer[i] = '.'; } // Copy buffer back to input text buffer std::strcpy(text, buffer.c_str()); return bestWidth; } char cb[8]{}; utf8_write_codepoint(cb, codepoint); buffer.append(cb); } } return gfx_get_string_width(text); } /** * Wrap the text in buffer to width, returns width of longest line. * * Inserts NULL where line should break (as \n is used for something else), * so the number of lines is returned in num_lines. font_height seems to be * a control character for line height. * * rct2: 0x006C21E2 * buffer (esi) * width (edi) - in * num_lines (edi) - out * font_height (ebx) - out */ int32_t gfx_wrap_string(utf8* text, int32_t width, int32_t* outNumLines, FontSpriteBase* outFontHeight) { constexpr size_t NULL_INDEX = std::numeric_limits::max(); thread_local std::string buffer; buffer.resize(0); size_t currentLineIndex = 0; size_t splitIndex = NULL_INDEX; size_t bestSplitIndex = NULL_INDEX; size_t numLines = 0; int32_t maxWidth = 0; FmtString fmt = text; for (const auto& token : fmt) { if (token.IsLiteral()) { CodepointView codepoints(token.text); for (auto codepoint : codepoints) { char cb[8]{}; utf8_write_codepoint(cb, codepoint); buffer.append(cb); auto lineWidth = gfx_get_string_width(&buffer[currentLineIndex]); if (lineWidth <= width || (splitIndex == NULL_INDEX && bestSplitIndex == NULL_INDEX)) { if (codepoint == ' ') { // Mark line split here splitIndex = buffer.size() - 1; } else if (splitIndex == NULL_INDEX) { // Mark line split here (this is after first character of line) bestSplitIndex = buffer.size(); } } else { // Insert new line before current word if (splitIndex == NULL_INDEX) { splitIndex = bestSplitIndex; } buffer.insert(buffer.begin() + splitIndex, '\0'); // Recalculate the line length after splitting lineWidth = gfx_get_string_width(&buffer[currentLineIndex]); maxWidth = std::max(maxWidth, lineWidth); numLines++; currentLineIndex = splitIndex + 1; splitIndex = NULL_INDEX; bestSplitIndex = NULL_INDEX; // Trim the beginning of the new line while (buffer[currentLineIndex] == ' ') { buffer.erase(buffer.begin() + currentLineIndex); } } } } else if (token.kind == FormatToken::Newline) { buffer.push_back('\0'); auto lineWidth = gfx_get_string_width(&buffer[currentLineIndex]); maxWidth = std::max(maxWidth, lineWidth); numLines++; currentLineIndex = buffer.size(); splitIndex = NULL_INDEX; bestSplitIndex = NULL_INDEX; } else { buffer.append(token.text); } } { // Final line width calculation auto lineWidth = gfx_get_string_width(&buffer[currentLineIndex]); maxWidth = std::max(maxWidth, lineWidth); } std::memcpy(text, buffer.data(), buffer.size() + 1); *outNumLines = static_cast(numLines); *outFontHeight = gCurrentFontSpriteBase; return maxWidth; } /** * Draws text that is left aligned and vertically centred. */ void gfx_draw_string_left_centred( rct_drawpixelinfo* dpi, rct_string_id format, void* args, int32_t colour, const ScreenCoordsXY& coords) { gCurrentFontSpriteBase = FontSpriteBase::MEDIUM; char* buffer = gCommonStringFormatBuffer; format_string(buffer, 256, format, args); int32_t height = string_get_height_raw(buffer); gfx_draw_string(dpi, buffer, colour, coords - ScreenCoordsXY{ 0, (height / 2) }); } /** * Changes the palette so that the next character changes colour */ static void colour_char(uint8_t colour, const uint16_t* current_font_flags, uint8_t* palette_pointer) { int32_t colour32 = 0; const rct_g1_element* g1 = gfx_get_g1_element(SPR_TEXT_PALETTE); if (g1 != nullptr) { uint32_t idx = (colour & 0xFF) * 4; std::memcpy(&colour32, &g1->offset[idx], sizeof(colour32)); } if (!(*current_font_flags & TEXT_DRAW_FLAG_OUTLINE)) { colour32 = colour32 & 0x0FF0000FF; } // Adjust text palette. Store current colour? palette_pointer[1] = colour32 & 0xFF; palette_pointer[2] = (colour32 >> 8) & 0xFF; palette_pointer[3] = (colour32 >> 16) & 0xFF; palette_pointer[4] = (colour32 >> 24) & 0xFF; } /** * Changes the palette so that the next character changes colour * This is specific to changing to a predefined window related colour */ static void colour_char_window(uint8_t colour, const uint16_t* current_font_flags, uint8_t* palette_pointer) { int32_t eax; colour = NOT_TRANSLUCENT(colour); eax = ColourMapA[colour].colour_11; if (*current_font_flags & TEXT_DRAW_FLAG_OUTLINE) { eax |= 0x0A0A00; } // Adjust text palette. Store current colour? palette_pointer[1] = eax & 0xFF; palette_pointer[2] = (eax >> 8) & 0xFF; palette_pointer[3] = (eax >> 16) & 0xFF; palette_pointer[4] = (eax >> 24) & 0xFF; } /** * * rct2: 0x006C1DB7 * * left : cx * top : dx * numLines : bp * text : esi * dpi : edi */ void draw_string_centred_raw(rct_drawpixelinfo* dpi, const ScreenCoordsXY& coords, int32_t numLines, char* text) { ScreenCoordsXY screenCoords(dpi->x, dpi->y); gCurrentFontSpriteBase = FontSpriteBase::MEDIUM; gfx_draw_string(dpi, "", COLOUR_BLACK, screenCoords); screenCoords = coords; for (int32_t i = 0; i <= numLines; i++) { int32_t width = gfx_get_string_width(text); gfx_draw_string(dpi, text, TEXT_COLOUR_254, screenCoords - ScreenCoordsXY{ width / 2, 0 }); const utf8* ch = text; const utf8* nextCh = nullptr; while ((utf8_get_next(ch, &nextCh)) != 0) { ch = nextCh; } text = const_cast(ch + 1); screenCoords.y += font_get_line_height(gCurrentFontSpriteBase); } } int32_t string_get_height_raw(std::string_view text) { auto fontBase = gCurrentFontSpriteBase; int32_t height = 0; if (fontBase <= FontSpriteBase::MEDIUM) height += 10; else if (fontBase == FontSpriteBase::TINY) height += 6; FmtString fmt(text); for (const auto& token : fmt) { switch (token.kind) { case FormatToken::Newline: if (fontBase == FontSpriteBase::SMALL || fontBase == FontSpriteBase::MEDIUM) { height += 10; break; } else if (fontBase == FontSpriteBase::TINY) { height += 6; break; } height += 18; break; case FormatToken::NewlineSmall: if (fontBase == FontSpriteBase::SMALL || fontBase == FontSpriteBase::MEDIUM) { height += 5; break; } else if (fontBase == FontSpriteBase::TINY) { height += 3; break; } height += 9; break; case FormatToken::FontTiny: fontBase = FontSpriteBase::TINY; break; case FormatToken::FontMedium: fontBase = FontSpriteBase::MEDIUM; break; case FormatToken::FontSmall: fontBase = FontSpriteBase::SMALL; break; default: break; } } return height; } /** * * rct2: 0x006C1F57 * * colour : al * format : bx * x : cx * y : dx * text : esi * dpi : edi * width : bp * ticks : ebp >> 16 */ void gfx_draw_string_centred_wrapped_partial( rct_drawpixelinfo* dpi, const ScreenCoordsXY& coords, int32_t width, int32_t colour, rct_string_id format, void* args, int32_t ticks) { int32_t numLines, lineHeight, lineY; FontSpriteBase fontSpriteBase; utf8* buffer = gCommonStringFormatBuffer; ScreenCoordsXY screenCoords(dpi->x, dpi->y); gCurrentFontSpriteBase = FontSpriteBase::MEDIUM; gfx_draw_string(dpi, "", colour, screenCoords); format_string(buffer, 256, format, args); gCurrentFontSpriteBase = FontSpriteBase::MEDIUM; gfx_wrap_string(buffer, width, &numLines, &fontSpriteBase); lineHeight = font_get_line_height(fontSpriteBase); int32_t numCharactersDrawn = 0; int32_t numCharactersToDraw = ticks; lineY = coords.y - ((numLines * lineHeight) / 2); for (int32_t line = 0; line <= numLines; line++) { int32_t halfWidth = gfx_get_string_width(buffer) / 2; FmtString fmt(buffer); for (const auto& token : fmt) { bool doubleBreak = false; if (token.IsLiteral()) { CodepointView codepoints(token.text); for (auto it = codepoints.begin(); it != codepoints.end(); it++) { numCharactersDrawn++; if (numCharactersDrawn > numCharactersToDraw) { auto ch = const_cast(&token.text[it.GetIndex()]); *ch = '\0'; doubleBreak = true; break; } } } if (doubleBreak) break; } screenCoords = { coords.x - halfWidth, lineY }; gfx_draw_string(dpi, buffer, TEXT_COLOUR_254, screenCoords); if (numCharactersDrawn > numCharactersToDraw) { break; } buffer = get_string_end(buffer) + 1; lineY += lineHeight; } } struct text_draw_info { int32_t startX; int32_t startY; int32_t x; int32_t y; int32_t maxX; int32_t maxY; int32_t flags; uint8_t palette[8]; FontSpriteBase font_sprite_base; const int8_t* y_offset; }; static void ttf_draw_character_sprite(rct_drawpixelinfo* dpi, int32_t codepoint, text_draw_info* info) { int32_t characterWidth = font_sprite_get_codepoint_width(info->font_sprite_base, codepoint); int32_t sprite = font_sprite_get_codepoint_sprite(info->font_sprite_base, codepoint); if (!(info->flags & TEXT_DRAW_FLAG_NO_DRAW)) { auto screenCoords = ScreenCoordsXY{ info->x, info->y }; if (info->flags & TEXT_DRAW_FLAG_Y_OFFSET_EFFECT) { screenCoords.y += *info->y_offset++; } PaletteMap paletteMap(info->palette); gfx_draw_glyph(dpi, sprite, screenCoords, paletteMap); } info->x += characterWidth; } static void ttf_draw_string_raw_sprite(rct_drawpixelinfo* dpi, std::string_view text, text_draw_info* info) { CodepointView codepoints(text); for (auto codepoint : codepoints) { ttf_draw_character_sprite(dpi, codepoint, info); } } #ifndef NO_TTF static void ttf_draw_string_raw_ttf(rct_drawpixelinfo* dpi, std::string_view text, text_draw_info* info) { if (!ttf_initialise()) return; TTFFontDescriptor* fontDesc = ttf_get_font_from_sprite_base(info->font_sprite_base); if (fontDesc->font == nullptr) { ttf_draw_string_raw_sprite(dpi, text, info); return; } if (info->flags & TEXT_DRAW_FLAG_NO_DRAW) { info->x += ttf_getwidth_cache_get_or_add(fontDesc->font, text); return; } else { uint8_t colour = info->palette[1]; TTFSurface* surface = ttf_surface_cache_get_or_add(fontDesc->font, text); if (surface == nullptr) return; int32_t drawX = info->x + fontDesc->offset_x; int32_t drawY = info->y + fontDesc->offset_y; int32_t width = surface->w; int32_t height = surface->h; int32_t overflowX = (dpi->x + dpi->width) - (drawX + width); int32_t overflowY = (dpi->y + dpi->height) - (drawY + height); if (overflowX < 0) width += overflowX; if (overflowY < 0) height += overflowY; int32_t skipX = drawX - dpi->x; int32_t skipY = drawY - dpi->y; info->x += width; auto src = static_cast(surface->pixels); uint8_t* dst = dpi->bits; if (skipX < 0) { width += skipX; src += -skipX; skipX = 0; } if (skipY < 0) { height += skipY; src += (-skipY * surface->pitch); skipY = 0; } dst += skipX; dst += skipY * (dpi->width + dpi->pitch); int32_t srcScanSkip = surface->pitch - width; int32_t dstScanSkip = dpi->width + dpi->pitch - width; uint8_t* dst_orig = dst; const uint8_t* src_orig = src; // Draw shadow/outline if (info->flags & TEXT_DRAW_FLAG_OUTLINE) { for (int32_t yy = 0; yy < height - 0; yy++) { for (int32_t xx = 0; xx < width - 0; xx++) { if (*src != 0) { // right if (xx + skipX < dpi->width + dpi->pitch - 1) { *(dst + 1) = info->palette[3]; } // left if (xx + skipX > 1) { *(dst - 1) = info->palette[3]; } // top if (yy + skipY > 1) { *(dst - width - dstScanSkip) = info->palette[3]; } // bottom if (yy + skipY < dpi->height - 1) { *(dst + width + dstScanSkip) = info->palette[3]; } } src++; dst++; } // Skip any remaining bits src += srcScanSkip; dst += dstScanSkip; } } { dst = dst_orig; src = src_orig; bool use_hinting = gConfigFonts.enable_hinting && fontDesc->hinting_threshold > 0; for (int32_t yy = 0; yy < height; yy++) { for (int32_t xx = 0; xx < width; xx++) { if (*src != 0) { if (info->flags & TEXT_DRAW_FLAG_INSET) { *(dst + width + dstScanSkip + 1) = info->palette[3]; } if (*src > 180 || !use_hinting) { // Centre of the glyph: use full colour. *dst = colour; } else if (use_hinting && *src > fontDesc->hinting_threshold) { // Simulate font hinting by shading the background colour instead. if (info->flags & TEXT_DRAW_FLAG_OUTLINE) { // As outlines are black, these texts should always use a darker shade // of the foreground colour for font hinting. *dst = blendColours(colour, PALETTE_INDEX_0); } else { *dst = blendColours(colour, *dst); } } } src++; dst++; } src += srcScanSkip; dst += dstScanSkip; } } } } #endif // NO_TTF static void ttf_process_format_code(rct_drawpixelinfo* dpi, const FmtString::token& token, text_draw_info* info) { switch (token.kind) { case FormatToken::Move: info->x = info->startX + token.parameter; break; case FormatToken::Newline: info->x = info->startX; info->y += font_get_line_height(info->font_sprite_base); break; case FormatToken::NewlineSmall: info->x = info->startX; info->y += font_get_line_height_small(info->font_sprite_base); break; case FormatToken::FontTiny: info->font_sprite_base = FontSpriteBase::TINY; break; case FormatToken::FontSmall: info->font_sprite_base = FontSpriteBase::SMALL; break; case FormatToken::FontMedium: info->font_sprite_base = FontSpriteBase::MEDIUM; break; case FormatToken::OutlineEnable: info->flags |= TEXT_DRAW_FLAG_OUTLINE; break; case FormatToken::OutlineDisable: info->flags &= ~TEXT_DRAW_FLAG_OUTLINE; break; case FormatToken::ColourWindow1: { uint16_t flags = info->flags; colour_char_window(gCurrentWindowColours[0], &flags, info->palette); break; } case FormatToken::ColourWindow2: { uint16_t flags = info->flags; colour_char_window(gCurrentWindowColours[1], &flags, info->palette); break; } case FormatToken::ColourWindow3: { uint16_t flags = info->flags; colour_char_window(gCurrentWindowColours[2], &flags, info->palette); break; } case FormatToken::InlineSprite: { auto g1 = gfx_get_g1_element(token.parameter & 0x7FFFF); if (g1 != nullptr) { if (!(info->flags & TEXT_DRAW_FLAG_NO_DRAW)) { gfx_draw_sprite(dpi, token.parameter, { info->x, info->y }, 0); } info->x += g1->width; } break; } default: if (FormatTokenIsColour(token.kind)) { uint16_t flags = info->flags; auto colourIndex = FormatTokenGetTextColourIndex(token.kind); colour_char(static_cast(colourIndex), &flags, info->palette); } break; } } static bool ShouldUseSpriteForCodepoint(char32_t codepoint) { switch (codepoint) { case UnicodeChar::up: case UnicodeChar::down: case UnicodeChar::leftguillemet: case UnicodeChar::tick: case UnicodeChar::cross: case UnicodeChar::right: case UnicodeChar::rightguillemet: case UnicodeChar::small_up: case UnicodeChar::small_down: case UnicodeChar::left: case UnicodeChar::quote_open: case UnicodeChar::quote_close: case UnicodeChar::german_quote_open: case UnicodeChar::plus: case UnicodeChar::minus: return true; default: return false; } } static void ttf_process_string_literal(rct_drawpixelinfo* dpi, std::string_view text, text_draw_info* info) { #ifndef NO_TTF bool isTTF = info->flags & TEXT_DRAW_FLAG_TTF; #else bool isTTF = false; #endif // NO_TTF if (!isTTF) { ttf_draw_string_raw_sprite(dpi, text, info); } #ifndef NO_TTF else { CodepointView codepoints(text); std::optional ttfRunIndex; for (auto it = codepoints.begin(); it != codepoints.end(); it++) { auto codepoint = *it; if (ShouldUseSpriteForCodepoint(codepoint)) { if (ttfRunIndex) { // Draw the TTF run auto len = it.GetIndex() - *ttfRunIndex; ttf_draw_string_raw_ttf(dpi, text.substr(*ttfRunIndex, len), info); ttfRunIndex = std::nullopt; } // Draw the sprite font glyph ttf_draw_character_sprite(dpi, codepoint, info); } else { if (!ttfRunIndex) { ttfRunIndex = it.GetIndex(); } } } if (ttfRunIndex) { // Final TTF run auto len = text.size() - *ttfRunIndex; ttf_draw_string_raw_ttf(dpi, text.substr(*ttfRunIndex, len), info); } } #endif // NO_TTF } static void ttf_process_string_codepoint(rct_drawpixelinfo* dpi, codepoint_t codepoint, text_draw_info* info) { char buffer[8]{}; utf8_write_codepoint(buffer, codepoint); ttf_process_string_literal(dpi, buffer, info); } static void ttf_process_string(rct_drawpixelinfo* dpi, std::string_view text, text_draw_info* info) { if (info->flags & TEXT_DRAW_FLAG_NO_FORMATTING) { ttf_process_string_literal(dpi, text, info); info->maxX = std::max(info->maxX, info->x); info->maxY = std::max(info->maxY, info->y); } else { FmtString fmt(text); for (const auto& token : fmt) { if (token.IsLiteral()) { ttf_process_string_literal(dpi, token.text, info); } else if (token.IsCodepoint()) { auto codepoint = token.GetCodepoint(); ttf_process_string_codepoint(dpi, codepoint, info); } else { ttf_process_format_code(dpi, token, info); } info->maxX = std::max(info->maxX, info->x); info->maxY = std::max(info->maxY, info->y); } } } static void ttf_process_initial_colour(int32_t colour, text_draw_info* info) { if (colour != TEXT_COLOUR_254 && colour != TEXT_COLOUR_255) { info->flags &= ~(TEXT_DRAW_FLAG_INSET | TEXT_DRAW_FLAG_OUTLINE | TEXT_DRAW_FLAG_DARK | TEXT_DRAW_FLAG_EXTRA_DARK); if (info->font_sprite_base == FontSpriteBase::MEDIUM_DARK || info->font_sprite_base == FontSpriteBase::MEDIUM_EXTRA_DARK) { info->flags |= TEXT_DRAW_FLAG_DARK; if (info->font_sprite_base == FontSpriteBase::MEDIUM_EXTRA_DARK) { info->flags |= TEXT_DRAW_FLAG_EXTRA_DARK; } info->font_sprite_base = FontSpriteBase::MEDIUM; } if (colour & COLOUR_FLAG_OUTLINE) { info->flags |= TEXT_DRAW_FLAG_OUTLINE; } colour &= ~COLOUR_FLAG_OUTLINE; if (!(colour & COLOUR_FLAG_INSET)) { if (!(info->flags & TEXT_DRAW_FLAG_INSET)) { uint16_t flags = info->flags; colour_char_window(colour, &flags, reinterpret_cast(&info->palette)); } } else { info->flags |= TEXT_DRAW_FLAG_INSET; colour &= ~COLOUR_FLAG_INSET; uint32_t eax; if (info->flags & TEXT_DRAW_FLAG_DARK) { if (info->flags & TEXT_DRAW_FLAG_EXTRA_DARK) { eax = ColourMapA[colour].mid_light; eax = eax << 16; eax = eax | ColourMapA[colour].dark; } else { eax = ColourMapA[colour].light; eax = eax << 16; eax = eax | ColourMapA[colour].mid_dark; } } else { eax = ColourMapA[colour].lighter; eax = eax << 16; eax = eax | ColourMapA[colour].mid_light; } // Adjust text palette. Store current colour? ; info->palette[1] = eax & 0xFF; info->palette[2] = (eax >> 8) & 0xFF; info->palette[3] = (eax >> 16) & 0xFF; info->palette[4] = (eax >> 24) & 0xFF; eax = 0; } } } void ttf_draw_string( rct_drawpixelinfo* dpi, const_utf8string text, int32_t colour, const ScreenCoordsXY& coords, bool noFormatting) { if (text == nullptr) return; text_draw_info info; info.font_sprite_base = gCurrentFontSpriteBase; info.flags = 0; info.startX = coords.x; info.startY = coords.y; info.x = coords.x; info.y = coords.y; if (LocalisationService_UseTrueTypeFont()) { info.flags |= TEXT_DRAW_FLAG_TTF; } if (noFormatting) { info.flags |= TEXT_DRAW_FLAG_NO_FORMATTING; } std::memcpy(info.palette, text_palette, sizeof(info.palette)); ttf_process_initial_colour(colour, &info); ttf_process_string(dpi, text, &info); std::memcpy(text_palette, info.palette, sizeof(info.palette)); gCurrentFontSpriteBase = info.font_sprite_base; gLastDrawStringX = info.x; gLastDrawStringY = info.y; } static int32_t ttf_get_string_width(std::string_view text, bool noFormatting) { text_draw_info info; info.font_sprite_base = gCurrentFontSpriteBase; info.flags = 0; info.startX = 0; info.startY = 0; info.x = 0; info.y = 0; info.maxX = 0; info.maxY = 0; info.flags |= TEXT_DRAW_FLAG_NO_DRAW; if (LocalisationService_UseTrueTypeFont()) { info.flags |= TEXT_DRAW_FLAG_TTF; } if (noFormatting) { info.flags |= TEXT_DRAW_FLAG_NO_FORMATTING; } ttf_process_string(nullptr, text, &info); return info.maxX; } /** * * rct2: 0x00682F28 */ void gfx_draw_string_with_y_offsets( rct_drawpixelinfo* dpi, const utf8* text, int32_t colour, const ScreenCoordsXY& coords, const int8_t* yOffsets, bool forceSpriteFont) { text_draw_info info; info.font_sprite_base = gCurrentFontSpriteBase; info.flags = 0; info.startX = coords.x; info.startY = coords.y; info.x = coords.x; info.y = coords.y; info.y_offset = yOffsets; info.flags |= TEXT_DRAW_FLAG_Y_OFFSET_EFFECT; if (!forceSpriteFont && LocalisationService_UseTrueTypeFont()) { info.flags |= TEXT_DRAW_FLAG_TTF; } std::memcpy(info.palette, text_palette, sizeof(info.palette)); ttf_process_initial_colour(colour, &info); ttf_process_string(dpi, text, &info); std::memcpy(text_palette, info.palette, sizeof(info.palette)); gCurrentFontSpriteBase = info.font_sprite_base; gLastDrawStringX = info.x; gLastDrawStringY = info.y; } void shorten_path(utf8* buffer, size_t bufferSize, const utf8* path, int32_t availableWidth) { size_t length = strlen(path); // Return full string if it fits if (gfx_get_string_width(const_cast(path)) <= availableWidth) { safe_strcpy(buffer, path, bufferSize); return; } // Count path separators int32_t path_separators = 0; for (size_t x = 0; x < length; x++) { if (path[x] == *PATH_SEPARATOR || path[x] == '/') { path_separators++; } } // TODO: Replace with unicode ellipsis when supported safe_strcpy(buffer, "...", bufferSize); // Abbreviate beginning with xth separator int32_t begin = -1; for (int32_t x = 0; x < path_separators; x++) { do { begin++; } while (path[begin] != *PATH_SEPARATOR && path[begin] != '/'); safe_strcpy(buffer + 3, path + begin, bufferSize - 3); if (gfx_get_string_width(buffer) <= availableWidth) { return; } } safe_strcpy(buffer, path, bufferSize); }