16 #define GETTEXT_DOMAIN "wesnoth-lib"
42 #define DBG_FT LOG_STREAM(debug, log_font)
47 : context_(pango_font_map_create_context(pango_cairo_font_map_get_default()), g_object_unref)
48 , layout_(pango_layout_new(context_.
get()), g_object_unref)
51 , markedup_text_(false)
56 , font_style_(STYLE_NORMAL)
60 , characters_per_line_(0)
62 , ellipse_mode_(PANGO_ELLIPSIZE_END)
63 , alignment_(PANGO_ALIGN_LEFT)
64 , maximum_length_(std::string::npos)
65 , calculation_dirty_(true)
71 pango_cairo_context_set_resolution(
context_.get(), 72.0);
75 pango_layout_set_wrap(
layout_.get(), PANGO_WRAP_WORD_CHAR);
78 cairo_font_options_t *fo = cairo_font_options_create();
79 cairo_font_options_set_hint_style(fo, CAIRO_HINT_STYLE_FULL);
80 cairo_font_options_set_hint_metrics(fo, CAIRO_HINT_METRICS_ON);
81 cairo_font_options_set_antialias(fo, CAIRO_ANTIALIAS_DEFAULT);
83 pango_cairo_context_set_font_options(
context_.get(), fo);
84 cairo_font_options_destroy(fo);
136 return (pango_layout_is_ellipsized(
layout_.get()) != 0);
153 std::string tmp =
text_;
164 std::unique_ptr<PangoLayoutIter, std::function<void(PangoLayoutIter*)>> itor(
165 pango_layout_get_iter(
layout_.get()), pango_layout_iter_free);
170 if(
static_cast<int>(
line) >= pango_layout_get_line_count(
layout_.get())) {
174 for(std::size_t
i = 0;
i <
line; ++
i) {
175 pango_layout_iter_next_line(itor.get());
180 for(std::size_t
i = 0;
i < column; ++
i) {
181 if(!pango_layout_iter_next_char(itor.get())) {
185 if(
i + 1 == column) {
194 const int offset = pango_layout_iter_get_index(itor.get());
203 pango_layout_get_cursor_pos(
layout_.get(), offset, &
rect,
nullptr);
219 if (!pango_layout_xy_to_index(
layout_.get(), position.x * PANGO_SCALE,
220 position.y * PANGO_SCALE, &
index, &trailing)) {
224 std::string txt = pango_layout_get_text(
layout_.get());
226 std::string
d(delim);
228 if (
index < 0 || (
static_cast<std::size_t
>(
index) >= txt.size()) ||
d.find(txt.at(
index)) != std::string::npos) {
232 std::size_t l =
index;
233 while (l > 0 && (
d.find(txt.at(l-1)) == std::string::npos)) {
237 std::size_t r =
index + 1;
238 while (r < txt.size() && (
d.find(txt.at(r)) == std::string::npos)) {
242 return txt.substr(l,r-l);
251 std::string tok =
get_token(position,
" \n\r\t");
266 pango_layout_xy_to_index(
layout_.get(), position.x * PANGO_SCALE,
267 position.y * PANGO_SCALE, &
index, &trailing);
271 pango_layout_index_to_line_x(
layout_.get(),
index, trailing, &
line, &offset);
272 offset = PANGO_PIXELS(offset);
285 for(std::size_t
i = 0; ; ++
i) {
300 pango_layout_xy_to_index(
layout_.get(), position.x * PANGO_SCALE,
301 position.y * PANGO_SCALE, &
index, &trailing);
308 pango_layout_set_attributes(
layout_.get(),
nullptr);
313 if(PangoAttrList* current_attrs = pango_layout_get_attributes(
layout_.get())) {
327 const std::u32string wide = unicode_cast<std::u32string>(
text);
328 std::string narrow = unicode_cast<std::string>(wide);
331 <<
"pango_text::" << __func__
333 <<
"' contains invalid utf-8, trimmed the invalid parts.";
337 pango_layout_set_text(
layout_.get(), narrow.c_str(), narrow.size());
341 text_ = std::move(narrow);
435 pango_layout_set_height(
layout_.get(), !multiline ? -1 : height * PANGO_SCALE);
448 pango_layout_set_ellipsize(
layout_.get(), ellipse_mode);
457 pango_layout_set_height(
layout_.get(), -1);
466 pango_layout_set_alignment(
layout_.get(), alignment);
478 std::string tmp =
text_;
519 PangoFont*
f = pango_font_map_load_font(
520 pango_cairo_font_map_get_default(),
524 PangoFontMetrics* m = pango_font_get_metrics(
f,
nullptr);
526 auto ascent = pango_font_metrics_get_ascent(m);
527 auto descent = pango_font_metrics_get_descent(m);
529 pango_font_metrics_unref(m);
532 return ceil(pango_units_to_double(ascent + descent) /
pixel_scale_);
575 pango_layout_set_font_description(&
layout,
font.get());
580 , pango_attr_underline_new(PANGO_UNDERLINE_SINGLE));
586 int maximum_width = 0;
588 PangoFont*
f = pango_font_map_load_font(
589 pango_cairo_font_map_get_default(),
593 PangoFontMetrics* m = pango_font_get_metrics(
f,
nullptr);
595 int w = pango_font_metrics_get_approximate_char_width(m);
598 maximum_width = ceil(pango_units_to_double(
w));
600 pango_font_metrics_unref(m);
610 pango_layout_set_width(&
layout, maximum_width == -1
612 : maximum_width * PANGO_SCALE);
613 pango_layout_get_pixel_extents(&
layout,
nullptr, &
size);
617 <<
"' maximum_width " << maximum_width
625 <<
" font_style " << std::hex <<
font_style_ << std::dec
626 <<
" maximum_width " << maximum_width
628 <<
" result " <<
size
631 if(maximum_width != -1 &&
size.x +
size.width > maximum_width) {
634 <<
" ' width " <<
size.x +
size.width
635 <<
" greater as the wanted maximum of " << maximum_width
643 <<
" ' height " <<
size.y +
size.height
664 for (
int i = 1;
i < 256; ++
i) {
679 unsigned temp = (value * div) / 256u;
687 value = std::min(255u, temp);
696 uint8_t a = (
c >> 24) & 0xff;
697 uint8_t r = (
c >> 16) & 0xff;
698 uint8_t
g = (
c >> 8) & 0xff;
699 uint8_t
b =
c & 0xff;
706 c = (
static_cast<uint32_t
>(a) << 24) | (
static_cast<uint32_t
>(r) << 16) | (
static_cast<uint32_t
>(
g) << 8) |
static_cast<uint32_t
>(
b);
715 cairo_t* cr = cairo_context.get();
717 if(cairo_status(cr) == CAIRO_STATUS_INVALID_SIZE) {
718 throw std::length_error(
"Text is too long to render");
722 cairo_move_to(cr, -viewport.x, -viewport.y);
735 pango_cairo_layout_path(cr, &
layout);
738 cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 1.0);
740 cairo_set_line_join(cr, CAIRO_LINE_JOIN_ROUND);
741 cairo_set_line_width(cr, 3.0);
748 cairo_set_source_rgba(cr,
755 pango_cairo_show_layout(cr, &
layout);
767 cairo_format_t
format = CAIRO_FORMAT_ARGB32;
768 const int stride = cairo_format_stride_for_width(
format, viewport.w);
772 if(stride <= 0 || viewport.h <= 0) {
777 DBG_FT <<
"creating new text surface";
782 if(viewport.h > std::numeric_limits<int>::max() / stride) {
783 throw std::length_error(
"Text is too long to render");
797 for(
int y = 0; y < viewport.h; ++y) {
798 uint32_t* pixels =
reinterpret_cast<uint32_t*
>(&
surface_buffer_[y * stride]);
799 for(
int x = 0; x < viewport.w; ++x) {
804 return SDL_CreateRGBSurfaceWithFormatFrom(
805 &
surface_buffer_[0], viewport.w, viewport.h, 32, stride, SDL_PIXELFORMAT_ARGB8888);
811 std::string semi_escaped;
813 if(!semi_escaped.empty()) {
820 pango_layout_set_markup(&
layout, formatted_text.c_str(), formatted_text.size());
835 static const std::string delim =
" \n\r\t";
836 std::ostringstream result;
838 std::size_t tok_start = 0;
839 for(std::size_t pos = 0; pos <
text.length(); ++pos) {
840 if(delim.find(
text[pos]) == std::string::npos) {
844 if(
const auto tok_length = pos - tok_start) {
846 auto token =
text.substr(tok_start, tok_length);
859 if(tok_start <
text.length()) {
873 if(pango_parse_markup(
text.data(),
text.size(),
874 0,
nullptr, raw_text,
nullptr,
nullptr)) {
893 if(
text.size() == semi_escaped.size()
894 || !pango_parse_markup(semi_escaped.c_str(), semi_escaped.size()
895 , 0,
nullptr, raw_text,
nullptr,
nullptr)) {
904 <<
"' has unescaped ampersands '&', escaped them.";
911 pango_layout_set_alignment(&
dst, pango_layout_get_alignment(&
src));
912 pango_layout_set_height(&
dst, pango_layout_get_height(&
src));
913 pango_layout_set_ellipsize(&
dst, pango_layout_get_ellipsize(&
src));
921 std::vector<std::string> res;
922 int count = pango_layout_get_line_count(
layout);
928 using layout_iterator = std::unique_ptr<PangoLayoutIter, std::function<void(PangoLayoutIter*)>>;
929 layout_iterator
i{pango_layout_get_iter(
layout), pango_layout_iter_free};
934 PangoLayoutLine* ll = pango_layout_iter_get_line_readonly(
i.get());
935 const char* begin = &pango_layout_get_text(
layout)[ll->start_index];
936 res.emplace_back(begin, ll->length);
937 }
while(pango_layout_iter_next_line(
i.get()));
944 return pango_layout_get_line_readonly(
layout_.get(),
index);
950 pango_layout_index_to_line_x(
layout_.get(), offset, 0, &line_num,
nullptr);
957 return text_renderer;
Helper class to encapsulate the management of a PangoAttrList.
void splice_into(PangoAttrList *target) const
void apply_to(PangoLayout *layout) const
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.
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)
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).
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.
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.
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 semi_escape_text(std::string_view text)
std::string format_as_link(const std::string &link, color_t color)
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.
static constexpr inverse_table inverse_table_
std::string_view debug_truncate(std::string_view text)
Returns a truncated version of the text.
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")