1use crate::hb::ot_layout_gsubgpos::Apply;
2use crate::hb::ot_layout_gsubgpos::OT::hb_ot_apply_context_t;
3use crate::hb::ot_map::hb_ot_map_t;
4use core::convert::TryFrom;
5use ttf_parser::gsub::AlternateSet;
67impl Apply for AlternateSet<'_> {
8fn apply(&self, ctx: &mut hb_ot_apply_context_t) -> Option<()> {
9let len = self.alternates.len();
10if len == 0 {
11return None;
12 }
1314let glyph_mask = ctx.buffer.cur(0).mask;
1516// Note: This breaks badly if two features enabled this lookup together.
17let shift = ctx.lookup_mask.trailing_zeros();
18let mut alt_index = (ctx.lookup_mask & glyph_mask) >> shift;
1920// If alt_index is MAX_VALUE, randomize feature if it is the rand feature.
21if alt_index == hb_ot_map_t::MAX_VALUE && ctx.random {
22// Maybe we can do better than unsafe-to-break all; but since we are
23 // changing random state, it would be hard to track that. Good 'nough.
24ctx.buffer.unsafe_to_break(Some(0), Some(ctx.buffer.len));
25 alt_index = ctx.random_number() % u32::from(len) + 1;
26 }
2728let idx = u16::try_from(alt_index).ok()?.checked_sub(1)?;
29 ctx.replace_glyph(self.alternates.get(idx)?);
3031Some(())
32 }
33}