16 #define GETTEXT_DOMAIN "wesnoth-lib"
41 #define DBG_FT LOG_STREAM(debug, log_font)
58 std::map<std::size_t, texture> rendered_cache{};
63 rendered_cache.clear();
67 : context_(pango_font_map_create_context(pango_cairo_font_map_get_default()), g_object_unref)
68 , layout_(pango_layout_new(context_.
get()), g_object_unref)
71 , markedup_text_(false)
76 , font_style_(STYLE_NORMAL)
80 , characters_per_line_(0)
82 , ellipse_mode_(PANGO_ELLIPSIZE_END)
83 , alignment_(PANGO_ALIGN_LEFT)
84 , maximum_length_(std::string::npos)
85 , calculation_dirty_(true)
87 , attribute_start_offset_(0)
88 , attribute_end_offset_(0)
97 pango_cairo_context_set_resolution(
context_.get(), 72.0);
101 pango_layout_set_wrap(
layout_.get(), PANGO_WRAP_WORD_CHAR);
104 cairo_font_options_t *fo = cairo_font_options_create();
105 cairo_font_options_set_hint_style(fo, CAIRO_HINT_STYLE_FULL);
106 cairo_font_options_set_hint_metrics(fo, CAIRO_HINT_METRICS_ON);
107 cairo_font_options_set_antialias(fo, CAIRO_ANTIALIAS_DEFAULT);
109 pango_cairo_context_set_font_options(
context_.get(), fo);
110 cairo_font_options_destroy(fo);
162 return (pango_layout_is_ellipsized(
layout_.get()) != 0);
179 std::string tmp =
text_;
190 std::unique_ptr<PangoLayoutIter, std::function<void(PangoLayoutIter*)>> itor(
191 pango_layout_get_iter(
layout_.get()), pango_layout_iter_free);
196 if(
static_cast<int>(
line) >= pango_layout_get_line_count(
layout_.get())) {
200 for(std::size_t
i = 0;
i <
line; ++
i) {
201 pango_layout_iter_next_line(itor.get());
206 for(std::size_t
i = 0;
i < column; ++
i) {
207 if(!pango_layout_iter_next_char(itor.get())) {
211 if(
i + 1 == column) {
220 const int offset = pango_layout_iter_get_index(itor.get());
229 pango_layout_get_cursor_pos(
layout_.get(), offset, &
rect,
nullptr);
245 if (!pango_layout_xy_to_index(
layout_.get(), position.x * PANGO_SCALE,
246 position.y * PANGO_SCALE, &
index, &trailing)) {
250 std::string txt = pango_layout_get_text(
layout_.get());
252 std::string
d(delim);
254 if (
index < 0 || (
static_cast<std::size_t
>(
index) >= txt.size()) ||
d.find(txt.at(
index)) != std::string::npos) {
258 std::size_t l =
index;
259 while (l > 0 && (
d.find(txt.at(l-1)) == std::string::npos)) {
263 std::size_t r =
index + 1;
264 while (r < txt.size() && (
d.find(txt.at(r)) == std::string::npos)) {
268 return txt.substr(l,r-l);
277 std::string tok = this->
get_token(position,
" \n\r\t");
292 pango_layout_xy_to_index(
layout_.get(), position.x * PANGO_SCALE,
293 position.y * PANGO_SCALE, &
index, &trailing);
297 pango_layout_index_to_line_x(
layout_.get(),
index, trailing, &
line, &offset);
298 offset = PANGO_PIXELS(offset);
311 for(std::size_t
i = 0; ; ++
i) {
326 PangoAttribute *attr = pango_attr_size_new_absolute(PANGO_SCALE *
size);
331 DBG_GUI_D <<
"attribute start: " << start_offset <<
" end : " << end_offset;
344 PangoAttribute *attr = pango_attr_weight_new(weight);
349 DBG_GUI_D <<
"attribute start: " << start_offset <<
" end : " << end_offset;
363 PangoAttribute *attr = pango_attr_style_new(style);
381 PangoAttribute *attr = pango_attr_underline_new(underline);
386 DBG_GUI_D <<
"attribute start: " << start_offset <<
" end : " << end_offset;
400 int col_r = color.r / 255.0 * 65535.0;
401 int col_g = color.g / 255.0 * 65535.0;
402 int col_b = color.b / 255.0 * 65535.0;
404 PangoAttribute *attr = pango_attr_foreground_new(col_r, col_g, col_b);
405 attr->start_index = start_offset;
406 attr->end_index = end_offset;
410 DBG_GUI_D <<
"color: " << col_r <<
"," << col_g <<
"," << col_b;
423 PangoAttribute *attr = pango_attr_family_new(family.c_str());
428 DBG_GUI_D <<
"attribute start: " << start_offset <<
" end : " << end_offset;
447 DBG_GUI_D <<
"highlight color: " << col_r <<
"," << col_g <<
"," << col_b;
449 PangoAttribute *attr = pango_attr_background_new(col_r, col_g, col_b);
469 const std::u32string wide = unicode_cast<std::u32string>(
text);
470 const std::string narrow = unicode_cast<std::string>(wide);
474 <<
"' contains invalid utf-8, trimmed the invalid parts.";
492 pango_layout_set_attributes(
layout_.get(),
nullptr);
495 pango_layout_set_text(
layout_.get(), narrow.c_str(), narrow.size());
592 pango_layout_set_height(
layout_.get(), !multiline ? -1 : height * PANGO_SCALE);
605 pango_layout_set_ellipsize(
layout_.get(), ellipse_mode);
614 pango_layout_set_height(
layout_.get(), -1);
623 pango_layout_set_alignment(
layout_.get(), alignment);
635 std::string tmp =
text_;
676 PangoFont*
f = pango_font_map_load_font(
677 pango_cairo_font_map_get_default(),
681 PangoFontMetrics* m = pango_font_get_metrics(
f,
nullptr);
683 auto ascent = pango_font_metrics_get_ascent(m);
684 auto descent = pango_font_metrics_get_descent(m);
686 pango_font_metrics_unref(m);
689 return ceil(pango_units_to_double(ascent + descent) /
pixel_scale_);
732 pango_layout_set_font_description(&
layout,
font.get());
735 PangoAttrList *attribute_list = pango_attr_list_new();
736 pango_attr_list_insert(attribute_list
737 , pango_attr_underline_new(PANGO_UNDERLINE_SINGLE));
739 pango_layout_set_attributes(&
layout, attribute_list);
740 pango_attr_list_unref(attribute_list);
743 int maximum_width = 0;
745 PangoFont*
f = pango_font_map_load_font(
746 pango_cairo_font_map_get_default(),
750 PangoFontMetrics* m = pango_font_get_metrics(
f,
nullptr);
752 int w = pango_font_metrics_get_approximate_char_width(m);
755 maximum_width = ceil(pango_units_to_double(
w));
757 pango_font_metrics_unref(m);
767 pango_layout_set_width(&
layout, maximum_width == -1
769 : maximum_width * PANGO_SCALE);
770 pango_layout_get_pixel_extents(&
layout,
nullptr, &
size);
774 <<
"' maximum_width " << maximum_width
782 <<
" font_style " << std::hex <<
font_style_ << std::dec
783 <<
" maximum_width " << maximum_width
785 <<
" result " <<
size
788 if(maximum_width != -1 &&
size.x +
size.width > maximum_width) {
791 <<
" ' width " <<
size.x +
size.width
792 <<
" greater as the wanted maximum of " << maximum_width
800 <<
" ' height " <<
size.y +
size.height
821 for (
int i = 1;
i < 256; ++
i) {
836 unsigned temp = (value * div) / 256u;
844 value = std::min(255u, temp);
853 uint8_t a = (
c >> 24) & 0xff;
854 uint8_t r = (
c >> 16) & 0xff;
855 uint8_t
g = (
c >> 8) & 0xff;
856 uint8_t
b =
c & 0xff;
863 c = (
static_cast<uint32_t
>(a) << 24) | (
static_cast<uint32_t
>(r) << 16) | (
static_cast<uint32_t
>(
g) << 8) |
static_cast<uint32_t
>(
b);
868 cairo_format_t
format = CAIRO_FORMAT_ARGB32;
872 std::unique_ptr<cairo_surface_t, std::function<void(cairo_surface_t*)>> cairo_surface(
873 cairo_image_surface_create_for_data(buffer,
format, viewport.w, viewport.h, stride), cairo_surface_destroy);
874 std::unique_ptr<cairo_t, std::function<void(cairo_t*)>> cr(cairo_create(cairo_surface.get()), cairo_destroy);
876 if(cairo_status(cr.get()) == CAIRO_STATUS_INVALID_SIZE) {
877 throw std::length_error(
"Text is too long to render");
881 cairo_move_to(cr.get(), -viewport.x, -viewport.y);
894 pango_cairo_layout_path(cr.get(), &
layout);
897 cairo_set_source_rgba(cr.get(), 0.0, 0.0, 0.0, 1.0);
899 cairo_set_line_join(cr.get(), CAIRO_LINE_JOIN_ROUND);
900 cairo_set_line_width(cr.get(), 3.0);
903 cairo_stroke(cr.get());
907 cairo_set_source_rgba(cr.get(),
914 pango_cairo_show_layout(cr.get(), &
layout);
926 cairo_format_t
format = CAIRO_FORMAT_ARGB32;
927 const int stride = cairo_format_stride_for_width(
format, viewport.w);
931 if(stride <= 0 || viewport.h <= 0) {
936 DBG_FT <<
"creating new text surface";
941 if(viewport.h > std::numeric_limits<int>::max() / stride) {
942 throw std::length_error(
"Text is too long to render");
956 for(
int y = 0; y < viewport.h; ++y) {
957 uint32_t* pixels =
reinterpret_cast<uint32_t*
>(&
surface_buffer_[y * stride]);
958 for(
int x = 0; x < viewport.w; ++x) {
963 return SDL_CreateRGBSurfaceWithFormatFrom(
964 &
surface_buffer_[0], viewport.w, viewport.h, 32, stride, SDL_PIXELFORMAT_ARGB8888);
970 std::string semi_escaped;
972 if(semi_escaped !=
"") {
979 pango_layout_set_markup(&
layout, formatted_text.c_str(), formatted_text.size());
986 <<
"' has broken markup, set to normal text.";
987 set_text(
_(
"The text contains invalid Pango markup: ") + std::string(
text),
false);
999 static const std::string delim =
" \n\r\t";
1000 std::ostringstream result;
1002 std::size_t tok_start = 0;
1003 for(std::size_t pos = 0; pos <
text.length(); ++pos) {
1004 if(delim.find(
text[pos]) == std::string::npos) {
1008 if(
const auto tok_length = pos - tok_start) {
1010 auto token =
text.substr(tok_start, tok_length);
1018 result <<
text[pos];
1019 tok_start = pos + 1;
1023 if(tok_start <
text.length()) {
1032 return result.str();
1037 if(pango_parse_markup(
text.data(),
text.size(),
1038 0,
nullptr, raw_text,
nullptr,
nullptr)) {
1057 if(
text.size() == semi_escaped.size()
1058 || !pango_parse_markup(semi_escaped.c_str(), semi_escaped.size()
1059 , 0,
nullptr, raw_text,
nullptr,
nullptr)) {
1067 <<
" text '" <<
text
1068 <<
"' has unescaped ampersands '&', escaped them.";
1075 pango_layout_set_alignment(&
dst, pango_layout_get_alignment(&
src));
1076 pango_layout_set_height(&
dst, pango_layout_get_height(&
src));
1077 pango_layout_set_ellipsize(&
dst, pango_layout_get_ellipsize(&
src));
1085 std::vector<std::string> res;
1086 int count = pango_layout_get_line_count(
layout);
1092 using layout_iterator = std::unique_ptr<PangoLayoutIter, std::function<void(PangoLayoutIter*)>>;
1093 layout_iterator
i{pango_layout_get_iter(
layout), pango_layout_iter_free};
1098 PangoLayoutLine* ll = pango_layout_iter_get_line_readonly(
i.get());
1099 const char* begin = &pango_layout_get_text(
layout)[ll->start_index];
1100 res.emplace_back(begin, ll->length);
1101 }
while(pango_layout_iter_next_line(
i.get()));
1108 return pango_layout_get_line_readonly(
layout_.get(),
index);
1114 pango_layout_index_to_line_x(
layout_.get(), offset, 0, &line_num,
nullptr);
1121 return text_renderer;
Small helper class to make sure the pango font object is destroyed properly.
int pixel_scale_
The pixel scale, used to render high-DPI text.
pango_text & set_font_style(const FONT_STYLE font_style)
PangoEllipsizeMode ellipse_mode_
The way too long text is shown depends on this mode.
void set_highlight_area(const unsigned start_offset, const unsigned end_offset, const color_t &color)
Mark a specific portion of text for highlighting.
void add_attribute_weight(const unsigned start_offset, const unsigned end_offset, PangoWeight weight)
static void copy_layout_properties(PangoLayout &src, PangoLayout &dst)
bool add_outline_
Whether to add an outline effect.
bool validate_markup(std::string_view text, char **raw_text, std::string &semi_escaped) const
bool set_markup(std::string_view text, PangoLayout &layout)
Sets the markup'ed text.
pango_text & set_maximum_length(const std::size_t maximum_length)
void render(PangoLayout &layout, const SDL_Rect &viewport, const unsigned stride)
This is part of create_surface(viewport).
unsigned insert_text(const unsigned offset, const std::string &text)
Inserts UTF-8 text.
surface create_surface()
Equivalent to create_surface(viewport), where the viewport's top-left is at (0,0) and the area is lar...
PangoAlignment alignment_
The alignment of the text.
int maximum_height_
The maximum height of the text.
point get_size()
Returns the size of the text, in drawing coordinates.
pango_text & set_characters_per_line(const unsigned characters_per_line)
color_t link_color_
The color to render links in.
int get_line_num_from_offset(const unsigned offset)
Given a byte index, find out at which line the corresponding character is located.
void recalculate() const
Recalculates the text layout.
color_t foreground_color_
The foreground color.
point get_column_line(const point &position) const
Gets the column of line of the character at the position.
std::unique_ptr< PangoContext, std::function< void(void *)> > context_
bool link_aware_
Are hyperlinks in the text marked-up, and will get_link return them.
pango_text & set_foreground_color(const color_t &color)
int to_draw_scale(int s) const
Scale the given render-space size to draw-space, rounding up.
std::string format_links(std::string_view text) const
Replaces all instances of URLs in a given string with formatted links and returns the result.
PangoLayoutLine * get_line(int index)
Get a specific line from the pango layout.
unsigned characters_per_line_
The number of characters per line.
bool markedup_text_
Does the text contain pango markup? If different render routines must be used.
void add_attribute_font_family(const unsigned start_offset, const unsigned end_offset, std::string family)
pango_text & set_family_class(font::family_class fclass)
font::family_class font_class_
The font family class used.
std::vector< std::string > get_lines() const
Retrieves a list of strings with contents for each rendered line.
void add_attribute_fg_color(const unsigned start_offset, const unsigned end_offset, const color_t &color)
void update_pixel_scale()
Update pixel scale, if necessary.
unsigned font_size_
The font size to draw.
void add_attribute_size(const unsigned start_offset, const unsigned end_offset, int size)
texture render_texture(const SDL_Rect &viewport)
Wrapper around render_surface which sets texture::w() and texture::h() in the same way that render_an...
surface render_surface(const SDL_Rect &viewport)
Returns the rendered text.
std::vector< uint8_t > surface_buffer_
Buffer to store the image on.
pango_text & set_add_outline(bool do_add)
unsigned attribute_end_offset_
pango_text & set_ellipse_mode(const PangoEllipsizeMode ellipse_mode)
PangoRectangle calculate_size(PangoLayout &layout) const
Calculates surface size.
void add_attribute_underline(const unsigned start_offset, const unsigned end_offset, PangoUnderline underline)
pango_text & set_alignment(const PangoAlignment alignment)
std::string text_
The text to draw (stored as UTF-8).
point get_cursor_position(const unsigned column, const unsigned line=0) const
Gets the location for the cursor, in drawing coordinates.
bool calculation_dirty_
The text has two dirty states:
std::unique_ptr< PangoLayout, std::function< void(void *)> > layout_
pango_text & set_font_size(unsigned font_size)
pango_text & set_link_aware(bool b)
FONT_STYLE font_style_
The style of the font, this is an orred mask of the font flags.
unsigned attribute_start_offset_
std::string get_token(const point &position, const char *delimiters=" \n\r\t") const
Gets the largest collection of characters, including the token at position, and not including any cha...
bool set_text(const std::string &text, const bool markedup)
Sets the text to render.
bool is_truncated() const
Has the text been truncated? This happens if it exceeds max width or height.
void add_attribute_style(const unsigned start_offset, const unsigned end_offset, PangoStyle style)
texture with_draw_scale(const texture &t) const
Adjust a texture's draw-width and height according to pixel scale.
std::size_t maximum_length_
The maximum length of the text.
point get_cursor_pos_from_index(const unsigned offset) const
Gets the location for the cursor, in drawing coordinates.
pango_text & set_maximum_height(int height, bool multiline)
pango_text & set_maximum_width(int width)
std::size_t get_maximum_length() const
Get maximum length.
PangoAttrList * global_attribute_list_
Global pango attribute list.
texture render_and_get_texture()
Returns the cached texture, or creates a new one otherwise.
pango_text & set_link_color(const color_t &color)
std::string get_link(const point &position) const
Checks if position points to a character in a link in the text, returns it if so, empty string otherw...
void clear_attribute_list()
Clear all attributes.
const std::string & text() const
std::size_t length_
Length of the text.
int get_max_glyph_height() const
Returns the maximum glyph height of a font, in drawing coordinates.
int maximum_width_
The maximum width of the text.
int font_scaled(int size)
Wrapper class to encapsulate creation and management of an SDL_Texture.
void set_draw_size(int w, int h)
Set the intended size of the texture, in draw-space.
static std::string _(const char *str)
Define the common log macros for the gui toolkit.
void point(int x, int y)
Draw a single point.
void rect(const SDL_Rect &rect)
Draw a rectangle.
void line(int from_x, int from_y, int to_x, int to_y)
Draw a line.
Collection of helper functions relating to Pango formatting.
family_class
Font classes for get_font_families().
int get_max_height(unsigned size, font::family_class fclass, pango_text::FONT_STYLE style)
Returns the maximum glyph height of a font, in pixels.
pango_text & get_text_renderer()
Returns a reference to a static pango_text object.
constexpr float get_line_spacing_factor()
bool looks_like_url(std::string_view str)
std::string format_as_link(const std::string &link, color_t color)
std::string semi_escape_text(const std::string &text)
const t_string & get_font_families(family_class fclass)
Returns the currently defined fonts.
static void unpremultiply(uint8_t &value, const unsigned div)
static void from_cairo_format(uint32_t &c)
Converts from cairo-format ARGB32 premultiplied alpha to plain alpha.
void flush_texture_cache()
Flush the rendered text cache.
static constexpr inverse_table inverse_table_
std::string_view debug_truncate(std::string_view text)
Returns a truncated version of the text.
std::size_t index(const std::string &str, const std::size_t index)
Codepoint index corresponding to the nth character in a UTF-8 string.
std::string & insert(std::string &str, const std::size_t pos, const std::string &insert)
Insert a UTF-8 string at the specified position.
std::size_t size(const std::string &str)
Length in characters of a UTF-8 string.
std::string & truncate(std::string &str, const std::size_t size)
Truncates a UTF-8 string to the specified number of characters.
int get_pixel_scale()
Get the current active pixel scale multiplier.
rect dst
Location on the final composed sheet.
rect src
Non-transparent portion of the surface to compose.
The basic class for representing 8-bit RGB or RGBA colour values.
constexpr inverse_table()
unsigned operator[](uint8_t i) const
An abstract description of a rectangle with integer coordinates.
static lg::log_domain log_font("font")