mirror of
https://github.com/emilk/egui.git
synced 2026-08-29 04:40:03 -04:00
Routine dependency update. Updated: `font-types` 0.12, `harfrust` 0.12, `jiff` 0.2.35, `open` 5.4, `pollster` 1.0, `rand` 0.10.2, `self_cell` 1.3, `skrifa` 0.44, `tokio` 1.53, `toml` 1.1, `vello_cpu` 0.1.
886 lines
30 KiB
Rust
886 lines
30 KiB
Rust
#![expect(clippy::mem_forget)]
|
|
|
|
use ecolor::Color32;
|
|
use emath::{GuiRounding as _, OrderedFloat, Vec2, vec2};
|
|
use self_cell::self_cell;
|
|
use skrifa::{GlyphId, MetadataProvider as _};
|
|
use std::collections::BTreeMap;
|
|
use vello_cpu::{color, kurbo};
|
|
|
|
use crate::{
|
|
TextOptions, TextureAtlas,
|
|
text::{
|
|
FontTweak, VariationCoords,
|
|
fonts::{Blob, CachedFamily, FontFaceKey},
|
|
},
|
|
};
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
|
|
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
|
|
pub struct UvRect {
|
|
/// X/Y offset for nice rendering (unit: points).
|
|
pub offset: Vec2,
|
|
|
|
/// Screen size (in points) of this glyph.
|
|
/// Note that the height is different from the font height.
|
|
pub size: Vec2,
|
|
|
|
/// Top left corner UV in texture.
|
|
pub min: [u16; 2],
|
|
|
|
/// Bottom right corner (exclusive).
|
|
pub max: [u16; 2],
|
|
}
|
|
|
|
impl UvRect {
|
|
pub fn is_nothing(&self) -> bool {
|
|
self.min == self.max
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
pub struct GlyphInfo {
|
|
/// Doesn't need to be unique.
|
|
///
|
|
/// Is `None` for a special "invisible" glyph.
|
|
pub(crate) id: Option<GlyphId>,
|
|
|
|
/// In [`skrifa`]s "unscaled" coordinate system.
|
|
pub advance_width_unscaled: OrderedFloat<f32>,
|
|
}
|
|
|
|
impl GlyphInfo {
|
|
/// A valid, but invisible, glyph of zero-width.
|
|
pub const INVISIBLE: Self = Self {
|
|
id: None,
|
|
advance_width_unscaled: OrderedFloat(0.0),
|
|
};
|
|
}
|
|
|
|
/// Result of resolving a `char` to a [`GlyphId`] within a single [`FontFace`].
|
|
///
|
|
/// Location-independent: only depends on the font's charmap and `FontTweak`,
|
|
/// not on variable-font variation coordinates.
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
pub(super) enum GlyphIdResolution {
|
|
/// A real, visible glyph.
|
|
Glyph(GlyphId),
|
|
|
|
/// A valid char, but rendered as zero-width (control chars, joiners, …).
|
|
Invisible,
|
|
}
|
|
|
|
/// A precomputed hash of a [`skrifa::instance::Location`].
|
|
///
|
|
/// Used as a cache key so that we don't have to re-hash the coordinate list
|
|
/// for every glyph lookup. Compute once per text run and reuse for every glyph
|
|
/// in the run.
|
|
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
|
|
pub(crate) struct LocationHash(u64);
|
|
|
|
impl nohash_hasher::IsEnabled for LocationHash {}
|
|
|
|
impl LocationHash {
|
|
#[inline]
|
|
pub fn new(location: &skrifa::instance::Location) -> Self {
|
|
if location.coords().is_empty() {
|
|
// Fast path for the (common) default-coords case.
|
|
Self(0)
|
|
} else {
|
|
Self(crate::util::hash(location))
|
|
}
|
|
}
|
|
}
|
|
|
|
// Subpixel binning, taken from cosmic-text:
|
|
// https://github.com/pop-os/cosmic-text/blob/974ddaed96b334f560b606ebe5d2ca2d2f9f23ef/src/glyph_cache.rs
|
|
|
|
/// Bin for subpixel positioning of glyphs.
|
|
///
|
|
/// For accurate glyph positioning, we want to render each glyph at a subpixel coordinate. However, we also want to
|
|
/// cache each glyph's bitmap. As a compromise, we bin each subpixel offset into one of four fractional values. This
|
|
/// means one glyph can have up to four subpixel-positioned bitmaps in the cache.
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
|
|
pub(super) enum SubpixelBin {
|
|
#[default]
|
|
Zero,
|
|
One,
|
|
Two,
|
|
Three,
|
|
}
|
|
|
|
impl SubpixelBin {
|
|
/// Bin the given position and return the new integral coordinate.
|
|
fn new(pos: f32) -> (i32, Self) {
|
|
let trunc = pos as i32;
|
|
let fract = pos - trunc as f32;
|
|
|
|
if pos.is_sign_negative() {
|
|
if fract > -0.125 {
|
|
(trunc, Self::Zero)
|
|
} else if fract > -0.375 {
|
|
(trunc - 1, Self::Three)
|
|
} else if fract > -0.625 {
|
|
(trunc - 1, Self::Two)
|
|
} else if fract > -0.875 {
|
|
(trunc - 1, Self::One)
|
|
} else {
|
|
(trunc - 1, Self::Zero)
|
|
}
|
|
} else {
|
|
if fract < 0.125 {
|
|
(trunc, Self::Zero)
|
|
} else if fract < 0.375 {
|
|
(trunc, Self::One)
|
|
} else if fract < 0.625 {
|
|
(trunc, Self::Two)
|
|
} else if fract < 0.875 {
|
|
(trunc, Self::Three)
|
|
} else {
|
|
(trunc + 1, Self::Zero)
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn as_float(&self) -> f32 {
|
|
match self {
|
|
Self::Zero => 0.0,
|
|
Self::One => 0.25,
|
|
Self::Two => 0.5,
|
|
Self::Three => 0.75,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
|
|
pub struct GlyphAllocation {
|
|
/// UV rectangle for drawing.
|
|
pub uv_rect: UvRect,
|
|
}
|
|
|
|
#[derive(Hash, PartialEq, Eq)]
|
|
struct GlyphCacheKey(u64);
|
|
|
|
impl nohash_hasher::IsEnabled for GlyphCacheKey {}
|
|
|
|
impl GlyphCacheKey {
|
|
#[inline]
|
|
fn new(glyph_id: GlyphId, metrics: &StyledMetrics, bin: SubpixelBin) -> Self {
|
|
let StyledMetrics {
|
|
pixels_per_point,
|
|
px_scale_factor,
|
|
location_hash,
|
|
..
|
|
} = *metrics;
|
|
debug_assert!(
|
|
0.0 < pixels_per_point && pixels_per_point.is_finite(),
|
|
"Bad pixels_per_point {pixels_per_point}"
|
|
);
|
|
debug_assert!(
|
|
0.0 < px_scale_factor && px_scale_factor.is_finite(),
|
|
"Bad px_scale_factor: {px_scale_factor}"
|
|
);
|
|
Self(crate::util::hash((
|
|
glyph_id,
|
|
pixels_per_point.to_bits(),
|
|
px_scale_factor.to_bits(),
|
|
bin,
|
|
location_hash,
|
|
)))
|
|
}
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
struct DependentFontData<'a> {
|
|
skrifa: skrifa::FontRef<'a>,
|
|
charmap: skrifa::charmap::Charmap<'a>,
|
|
outline_glyphs: skrifa::outline::OutlineGlyphCollection<'a>,
|
|
metrics: skrifa::metrics::Metrics,
|
|
hinting_instance: Option<skrifa::outline::HintingInstance>,
|
|
}
|
|
|
|
self_cell! {
|
|
struct FontCell {
|
|
owner: Blob,
|
|
|
|
#[covariant]
|
|
dependent: DependentFontData,
|
|
}
|
|
}
|
|
|
|
impl FontCell {
|
|
fn px_scale_factor(&self, scale: f32) -> f32 {
|
|
let units_per_em = self.borrow_dependent().metrics.units_per_em as f32;
|
|
scale / units_per_em
|
|
}
|
|
|
|
fn allocate_glyph_uncached(
|
|
&mut self,
|
|
atlas: &mut TextureAtlas,
|
|
metrics: &StyledMetrics,
|
|
glyph_id: GlyphId,
|
|
bin: SubpixelBin,
|
|
location: skrifa::instance::LocationRef<'_>,
|
|
hinting_target: skrifa::outline::Target,
|
|
) -> Option<GlyphAllocation> {
|
|
debug_assert!(
|
|
glyph_id != skrifa::GlyphId::NOTDEF,
|
|
"Can't allocate glyph for id 0"
|
|
);
|
|
|
|
let mut path = kurbo::BezPath::new();
|
|
let mut pen = VelloPen {
|
|
path: &mut path,
|
|
x_offset: bin.as_float() as f64,
|
|
};
|
|
|
|
self.with_dependent_mut(|_, font_data| {
|
|
let outline = font_data.outline_glyphs.get(glyph_id)?;
|
|
|
|
if let Some(hinting_instance) = &mut font_data.hinting_instance {
|
|
let size = skrifa::instance::Size::new(metrics.scale);
|
|
if hinting_instance.size() != size
|
|
|| hinting_instance.location().coords() != location.coords()
|
|
|| hinting_instance.target() != hinting_target
|
|
{
|
|
hinting_instance
|
|
.reconfigure(&font_data.outline_glyphs, size, location, hinting_target)
|
|
.ok()?;
|
|
}
|
|
let draw_settings = skrifa::outline::DrawSettings::hinted(hinting_instance, false);
|
|
outline.draw(draw_settings, &mut pen).ok()?;
|
|
} else {
|
|
let draw_settings = skrifa::outline::DrawSettings::unhinted(
|
|
skrifa::instance::Size::new(metrics.scale),
|
|
location,
|
|
);
|
|
outline.draw(draw_settings, &mut pen).ok()?;
|
|
}
|
|
|
|
Some(())
|
|
})?;
|
|
|
|
let bounds = path.control_box().expand();
|
|
let width = bounds.width() as u16;
|
|
let height = bounds.height() as u16;
|
|
|
|
let uv_rect = if width == 0 || height == 0 {
|
|
UvRect::default()
|
|
} else {
|
|
let mut ctx = vello_cpu::RenderContext::new(width, height);
|
|
ctx.set_transform(kurbo::Affine::translate((-bounds.x0, -bounds.y0)));
|
|
ctx.set_paint(color::OpaqueColor::<color::Srgb>::WHITE);
|
|
ctx.fill_path(&path);
|
|
let mut dest = vello_cpu::Pixmap::new(width, height);
|
|
let mut resources = vello_cpu::Resources::new();
|
|
ctx.render(&mut dest, &mut resources);
|
|
|
|
let glyph_pos = {
|
|
let color_transfer_function = atlas.options().color_transfer_function;
|
|
let (glyph_pos, image) = atlas.allocate((width as usize, height as usize));
|
|
let pixels = dest.data_as_u8_slice();
|
|
for y in 0..height as usize {
|
|
for x in 0..width as usize {
|
|
let pixel_offset = 4 * ((y * width as usize) + x);
|
|
image[(x + glyph_pos.0, y + glyph_pos.1)] = color_transfer_function
|
|
.to_atlas_color(Color32::from_rgba_premultiplied(
|
|
pixels[pixel_offset],
|
|
pixels[pixel_offset + 1],
|
|
pixels[pixel_offset + 2],
|
|
pixels[pixel_offset + 3],
|
|
));
|
|
}
|
|
}
|
|
glyph_pos
|
|
};
|
|
let offset_in_pixels = vec2(bounds.x0 as f32, bounds.y0 as f32);
|
|
let offset =
|
|
offset_in_pixels / metrics.pixels_per_point + metrics.y_offset_in_points * Vec2::Y;
|
|
UvRect {
|
|
offset,
|
|
size: vec2(width as f32, height as f32) / metrics.pixels_per_point,
|
|
min: [glyph_pos.0 as u16, glyph_pos.1 as u16],
|
|
max: [
|
|
(glyph_pos.0 + width as usize) as u16,
|
|
(glyph_pos.1 + height as usize) as u16,
|
|
],
|
|
}
|
|
};
|
|
|
|
Some(GlyphAllocation { uv_rect })
|
|
}
|
|
}
|
|
|
|
struct VelloPen<'a> {
|
|
path: &'a mut kurbo::BezPath,
|
|
x_offset: f64,
|
|
}
|
|
|
|
impl skrifa::outline::OutlinePen for VelloPen<'_> {
|
|
fn move_to(&mut self, x: f32, y: f32) {
|
|
self.path.move_to((x as f64 + self.x_offset, -y as f64));
|
|
}
|
|
|
|
fn line_to(&mut self, x: f32, y: f32) {
|
|
self.path.line_to((x as f64 + self.x_offset, -y as f64));
|
|
}
|
|
|
|
fn quad_to(&mut self, cx0: f32, cy0: f32, x: f32, y: f32) {
|
|
self.path.quad_to(
|
|
(cx0 as f64 + self.x_offset, -cy0 as f64),
|
|
(x as f64 + self.x_offset, -y as f64),
|
|
);
|
|
}
|
|
|
|
fn curve_to(&mut self, cx0: f32, cy0: f32, cx1: f32, cy1: f32, x: f32, y: f32) {
|
|
self.path.curve_to(
|
|
(cx0 as f64 + self.x_offset, -cy0 as f64),
|
|
(cx1 as f64 + self.x_offset, -cy1 as f64),
|
|
(x as f64 + self.x_offset, -y as f64),
|
|
);
|
|
}
|
|
|
|
fn close(&mut self) {
|
|
self.path.close_path();
|
|
}
|
|
}
|
|
|
|
/// A specific font face.
|
|
/// The interface uses points as the unit for everything.
|
|
pub struct FontFace {
|
|
name: String,
|
|
font: FontCell,
|
|
tweak: FontTweak,
|
|
subpixel_binning: bool,
|
|
|
|
/// Cached `harfrust` shaper data (parsed GSUB/GPOS tables).
|
|
/// `ShaperData` is `Copy` — lives outside the `self_cell`.
|
|
shaper_data: harfrust::ShaperData,
|
|
|
|
/// Location-independent: `char → GlyphId | Invisible`.
|
|
///
|
|
/// Only depends on the font's charmap + `FontTweak`. A miss means the char
|
|
/// is not in this face's repertoire and the fallback chain should be tried.
|
|
glyph_id_cache: ahash::HashMap<char, GlyphIdResolution>,
|
|
|
|
/// Location-dependent: `(char, LocationHash) → unscaled advance width`.
|
|
///
|
|
/// Variable fonts can vary advance widths per axis (HVAR table), so this
|
|
/// must be re-keyed per resolved [`skrifa::instance::Location`].
|
|
advance_width_cache: ahash::HashMap<(char, LocationHash), OrderedFloat<f32>>,
|
|
|
|
glyph_alloc_cache: ahash::HashMap<GlyphCacheKey, GlyphAllocation>,
|
|
}
|
|
|
|
impl FontFace {
|
|
pub fn new(
|
|
options: TextOptions,
|
|
name: String,
|
|
font_data: Blob,
|
|
index: u32,
|
|
tweak: FontTweak,
|
|
) -> Result<Self, Box<dyn std::error::Error>> {
|
|
let font = FontCell::try_new(font_data, |font_data| {
|
|
let skrifa_font =
|
|
skrifa::FontRef::from_index(AsRef::<[u8]>::as_ref(font_data.as_ref()), index)?;
|
|
|
|
let charmap = skrifa_font.charmap();
|
|
let glyphs = skrifa_font.outline_glyphs();
|
|
|
|
// Note: We use default location here during initialization because
|
|
// the actual weight will be applied via the stored location during rendering.
|
|
// The metrics won't be significantly different at this unscaled size.
|
|
// TODO(emilk): heed location for vertical metrics too (HVAR/MVAR).
|
|
let metrics = skrifa_font.metrics(
|
|
skrifa::instance::Size::unscaled(),
|
|
skrifa::instance::LocationRef::default(),
|
|
);
|
|
|
|
let hinting_enabled = tweak.hinting.unwrap_or(options.font_hinting);
|
|
let hinting_instance = hinting_enabled
|
|
.then(|| {
|
|
// It doesn't really matter what we put here for options. Since the size is `unscaled()`, we will
|
|
// always reconfigure this hinting instance with the real options when rendering for the first time.
|
|
skrifa::outline::HintingInstance::new(
|
|
&glyphs,
|
|
skrifa::instance::Size::unscaled(),
|
|
skrifa::instance::LocationRef::default(),
|
|
skrifa::outline::Target::default(),
|
|
)
|
|
.ok()
|
|
})
|
|
.flatten();
|
|
|
|
Ok::<DependentFontData<'_>, Box<dyn std::error::Error>>(DependentFontData {
|
|
skrifa: skrifa_font,
|
|
charmap,
|
|
outline_glyphs: glyphs,
|
|
metrics,
|
|
hinting_instance,
|
|
})
|
|
})?;
|
|
|
|
let shaper_data = harfrust::ShaperData::new(&font.borrow_dependent().skrifa);
|
|
|
|
let subpixel_binning = tweak.subpixel_binning.unwrap_or(options.subpixel_binning);
|
|
|
|
Ok(Self {
|
|
name,
|
|
font,
|
|
tweak,
|
|
subpixel_binning,
|
|
shaper_data,
|
|
glyph_id_cache: Default::default(),
|
|
advance_width_cache: Default::default(),
|
|
glyph_alloc_cache: Default::default(),
|
|
})
|
|
}
|
|
|
|
/// Code points that will always be replaced by the replacement character.
|
|
///
|
|
/// See also [`invisible_char`].
|
|
fn ignore_character(&self, chr: char) -> bool {
|
|
use crate::text::FontDefinitions;
|
|
|
|
if !FontDefinitions::builtin_font_names().contains(&self.name.as_str()) {
|
|
return false;
|
|
}
|
|
|
|
matches!(
|
|
chr,
|
|
// Strip out a religious symbol with secondary nefarious interpretation:
|
|
'\u{534d}' | '\u{5350}' |
|
|
|
|
// Ignore ubuntu-specific stuff in `Ubuntu-Light.ttf`:
|
|
'\u{E0FF}' | '\u{EFFD}' | '\u{F0FF}' | '\u{F200}'
|
|
)
|
|
}
|
|
|
|
/// An un-ordered iterator over all supported characters.
|
|
fn characters(&self) -> impl Iterator<Item = char> + '_ {
|
|
self.font
|
|
.borrow_dependent()
|
|
.charmap
|
|
.mappings()
|
|
.filter_map(|(chr, _)| char::from_u32(chr).filter(|c| !self.ignore_character(*c)))
|
|
}
|
|
|
|
/// Resolve a `char` to a [`GlyphId`] within this face.
|
|
///
|
|
/// Location-independent. Returns `None` when this face cannot represent
|
|
/// the char (the caller should try the fallback chain).
|
|
///
|
|
/// `\t` and thin spaces share `' '`s glyph id (they just have a custom advance).
|
|
pub(super) fn glyph_id_resolution(&mut self, c: char) -> Option<GlyphIdResolution> {
|
|
if let Some(resolution) = self.glyph_id_cache.get(&c) {
|
|
return Some(*resolution);
|
|
}
|
|
|
|
if self.ignore_character(c) {
|
|
return None; // these will result in the replacement character when rendering
|
|
}
|
|
|
|
let resolution = if c == '\t' || c == '\u{2009}' || c == '\u{202F}' {
|
|
// `\t` and thin spaces are rendered as a space glyph with a custom advance.
|
|
self.glyph_id_resolution(' ')?
|
|
} else if invisible_char(c) {
|
|
GlyphIdResolution::Invisible
|
|
} else {
|
|
let glyph_id = self
|
|
.font
|
|
.borrow_dependent()
|
|
.charmap
|
|
.map(c)
|
|
.filter(|id| *id != GlyphId::NOTDEF)?;
|
|
GlyphIdResolution::Glyph(glyph_id)
|
|
};
|
|
|
|
self.glyph_id_cache.insert(c, resolution);
|
|
Some(resolution)
|
|
}
|
|
|
|
/// Unscaled advance width for `c` at the given variation location.
|
|
///
|
|
/// Location-dependent (variable fonts can vary advances via HVAR).
|
|
/// Cached per `(char, LocationHash)`.
|
|
fn advance_width_unscaled(&mut self, c: char, metrics: &StyledMetrics) -> f32 {
|
|
let cache_key = (c, metrics.location_hash);
|
|
if let Some(advance) = self.advance_width_cache.get(&cache_key) {
|
|
return advance.0;
|
|
}
|
|
|
|
let advance = match c {
|
|
'\t' => self.tweak.tab_size * self.advance_width_unscaled(' ', metrics),
|
|
'\u{2009}' | '\u{202F}' => {
|
|
// Thin space (U+2009) and narrow no-break space (U+202F),
|
|
// often used as thousands separator.
|
|
self.tweak.thin_space_width * self.advance_width_unscaled(' ', metrics)
|
|
}
|
|
_ => {
|
|
let Some(GlyphIdResolution::Glyph(glyph_id)) = self.glyph_id_resolution(c) else {
|
|
return 0.0;
|
|
};
|
|
let font_data = self.font.borrow_dependent();
|
|
let glyph_metrics = font_data
|
|
.skrifa
|
|
.glyph_metrics(skrifa::instance::Size::unscaled(), &metrics.location);
|
|
glyph_metrics.advance_width(glyph_id).unwrap_or_default()
|
|
}
|
|
};
|
|
|
|
self.advance_width_cache.insert(cache_key, advance.into());
|
|
advance
|
|
}
|
|
|
|
/// `\n` will result in `None`.
|
|
///
|
|
/// Caller must pass [`StyledMetrics`] resolved against *this* face so that
|
|
/// variable-font advance widths are looked up at the correct location.
|
|
pub(super) fn glyph_info(&mut self, c: char, metrics: &StyledMetrics) -> Option<GlyphInfo> {
|
|
let resolution = self.glyph_id_resolution(c)?;
|
|
let glyph_info = match resolution {
|
|
GlyphIdResolution::Invisible => GlyphInfo::INVISIBLE,
|
|
GlyphIdResolution::Glyph(glyph_id) => GlyphInfo {
|
|
id: Some(glyph_id),
|
|
advance_width_unscaled: self.advance_width_unscaled(c, metrics).into(),
|
|
},
|
|
};
|
|
Some(glyph_info)
|
|
}
|
|
|
|
#[inline(always)]
|
|
pub fn styled_metrics(
|
|
&self,
|
|
pixels_per_point: f32,
|
|
font_size: f32,
|
|
coords: &VariationCoords,
|
|
) -> StyledMetrics {
|
|
let pt_scale_factor = self.font.px_scale_factor(font_size * self.tweak.scale);
|
|
let font_data = self.font.borrow_dependent();
|
|
let ascent = (font_data.metrics.ascent * pt_scale_factor).round_ui();
|
|
let descent = (font_data.metrics.descent * pt_scale_factor).round_ui();
|
|
let line_gap = (font_data.metrics.leading * pt_scale_factor).round_ui();
|
|
|
|
let scale = font_size * self.tweak.scale * pixels_per_point;
|
|
let px_scale_factor = self.font.px_scale_factor(scale);
|
|
|
|
let y_offset_in_points = ((font_size * self.tweak.scale * self.tweak.y_offset_factor)
|
|
+ self.tweak.y_offset)
|
|
.round_ui();
|
|
|
|
let axes = font_data.skrifa.axes();
|
|
// Override the default coordinates with ones specified via FontTweak, then the ones specified directly via the
|
|
// argument (probably from TextFormat).
|
|
let settings = std::iter::chain(self.tweak.coords.as_ref(), coords.as_ref());
|
|
let location = axes.location(settings);
|
|
let location_hash = LocationHash::new(&location);
|
|
|
|
StyledMetrics {
|
|
pixels_per_point,
|
|
px_scale_factor,
|
|
scale,
|
|
y_offset_in_points,
|
|
ascent,
|
|
row_height: ascent - descent + line_gap,
|
|
location,
|
|
location_hash,
|
|
}
|
|
}
|
|
|
|
pub(crate) fn skrifa_font_ref(&self) -> &skrifa::FontRef<'_> {
|
|
&self.font.borrow_dependent().skrifa
|
|
}
|
|
|
|
pub(crate) fn tweak(&self) -> &FontTweak {
|
|
&self.tweak
|
|
}
|
|
|
|
pub(crate) fn shaper_data(&self) -> &harfrust::ShaperData {
|
|
&self.shaper_data
|
|
}
|
|
|
|
pub fn allocate_glyph(
|
|
&mut self,
|
|
atlas: &mut TextureAtlas,
|
|
metrics: &StyledMetrics,
|
|
shaped: &ShapedGlyph,
|
|
) -> (GlyphAllocation, i32) {
|
|
let ShapedGlyph {
|
|
glyph_id,
|
|
h_pos,
|
|
is_cjk,
|
|
} = *shaped;
|
|
|
|
if glyph_id == GlyphId::NOTDEF {
|
|
// invisible
|
|
return (GlyphAllocation::default(), h_pos.round() as i32);
|
|
}
|
|
|
|
let (h_pos_round, bin) = if self.subpixel_binning && !is_cjk {
|
|
SubpixelBin::new(h_pos)
|
|
} else {
|
|
// CJK scripts contain a lot of characters and could hog the glyph atlas
|
|
// if we stored 4 subpixel offsets per glyph.
|
|
(h_pos.round() as i32, SubpixelBin::Zero)
|
|
};
|
|
|
|
let cache_key = GlyphCacheKey::new(glyph_id, metrics, bin);
|
|
|
|
let hinting_target = self.tweak.hinting_target.into();
|
|
let alloc = *self.glyph_alloc_cache.entry(cache_key).or_insert_with(|| {
|
|
self.font
|
|
.allocate_glyph_uncached(
|
|
atlas,
|
|
metrics,
|
|
glyph_id,
|
|
bin,
|
|
(&metrics.location).into(),
|
|
hinting_target,
|
|
)
|
|
.unwrap_or_default()
|
|
});
|
|
|
|
(alloc, h_pos_round)
|
|
}
|
|
}
|
|
|
|
/// Positioning info for a single glyph, ready for atlas allocation.
|
|
#[derive(Clone, Copy, Debug)]
|
|
pub(crate) struct ShapedGlyph {
|
|
pub glyph_id: GlyphId,
|
|
|
|
/// Horizontal position of the glyph origin, in physical pixels.
|
|
pub h_pos: f32,
|
|
|
|
/// CJK glyphs skip subpixel positioning to save atlas space.
|
|
pub is_cjk: bool,
|
|
}
|
|
|
|
// TODO(emilk): rename?
|
|
/// Wrapper over multiple [`FontFace`] (e.g. a primary + fallbacks for emojis)
|
|
pub struct Font<'a> {
|
|
pub(super) fonts_by_id: &'a mut nohash_hasher::IntMap<FontFaceKey, FontFace>,
|
|
pub(super) cached_family: &'a mut CachedFamily,
|
|
pub(super) atlas: &'a mut TextureAtlas,
|
|
}
|
|
|
|
impl Font<'_> {
|
|
pub fn preload_characters(&mut self, s: &str) {
|
|
for c in s.chars() {
|
|
self.resolve_face(c);
|
|
}
|
|
}
|
|
|
|
/// All supported characters, and in which font they are available in.
|
|
pub fn characters(&mut self) -> &BTreeMap<char, Vec<String>> {
|
|
self.cached_family.characters.get_or_insert_with(|| {
|
|
let mut characters: BTreeMap<char, Vec<String>> = Default::default();
|
|
for font_id in &self.cached_family.fonts {
|
|
let font = self.fonts_by_id.get(font_id).expect("Nonexistent font ID");
|
|
for chr in font.characters() {
|
|
characters.entry(chr).or_default().push(font.name.clone());
|
|
}
|
|
}
|
|
characters
|
|
})
|
|
}
|
|
|
|
pub fn styled_metrics(
|
|
&self,
|
|
pixels_per_point: f32,
|
|
font_size: f32,
|
|
coords: &VariationCoords,
|
|
) -> StyledMetrics {
|
|
self.cached_family
|
|
.fonts
|
|
.first()
|
|
.and_then(|key| self.fonts_by_id.get(key))
|
|
.map(|font_face| font_face.styled_metrics(pixels_per_point, font_size, coords))
|
|
.unwrap_or_default()
|
|
}
|
|
|
|
/// Width of this character in points, at the font's default variation location.
|
|
pub fn glyph_width(&mut self, c: char, font_size: f32) -> f32 {
|
|
let face_key = self.resolve_face(c);
|
|
let Some(font_face) = self.fonts_by_id.get_mut(&face_key) else {
|
|
return 0.0;
|
|
};
|
|
let metrics = font_face.styled_metrics(1.0, font_size, &VariationCoords::default());
|
|
let Some(glyph_info) = font_face.glyph_info(c, &metrics) else {
|
|
return 0.0;
|
|
};
|
|
glyph_info.advance_width_unscaled.0 * font_face.font.px_scale_factor(font_size)
|
|
}
|
|
|
|
/// Can we display this glyph?
|
|
pub fn has_glyph(&mut self, c: char) -> bool {
|
|
// TODO(emilk): this is a false negative if the user asks about the replacement character itself 🤦♂️
|
|
self.resolve_face(c) != self.cached_family.replacement_face_key
|
|
}
|
|
|
|
/// Can we display all the glyphs in this text?
|
|
pub fn has_glyphs(&mut self, s: &str) -> bool {
|
|
s.chars().all(|c| self.has_glyph(c))
|
|
}
|
|
|
|
/// Find which face in the fallback chain owns `c`.
|
|
///
|
|
/// Location-independent — fallback choice depends only on charmap support.
|
|
/// Falls back to the replacement-glyph face when no fallback face has `c`.
|
|
#[inline]
|
|
pub(crate) fn resolve_face(&mut self, c: char) -> FontFaceKey {
|
|
if let Some(font_key) = self.cached_family.face_cache.get(&c) {
|
|
return *font_key;
|
|
}
|
|
self.resolve_face_slow(c)
|
|
}
|
|
|
|
#[cold]
|
|
fn resolve_face_slow(&mut self, c: char) -> FontFaceKey {
|
|
let font_key = self
|
|
.cached_family
|
|
.find_face_for_char(c, self.fonts_by_id)
|
|
.unwrap_or(self.cached_family.replacement_face_key);
|
|
self.cached_family.face_cache.insert(c, font_key);
|
|
font_key
|
|
}
|
|
|
|
/// Resolve `c` to its (face, [`GlyphInfo`]) at the given face's location.
|
|
///
|
|
/// `\n` will (intentionally) show up as the replacement character.
|
|
///
|
|
/// `metrics` must be the resolved [`StyledMetrics`] for the face that ends
|
|
/// up owning `c`. Most callers pass the metrics of their text run's primary
|
|
/// face — that is correct as long as `c` is in that face. For correct
|
|
/// fallback-face advances, resolve the face first with [`Self::resolve_face`]
|
|
/// and build metrics for that face.
|
|
pub(crate) fn glyph_info(
|
|
&mut self,
|
|
c: char,
|
|
metrics: &StyledMetrics,
|
|
) -> (FontFaceKey, GlyphInfo) {
|
|
let face_key = self.resolve_face(c);
|
|
let Some(face) = self.fonts_by_id.get_mut(&face_key) else {
|
|
return (face_key, GlyphInfo::INVISIBLE);
|
|
};
|
|
let glyph_info = face.glyph_info(c, metrics).unwrap_or_else(|| {
|
|
// `c` is in no face — render the replacement character instead.
|
|
face.glyph_info(self.cached_family.replacement_char, metrics)
|
|
.unwrap_or(GlyphInfo::INVISIBLE)
|
|
});
|
|
(face_key, glyph_info)
|
|
}
|
|
}
|
|
|
|
/// Metrics for a font at a specific screen-space scale.
|
|
#[derive(Clone, Debug, PartialEq, Default)]
|
|
pub struct StyledMetrics {
|
|
/// The DPI part of the screen-space scale.
|
|
pub pixels_per_point: f32,
|
|
|
|
/// Scale factor, relative to the font's units per em (so, probably much less than 1).
|
|
///
|
|
/// Translates "unscaled" units to physical (screen) pixels.
|
|
pub px_scale_factor: f32,
|
|
|
|
/// Absolute scale in screen pixels, for skrifa.
|
|
pub scale: f32,
|
|
|
|
/// Vertical offset, in UI points (not screen-space).
|
|
pub y_offset_in_points: f32,
|
|
|
|
/// This is the distance from the top to the baseline.
|
|
///
|
|
/// Unit: points.
|
|
pub ascent: f32,
|
|
|
|
/// Height of one row of text in points.
|
|
///
|
|
/// Returns a value rounded to [`emath::GUI_ROUNDING`].
|
|
pub row_height: f32,
|
|
|
|
/// Resolved variation coordinates.
|
|
pub location: skrifa::instance::Location,
|
|
|
|
/// Precomputed hash of [`Self::location`].
|
|
///
|
|
/// Hashed once per run of text so per-glyph cache lookups don't have to
|
|
/// re-hash the full coordinate list.
|
|
pub(crate) location_hash: LocationHash,
|
|
}
|
|
|
|
/// Code points that will always be invisible (zero width).
|
|
///
|
|
/// See also [`FontFace::ignore_character`].
|
|
#[inline]
|
|
fn invisible_char(c: char) -> bool {
|
|
if c == '\r' {
|
|
// A character most vile and pernicious. Don't display it.
|
|
return true;
|
|
}
|
|
|
|
// See https://github.com/emilk/egui/issues/336
|
|
|
|
// From https://www.fileformat.info/info/unicode/category/Cf/list.htm
|
|
|
|
// TODO(emilk): heed bidi characters
|
|
|
|
matches!(
|
|
c,
|
|
'\u{200B}' // ZERO WIDTH SPACE
|
|
| '\u{200C}' // ZERO WIDTH NON-JOINER
|
|
| '\u{200D}' // ZERO WIDTH JOINER
|
|
| '\u{200E}' // LEFT-TO-RIGHT MARK
|
|
| '\u{200F}' // RIGHT-TO-LEFT MARK
|
|
| '\u{202A}' // LEFT-TO-RIGHT EMBEDDING
|
|
| '\u{202B}' // RIGHT-TO-LEFT EMBEDDING
|
|
| '\u{202C}' // POP DIRECTIONAL FORMATTING
|
|
| '\u{202D}' // LEFT-TO-RIGHT OVERRIDE
|
|
| '\u{202E}' // RIGHT-TO-LEFT OVERRIDE
|
|
| '\u{2060}' // WORD JOINER
|
|
| '\u{2061}' // FUNCTION APPLICATION
|
|
| '\u{2062}' // INVISIBLE TIMES
|
|
| '\u{2063}' // INVISIBLE SEPARATOR
|
|
| '\u{2064}' // INVISIBLE PLUS
|
|
| '\u{2066}' // LEFT-TO-RIGHT ISOLATE
|
|
| '\u{2067}' // RIGHT-TO-LEFT ISOLATE
|
|
| '\u{2068}' // FIRST STRONG ISOLATE
|
|
| '\u{2069}' // POP DIRECTIONAL ISOLATE
|
|
| '\u{206A}' // INHIBIT SYMMETRIC SWAPPING
|
|
| '\u{206B}' // ACTIVATE SYMMETRIC SWAPPING
|
|
| '\u{206C}' // INHIBIT ARABIC FORM SHAPING
|
|
| '\u{206D}' // ACTIVATE ARABIC FORM SHAPING
|
|
| '\u{206E}' // NATIONAL DIGIT SHAPES
|
|
| '\u{206F}' // NOMINAL DIGIT SHAPES
|
|
| '\u{FEFF}' // ZERO WIDTH NO-BREAK SPACE
|
|
)
|
|
}
|
|
|
|
#[inline]
|
|
pub(super) fn is_cjk_ideograph(c: char) -> bool {
|
|
('\u{4E00}' <= c && c <= '\u{9FFF}')
|
|
|| ('\u{3400}' <= c && c <= '\u{4DBF}')
|
|
|| ('\u{2B740}' <= c && c <= '\u{2B81F}')
|
|
}
|
|
|
|
#[inline]
|
|
pub(super) fn is_kana(c: char) -> bool {
|
|
('\u{3040}' <= c && c <= '\u{309F}') // Hiragana block
|
|
|| ('\u{30A0}' <= c && c <= '\u{30FF}') // Katakana block
|
|
}
|
|
|
|
#[inline]
|
|
pub(super) fn is_cjk(c: char) -> bool {
|
|
// TODO(bigfarts): Add support for Korean Hangul.
|
|
is_cjk_ideograph(c) || is_kana(c)
|
|
}
|
|
|
|
#[inline]
|
|
pub(super) fn is_cjk_break_allowed(c: char) -> bool {
|
|
// See: https://en.wikipedia.org/wiki/Line_breaking_rules_in_East_Asian_languages#Characters_not_permitted_on_the_start_of_a_line.
|
|
!")]}〕〉》」』】〙〗〟'\"⦆»ヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻‐゠–〜?!‼⁇⁈⁉・、:;,。.".contains(c)
|
|
}
|