slint/internal/core/software_renderer/fonts/pixelfont.rs
2025-03-25 15:51:18 +01:00

167 lines
6.5 KiB
Rust

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
use crate::graphics::{BitmapFont, BitmapGlyphs};
use crate::software_renderer::fixed::Fixed;
use crate::software_renderer::PhysicalLength;
use crate::textlayout::{FontMetrics, Glyph, TextShaper};
use super::{GlyphRenderer, RenderableGlyph};
impl BitmapGlyphs {
/// Returns the size of the pre-rendered font in pixels.
pub fn pixel_size(&self) -> PhysicalLength {
PhysicalLength::new(self.pixel_size)
}
}
// A font that is resolved to a specific pixel size.
pub struct PixelFont {
pub bitmap_font: &'static BitmapFont,
pub glyphs: &'static BitmapGlyphs,
pub pixel_size: PhysicalLength,
}
impl PixelFont {
pub fn glyph_index_to_glyph_id(index: usize) -> core::num::NonZeroU16 {
core::num::NonZeroU16::new(index as u16 + 1).unwrap()
}
pub fn glyph_id_to_glyph_index(id: core::num::NonZeroU16) -> usize {
id.get() as usize - 1
}
}
impl GlyphRenderer for PixelFont {
fn render_glyph(&self, glyph_id: core::num::NonZeroU16) -> Option<RenderableGlyph> {
let glyph_index = Self::glyph_id_to_glyph_index(glyph_id);
let bitmap_glyph = &self.glyphs.glyph_data[glyph_index];
if bitmap_glyph.data.len() == 0 {
// For example, ' ' has no glyph data
return None;
}
// t represent the target coordinate system, and s the source glyph coordinate system.
// We want to align the glyph such that Δ(hₜ+yₜ)+offset = hₛ+yₛ
// where hₜ is the integer height of the glyph in the target coordinate system
// and offset is smaller than Δ
// We also want that Δ(hₜ-1)+offset ≤ hₛ-1
// Similar for x but that's easier since x is not subtracted from the width
let delta = Fixed::<i32, 8>::from_fixed(self.scale_delta());
let src_x = Fixed::<i32, 8>::from_fixed(Fixed::<_, 6>(bitmap_glyph.x));
let src_y = Fixed::<i32, 8>::from_fixed(Fixed::<_, 6>(bitmap_glyph.y));
let h_plus_y = Fixed::<i32, 8>::from_integer(bitmap_glyph.height as i32) + src_y;
let h_plus_y = Fixed::<i32, 8>::from_fraction(h_plus_y.0, delta.0);
let off_y = Fixed::<i32, 8>(h_plus_y.0 & 0xff);
let height = (Fixed::from_integer(bitmap_glyph.height as i32 - 1) - off_y) / delta + 1;
let x = Fixed::from_fraction(src_x.0, delta.0);
let off_x = Fixed::<i32, 8>(-x.0 & 0xff);
let width = (Fixed::from_integer(bitmap_glyph.width as i32 - 1) - off_x) / delta + 1;
Some(RenderableGlyph {
x,
y: h_plus_y - Fixed::from_integer(height),
width: PhysicalLength::new(width as i16),
height: PhysicalLength::new(height as i16),
alpha_map: bitmap_glyph.data.as_slice().into(),
pixel_stride: bitmap_glyph.width as u16,
sdf: self.bitmap_font.sdf,
})
}
fn scale_delta(&self) -> Fixed<u16, 8> {
Fixed::try_from_fixed(Fixed::<u32, 8>::from_fraction(
self.glyphs.pixel_size as u32,
self.pixel_size.get() as u32,
))
.unwrap()
}
}
impl TextShaper for PixelFont {
type LengthPrimitive = i16;
type Length = PhysicalLength;
fn shape_text<GlyphStorage: core::iter::Extend<Glyph<PhysicalLength>>>(
&self,
text: &str,
glyphs: &mut GlyphStorage,
) {
let glyphs_iter = text.char_indices().map(|(byte_offset, char)| {
let glyph_index = self
.bitmap_font
.character_map
.binary_search_by_key(&char, |char_map_entry| char_map_entry.code_point)
.ok()
.map(|char_map_index| {
self.bitmap_font.character_map[char_map_index].glyph_index as usize
});
let x_advance = glyph_index.map_or_else(
|| self.pixel_size,
|glyph_index| {
((self.pixel_size.cast()
* self.glyphs.glyph_data[glyph_index].x_advance as i32
/ self.glyphs.pixel_size as i32
+ euclid::Length::new(32))
/ 64)
.cast()
},
);
Glyph {
glyph_id: glyph_index.map(Self::glyph_index_to_glyph_id),
advance: x_advance,
text_byte_offset: byte_offset,
..Default::default()
}
});
glyphs.extend(glyphs_iter);
}
fn glyph_for_char(&self, ch: char) -> Option<Glyph<PhysicalLength>> {
self.bitmap_font
.character_map
.binary_search_by_key(&ch, |char_map_entry| char_map_entry.code_point)
.ok()
.map(|char_map_index| {
let glyph_index =
self.bitmap_font.character_map[char_map_index].glyph_index as usize;
let bitmap_glyph = &self.glyphs.glyph_data[glyph_index];
let x_advance = ((self.pixel_size.cast() * bitmap_glyph.x_advance as i32
/ self.glyphs.pixel_size as i32
+ euclid::Length::new(32))
/ 64)
.cast();
Glyph {
glyph_id: Some(Self::glyph_index_to_glyph_id(glyph_index)),
advance: x_advance,
text_byte_offset: 0,
..Default::default()
}
})
}
fn max_lines(&self, max_height: PhysicalLength) -> usize {
(max_height / self.height()).get() as _
}
}
impl FontMetrics<PhysicalLength> for PixelFont {
fn ascent(&self) -> PhysicalLength {
(self.pixel_size.cast() * self.bitmap_font.ascent / self.bitmap_font.units_per_em).cast()
}
fn descent(&self) -> PhysicalLength {
(self.pixel_size.cast() * self.bitmap_font.descent / self.bitmap_font.units_per_em).cast()
}
fn height(&self) -> PhysicalLength {
// The descent is negative (relative to the baseline)
(self.pixel_size.cast() * (self.bitmap_font.ascent - self.bitmap_font.descent)
/ self.bitmap_font.units_per_em)
.cast()
}
fn x_height(&self) -> PhysicalLength {
(self.pixel_size.cast() * self.bitmap_font.x_height / self.bitmap_font.units_per_em).cast()
}
fn cap_height(&self) -> PhysicalLength {
(self.pixel_size.cast() * self.bitmap_font.cap_height / self.bitmap_font.units_per_em)
.cast()
}
}