10 #include "../../stdafx.h"
12 #include "../../string_func.h"
13 #include "../../strings_func.h"
14 #include "../../table/control_codes.h"
15 #include "../../fontcache.h"
16 #include "../../zoom_func.h"
19 #include <CoreFoundation/CoreFoundation.h>
23 #ifndef HAVE_OSX_109_SDK
25 typedef const struct __CTRunDelegate * CTRunDelegateRef;
27 typedef void (*CTRunDelegateDeallocateCallback) (
void *refCon);
28 typedef CGFloat (*CTRunDelegateGetAscentCallback) (
void *refCon);
29 typedef CGFloat (*CTRunDelegateGetDescentCallback) (
void *refCon);
30 typedef CGFloat (*CTRunDelegateGetWidthCallback) (
void *refCon);
33 CTRunDelegateDeallocateCallback dealloc;
34 CTRunDelegateGetAscentCallback getAscent;
35 CTRunDelegateGetDescentCallback getDescent;
36 CTRunDelegateGetWidthCallback getWidth;
40 kCTRunDelegateVersion1 = 1,
41 kCTRunDelegateCurrentVersion = kCTRunDelegateVersion1
44 extern const CFStringRef kCTRunDelegateAttributeName AVAILABLE_MAC_OS_X_VERSION_10_5_AND_LATER;
46 CTRunDelegateRef CTRunDelegateCreate(
const CTRunDelegateCallbacks *callbacks,
void *refCon) AVAILABLE_MAC_OS_X_VERSION_10_5_AND_LATER;
73 std::vector<GlyphID> glyphs;
74 std::vector<Point> positions;
75 std::vector<int> glyph_to_char;
77 int total_advance = 0;
84 const std::vector<GlyphID> &GetGlyphs()
const override {
return this->glyphs; }
85 const std::vector<Point> &GetPositions()
const override {
return this->positions; }
86 const std::vector<int> &GetGlyphToCharMap()
const override {
return this->glyph_to_char; }
88 const Font *GetFont()
const override {
return this->font; }
89 int GetLeading()
const override {
return this->font->
fc->
GetHeight(); }
90 int GetGlyphCount()
const override {
return (
int)this->glyphs.size(); }
91 int GetAdvance()
const {
return this->total_advance; }
99 CFArrayRef runs = CTLineGetGlyphRuns(line.get());
100 for (CFIndex i = 0; i < CFArrayGetCount(runs); i++) {
101 CTRunRef run = (CTRunRef)CFArrayGetValueAtIndex(runs, i);
104 CFRange chars = CTRunGetStringRange(run);
105 auto map = fontMapping.upper_bound(chars.location);
107 this->emplace_back(run, map->second, buff);
113 int CountRuns()
const override {
return this->size(); }
114 const VisualRun &GetVisualRun(
int run)
const override {
return this->at(run); }
116 int GetInternalCharLength(char32_t c)
const override
119 return c >= 0x010000U ? 2 : 1;
128 void Reflow()
override
130 this->cur_offset = 0;
133 std::unique_ptr<const Line> NextLine(
int max_width)
override;
141 char32_t c = (char32_t)((
size_t)ref_con & 0xFFFFFF);
147 kCTRunDelegateCurrentVersion,
nullptr,
nullptr,
nullptr,
156 ptrdiff_t length = buff_end - buff;
157 if (length == 0)
return nullptr;
160 for (
const auto &i : fontMapping) {
161 if (i.second->fc->IsBuiltInFont())
return nullptr;
166 CFAttributedStringBeginEditing(str.get());
169 CFAttributedStringReplaceString(str.get(), CFRangeMake(0, 0), base.get());
171 const UniChar replacment_char = 0xFFFC;
177 for (
const auto &i : fontMapping) {
178 if (i.first - last == 0)
continue;
180 CTFontRef font = (CTFontRef)i.second->fc->GetOSHandle();
181 if (font ==
nullptr) {
184 CFAutoRelease<CFStringRef> font_name(CFStringCreateWithCString(kCFAllocatorDefault, i.second->fc->GetFontName().c_str(), kCFStringEncodingUTF8));
185 _font_cache[i.second->fc->GetSize()].reset(CTFontCreateWithName(font_name.get(), i.second->fc->GetFontSize(),
nullptr));
189 CFAttributedStringSetAttribute(str.get(), CFRangeMake(last, i.first - last), kCTFontAttributeName, font);
191 CGColorRef color = CGColorCreateGenericGray((uint8_t)i.second->colour / 255.0f, 1.0f);
192 CFAttributedStringSetAttribute(str.get(), CFRangeMake(last, i.first - last), kCTForegroundColorAttributeName, color);
193 CGColorRelease(color);
196 for (ssize_t c = last; c < i.first; c++) {
197 if (buff[c] >= SCC_SPRITE_START && buff[c] <= SCC_SPRITE_END && i.second->fc->MapCharToGlyph(buff[c],
false) == 0) {
200 CFAttributedStringReplaceString(str.get(), CFRangeMake(c, 1), replacment_str.get());
201 CFAttributedStringSetAttribute(str.get(), CFRangeMake(c, 1), kCTRunDelegateAttributeName, del.get());
207 CFAttributedStringEndEditing(str.get());
215 std::unique_ptr<const ParagraphLayouter::Line> CoreTextParagraphLayout::NextLine(
int max_width)
217 if (this->
cur_offset >= this->length)
return nullptr;
220 CFIndex len = CTTypesetterSuggestLineBreak(this->typesetter.get(), this->cur_offset, max_width);
221 if (len <= 0) len = CTTypesetterSuggestClusterBreak(this->typesetter.get(), this->cur_offset, max_width);
227 return std::unique_ptr<const Line>(line ?
new CoreTextLine(std::move(line), this->font_map, this->text_buffer) :
nullptr);
232 this->glyphs.resize(CTRunGetGlyphCount(run));
235 CFIndex map[this->glyphs.size()];
236 CTRunGetStringIndices(run, CFRangeMake(0, 0), map);
238 this->glyph_to_char.resize(this->glyphs.size());
239 for (
size_t i = 0; i < this->glyph_to_char.size(); i++) this->glyph_to_char[i] = (
int)map[i];
241 CGPoint pts[this->glyphs.size()];
242 CTRunGetPositions(run, CFRangeMake(0, 0), pts);
243 this->positions.reserve(this->glyphs.size() + 1);
247 CGGlyph gl[this->glyphs.size()];
248 CTRunGetGlyphs(run, CFRangeMake(0, 0), gl);
249 for (
size_t i = 0; i < this->glyphs.size(); i++) {
250 if (buff[this->glyph_to_char[i]] >= SCC_SPRITE_START && buff[this->glyph_to_char[i]] <= SCC_SPRITE_END && (gl[i] == 0 || gl[i] == 3)) {
255 this->glyphs[i] = gl[i];
256 this->positions.emplace_back(pts[i].x, pts[i].y);
259 this->total_advance = (int)std::ceil(CTRunGetTypographicBounds(run, CFRangeMake(0, 0),
nullptr,
nullptr,
nullptr));
261 this->positions.emplace_back(this->positions.front().x + this->total_advance, 0);
271 for (
const auto &run : *
this) {
272 leading = std::max(leading, run.GetLeading());
284 if (this->empty())
return 0;
287 for (
const auto &run : *
this) {
288 total_width += run.GetAdvance();
307 CFAutoRelease<CFURLRef> url(CFURLCreateWithFileSystemPath(kCFAllocatorDefault, path.get(), kCFURLPOSIXPathStyle,
false));
309 CTFontManagerRegisterFontsForURL(url.get(), kCTFontManagerScopeProcess,
nullptr);
318 _osx_locale.reset(CFLocaleCreate(kCFAllocatorDefault, iso.get()));
331 if (!supported)
return 0;
333 CFStringCompareFlags flags = kCFCompareCaseInsensitive | kCFCompareNumerically | kCFCompareLocalized | kCFCompareWidthInsensitive | kCFCompareForcedOrdering;
335 CFAutoRelease<CFStringRef> cf1(CFStringCreateWithBytes(kCFAllocatorDefault, (
const UInt8 *)s1.data(), s1.size(), kCFStringEncodingUTF8,
false));
336 CFAutoRelease<CFStringRef> cf2(CFStringCreateWithBytes(kCFAllocatorDefault, (
const UInt8 *)s2.data(), s2.size(), kCFStringEncodingUTF8,
false));
339 if (cf1 ==
nullptr || cf2 ==
nullptr)
return 0;
341 return (
int)CFStringCompareWithOptionsAndLocale(cf1.get(), cf2.get(), CFRangeMake(0, CFStringGetLength(cf1.get())), flags,
_osx_locale.get()) + 2;
355 if (!supported)
return -1;
357 CFStringCompareFlags flags = kCFCompareLocalized | kCFCompareWidthInsensitive;
358 if (case_insensitive) flags |= kCFCompareCaseInsensitive;
360 CFAutoRelease<CFStringRef> cf_str(CFStringCreateWithBytes(kCFAllocatorDefault, (
const UInt8 *)str.data(), str.size(), kCFStringEncodingUTF8,
false));
361 CFAutoRelease<CFStringRef> cf_value(CFStringCreateWithBytes(kCFAllocatorDefault, (
const UInt8 *)value.data(), value.size(), kCFStringEncodingUTF8,
false));
364 if (cf_str ==
nullptr || cf_value ==
nullptr)
return -1;
366 return CFStringFindWithOptionsAndLocale(cf_str.get(), cf_value.get(), CFRangeMake(0, CFStringGetLength(cf_str.get())), flags,
_osx_locale.get(),
nullptr) ? 1 : 0;
372 const char *string_base = s;
374 this->utf16_to_utf8.clear();
375 this->str_info.clear();
380 std::vector<UniChar> utf16_str;
382 size_t idx = s - string_base;
384 char32_t c = Utf8Consume(&s);
386 utf16_str.push_back((UniChar)c);
389 utf16_str.push_back((UniChar)(0xD800 + ((c - 0x10000) >> 10)));
390 utf16_str.push_back((UniChar)(0xDC00 + ((c - 0x10000) & 0x3FF)));
391 this->utf16_to_utf8.push_back(idx);
393 this->utf16_to_utf8.push_back(idx);
395 this->utf16_to_utf8.push_back(s - string_base);
398 this->str_info.resize(utf16_to_utf8.size());
400 if (!utf16_str.empty()) {
401 CFAutoRelease<CFStringRef> str(CFStringCreateWithCharactersNoCopy(kCFAllocatorDefault, &utf16_str[0], utf16_str.size(), kCFAllocatorNull));
404 for (CFIndex i = 0; i < CFStringGetLength(str.get()); ) {
405 CFRange r = CFStringGetRangeOfComposedCharactersAtIndex(str.get(), i);
406 this->str_info[r.location].char_stop =
true;
414 CFStringTokenizerTokenType tokenType = kCFStringTokenizerTokenNone;
415 while ((tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer.get())) != kCFStringTokenizerTokenNone) {
417 if ((tokenType & kCFStringTokenizerTokenHasNonLettersMask) != kCFStringTokenizerTokenHasNonLettersMask) {
418 CFRange r = CFStringTokenizerGetCurrentTokenRange(tokenizer.get());
419 this->str_info[r.location].word_stop =
true;
425 this->str_info.back().char_stop =
true;
426 this->str_info.back().word_stop =
true;
432 size_t utf16_pos = 0;
433 for (
size_t i = 0; i < this->utf16_to_utf8.size(); i++) {
434 if (this->utf16_to_utf8[i] == pos) {
441 while (utf16_pos > 0 && !this->str_info[utf16_pos].char_stop) utf16_pos--;
442 this->cur_pos = utf16_pos;
444 return this->utf16_to_utf8[this->cur_pos];
449 assert(this->cur_pos <= this->utf16_to_utf8.size());
452 if (this->cur_pos == this->utf16_to_utf8.size())
return END;
456 }
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));
458 return this->cur_pos == this->utf16_to_utf8.size() ? END : this->utf16_to_utf8[this->cur_pos];
463 assert(this->cur_pos <= this->utf16_to_utf8.size());
466 if (this->cur_pos == 0)
return END;
470 }
while (this->cur_pos > 0 && (what == ITER_WORD ? !this->str_info[this->cur_pos].word_stop : !this->str_info[this->cur_pos].char_stop));
472 return this->utf16_to_utf8[this->cur_pos];
475 std::unique_ptr<StringIterator> OSXStringIterator::Create()
479 return std::make_unique<OSXStringIterator>();