41 using char_iterator = char_vector::iterator;
42 using char_const_iterator = char_vector::const_iterator;
43 using char_reference = char_vector::reference;
44 using char_const_reference = char_vector::const_reference;
46 using line_iterator = line_vector::iterator;
47 using line_const_iterator = line_vector::const_iterator;
49 constexpr text_shaper()
noexcept =
default;
50 constexpr text_shaper(text_shaper
const&)
noexcept =
default;
51 constexpr text_shaper(text_shaper&&)
noexcept =
default;
52 constexpr text_shaper& operator=(text_shaper
const&)
noexcept =
default;
53 constexpr text_shaper& operator=(text_shaper&&)
noexcept =
default;
85 text_style_set
const& style,
86 unit::pixel_density pixel_density,
89 iso_15924 script = iso_15924{
"Zyyy"})
noexcept :
90 _bidi_context(left_to_right ? unicode_bidi_class::L : unicode_bidi_class::R),
91 _pixel_density(pixel_density),
92 _alignment(alignment),
95 auto const font = style.front().font_chain()[0];
96 _initial_line_metrics = style.front().size() * _pixel_density *
font->
metrics;
98 _text.reserve(text.
size());
99 for (
auto const& c : text) {
100 auto const clean_c = c ==
'\n' ?
grapheme{unicode_PS} : c;
102 auto& tmp = _text.emplace_back(clean_c, style, _pixel_density);
103 tmp.initialize_glyph(font);
109 [](text_shaper::char_const_reference it) {
110 return it.grapheme.starter();
114 _line_break_opportunities =
unicode_line_break(_text.begin(), _text.end(), [](
auto const& c) ->
decltype(
auto) {
115 return c.grapheme.starter();
118 _line_break_widths.reserve(text.size());
119 for (
auto const& c : _text) {
120 _line_break_widths.push_back(is_visible(c.general_category) ? c.width : -c.width);
123 _word_break_opportunities =
unicode_word_break(_text.begin(), _text.end(), [](
auto const& c) ->
decltype(
auto) {
124 return c.grapheme.starter();
127 _sentence_break_opportunities =
unicode_sentence_break(_text.begin(), _text.end(), [](
auto const& c) ->
decltype(
auto) {
128 return c.grapheme.starter();
134 [[nodiscard]] text_shaper(
135 std::string_view text,
136 text_style_set
const& style,
137 unit::pixel_density pixel_density,
138 hi::alignment alignment,
140 iso_15924 script = iso_15924{
"Zyyy"})
noexcept :
145 [[nodiscard]]
bool empty() const noexcept
147 return _text.empty();
150 [[nodiscard]]
size_t size() const noexcept
155 [[nodiscard]] char_iterator
begin() noexcept
157 return _text.begin();
160 [[nodiscard]] char_const_iterator
begin() const noexcept
162 return _text.begin();
165 [[nodiscard]] char_const_iterator cbegin() const noexcept
167 return _text.cbegin();
170 [[nodiscard]] char_iterator
end() noexcept
175 [[nodiscard]] char_const_iterator
end() const noexcept
180 [[nodiscard]] char_const_iterator cend() const noexcept
185 auto const& lines() const noexcept
206 [[nodiscard]] aarectangle
211 constexpr auto baseline = 0.0f;
215 hi_assert(not lines.empty());
217 auto max_width = 0.0f;
218 for (
auto& line : lines) {
219 inplace_max(max_width, line.width);
222 auto const max_y = lines.front().y +
std::ceil(lines.front().metrics.ascender.in(unit::pixels));
223 auto const min_y = lines.back().y -
std::ceil(lines.back().metrics.descender.in(unit::pixels));
246 hi_assert(not _lines.empty());
261 return _text_direction;
271 return resolve(_alignment, _text_direction == unicode_bidi_class::L);
281 [[nodiscard]] char_const_iterator
get_it(
size_t index)
const noexcept
283 if (
static_cast<ptrdiff_t
>(index) < 0) {
285 }
else if (index >= size()) {
289 return begin() + index;
301 return get_it(cursor.index());
312 [[nodiscard]] char_const_iterator
get_it(
size_t column_nr,
size_t line_nr)
const noexcept
314 hi_assert(not _lines.empty());
316 if (
static_cast<ptrdiff_t
>(line_nr) < 0) {
318 }
else if (line_nr >= _lines.size()) {
322 auto const left_of_line =
static_cast<ptrdiff_t
>(column_nr) < 0;
323 auto const right_of_line = column_nr >= _lines[line_nr].size();
325 if (left_of_line or right_of_line) {
326 auto const ltr = _lines[line_nr].paragraph_direction == unicode_bidi_class::L;
327 auto const go_up = left_of_line == ltr;
330 if (
static_cast<ptrdiff_t
>(--line_nr) < 0) {
334 return _lines[line_nr].paragraph_direction == unicode_bidi_class::L ? _lines[line_nr].back() :
335 _lines[line_nr].front();
340 if (++line_nr >= _lines.size()) {
344 return _lines[line_nr].paragraph_direction == unicode_bidi_class::L ? _lines[line_nr].front() :
345 _lines[line_nr].back();
350 return _lines[line_nr][column_nr];
362 return get_it(column_row.first, column_row.second);
373 return {it->column_nr, it->line_nr};
375 hi_assert(not _lines.empty());
376 return {_lines.size() - 1, _lines.back().size()};
405 [[nodiscard]]
size_t get_index(text_shaper::char_const_iterator it)
const noexcept
476 if (it->direction == unicode_bidi_class::L) {
494 if (it->direction == unicode_bidi_class::L) {
511 auto const it =
get_it(cursor);
513 return (it->direction == unicode_bidi_class::L) == cursor.before();
515 hi_assert(begin() == end());
527 auto const it =
get_it(cursor);
529 return (it->direction == unicode_bidi_class::L) == cursor.after();
531 hi_assert(begin() == end());
547 auto const line_it = std::ranges::min_element(_lines, std::ranges::less{}, [position](
auto const& line) {
548 return std::abs(line.y - position.y());
551 if (line_it != _lines.end()) {
552 auto const[char_it, after] = line_it->get_nearest(position);
553 return {narrow_cast<size_t>(
std::distance(_text.begin(), char_it)), after};
563 auto const index = cursor.index();
571 return get_selection_from_break(cursor, _word_break_opportunities);
578 return get_selection_from_break(cursor, _sentence_break_opportunities);
585 auto const first_index = [&]() {
586 auto i = cursor.index();
588 if (_text[i - 1].general_category == unicode_general_category::Zp) {
595 auto const last_index = [&]() {
596 auto i = cursor.index();
597 while (i < _text.size()) {
598 if (_text[i].general_category == unicode_general_category::Zp) {
625 [[nodiscard]] char_const_iterator
move_left_char(char_const_iterator it)
const noexcept
628 return get_it(column_nr - 1, line_nr);
636 [[nodiscard]] char_const_iterator
move_right_char(char_const_iterator it)
const noexcept
639 return get_it(column_nr + 1, line_nr);
644 auto it = get_it(cursor);
645 if (overwrite_mode) {
646 it = move_left_char(it);
647 return get_before_cursor(it);
650 if (is_on_left(cursor)) {
652 it = move_left_char(it);
655 return get_left_cursor(it);
659 [[nodiscard]] text_cursor move_right_char(text_cursor cursor,
bool overwrite_mode)
const noexcept
661 auto it = get_it(cursor);
662 if (overwrite_mode) {
663 it = move_right_char(it);
664 return get_before_cursor(it);
667 if (is_on_right(cursor)) {
669 it = move_right_char(it);
672 return get_right_cursor(it);
676 [[nodiscard]] text_cursor move_down_char(text_cursor cursor,
float& x)
const noexcept
682 auto [column_nr, line_nr] = get_column_line(cursor);
683 if (++line_nr == _lines.size()) {
684 return get_end_cursor();
688 auto const char_it = get_it(cursor);
689 hi_assert(char_it != _text.end());
690 x = is_on_left(cursor) ? char_it->rectangle.left() : char_it->rectangle.right();
693 auto const[new_char_it, after] = _lines[line_nr].get_nearest(point2{x, 0.0f});
694 return get_before_cursor(new_char_it);
697 [[nodiscard]] text_cursor move_up_char(text_cursor cursor,
float& x)
const noexcept
703 auto [column_nr, line_nr] = get_column_line(cursor);
704 if (line_nr-- == 0) {
709 auto char_it = get_it(cursor);
710 hi_assert(char_it < _text.end());
711 x = is_on_left(cursor) ? char_it->rectangle.left() : char_it->rectangle.right();
714 auto const[new_char_it, after] = _lines[line_nr].get_nearest(point2{x, 0.0f});
715 return get_before_cursor(new_char_it);
718 [[nodiscard]] text_cursor move_left_word(text_cursor cursor,
bool overwrite_mode)
const noexcept
720 cursor = move_left_char(cursor, overwrite_mode).before_neighbor(size());
721 auto it = get_it(cursor);
722 while (it !=
end()) {
723 if (it->general_category != unicode_general_category::Zs and
724 _word_break_opportunities[get_index(it)] != unicode_break_opportunity::no) {
725 return get_before_cursor(it);
727 it = move_left_char(it);
729 return get_end_cursor();
732 [[nodiscard]] text_cursor move_right_word(text_cursor cursor,
bool overwrite_mode)
const noexcept
734 cursor = move_right_char(cursor, overwrite_mode).before_neighbor(size());
735 auto it = get_it(cursor);
736 while (it !=
end()) {
737 if (it->general_category != unicode_general_category::Zs and
738 _word_break_opportunities[get_index(it)] != unicode_break_opportunity::no) {
739 return get_before_cursor(it);
741 it = move_right_char(it);
743 return get_end_cursor();
746 [[nodiscard]] text_cursor move_begin_line(text_cursor cursor)
const noexcept
748 auto const[column_nr, line_nr] = get_column_line(cursor);
749 auto const& line = _lines[line_nr];
750 return get_before_cursor(line.first);
753 [[nodiscard]] text_cursor move_end_line(text_cursor cursor)
const noexcept
755 auto const[column_nr, line_nr] = get_column_line(cursor);
756 auto const& line = _lines[line_nr];
759 while (it != line.first) {
761 if (not it->is_trailing_white_space) {
766 return get_after_cursor(it);
769 [[nodiscard]] text_cursor move_begin_sentence(text_cursor cursor)
const noexcept
771 if (cursor.after()) {
772 cursor = {cursor.index(),
false};
773 }
else if (cursor.index() != 0) {
774 cursor = {cursor.index() - 1,
false};
776 auto const[first, last] = select_sentence(cursor);
777 return first.before_neighbor(size());
780 [[nodiscard]] text_cursor move_end_sentence(text_cursor cursor)
const noexcept
782 if (cursor.before()) {
783 cursor = {cursor.index(),
true};
784 }
else if (cursor.index() != _text.size() - 1) {
785 cursor = {cursor.index() + 1,
true};
787 auto const[first, last] = select_sentence(cursor);
788 return last.before_neighbor(size());
791 [[nodiscard]] text_cursor move_begin_paragraph(text_cursor cursor)
const noexcept
793 if (cursor.after()) {
794 cursor = {cursor.index(),
false};
795 }
else if (cursor.index() != 0) {
796 cursor = {cursor.index() - 1,
false};
798 auto const[first, last] = select_paragraph(cursor);
799 return first.before_neighbor(size());
802 [[nodiscard]] text_cursor move_end_paragraph(text_cursor cursor)
const noexcept
804 if (cursor.before()) {
805 cursor = {cursor.index(),
true};
806 }
else if (cursor.index() != _text.size() - 1) {
807 cursor = {cursor.index() + 1,
true};
809 auto const[first, last] = select_paragraph(cursor);
810 return last.before_neighbor(size());
813 [[nodiscard]] text_cursor move_begin_document(text_cursor cursor)
const noexcept
818 [[nodiscard]] text_cursor move_end_document(text_cursor cursor)
const noexcept
824 return get_end_cursor();
830 unit::pixel_density _pixel_density;
840 hi::alignment _alignment;
844 unicode_break_vector _line_break_opportunities;
848 std::vector<float> _line_break_widths;
852 unicode_break_vector _word_break_opportunities;
856 unicode_break_vector _sentence_break_opportunities;
860 unicode_bidi_context _bidi_context;
878 font_metrics_px _initial_line_metrics;
882 aarectangle _rectangle;
885 layout_lines_vertical_spacing(text_shaper::line_vector& lines)
noexcept
887 hi_assert(not lines.empty());
889 auto prev = lines.begin();
891 for (
auto it = prev + 1; it != lines.end(); ++it) {
893 prev->metrics.descender +
std::max(
prev->metrics.line_gap, it->metrics.line_gap) + it->metrics.ascender;
895 auto const line_spacing =
std::max(
prev->line_spacing, it->line_spacing);
896 auto const paragraph_spacing =
std::max(
prev->paragraph_spacing, it->paragraph_spacing);
897 auto const spacing =
prev->last_category == unicode_general_category::Zp ? paragraph_spacing : line_spacing;
899 it->y =
prev->y - spacing * height.in(unit::pixels);
904 static void layout_lines_vertical_alignment(
905 text_shaper::line_vector& lines,
906 vertical_alignment alignment,
910 float sub_pixel_height)
noexcept
912 hi_assert(not lines.empty());
915 auto adjustment = [&]() {
916 if (alignment == vertical_alignment::top) {
917 return -lines.front().y;
919 }
else if (alignment == vertical_alignment::bottom) {
920 return -lines.back().y;
923 auto const mp_index = lines.size() / 2;
924 if (lines.size() % 2 == 1) {
925 return -lines[mp_index].y;
928 return -std::midpoint(lines[mp_index - 1].y, lines[mp_index].y);
934 adjustment += baseline;
938 if (lines.back().y + adjustment < min_y) {
939 adjustment = min_y - lines.back().y;
941 if (lines.front().y + adjustment > max_y) {
942 adjustment = max_y - lines.front().y;
946 auto const rcp_sub_pixel_height = 1.0f / sub_pixel_height;
947 for (
auto& line : lines) {
948 line.y =
std::round((line.y + adjustment) * rcp_sub_pixel_height) * sub_pixel_height;
959 bidi_algorithm(text_shaper::line_vector& lines, text_shaper::char_vector& text, unicode_bidi_context bidi_context)
noexcept
961 hi_assert(not lines.empty());
964 auto char_its = std::vector<text_shaper::char_iterator>{};
966 char_its.reserve(text.size() + lines.size());
967 for (
auto const& line : lines) {
969 for (
auto it = line.first; it != line.last; ++it) {
970 char_its.push_back(it);
972 if (not is_Zp_or_Zl(line.last_category)) {
974 char_its.push_back(text.end());
978 auto const[char_its_last, paragraph_directions] =
unicode_bidi(
981 [&](text_shaper::char_const_iterator it) {
982 if (it != text.end()) {
983 return it->grapheme.starter();
988 [&](text_shaper::char_iterator it,
char32_t code_point) {
989 hi_axiom(it != text.end());
990 it->replace_glyph(code_point);
993 if (it != text.end()) {
994 it->direction = direction;
1000 char_its.erase(char_its_last, char_its.cend());
1003 auto par_it = paragraph_directions.cbegin();
1004 for (
auto& line : lines) {
1005 hi_axiom(par_it != paragraph_directions.cend());
1006 line.paragraph_direction = *par_it;
1007 if (line.last_category == unicode_general_category::Zp) {
1011 hi_assert(par_it <= paragraph_directions.cend());
1014 auto line_it = lines.begin();
1015 line_it->columns.clear();
1016 auto column_nr = 0_uz;
1017 for (
auto const char_it : char_its) {
1018 if (char_it == text.end()) {
1021 }
else if (char_it >= line_it->last) {
1023 hi_axiom(line_it->columns.size() <= narrow_cast<size_t>(
std::distance(line_it->first, line_it->last)));
1025 line_it->columns.clear();
1028 hi_axiom(line_it != lines.end());
1029 hi_axiom(char_it >= line_it->first);
1030 hi_axiom(char_it < line_it->last);
1031 line_it->columns.push_back(char_it);
1034 char_it->line_nr = line_it->line_nr;
1035 char_it->column_nr = column_nr++;
1039 for (
auto& c : text) {
1044 [[nodiscard]]
static generator<std::pair<std::vector<size_t>,
float>>
1045 get_widths(unicode_break_vector
const& opportunities, std::vector<float>
const& widths, unit::pixel_density pixel_density)
noexcept
1054 auto stack = std::vector<entry_type>{};
1056 auto const a4_one_column = (au::milli(au::meters)(172.0f) *
pixel_density.ppi).in(unit::pixels);
1057 auto const a4_two_column = (au::milli(au::meters)(88.0f) *
pixel_density.ppi).in(unit::pixels);
1060 auto [max_width, max_lines] = detail::unicode_LB_maximum_width(opportunities, widths);
1061 auto height = max_lines.size();
1062 co_yield {
std::move(max_lines), max_width};
1064 if (max_width >= a4_two_column) {
1066 if (max_width > a4_one_column) {
1067 auto [width, lines] = detail::unicode_LB_width(opportunities, widths, a4_one_column);
1068 if (std::exchange(height, lines.size()) > lines.size()) {
1073 auto [width, lines] = detail::unicode_LB_width(opportunities, widths, a4_two_column);
1074 if (std::exchange(height, lines.size()) > lines.size()) {
1080 auto [min_width, min_lines] = detail::unicode_LB_minimum_width(opportunities, widths);
1081 if (min_lines.size() >= height) {
1086 stack.emplace_back(min_lines.size(), height, min_width, max_width);
1087 co_yield {
std::move(min_lines), min_width};
1090 auto const entry = stack.back();
1093 if (entry.max_height > entry.max_height + 1 and entry.max_width >= entry.min_width + 2.0f) {
1095 auto const half_width = (entry.min_width + entry.max_width) * 0.5f;
1097 auto [split_width, split_lines] = detail::unicode_LB_width(opportunities, widths, half_width);
1098 auto const split_height = split_lines.size();
1100 if (split_height == entry.min_height) {
1103 stack.emplace_back(split_height, entry.max_height, half_width, entry.max_width);
1105 }
else if (split_height == entry.max_height) {
1108 stack.emplace_back(entry.min_height, split_height, entry.min_width, half_width);
1112 co_yield {
std::move(split_lines), split_width};
1113 stack.emplace_back(entry.min_height, split_height, entry.min_width, split_width);
1114 stack.emplace_back(split_height, entry.max_height, split_width, entry.max_width);
1117 }
while (not stack.empty());
1129 [[nodiscard]] line_vector make_lines(
1130 aarectangle rectangle,
1132 extent2 sub_pixel_size)
noexcept
1136 auto r = text_shaper::line_vector{};
1137 r.reserve(line_sizes.size());
1139 auto char_it = _text.begin();
1140 auto width_it = _line_break_widths.
begin();
1141 auto line_nr = 0_uz;
1142 for (
auto const line_size : line_sizes) {
1143 hi_axiom(line_size > 0);
1144 auto const char_eol = char_it + line_size;
1145 auto const width_eol = width_it + line_size;
1147 auto const line_width = detail::unicode_LB_width(width_it, width_eol);
1148 r.emplace_back(line_nr++, _text.begin(), char_it, char_eol, line_width, _initial_line_metrics);
1151 width_it = width_eol;
1154 if (r.empty() or is_Zp_or_Zl(r.back().last_category)) {
1155 r.emplace_back(line_nr++, _text.begin(), _text.end(), _text.end(), 0.0f, _initial_line_metrics);
1156 r.back().paragraph_direction = _text_direction;
1159 layout_lines_vertical_spacing(r);
1160 layout_lines_vertical_alignment(
1172 void position_glyphs(aarectangle rectangle, extent2 sub_pixel_size)
noexcept
1174 hi_assert(not _lines.empty());
1177 bidi_algorithm(_lines, _text, _bidi_context);
1178 for (
auto& line : _lines) {
1186 void resolve_script() noexcept
1189 auto first_script = _script;
1190 for (
auto& c : _text) {
1191 auto const script = ucd_get_script(c.grapheme.starter());
1192 if (script != iso_15924::wildcard() or script == iso_15924::uncoded() or script == iso_15924::common() or
1193 script == iso_15924::inherited()) {
1194 first_script = script;
1202 auto word_script = iso_15924::common();
1203 auto previous_script = first_script;
1204 for (
auto i = std::ssize(_text) - 1; i >= 0; --i) {
1207 if (_word_break_opportunities[i + 1] != unicode_break_opportunity::no) {
1208 word_script = iso_15924::common();
1211 c.script = ucd_get_script(c.grapheme.starter());
1212 if (c.script == iso_15924::uncoded() or c.script == iso_15924::common()) {
1213 auto const bracket_type = ucd_get_bidi_paired_bracket_type(c.grapheme.starter());
1216 bracket_type == unicode_bidi_paired_bracket_type::o ? previous_script :
1217 bracket_type == unicode_bidi_paired_bracket_type::c ? iso_15924::common() :
1221 }
else if (c.script != iso_15924::inherited()) {
1222 previous_script = word_script = c.script;
1227 previous_script = first_script;
1228 for (
auto i = 0_uz; i != _text.size(); ++i) {
1231 if (c.script == iso_15924::common() or c.script == iso_15924::inherited()) {
1232 c.script = previous_script;
1235 previous_script = c.script;
1240 [[nodiscard]] std::pair<text_cursor, text_cursor>
1241 get_selection_from_break(text_cursor cursor, unicode_break_vector
const& break_opportunities)
const noexcept
1243 if (_text.empty()) {
1250 auto const first_index = [&]() {
1251 auto i = cursor.index();
1252 while (break_opportunities[i] == unicode_break_opportunity::no) {
1257 auto const last_index = [&]() {
1258 auto i = cursor.index();
1259 while (break_opportunities[i + 1] == unicode_break_opportunity::no) {
1265 return {get_before_cursor(first_index), get_after_cursor(last_index)};
1268 [[nodiscard]] std::pair<font_metrics_px, unicode_general_category>
1269 get_line_metrics(text_shaper::char_const_iterator first, text_shaper::char_const_iterator last)
const noexcept
1271 auto metrics = _initial_line_metrics;
1272 for (
auto it = first; it != last; ++it) {
1275 if (is_visible(it->general_category)) {
1276 inplace_max(metrics, it->font_metrics());
1280 auto const last_category = (first != last) ? (last - 1)->general_category : unicode_general_category::Cn;
1281 return {metrics, last_category};
1290 [[nodiscard]]
float get_text_height(std::vector<size_t>
const& lines)
const noexcept
1292 if (lines.empty()) {
1296 auto line_it = lines.cbegin();
1297 auto char_it_first = _text.begin();
1298 auto char_it_last = char_it_first + *line_it++;
1301 auto [previous_metrics, previous_category] = get_line_metrics(char_it_first, char_it_last);
1302 auto total_height = previous_metrics.x_height;
1304 for (; line_it != lines.cend(); ++line_it) {
1305 char_it_first = std::exchange(char_it_last, char_it_last + *line_it);
1308 auto [current_metrics, current_category] = get_line_metrics(char_it_first, char_it_last);
1309 auto const line_height = previous_metrics.descender +
std::max(previous_metrics.line_gap, current_metrics.line_gap) +
1310 current_metrics.ascender;
1312 auto const spacing = previous_category == unicode_general_category::Zp ? previous_metrics.paragraph_spacing :
1313 previous_metrics.line_spacing;
1314 total_height = total_height + spacing * line_height;
1316 previous_metrics =
std::move(current_metrics);
1317 previous_category =
std::move(current_category);
1320 return total_height.in(unit::pixels);