use alloc::boxed::Box;
use super::algs::*;
use super::buffer::hb_buffer_t;
use super::ot_layout::*;
use super::ot_map::*;
use super::ot_shape::*;
use super::ot_shape_complex::*;
use super::ot_shape_complex_arabic::arabic_shape_plan_t;
use super::ot_shape_normalize::*;
use super::ot_shape_plan::hb_ot_shape_plan_t;
use super::unicode::{CharExt, GeneralCategoryExt};
use super::{hb_font_t, hb_glyph_info_t, hb_mask_t, hb_tag_t, script, Script};
pub const UNIVERSAL_SHAPER: hb_ot_complex_shaper_t = hb_ot_complex_shaper_t {
collect_features: Some(collect_features),
override_features: None,
create_data: Some(|plan| Box::new(UniversalShapePlan::new(plan))),
preprocess_text: Some(preprocess_text),
postprocess_glyphs: None,
normalization_preference: HB_OT_SHAPE_NORMALIZATION_MODE_COMPOSED_DIACRITICS_NO_SHORT_CIRCUIT,
decompose: None,
compose: Some(compose),
setup_masks: Some(setup_masks),
gpos_tag: None,
reorder_marks: None,
zero_width_marks: HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_EARLY,
fallback_position: false,
};
pub type Category = u8;
#[allow(dead_code)]
pub mod category {
pub const O: u8 = 0; pub const B: u8 = 1; pub const N: u8 = 4; pub const GB: u8 = 5; pub const CGJ: u8 = 6;
pub const SUB: u8 = 11; pub const H: u8 = 12; pub const HN: u8 = 13; pub const ZWNJ: u8 = 14; pub const WJ: u8 = 16; pub const RSV: u8 = 17; pub const R: u8 = 18; pub const S: u8 = 19; pub const CS: u8 = 43; pub const IS: u8 = 44; pub const SK: u8 = 48; pub const FABV: u8 = 24; pub const FBLW: u8 = 25; pub const FPST: u8 = 26; pub const MABV: u8 = 27; pub const MBLW: u8 = 28; pub const MPST: u8 = 29; pub const MPRE: u8 = 30; pub const CMABV: u8 = 31; pub const CMBLW: u8 = 32; pub const VABV: u8 = 33; pub const VBLW: u8 = 34; pub const VPST: u8 = 35; pub const VPRE: u8 = 22; pub const VMABV: u8 = 37; pub const VMBLW: u8 = 38; pub const VMPST: u8 = 39; pub const VMPRE: u8 = 23; pub const SMABV: u8 = 41; pub const SMBLW: u8 = 42; pub const FMABV: u8 = 45; pub const FMBLW: u8 = 46; pub const FMPST: u8 = 47; pub const G: u8 = 49; pub const J: u8 = 50; pub const SB: u8 = 51; pub const SE: u8 = 52; }
const BASIC_FEATURES: &[hb_tag_t] = &[
hb_tag_t::from_bytes(b"rkrf"),
hb_tag_t::from_bytes(b"abvf"),
hb_tag_t::from_bytes(b"blwf"),
hb_tag_t::from_bytes(b"half"),
hb_tag_t::from_bytes(b"pstf"),
hb_tag_t::from_bytes(b"vatu"),
hb_tag_t::from_bytes(b"cjct"),
];
const TOPOGRAPHICAL_FEATURES: &[hb_tag_t] = &[
hb_tag_t::from_bytes(b"isol"),
hb_tag_t::from_bytes(b"init"),
hb_tag_t::from_bytes(b"medi"),
hb_tag_t::from_bytes(b"fina"),
];
#[derive(Clone, Copy, PartialEq)]
enum JoiningForm {
Isolated = 0,
Initial,
Medial,
Terminal,
}
const OTHER_FEATURES: &[hb_tag_t] = &[
hb_tag_t::from_bytes(b"abvs"),
hb_tag_t::from_bytes(b"blws"),
hb_tag_t::from_bytes(b"haln"),
hb_tag_t::from_bytes(b"pres"),
hb_tag_t::from_bytes(b"psts"),
];
impl hb_glyph_info_t {
pub(crate) fn use_category(&self) -> Category {
self.complex_var_u8_category()
}
fn set_use_category(&mut self, c: Category) {
self.set_complex_var_u8_category(c)
}
fn is_halant_use(&self) -> bool {
matches!(self.use_category(), category::H | category::IS) && !_hb_glyph_info_ligated(self)
}
}
struct UniversalShapePlan {
rphf_mask: hb_mask_t,
arabic_plan: Option<arabic_shape_plan_t>,
}
impl UniversalShapePlan {
fn new(plan: &hb_ot_shape_plan_t) -> UniversalShapePlan {
let mut arabic_plan = None;
if plan.script.map_or(false, has_arabic_joining) {
arabic_plan = Some(crate::hb::ot_shape_complex_arabic::data_create_arabic(plan));
}
UniversalShapePlan {
rphf_mask: plan.ot_map.get_1_mask(hb_tag_t::from_bytes(b"rphf")),
arabic_plan,
}
}
}
fn collect_features(planner: &mut hb_ot_shape_planner_t) {
planner.ot_map.add_gsub_pause(Some(setup_syllables));
planner
.ot_map
.enable_feature(hb_tag_t::from_bytes(b"locl"), F_PER_SYLLABLE, 1);
planner
.ot_map
.enable_feature(hb_tag_t::from_bytes(b"ccmp"), F_PER_SYLLABLE, 1);
planner
.ot_map
.enable_feature(hb_tag_t::from_bytes(b"nukt"), F_PER_SYLLABLE, 1);
planner.ot_map.enable_feature(
hb_tag_t::from_bytes(b"akhn"),
F_MANUAL_ZWJ | F_PER_SYLLABLE,
1,
);
planner
.ot_map
.add_gsub_pause(Some(crate::hb::ot_layout::_hb_clear_substitution_flags));
planner.ot_map.add_feature(
hb_tag_t::from_bytes(b"rphf"),
F_MANUAL_ZWJ | F_PER_SYLLABLE,
1,
);
planner.ot_map.add_gsub_pause(Some(record_rphf));
planner
.ot_map
.add_gsub_pause(Some(crate::hb::ot_layout::_hb_clear_substitution_flags));
planner.ot_map.enable_feature(
hb_tag_t::from_bytes(b"pref"),
F_MANUAL_ZWJ | F_PER_SYLLABLE,
1,
);
planner.ot_map.add_gsub_pause(Some(record_pref));
for feature in BASIC_FEATURES {
planner
.ot_map
.enable_feature(*feature, F_MANUAL_ZWJ | F_PER_SYLLABLE, 1);
}
planner.ot_map.add_gsub_pause(Some(reorder));
for feature in TOPOGRAPHICAL_FEATURES {
planner.ot_map.add_feature(*feature, F_NONE, 1);
}
planner.ot_map.add_gsub_pause(None);
for feature in OTHER_FEATURES {
planner.ot_map.enable_feature(*feature, F_NONE, 1);
}
}
fn setup_syllables(plan: &hb_ot_shape_plan_t, _: &hb_font_t, buffer: &mut hb_buffer_t) {
super::ot_shape_complex_use_machine::find_syllables(buffer);
foreach_syllable!(buffer, start, end, {
buffer.unsafe_to_break(Some(start), Some(end));
});
setup_rphf_mask(plan, buffer);
setup_topographical_masks(plan, buffer);
}
fn setup_rphf_mask(plan: &hb_ot_shape_plan_t, buffer: &mut hb_buffer_t) {
let universal_plan = plan.data::<UniversalShapePlan>();
let mask = universal_plan.rphf_mask;
if mask == 0 {
return;
}
let mut start = 0;
let mut end = buffer.next_syllable(0);
while start < buffer.len {
let limit = if buffer.info[start].use_category() == category::R {
1
} else {
core::cmp::min(3, end - start)
};
for i in start..start + limit {
buffer.info[i].mask |= mask;
}
start = end;
end = buffer.next_syllable(start);
}
}
fn setup_topographical_masks(plan: &hb_ot_shape_plan_t, buffer: &mut hb_buffer_t) {
use super::ot_shape_complex_use_machine::SyllableType;
if plan.data::<UniversalShapePlan>().arabic_plan.is_some() {
return;
}
let mut masks = [0; 4];
let mut all_masks = 0;
for i in 0..4 {
masks[i] = plan.ot_map.get_1_mask(TOPOGRAPHICAL_FEATURES[i]);
if masks[i] == plan.ot_map.get_global_mask() {
masks[i] = 0;
}
all_masks |= masks[i];
}
if all_masks == 0 {
return;
}
let other_masks = !all_masks;
let mut last_start = 0;
let mut last_form = None;
let mut start = 0;
let mut end = buffer.next_syllable(0);
while start < buffer.len {
let syllable = buffer.info[start].syllable() & 0x0F;
if syllable == SyllableType::HieroglyphCluster as u8
|| syllable == SyllableType::NonCluster as u8
{
last_form = None;
} else {
let join = last_form == Some(JoiningForm::Terminal)
|| last_form == Some(JoiningForm::Isolated);
if join {
let form = if last_form == Some(JoiningForm::Terminal) {
JoiningForm::Medial
} else {
JoiningForm::Initial
};
for i in last_start..start {
buffer.info[i].mask =
(buffer.info[i].mask & other_masks) | masks[form as usize];
}
}
let form = if join {
JoiningForm::Terminal
} else {
JoiningForm::Isolated
};
last_form = Some(form);
for i in start..end {
buffer.info[i].mask = (buffer.info[i].mask & other_masks) | masks[form as usize];
}
}
last_start = start;
start = end;
end = buffer.next_syllable(start);
}
}
fn record_rphf(plan: &hb_ot_shape_plan_t, _: &hb_font_t, buffer: &mut hb_buffer_t) {
let universal_plan = plan.data::<UniversalShapePlan>();
let mask = universal_plan.rphf_mask;
if mask == 0 {
return;
}
let mut start = 0;
let mut end = buffer.next_syllable(0);
while start < buffer.len {
for i in start..end {
if buffer.info[i].mask & mask == 0 {
break;
}
if _hb_glyph_info_substituted(&buffer.info[i]) {
buffer.info[i].set_use_category(category::R);
break;
}
}
start = end;
end = buffer.next_syllable(start);
}
}
fn reorder(_: &hb_ot_shape_plan_t, face: &hb_font_t, buffer: &mut hb_buffer_t) {
use super::ot_shape_complex_use_machine::SyllableType;
crate::hb::ot_shape_complex_syllabic::insert_dotted_circles(
face,
buffer,
SyllableType::BrokenCluster as u8,
category::B,
Some(category::R),
None,
);
let mut start = 0;
let mut end = buffer.next_syllable(0);
while start < buffer.len {
reorder_syllable(start, end, buffer);
start = end;
end = buffer.next_syllable(start);
}
}
const fn category_flag(c: Category) -> u32 {
rb_flag(c as u32)
}
const fn category_flag64(c: Category) -> u64 {
rb_flag64(c as u32)
}
const BASE_FLAGS: u64 = category_flag64(category::FABV)
| category_flag64(category::FBLW)
| category_flag64(category::FPST)
| category_flag64(category::MABV)
| category_flag64(category::MBLW)
| category_flag64(category::MPST)
| category_flag64(category::MPRE)
| category_flag64(category::VABV)
| category_flag64(category::VBLW)
| category_flag64(category::VPST)
| category_flag64(category::VPRE)
| category_flag64(category::VMABV)
| category_flag64(category::VMBLW)
| category_flag64(category::VMPST)
| category_flag64(category::VMPRE);
fn reorder_syllable(start: usize, end: usize, buffer: &mut hb_buffer_t) {
use super::ot_shape_complex_use_machine::SyllableType;
let syllable_type = (buffer.info[start].syllable() & 0x0F) as u32;
if (rb_flag_unsafe(syllable_type)
& (rb_flag(SyllableType::ViramaTerminatedCluster as u32)
| rb_flag(SyllableType::SakotTerminatedCluster as u32)
| rb_flag(SyllableType::StandardCluster as u32)
| rb_flag(SyllableType::BrokenCluster as u32)
| 0))
== 0
{
return;
}
if buffer.info[start].use_category() == category::R && end - start > 1 {
for i in start + 1..end {
let is_post_base_glyph =
(rb_flag64_unsafe(buffer.info[i].use_category() as u32) & BASE_FLAGS) != 0
|| buffer.info[i].is_halant_use();
if is_post_base_glyph || i == end - 1 {
let mut i = i;
if is_post_base_glyph {
i -= 1;
}
buffer.merge_clusters(start, i + 1);
let t = buffer.info[start];
for k in 0..i - start {
buffer.info[k + start] = buffer.info[k + start + 1];
}
buffer.info[i] = t;
break;
}
}
}
let mut j = start;
for i in start..end {
let flag = rb_flag_unsafe(buffer.info[i].use_category() as u32);
if buffer.info[i].is_halant_use() {
j = i + 1;
} else if (flag & (category_flag(category::VPRE) | category_flag(category::VMPRE))) != 0
&& _hb_glyph_info_get_lig_comp(&buffer.info[i]) == 0
&& j < i
{
buffer.merge_clusters(j, i + 1);
let t = buffer.info[i];
for k in (0..i - j).rev() {
buffer.info[k + j + 1] = buffer.info[k + j];
}
buffer.info[j] = t;
}
}
}
fn record_pref(_: &hb_ot_shape_plan_t, _: &hb_font_t, buffer: &mut hb_buffer_t) {
let mut start = 0;
let mut end = buffer.next_syllable(0);
while start < buffer.len {
for i in start..end {
if _hb_glyph_info_substituted(&buffer.info[i]) {
buffer.info[i].set_use_category(category::VPRE);
break;
}
}
start = end;
end = buffer.next_syllable(start);
}
}
fn has_arabic_joining(script: Script) -> bool {
matches!(
script,
script::ADLAM
| script::ARABIC
| script::CHORASMIAN
| script::HANIFI_ROHINGYA
| script::MANDAIC
| script::MANICHAEAN
| script::MONGOLIAN
| script::NKO
| script::OLD_UYGHUR
| script::PHAGS_PA
| script::PSALTER_PAHLAVI
| script::SOGDIAN
| script::SYRIAC
)
}
fn preprocess_text(_: &hb_ot_shape_plan_t, _: &hb_font_t, buffer: &mut hb_buffer_t) {
super::ot_shape_complex_vowel_constraints::preprocess_text_vowel_constraints(buffer);
}
fn compose(_: &hb_ot_shape_normalize_context_t, a: char, b: char) -> Option<char> {
if a.general_category().is_mark() {
return None;
}
crate::hb::unicode::compose(a, b)
}
fn setup_masks(plan: &hb_ot_shape_plan_t, _: &hb_font_t, buffer: &mut hb_buffer_t) {
let universal_plan = plan.data::<UniversalShapePlan>();
if let Some(ref arabic_plan) = universal_plan.arabic_plan {
crate::hb::ot_shape_complex_arabic::setup_masks_inner(arabic_plan, plan.script, buffer);
}
for info in buffer.info_slice_mut() {
info.set_use_category(super::ot_shape_complex_use_table::get_category(info));
}
}