use crate::hb::ot::layout::GPOS::mark_array::MarkArrayExt;
use crate::hb::ot_layout::{_hb_glyph_info_get_lig_comp, _hb_glyph_info_get_lig_id};
use crate::hb::ot_layout_common::lookup_flags;
use crate::hb::ot_layout_gsubgpos::OT::hb_ot_apply_context_t;
use crate::hb::ot_layout_gsubgpos::{match_t, skipping_iterator_t, Apply};
use ttf_parser::gpos::MarkToLigatureAdjustment;
impl Apply for MarkToLigatureAdjustment<'_> {
fn apply(&self, ctx: &mut hb_ot_apply_context_t) -> Option<()> {
let buffer = &ctx.buffer;
let mark_glyph = ctx.buffer.cur(0).as_glyph();
let mark_index = self.mark_coverage.get(mark_glyph)?;
if ctx.last_base_until > buffer.idx as u32 {
ctx.last_base_until = 0;
ctx.last_base = -1;
}
let mut iter = skipping_iterator_t::new(ctx, 0, false);
iter.set_lookup_props(u32::from(lookup_flags::IGNORE_MARKS));
let mut j = buffer.idx;
while j > ctx.last_base_until as usize {
let mut _match = iter.match_(&buffer.info[j - 1]);
if _match == match_t::MATCH {
ctx.last_base = j as i32 - 1;
break;
}
j -= 1;
}
ctx.last_base_until = buffer.idx as u32;
if ctx.last_base == -1 {
ctx.buffer
.unsafe_to_concat_from_outbuffer(Some(0), Some(buffer.idx + 1));
return None;
}
let idx = ctx.last_base as usize;
let lig_glyph = buffer.info[idx].as_glyph();
let Some(lig_index) = self.ligature_coverage.get(lig_glyph) else {
ctx.buffer
.unsafe_to_concat_from_outbuffer(Some(idx), Some(buffer.idx + 1));
return None;
};
let lig_attach = self.ligature_array.get(lig_index)?;
let comp_count = lig_attach.rows;
if comp_count == 0 {
ctx.buffer
.unsafe_to_concat_from_outbuffer(Some(idx), Some(buffer.idx + 1));
return None;
}
let lig_id = _hb_glyph_info_get_lig_id(&buffer.info[idx]);
let mark_id = _hb_glyph_info_get_lig_id(buffer.cur(0));
let mark_comp = u16::from(_hb_glyph_info_get_lig_comp(buffer.cur(0)));
let matches = lig_id != 0 && lig_id == mark_id && mark_comp > 0;
let comp_index = if matches {
mark_comp.min(comp_count)
} else {
comp_count
} - 1;
self.marks
.apply(ctx, lig_attach, mark_index, comp_index, idx)
}
}