10 #include "../../stdafx.h"
11 #include "../../debug.h"
13 #include "../../language.h"
14 #include "../../strings_func.h"
15 #include "../../string_func.h"
16 #include "../../table/control_codes.h"
17 #include "../../zoom_func.h"
24 #include "../../safeguards.h"
27 # pragma comment(lib, "usp10")
43 std::vector<GlyphID> ft_glyphs;
46 std::vector<WORD> char_to_glyph;
48 std::vector<SCRIPT_VISATTR> vis_attribs;
49 std::vector<WORD> glyphs;
50 std::vector<int> advances;
51 std::vector<GOFFSET> offsets;
54 UniscribeRun(
int pos,
int len, Font *font, SCRIPT_ANALYSIS &sa) : pos(pos), len(len), font(font), sa(sa) {}
77 std::vector<GlyphID> glyphs;
78 std::vector<float> positions;
79 std::vector<WORD> char_to_glyph;
86 mutable int *glyph_to_char =
nullptr;
93 free(this->glyph_to_char);
96 const GlyphID *GetGlyphs()
const override {
return &this->glyphs[0]; }
97 const float *GetPositions()
const override {
return &this->positions[0]; }
98 const int *GetGlyphToCharMap()
const override;
100 const Font *GetFont()
const override {
return this->font; }
101 int GetLeading()
const override {
return this->font->fc->GetHeight(); }
102 int GetGlyphCount()
const override {
return this->num_glyphs; }
103 int GetAdvance()
const {
return this->total_advance; }
111 int CountRuns()
const override {
return (uint)this->size(); }
112 const VisualRun &GetVisualRun(
int run)
const override {
return this->at(run); }
114 int GetInternalCharLength(
WChar c)
const override
117 return c >= 0x010000U ? 2 : 1;
128 void Reflow()
override
130 this->cur_range = this->ranges.begin();
131 this->cur_range_offset = 0;
134 std::unique_ptr<const Line> NextLine(
int max_width)
override;
137 void UniscribeResetScriptCache(
FontSize size)
148 if (font->fc->GetOSHandle() !=
nullptr)
return CreateFontIndirect(
reinterpret_cast<PLOGFONT
>(
const_cast<void *
>(font->fc->GetOSHandle())));
151 ZeroMemory(&logfont,
sizeof(LOGFONT));
152 logfont.lfHeight = font->fc->GetHeight();
153 logfont.lfWeight = FW_NORMAL;
154 logfont.lfCharSet = DEFAULT_CHARSET;
157 return CreateFontIndirect(&logfont);
164 range.glyphs.resize(range.len * 3 / 2 + 16);
165 range.vis_attribs.resize(range.glyphs.size());
168 range.char_to_glyph.resize(range.len);
170 HDC temp_dc =
nullptr;
171 HFONT old_font =
nullptr;
172 HFONT cur_font =
nullptr;
177 HRESULT hr = ScriptShape(temp_dc, &
_script_cache[range.font->fc->GetSize()], buff + range.pos, range.len, (
int)range.glyphs.size(), &range.sa, &range.glyphs[0], &range.char_to_glyph[0], &range.vis_attribs[0], &glyphs_used);
180 range.glyphs.resize(glyphs_used);
181 range.vis_attribs.resize(glyphs_used);
185 range.advances.resize(range.glyphs.size());
186 range.offsets.resize(range.glyphs.size());
187 hr = ScriptPlace(temp_dc, &
_script_cache[range.font->fc->GetSize()], &range.glyphs[0], (
int)range.glyphs.size(), &range.vis_attribs[0], &range.sa, &range.advances[0], &range.offsets[0], &abc);
191 range.ft_glyphs.resize(range.glyphs.size());
192 for (
size_t g_id = 0; g_id < range.glyphs.size(); g_id++) {
193 range.ft_glyphs[g_id] = range.glyphs[g_id];
195 for (
int i = 0; i < range.len; i++) {
196 if (buff[range.pos + i] >= SCC_SPRITE_START && buff[range.pos + i] <= SCC_SPRITE_END) {
197 auto pos = range.char_to_glyph[i];
198 range.ft_glyphs[pos] = range.font->fc->MapCharToGlyph(buff[range.pos + i]);
199 range.offsets[pos].dv = (range.font->fc->GetHeight() -
ScaleSpriteTrad(FontCache::GetDefaultFontHeight(range.font->fc->GetSize()))) / 2;
200 range.advances[pos] = range.font->fc->GetGlyphWidth(range.ft_glyphs[pos]);
204 range.total_advance = 0;
205 for (
size_t i = 0; i < range.advances.size(); i++) {
208 if (range.advances[i] > 0 && range.ft_glyphs[i] != 0xFFFF) range.advances[i] = range.font->fc->GetGlyphWidth(range.ft_glyphs[i]);
210 range.total_advance += range.advances[i];
216 if (hr == E_OUTOFMEMORY) {
218 range.glyphs.resize(range.glyphs.size() * 2);
219 range.vis_attribs.resize(range.vis_attribs.size() * 2);
220 }
else if (hr == E_PENDING) {
223 if (cur_font ==
nullptr)
return false;
225 temp_dc = CreateCompatibleDC(
nullptr);
226 SetMapMode(temp_dc, MM_TEXT);
227 old_font = (HFONT)SelectObject(temp_dc, cur_font);
228 }
else if (hr == USP_E_SCRIPT_NOT_IN_FONT && range.sa.eScript != SCRIPT_UNDEFINED) {
230 range.sa.eScript = SCRIPT_UNDEFINED;
233 if (temp_dc !=
nullptr) {
234 SelectObject(temp_dc, old_font);
235 DeleteObject(cur_font);
236 ReleaseDC(
nullptr, temp_dc);
242 if (temp_dc !=
nullptr) {
243 SelectObject(temp_dc, old_font);
244 DeleteObject(cur_font);
245 ReleaseDC(
nullptr, temp_dc);
254 SCRIPT_CONTROL control;
255 ZeroMemory(&control,
sizeof(SCRIPT_CONTROL));
259 ZeroMemory(&state,
sizeof(SCRIPT_STATE));
262 std::vector<SCRIPT_ITEM> items(16);
266 HRESULT hr = ScriptItemize(buff, length, (
int)items.size() - 1, &control, &state, &items[0], &generated);
270 items.resize(generated + 1);
274 if (hr != E_OUTOFMEMORY)
return std::vector<SCRIPT_ITEM>();
276 items.resize(items.size() * 2);
284 int32 length = buff_end - buff;
286 if (length == 0)
return nullptr;
289 for (
auto const &pair : fontMapping) {
290 if (pair.second->fc->IsBuiltInFont())
return nullptr;
295 if (items.size() == 0)
return nullptr;
299 std::vector<UniscribeRun> ranges;
302 std::vector<SCRIPT_ITEM>::iterator cur_item = items.begin();
303 for (
auto const &i : fontMapping) {
304 while (cur_pos < i.first && cur_item != items.end() - 1) {
306 int stop_pos = std::min(i.first, (cur_item + 1)->iCharPos);
307 assert(stop_pos - cur_pos > 0);
308 ranges.push_back(
UniscribeRun(cur_pos, stop_pos - cur_pos, i.second, cur_item->a));
316 if (stop_pos == (cur_item + 1)->iCharPos) cur_item++;
324 std::unique_ptr<const ParagraphLayouter::Line> UniscribeParagraphLayout::NextLine(
int max_width)
326 std::vector<UniscribeRun>::iterator start_run = this->
cur_range;
327 std::vector<UniscribeRun>::iterator last_run = this->
cur_range;
329 if (start_run == this->ranges.end())
return nullptr;
333 if (this->cur_range_offset != 0) {
334 std::vector<int> dx(start_run->len);
335 ScriptGetLogicalWidths(&start_run->sa, start_run->len, (
int)start_run->glyphs.size(), &start_run->advances[0], &start_run->char_to_glyph[0], &start_run->vis_attribs[0], &dx[0]);
337 for (std::vector<int>::const_iterator c = dx.begin() + this->cur_range_offset; c != dx.end(); c++) {
344 while (last_run != this->ranges.end() && cur_width <= max_width) {
345 cur_width += last_run->total_advance;
350 int remaining_offset = (last_run - 1)->len + 1;
351 int whitespace_count = 0;
352 if (cur_width > max_width) {
353 std::vector<SCRIPT_LOGATTR> log_attribs;
356 int width_avail = max_width;
359 int last_cluster = this->cur_range_offset + 1;
360 for (std::vector<UniscribeRun>::iterator r = start_run; r != last_run; r++) {
361 log_attribs.resize(r->pos - start_run->pos + r->len);
362 if (FAILED(ScriptBreak(this->text_buffer + r->pos + start_offs, r->len - start_offs, &r->sa, &log_attribs[r->pos - start_run->pos + start_offs])))
return nullptr;
364 std::vector<int> dx(r->len);
365 ScriptGetLogicalWidths(&r->sa, r->len, (
int)r->glyphs.size(), &r->advances[0], &r->char_to_glyph[0], &r->vis_attribs[0], &dx[0]);
368 for (
int c = start_offs; c < r->len && width_avail > 0; c++, num_chars++) {
369 if (c > start_offs && log_attribs[num_chars].fCharStop) last_cluster = num_chars;
370 width_avail -= dx[c];
377 while (--num_chars > this->cur_range_offset && !log_attribs[num_chars].fSoftBreak && !log_attribs[num_chars].fWhiteSpace) {}
379 if (num_chars == this->cur_range_offset) {
381 num_chars = last_cluster;
385 while (num_chars - 1 > this->cur_range_offset && log_attribs[num_chars - 1].fWhiteSpace) num_chars--;
387 while (num_chars + whitespace_count < (
int)log_attribs.size() && log_attribs[num_chars + whitespace_count].fWhiteSpace) whitespace_count++;
390 for (std::vector<UniscribeRun>::iterator run = start_run; run != last_run; run++) {
391 num_chars -= run->len;
393 if (num_chars <= 0) {
394 remaining_offset = num_chars + run->len + 1;
396 assert(remaining_offset - 1 > 0);
403 std::vector<BYTE> bidi_level;
404 for (std::vector<UniscribeRun>::iterator r = start_run; r != last_run; r++) {
405 bidi_level.push_back(r->sa.s.uBidiLevel);
407 std::vector<INT> vis_to_log(bidi_level.size());
408 if (FAILED(ScriptLayout((
int)bidi_level.size(), &bidi_level[0], &vis_to_log[0],
nullptr)))
return nullptr;
411 std::unique_ptr<UniscribeLine> line(
new UniscribeLine());
414 for (std::vector<INT>::iterator l = vis_to_log.begin(); l != vis_to_log.end(); l++) {
415 std::vector<UniscribeRun>::iterator i_run = start_run + *l;
419 if (i_run == last_run - 1 && remaining_offset < (last_run - 1)->len) {
420 run.len = remaining_offset - 1;
424 if (i_run == start_run && this->cur_range_offset > 0) {
425 assert(run.len - this->cur_range_offset > 0);
432 line->emplace_back(run, cur_pos);
433 cur_pos += run.total_advance;
436 if (remaining_offset + whitespace_count - 1 < (last_run - 1)->len) {
438 this->cur_range_offset = remaining_offset + whitespace_count - 1;
439 this->cur_range = last_run - 1;
440 assert(this->cur_range->len > this->cur_range_offset);
442 this->cur_range_offset = 0;
443 this->cur_range = last_run;
456 for (
const auto &run : *
this) {
457 leading = std::max(leading, run.GetLeading());
470 for (
const auto &run : *
this) {
471 length += run.GetAdvance();
477 UniscribeParagraphLayout::UniscribeVisualRun::UniscribeVisualRun(
const UniscribeRun &range,
int x) : glyphs(range.ft_glyphs), char_to_glyph(range.char_to_glyph), start_pos(range.pos), total_advance(range.total_advance), font(range.font)
479 this->num_glyphs = (int)glyphs.size();
480 this->positions.resize(this->num_glyphs * 2 + 2);
483 for (
int i = 0; i < this->num_glyphs; i++) {
484 this->positions[i * 2 + 0] = range.offsets[i].du + advance + x;
485 this->positions[i * 2 + 1] = range.offsets[i].dv;
487 advance += range.advances[i];
489 this->positions[this->num_glyphs * 2] = advance + x;
492 UniscribeParagraphLayout::UniscribeVisualRun::UniscribeVisualRun(UniscribeVisualRun&& other) noexcept
493 : glyphs(std::move(other.glyphs)), positions(std::move(other.positions)), char_to_glyph(std::move(other.char_to_glyph)),
494 start_pos(other.start_pos), total_advance(other.total_advance), num_glyphs(other.num_glyphs), font(other.font)
496 this->glyph_to_char = other.glyph_to_char;
497 other.glyph_to_char =
nullptr;
500 const int *UniscribeParagraphLayout::UniscribeVisualRun::GetGlyphToCharMap()
const
502 if (this->glyph_to_char ==
nullptr) {
503 this->glyph_to_char = CallocT<int>(this->GetGlyphCount());
507 for (
int c = 0; c < (int)this->char_to_glyph.size(); c++) {
509 if (this->glyph_to_char[this->char_to_glyph[c]] == 0) this->glyph_to_char[this->char_to_glyph[c]] = c + this->start_pos;
513 int last_char = this->glyph_to_char[0];
514 for (
int g = 0; g < this->GetGlyphCount(); g++) {
515 if (this->glyph_to_char[g] != 0) last_char = this->glyph_to_char[g];
516 this->glyph_to_char[g] = last_char;
520 return this->glyph_to_char;
526 const char *string_base = s;
528 this->utf16_to_utf8.clear();
529 this->str_info.clear();
534 std::vector<wchar_t> utf16_str;
536 size_t idx = s - string_base;
538 WChar c = Utf8Consume(&s);
540 utf16_str.push_back((
wchar_t)c);
543 utf16_str.push_back((
wchar_t)(0xD800 + ((c - 0x10000) >> 10)));
544 utf16_str.push_back((
wchar_t)(0xDC00 + ((c - 0x10000) & 0x3FF)));
545 this->utf16_to_utf8.push_back(idx);
547 this->utf16_to_utf8.push_back(idx);
549 this->utf16_to_utf8.push_back(s - string_base);
552 this->str_info.resize(utf16_to_utf8.size());
554 if (utf16_str.size() > 0) {
558 for (std::vector<SCRIPT_ITEM>::const_iterator run = runs.begin(); runs.size() > 0 && run != runs.end() - 1; run++) {
560 int len = (run + 1)->iCharPos - run->iCharPos;
561 std::vector<SCRIPT_LOGATTR> attr(len);
562 ScriptBreak(&utf16_str[run->iCharPos], len, &run->a, &attr[0]);
565 for (
size_t c = 0; c < attr.size(); c++) {
567 this->str_info[c + run->iCharPos].word_stop = attr[c].fWordStop || c == 0;
568 this->str_info[c + run->iCharPos].char_stop = attr[c].fCharStop;
574 this->str_info.back().char_stop =
true;
575 this->str_info.back().word_stop =
true;
581 size_t utf16_pos = 0;
582 for (
size_t i = 0; i < this->utf16_to_utf8.size(); i++) {
583 if (this->utf16_to_utf8[i] == pos) {
590 while (utf16_pos > 0 && !this->str_info[utf16_pos].char_stop) utf16_pos--;
591 this->cur_pos = utf16_pos;
593 return this->utf16_to_utf8[this->cur_pos];
598 assert(this->cur_pos <= this->utf16_to_utf8.size());
601 if (this->cur_pos == this->utf16_to_utf8.size())
return END;
605 }
while (this->cur_pos < this->utf16_to_utf8.size() && (what == ITER_WORD ? !this->str_info[this->cur_pos].word_stop : !this->str_info[this->cur_pos].char_stop));
607 return this->cur_pos == this->utf16_to_utf8.size() ? END : this->utf16_to_utf8[this->cur_pos];
612 assert(this->cur_pos <= this->utf16_to_utf8.size());
615 if (this->cur_pos == 0)
return END;
619 }
while (this->cur_pos > 0 && (what == ITER_WORD ? !this->str_info[this->cur_pos].word_stop : !this->str_info[this->cur_pos].char_stop));
621 return this->utf16_to_utf8[this->cur_pos];