aboutsummaryrefslogtreecommitdiff
path: root/font/src
diff options
context:
space:
mode:
Diffstat (limited to 'font/src')
-rw-r--r--font/src/directwrite/mod.rs209
-rw-r--r--font/src/lib.rs4
-rw-r--r--font/src/rusttype/mod.rs161
3 files changed, 211 insertions, 163 deletions
diff --git a/font/src/directwrite/mod.rs b/font/src/directwrite/mod.rs
new file mode 100644
index 00000000..0284b397
--- /dev/null
+++ b/font/src/directwrite/mod.rs
@@ -0,0 +1,209 @@
+// Copyright 2019 Joe Wilm, The Alacritty Project Contributors
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+//! Rasterization powered by DirectWrite
+extern crate dwrote;
+use self::dwrote::{
+ FontCollection, FontStretch, FontStyle, FontWeight, GlyphOffset, GlyphRunAnalysis,
+};
+
+use super::{FontDesc, FontKey, GlyphKey, Metrics, RasterizedGlyph, Size, Slant, Style, Weight};
+
+pub struct DirectWriteRasterizer {
+ fonts: Vec<dwrote::FontFace>,
+ device_pixel_ratio: f32,
+}
+
+impl crate::Rasterize for DirectWriteRasterizer {
+ type Err = Error;
+
+ fn new(device_pixel_ratio: f32, _: bool) -> Result<DirectWriteRasterizer, Error> {
+ Ok(DirectWriteRasterizer { fonts: Vec::new(), device_pixel_ratio })
+ }
+
+ fn metrics(&self, key: FontKey, size: Size) -> Result<Metrics, Error> {
+ let font = self.fonts.get(key.token as usize).ok_or(Error::FontNotLoaded)?;
+
+ let vmetrics = font.metrics();
+ let scale = (size.as_f32_pts() * self.device_pixel_ratio * (96.0 / 72.0))
+ / f32::from(vmetrics.designUnitsPerEm);
+
+ let underline_position = f32::from(vmetrics.underlinePosition) * scale;
+ let underline_thickness = f32::from(vmetrics.underlineThickness) * scale;
+
+ let strikeout_position = f32::from(vmetrics.strikethroughPosition) * scale;
+ let strikeout_thickness = f32::from(vmetrics.strikethroughThickness) * scale;
+
+ let ascent = f32::from(vmetrics.ascent) * scale;
+ let descent = -f32::from(vmetrics.descent) * scale;
+ let line_gap = f32::from(vmetrics.lineGap) * scale;
+
+ let line_height = f64::from(ascent - descent + line_gap);
+
+ // We assume that all monospace characters have the same width
+ // Because of this we take '!', the first drawable character, for measurements
+ let glyph_metrics = font.get_design_glyph_metrics(&[33], false);
+ let hmetrics = glyph_metrics.first().ok_or(Error::MissingGlyph('!'))?;
+
+ let average_advance = f64::from(hmetrics.advanceWidth) * f64::from(scale);
+
+ Ok(Metrics {
+ descent,
+ average_advance,
+ line_height,
+ underline_position,
+ underline_thickness,
+ strikeout_position,
+ strikeout_thickness,
+ })
+ }
+
+ fn load_font(&mut self, desc: &FontDesc, _size: Size) -> Result<FontKey, Error> {
+ let system_fc = FontCollection::system();
+
+ let family = system_fc
+ .get_font_family_by_name(&desc.name)
+ .ok_or_else(|| Error::MissingFont(desc.clone()))?;
+
+ let font = match desc.style {
+ Style::Description { weight, slant } => {
+ let weight =
+ if weight == Weight::Bold { FontWeight::Bold } else { FontWeight::Regular };
+
+ let style = match slant {
+ Slant::Normal => FontStyle::Normal,
+ Slant::Oblique => FontStyle::Oblique,
+ Slant::Italic => FontStyle::Italic,
+ };
+
+ // This searches for the "best" font - should mean we don't have to worry about
+ // fallbacks if our exact desired weight/style isn't available
+ Ok(family.get_first_matching_font(weight, FontStretch::Normal, style))
+ },
+ Style::Specific(ref style) => {
+ let mut idx = 0;
+ let count = family.get_font_count();
+
+ loop {
+ if idx == count {
+ break Err(Error::MissingFont(desc.clone()));
+ }
+
+ let font = family.get_font(idx);
+
+ if font.face_name() == *style {
+ break Ok(font);
+ }
+
+ idx += 1;
+ }
+ },
+ }?;
+
+ let face = font.create_font_face();
+ self.fonts.push(face);
+
+ Ok(FontKey { token: (self.fonts.len() - 1) as u16 })
+ }
+
+ fn get_glyph(&mut self, glyph: GlyphKey) -> Result<RasterizedGlyph, Error> {
+ let font = self.fonts.get(glyph.font_key.token as usize).ok_or(Error::FontNotLoaded)?;
+
+ let offset = GlyphOffset { advanceOffset: 0.0, ascenderOffset: 0.0 };
+
+ let glyph_index = *font
+ .get_glyph_indices(&[glyph.c as u32])
+ .first()
+ .ok_or_else(|| Error::MissingGlyph(glyph.c))?;
+ if glyph_index == 0 {
+ // The DirectWrite documentation states that we should get 0 returned if the glyph
+ // does not exist in the font
+ return Err(Error::MissingGlyph(glyph.c));
+ }
+
+ let glyph_run = dwrote::DWRITE_GLYPH_RUN {
+ fontFace: unsafe { font.as_ptr() },
+ fontEmSize: glyph.size.as_f32_pts(),
+ glyphCount: 1,
+ glyphIndices: &(glyph_index),
+ glyphAdvances: &(0.0),
+ glyphOffsets: &(offset),
+ isSideways: 0,
+ bidiLevel: 0,
+ };
+
+ let glyph_analysis = GlyphRunAnalysis::create(
+ &glyph_run,
+ self.device_pixel_ratio * (96.0 / 72.0),
+ None,
+ dwrote::DWRITE_RENDERING_MODE_NATURAL,
+ dwrote::DWRITE_MEASURING_MODE_NATURAL,
+ 0.0,
+ 0.0,
+ )
+ .or_else(|_| Err(Error::MissingGlyph(glyph.c)))?;
+
+ let bounds = glyph_analysis
+ .get_alpha_texture_bounds(dwrote::DWRITE_TEXTURE_CLEARTYPE_3x1)
+ .or_else(|_| Err(Error::MissingGlyph(glyph.c)))?;
+ let buf = glyph_analysis
+ .create_alpha_texture(dwrote::DWRITE_TEXTURE_CLEARTYPE_3x1, bounds)
+ .or_else(|_| Err(Error::MissingGlyph(glyph.c)))?;
+
+ Ok(RasterizedGlyph {
+ c: glyph.c,
+ width: (bounds.right - bounds.left) as i32,
+ height: (bounds.bottom - bounds.top) as i32,
+ top: -bounds.top,
+ left: bounds.left,
+ buf,
+ })
+ }
+
+ fn update_dpr(&mut self, device_pixel_ratio: f32) {
+ self.device_pixel_ratio = device_pixel_ratio;
+ }
+}
+
+#[derive(Debug)]
+pub enum Error {
+ MissingFont(FontDesc),
+ MissingGlyph(char),
+ FontNotLoaded,
+}
+
+impl ::std::error::Error for Error {
+ fn description(&self) -> &str {
+ match *self {
+ Error::MissingFont(ref _desc) => "Couldn't find the requested font",
+ Error::MissingGlyph(ref _c) => "Couldn't find the requested glyph",
+ Error::FontNotLoaded => "Tried to operate on font that hasn't been loaded",
+ }
+ }
+}
+
+impl ::std::fmt::Display for Error {
+ fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
+ match *self {
+ Error::MissingGlyph(ref c) => write!(f, "Glyph not found for char {:?}", c),
+ Error::MissingFont(ref desc) => write!(
+ f,
+ "Couldn't find a font with {}\n\tPlease check the font config in your \
+ alacritty.yml.",
+ desc
+ ),
+ Error::FontNotLoaded => f.write_str("Tried to use a font that hasn't been loaded"),
+ }
+ }
+}
diff --git a/font/src/lib.rs b/font/src/lib.rs
index 571bf104..d3bddd54 100644
--- a/font/src/lib.rs
+++ b/font/src/lib.rs
@@ -56,9 +56,9 @@ pub mod ft;
pub use ft::{Error, FreeTypeRasterizer as Rasterizer};
#[cfg(windows)]
-pub mod rusttype;
+pub mod directwrite;
#[cfg(windows)]
-pub use crate::rusttype::{Error, RustTypeRasterizer as Rasterizer};
+pub use crate::directwrite::{DirectWriteRasterizer as Rasterizer, Error};
// If target is macos, reexport everything from darwin
#[cfg(target_os = "macos")]
diff --git a/font/src/rusttype/mod.rs b/font/src/rusttype/mod.rs
deleted file mode 100644
index 8be9fe08..00000000
--- a/font/src/rusttype/mod.rs
+++ /dev/null
@@ -1,161 +0,0 @@
-extern crate font_loader;
-use self::font_loader::system_fonts;
-
-extern crate rusttype;
-use self::rusttype::{point, Codepoint, FontCollection, Scale};
-
-use super::{FontDesc, FontKey, GlyphKey, Metrics, RasterizedGlyph, Size, Slant, Style, Weight};
-
-pub struct RustTypeRasterizer {
- fonts: Vec<rusttype::Font<'static>>,
- dpi_ratio: f32,
-}
-
-impl crate::Rasterize for RustTypeRasterizer {
- type Err = Error;
-
- fn new(device_pixel_ratio: f32, _: bool) -> Result<RustTypeRasterizer, Error> {
- Ok(RustTypeRasterizer { fonts: Vec::new(), dpi_ratio: device_pixel_ratio })
- }
-
- fn metrics(&self, key: FontKey, size: Size) -> Result<Metrics, Error> {
- let scale = Scale::uniform(size.as_f32_pts() * self.dpi_ratio * 96. / 72.);
- let vmetrics = self.fonts[key.token as usize].v_metrics(scale);
- let hmetrics = self.fonts[key.token as usize]
- .glyph(
- // If the font is monospaced all glyphs *should* have the same width
- // 33 '!' is the first displaying character
- Codepoint(33),
- )
- .scaled(scale)
- .h_metrics();
-
- let line_height = f64::from(vmetrics.ascent - vmetrics.descent + vmetrics.line_gap);
- let average_advance = f64::from(hmetrics.advance_width);
- let descent = vmetrics.descent;
-
- // Strikeout and underline metrics.
- // RustType doesn't support these, so we make up our own.
- let thickness = (descent / 5.).round();
- let underline_position = descent / 2.;
- let strikeout_position = line_height as f32 / 2. - descent;
-
- Ok(Metrics {
- descent,
- average_advance,
- line_height,
- underline_position,
- underline_thickness: thickness,
- strikeout_position,
- strikeout_thickness: thickness,
- })
- }
-
- fn load_font(&mut self, desc: &FontDesc, _size: Size) -> Result<FontKey, Error> {
- let fp = system_fonts::FontPropertyBuilder::new().family(&desc.name).monospace();
-
- let fp = match desc.style {
- Style::Specific(ref style) => match style.to_lowercase().as_str() {
- "italic" => fp.italic(),
- "bold" => fp.bold(),
- _ => fp,
- },
- Style::Description { slant, weight } => {
- let fp = match slant {
- Slant::Normal => fp,
- Slant::Italic => fp.italic(),
- // This style is not supported by rust-font-loader
- Slant::Oblique => return Err(Error::UnsupportedStyle),
- };
- match weight {
- Weight::Bold => fp.bold(),
- Weight::Normal => fp,
- }
- },
- };
- self.fonts.push(
- FontCollection::from_bytes(
- system_fonts::get(&fp.build()).ok_or_else(|| Error::MissingFont(desc.clone()))?.0,
- )
- .and_then(FontCollection::into_font)
- .map_err(|_| Error::UnsupportedFont)?,
- );
- Ok(FontKey { token: (self.fonts.len() - 1) as u16 })
- }
-
- fn get_glyph(&mut self, glyph_key: GlyphKey) -> Result<RasterizedGlyph, Error> {
- let scaled_glyph = self.fonts[glyph_key.font_key.token as usize]
- .glyph(glyph_key.c)
- .scaled(Scale::uniform(glyph_key.size.as_f32_pts() * self.dpi_ratio * 96. / 72.));
-
- let glyph = scaled_glyph.positioned(point(0.0, 0.0));
-
- // Pixel bounding box
- let bb = match glyph.pixel_bounding_box() {
- Some(bb) => bb,
- // Bounding box calculation fails for spaces so we provide a placeholder bounding box
- None => rusttype::Rect { min: point(0, 0), max: point(0, 0) },
- };
-
- let mut buf = Vec::with_capacity((bb.width() * bb.height()) as usize);
-
- glyph.draw(|_x, _y, v| {
- buf.push((v * 255.0) as u8);
- buf.push((v * 255.0) as u8);
- buf.push((v * 255.0) as u8);
- });
- Ok(RasterizedGlyph {
- c: glyph_key.c,
- width: bb.width(),
- height: bb.height(),
- top: -bb.min.y,
- left: bb.min.x,
- buf,
- })
- }
-
- fn update_dpr(&mut self, device_pixel_ratio: f32) {
- self.dpi_ratio = device_pixel_ratio;
- }
-}
-
-#[derive(Debug)]
-pub enum Error {
- MissingFont(FontDesc),
- UnsupportedFont,
- UnsupportedStyle,
- // NOTE: This error is different from how the FreeType code handles it
- MissingGlyph,
-}
-
-impl ::std::error::Error for Error {
- fn description(&self) -> &str {
- match *self {
- Error::MissingFont(ref _desc) => "Couldn't find the requested font",
- Error::UnsupportedFont => "Only TrueType fonts are supported",
- Error::UnsupportedStyle => "The selected style is not supported by rusttype",
- Error::MissingGlyph => "The selected font does not have the requested glyph",
- }
- }
-}
-
-impl ::std::fmt::Display for Error {
- fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
- match *self {
- Error::MissingFont(ref desc) => write!(
- f,
- "Couldn't find a font with {}\n\tPlease check the font config in your \
- alacritty.yml.",
- desc
- ),
- Error::UnsupportedFont => write!(
- f,
- "Rusttype only supports TrueType fonts.\n\tPlease select a TrueType font instead."
- ),
- Error::UnsupportedStyle => {
- write!(f, "The selected font style is not supported by rusttype.")
- },
- Error::MissingGlyph => write!(f, "The selected font did not have the requested glyph."),
- }
- }
-}