16 #define GETTEXT_DOMAIN "wesnoth-lib"
42 #define DBG_FT LOG_STREAM(debug, log_font)
49 void render_image_shape(cairo_t *cr, PangoAttrShape *pShape,
int ,
void* )
52 cairo_surface_t *
img =
static_cast<cairo_surface_t*
>(pShape->data);
54 cairo_rel_move_to (cr,
55 pShape->ink_rect.x/PANGO_SCALE,
56 pShape->ink_rect.y/PANGO_SCALE);
58 cairo_get_current_point (cr, &x, &y);
59 cairo_translate (cr, x, y);
61 cairo_set_source_surface(cr,
img, 0, 0);
65 pShape->ink_rect.width/PANGO_SCALE,
66 pShape->ink_rect.height/PANGO_SCALE);
72 : context_(pango_font_map_create_context(pango_cairo_font_map_get_default()), g_object_unref)
73 , layout_(pango_layout_new(context_.
get()), g_object_unref)
76 , markedup_text_(false)
81 , font_style_(STYLE_NORMAL)
85 , characters_per_line_(0)
87 , ellipse_mode_(PANGO_ELLIPSIZE_END)
88 , alignment_(PANGO_ALIGN_LEFT)
89 , maximum_length_(std::string::npos)
90 , calculation_dirty_(true)
96 pango_cairo_context_set_resolution(
context_.get(), 72.0);
100 pango_layout_set_wrap(
layout_.get(), PANGO_WRAP_WORD_CHAR);
105 cairo_font_options_t *fo = cairo_font_options_create();
106 cairo_font_options_set_hint_style(fo, CAIRO_HINT_STYLE_FULL);
107 cairo_font_options_set_hint_metrics(fo, CAIRO_HINT_METRICS_ON);
108 cairo_font_options_set_antialias(fo, CAIRO_ANTIALIAS_DEFAULT);
110 pango_cairo_context_set_font_options(
context_.get(), fo);
111 cairo_font_options_destroy(fo);
113 pango_cairo_context_set_shape_renderer(
context_.get(), render_image_shape,
nullptr,
nullptr);
165 return (pango_layout_is_ellipsized(
layout_.get()) != 0);
182 std::string tmp =
text_;
191 std::unique_ptr<PangoLayoutIter, std::function<void(PangoLayoutIter*)>> itor(
192 pango_layout_get_iter(
layout_.get()), pango_layout_iter_free);
197 if(
static_cast<int>(
line) >= pango_layout_get_line_count(
layout_.get())) {
201 for(std::size_t
i = 0;
i <
line; ++
i) {
202 pango_layout_iter_next_line(itor.get());
207 for(std::size_t
i = 0;
i < offset; ++
i) {
208 if(!pango_layout_iter_next_char(itor.get())) {
212 if(
i + 1 == offset) {
221 return pango_layout_iter_get_index(itor.get());
234 pango_layout_get_cursor_pos(
layout_.get(), offset, &
rect,
nullptr);
250 if (!pango_layout_xy_to_index(
layout_.get(), position.x * PANGO_SCALE,
251 position.y * PANGO_SCALE, &
index, &trailing)) {
255 std::string txt = pango_layout_get_text(
layout_.get());
257 std::string
d(delim);
259 if (
index < 0 || (
static_cast<std::size_t
>(
index) >= txt.size()) ||
d.find(txt.at(
index)) != std::string::npos) {
263 std::size_t l =
index;
264 while (l > 0 && (
d.find(txt.at(l-1)) == std::string::npos)) {
268 std::size_t r =
index + 1;
269 while (r < txt.size() && (
d.find(txt.at(r)) == std::string::npos)) {
273 return txt.substr(l,r-l);
282 std::string tok =
get_token(position,
" \n\r\t");
297 pango_layout_xy_to_index(
layout_.get(), position.x * PANGO_SCALE,
298 position.y * PANGO_SCALE, &
index, &trailing);
302 pango_layout_index_to_line_x(
layout_.get(),
index, trailing, &
line, &offset);
303 offset = PANGO_PIXELS(offset);
316 for(std::size_t
i = 0; ; ++
i) {
331 pango_layout_xy_to_index(
layout_.get(), position.x * PANGO_SCALE,
332 position.y * PANGO_SCALE, &
index, &trailing);
339 pango_layout_set_attributes(
layout_.get(),
nullptr);
344 if(PangoAttrList* current_attrs = pango_layout_get_attributes(
layout_.get())) {
354 const std::u32string wide = unicode_cast<std::u32string>(
text);
355 std::string narrow = unicode_cast<std::string>(wide);
358 <<
"pango_text::" << __func__
360 <<
"' contains invalid utf-8, trimmed the invalid parts.";
364 pango_layout_set_text(
layout_.get(), narrow.c_str(), narrow.size());
368 text_ = std::move(narrow);
462 pango_layout_set_height(
layout_.get(), !multiline ? -1 : height * PANGO_SCALE);
475 pango_layout_set_ellipsize(
layout_.get(), ellipse_mode);
484 pango_layout_set_height(
layout_.get(), -1);
493 pango_layout_set_alignment(
layout_.get(), alignment);
505 std::string tmp =
text_;
546 PangoFont*
f = pango_font_map_load_font(
547 pango_cairo_font_map_get_default(),
551 PangoFontMetrics* m = pango_font_get_metrics(
f,
nullptr);
553 auto ascent = pango_font_metrics_get_ascent(m);
554 auto descent = pango_font_metrics_get_descent(m);
556 pango_font_metrics_unref(m);
559 return ceil(pango_units_to_double(ascent + descent) /
pixel_scale_);
602 pango_layout_set_font_description(&
layout,
font.get());
604 int maximum_width = 0;
606 PangoFont*
f = pango_font_map_load_font(
607 pango_cairo_font_map_get_default(),
611 PangoFontMetrics* m = pango_font_get_metrics(
f,
nullptr);
613 int w = pango_font_metrics_get_approximate_char_width(m);
616 maximum_width = ceil(pango_units_to_double(
w));
618 pango_font_metrics_unref(m);
628 pango_layout_set_width(&
layout, maximum_width == -1
630 : maximum_width * PANGO_SCALE);
631 pango_layout_get_pixel_extents(&
layout,
nullptr, &
size);
635 <<
"' maximum_width " << maximum_width
643 <<
" font_style " << std::hex <<
font_style_ << std::dec
644 <<
" maximum_width " << maximum_width
646 <<
" result " <<
size
649 if(maximum_width != -1 &&
size.x +
size.width > maximum_width) {
652 <<
" ' width " <<
size.x +
size.width
653 <<
" greater as the wanted maximum of " << maximum_width
661 <<
" ' height " <<
size.y +
size.height
682 for (
int i = 1;
i < 256; ++
i) {
697 unsigned temp = (value * div) / 256u;
705 value = std::min(255u, temp);
714 uint8_t a = (
c >> 24) & 0xff;
715 uint8_t r = (
c >> 16) & 0xff;
716 uint8_t
g = (
c >> 8) & 0xff;
717 uint8_t
b =
c & 0xff;
724 c = (
static_cast<uint32_t
>(a) << 24) | (
static_cast<uint32_t
>(r) << 16) | (
static_cast<uint32_t
>(
g) << 8) |
static_cast<uint32_t
>(
b);
733 cairo_t* cr = cairo_context.get();
735 if(cairo_status(cr) == CAIRO_STATUS_INVALID_SIZE) {
736 throw std::length_error(
"Text is too long to render");
740 cairo_move_to(cr, -viewport.x, -viewport.y);
753 pango_cairo_layout_path(cr, &
layout);
756 cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 1.0);
758 cairo_set_line_join(cr, CAIRO_LINE_JOIN_ROUND);
759 cairo_set_line_width(cr, 3.0);
766 cairo_set_source_rgba(cr,
775 list.
insert(pango_attr_underline_new(PANGO_UNDERLINE_SINGLE));
779 pango_cairo_show_layout(cr, &
layout);
791 cairo_format_t
format = CAIRO_FORMAT_ARGB32;
792 const int stride = cairo_format_stride_for_width(
format, viewport.w);
796 if(stride <= 0 || viewport.h <= 0) {
801 DBG_FT <<
"creating new text surface";
806 if(viewport.h > std::numeric_limits<int>::max() / stride) {
807 throw std::length_error(
"Text is too long to render");
821 for(
int y = 0; y < viewport.h; ++y) {
822 uint32_t* pixels =
reinterpret_cast<uint32_t*
>(&
surface_buffer_[y * stride]);
823 for(
int x = 0; x < viewport.w; ++x) {
828 return SDL_CreateRGBSurfaceWithFormatFrom(
829 &
surface_buffer_[0], viewport.w, viewport.h, 32, stride, SDL_PIXELFORMAT_ARGB8888);
835 std::string semi_escaped;
837 if(!semi_escaped.empty()) {
844 pango_layout_set_markup(&
layout, formatted_text.c_str(), formatted_text.size());
859 static const std::string delim =
" \n\r\t";
860 std::ostringstream result;
862 std::size_t tok_start = 0;
863 for(std::size_t pos = 0; pos <
text.length(); ++pos) {
864 if(delim.find(
text[pos]) == std::string::npos) {
868 if(
const auto tok_length = pos - tok_start) {
870 auto token =
text.substr(tok_start, tok_length);
883 if(tok_start <
text.length()) {
897 if(pango_parse_markup(
text.data(),
text.size(),
898 0,
nullptr, raw_text,
nullptr,
nullptr)) {
917 if(
text.size() == semi_escaped.size()
918 || !pango_parse_markup(semi_escaped.c_str(), semi_escaped.size()
919 , 0,
nullptr, raw_text,
nullptr,
nullptr)) {
928 <<
"' has unescaped ampersands '&', escaped them.";
935 pango_layout_set_alignment(&
dst, pango_layout_get_alignment(&
src));
936 pango_layout_set_height(&
dst, pango_layout_get_height(&
src));
937 pango_layout_set_ellipsize(&
dst, pango_layout_get_ellipsize(&
src));
945 std::vector<std::string> res;
946 int count = pango_layout_get_line_count(
layout);
952 using layout_iterator = std::unique_ptr<PangoLayoutIter, std::function<void(PangoLayoutIter*)>>;
953 layout_iterator
i{pango_layout_get_iter(
layout), pango_layout_iter_free};
958 PangoLayoutLine* ll = pango_layout_iter_get_line_readonly(
i.get());
959 const char* begin = &pango_layout_get_text(
layout)[ll->start_index];
960 res.emplace_back(begin, ll->length);
961 }
while(pango_layout_iter_next_line(
i.get()));
968 return pango_layout_get_line_readonly(
layout_.get(),
index);
974 pango_layout_index_to_line_x(
layout_.get(), offset, 0, &line_num,
nullptr);
981 return text_renderer;
Helper class to encapsulate the management of a PangoAttrList.
void splice_into(PangoAttrList *target) const
void apply_to(PangoLayout *layout) const
void insert(PangoAttribute *attr)
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.
int xy_to_index(const point &position) const
pango_text & set_font_style(const FONT_STYLE font_style)
PangoEllipsizeMode ellipse_mode_
The way too long text is shown depends on this mode.
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)
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.
unsigned insert_text(const unsigned offset, const std::string &text, const bool use_markup=false)
Inserts UTF-8 text.
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.
void render(PangoLayout &layout, const SDL_Rect &viewport)
This is part of create_surface(viewport).
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.
unsigned get_byte_index(const unsigned offset, const unsigned line=0) const
Given a character index and optionally the starting line, returns the corresponding byte index.
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.
pango_text & set_family_class(font::family_class fclass)
font::family_class font_class_
The font family class used.
void apply_attributes(const font::attribute_list &attrs)
std::vector< std::string > get_lines() const
Retrieves a list of strings with contents for each rendered line.
void update_pixel_scale()
Update pixel scale, if necessary.
unsigned font_size_
The font size to draw.
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)
point get_cursor_position(const unsigned offset, const unsigned line=0) const
Gets the location for the cursor, in drawing coordinates.
pango_text & set_ellipse_mode(const PangoEllipsizeMode ellipse_mode)
PangoRectangle calculate_size(PangoLayout &layout) const
Calculates surface size.
pango_text & set_alignment(const PangoAlignment alignment)
std::string text_
The text to draw (stored as UTF-8).
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.
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.
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.
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...
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.
Define the common log macros for the gui toolkit.
context_ptr create_context(const surface_ptr &surf)
surface_ptr create_surface(uint8_t *buffer, const point &size)
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.
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)
const t_string & get_font_families(family_class fclass)
Returns the currently defined fonts.
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.
std::string semi_escape_text(std::string_view text)
std::string format_as_link(const std::string &link, color_t color)
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.
static constexpr inverse_table inverse_table_
std::string_view debug_truncate(std::string_view text)
Returns a truncated version of the text.
std::string img(const std::string &src, const std::string &align, bool floating)
Generates a Help markup tag corresponding to an image.
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(std::string_view 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.
std::size_t index(std::string_view str, const std::size_t index)
Codepoint index corresponding to the nth character in a UTF-8 string.
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.
contains the current text being parsed as well as the token_type of what's being parsed.
static lg::log_domain log_font("font")