Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
191fa885
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
大约 1 年 前同步成功
通知
0
Star
18
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Harfbuzz
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
191fa885
编写于
8月 28, 2012
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[GSUB] Merge Ligature and context input matching
Looks better now...
上级
93814ca7
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
40 addition
and
64 deletion
+40
-64
TODO
TODO
+0
-4
src/hb-ot-layout-gsub-table.hh
src/hb-ot-layout-gsub-table.hh
+13
-58
src/hb-ot-layout-gsubgpos-private.hh
src/hb-ot-layout-gsubgpos-private.hh
+27
-2
未找到文件。
TODO
浏览文件 @
191fa885
General fixes:
=============
- Ligature matching and match_input() of (Chain)Context should use the
same logic. Right now the Ligature logic is more involved. Possibly
merge, or duplicate.
- mask propagation? (when ligation, "or" the masks).
- Warn at compile time (and runtime with HB_DEBUG?) if no Unicode / font
...
...
src/hb-ot-layout-gsub-table.hh
浏览文件 @
191fa885
...
...
@@ -491,66 +491,21 @@ struct Ligature
unsigned
int
count
=
component
.
len
;
if
(
unlikely
(
count
<
1
))
return
TRACE_RETURN
(
false
);
hb_apply_context_t
::
mark_skipping_forward_iterator_t
skippy_iter
(
c
,
c
->
buffer
->
idx
,
count
-
1
);
if
(
skippy_iter
.
has_no_chance
())
return
TRACE_RETURN
(
false
);
/*
* This is perhaps the trickiest part of OpenType... Remarks:
*
* - If all components of the ligature were marks, we call this a mark ligature.
*
* - If there is no GDEF, and the ligature is NOT a mark ligature, we categorize
* it as a ligature glyph.
*
* - Ligatures cannot be formed across glyphs attached to different components
* of previous ligatures. Eg. the sequence is LAM,SHADDA,LAM,FATHA,HEH, and
* LAM,LAM,HEH form a ligature, leaving SHADDA,FATHA next to eachother.
* However, it would be wrong to ligate that SHADDA,FATHA sequence.o
* There is an exception to this: If a ligature tries ligating with marks that
* belong to it itself, go ahead, assuming that the font designer knows what
* they are doing (otherwise it can break Indic stuff when a matra wants to
* ligate with a conjunct...)
*/
bool
is_mark_ligature
=
!!
(
c
->
property
&
HB_OT_LAYOUT_GLYPH_CLASS_MARK
);
unsigned
int
total_component_count
=
0
;
total_component_count
+=
get_lig_num_comps
(
c
->
buffer
->
cur
());
unsigned
int
first_lig_id
=
get_lig_id
(
c
->
buffer
->
cur
());
unsigned
int
first_lig_comp
=
get_lig_comp
(
c
->
buffer
->
cur
());
for
(
unsigned
int
i
=
1
;
i
<
count
;
i
++
)
{
unsigned
int
property
;
if
(
!
skippy_iter
.
next
(
&
property
))
return
TRACE_RETURN
(
false
);
if
(
likely
(
c
->
buffer
->
info
[
skippy_iter
.
idx
].
codepoint
!=
component
[
i
]))
return
TRACE_RETURN
(
false
);
unsigned
int
this_lig_id
=
get_lig_id
(
c
->
buffer
->
info
[
skippy_iter
.
idx
]);
unsigned
int
this_lig_comp
=
get_lig_comp
(
c
->
buffer
->
info
[
skippy_iter
.
idx
]);
if
(
first_lig_id
&&
first_lig_comp
)
{
/* If first component was attached to a previous ligature component,
* all subsequent components should be attached to the same ligature
* component, otherwise we shouldn't ligate them. */
if
(
first_lig_id
!=
this_lig_id
||
first_lig_comp
!=
this_lig_comp
)
return
TRACE_RETURN
(
false
);
}
else
{
/* If first component was NOT attached to a previous ligature component,
* all subsequent components should also NOT be attached to any ligature
* component, unless they are attached to the first component itself! */
if
(
this_lig_id
&&
this_lig_comp
&&
(
this_lig_id
!=
first_lig_id
))
return
TRACE_RETURN
(
false
);
}
is_mark_ligature
=
is_mark_ligature
&&
(
property
&
HB_OT_LAYOUT_GLYPH_CLASS_MARK
);
total_component_count
+=
get_lig_num_comps
(
c
->
buffer
->
info
[
skippy_iter
.
idx
]);
}
unsigned
int
end_offset
;
bool
is_mark_ligature
;
unsigned
int
total_component_count
;
if
(
likely
(
!
match_input
(
c
,
count
,
&
component
[
1
],
match_glyph
,
NULL
,
&
end_offset
,
&
is_mark_ligature
,
&
total_component_count
)))
return
TRACE_RETURN
(
false
);
/* Deal, we are forming the ligature. */
c
->
buffer
->
merge_clusters
(
c
->
buffer
->
idx
,
skippy_iter
.
idx
+
1
);
c
->
buffer
->
merge_clusters
(
c
->
buffer
->
idx
,
c
->
buffer
->
idx
+
end_offset
);
/*
* - If it *is* a mark ligature, we don't allocate a new ligature id, and leave
...
...
src/hb-ot-layout-gsubgpos-private.hh
浏览文件 @
191fa885
...
...
@@ -421,13 +421,33 @@ static inline bool match_input (hb_apply_context_t *c,
const
USHORT
input
[],
/* Array of input values--start with second glyph */
match_func_t
match_func
,
const
void
*
match_data
,
unsigned
int
*
end_offset
=
NULL
)
unsigned
int
*
end_offset
=
NULL
,
bool
*
p_is_mark_ligature
=
NULL
,
unsigned
int
*
p_total_component_count
=
NULL
)
{
hb_auto_trace_t
<
HB_DEBUG_APPLY
>
trace
(
&
c
->
debug_depth
,
"APPLY"
,
NULL
,
HB_FUNC
,
"idx %d codepoint %u"
,
c
->
buffer
->
idx
,
c
->
buffer
->
cur
().
codepoint
);
hb_apply_context_t
::
mark_skipping_forward_iterator_t
skippy_iter
(
c
,
c
->
buffer
->
idx
,
count
-
1
);
if
(
skippy_iter
.
has_no_chance
())
return
TRACE_RETURN
(
false
);
/*
* This is perhaps the trickiest part of OpenType... Remarks:
*
* - If all components of the ligature were marks, we call this a mark ligature.
*
* - If there is no GDEF, and the ligature is NOT a mark ligature, we categorize
* it as a ligature glyph.
*
* - Ligatures cannot be formed across glyphs attached to different components
* of previous ligatures. Eg. the sequence is LAM,SHADDA,LAM,FATHA,HEH, and
* LAM,LAM,HEH form a ligature, leaving SHADDA,FATHA next to eachother.
* However, it would be wrong to ligate that SHADDA,FATHA sequence.o
* There is an exception to this: If a ligature tries ligating with marks that
* belong to it itself, go ahead, assuming that the font designer knows what
* they are doing (otherwise it can break Indic stuff when a matra wants to
* ligate with a conjunct...)
*/
bool
is_mark_ligature
=
!!
(
c
->
property
&
HB_OT_LAYOUT_GLYPH_CLASS_MARK
);
unsigned
int
total_component_count
=
0
;
...
...
@@ -443,7 +463,6 @@ static inline bool match_input (hb_apply_context_t *c,
if
(
!
skippy_iter
.
next
(
&
property
))
return
TRACE_RETURN
(
false
);
if
(
likely
(
!
match_func
(
c
->
buffer
->
info
[
skippy_iter
.
idx
].
codepoint
,
input
[
i
-
1
],
match_data
)))
return
false
;
// if (likely (c->buffer->info[skippy_iter.idx].codepoint != component[i])) return TRACE_RETURN (false);
unsigned
int
this_lig_id
=
get_lig_id
(
c
->
buffer
->
info
[
skippy_iter
.
idx
]);
unsigned
int
this_lig_comp
=
get_lig_comp
(
c
->
buffer
->
info
[
skippy_iter
.
idx
]);
...
...
@@ -469,6 +488,12 @@ static inline bool match_input (hb_apply_context_t *c,
if
(
end_offset
)
*
end_offset
=
skippy_iter
.
idx
-
c
->
buffer
->
idx
+
1
;
if
(
p_is_mark_ligature
)
*
p_is_mark_ligature
=
is_mark_ligature
;
if
(
p_total_component_count
)
*
p_total_component_count
=
total_component_count
;
return
true
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录