#[allow(unused_imports)]
use crate::codegen_prelude::*;
#[derive(Clone, Copy, Default, PartialEq, Eq, PartialOrd, Ord, Hash, bytemuck :: AnyBitPattern)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[repr(transparent)]
pub struct MacStyle {
bits: u16,
}
impl MacStyle {
pub const BOLD: Self = Self { bits: 0x0001 };
pub const ITALIC: Self = Self { bits: 0x0002 };
pub const UNDERLINE: Self = Self { bits: 0x0004 };
pub const OUTLINE: Self = Self { bits: 0x0008 };
pub const SHADOW: Self = Self { bits: 0x0010 };
pub const CONDENSED: Self = Self { bits: 0x0020 };
pub const EXTENDED: Self = Self { bits: 0x0040 };
}
impl MacStyle {
#[inline]
pub const fn empty() -> Self {
Self { bits: 0 }
}
#[inline]
pub const fn all() -> Self {
Self {
bits: Self::BOLD.bits
| Self::ITALIC.bits
| Self::UNDERLINE.bits
| Self::OUTLINE.bits
| Self::SHADOW.bits
| Self::CONDENSED.bits
| Self::EXTENDED.bits,
}
}
#[inline]
pub const fn bits(&self) -> u16 {
self.bits
}
#[inline]
pub const fn from_bits(bits: u16) -> Option<Self> {
if (bits & !Self::all().bits()) == 0 {
Some(Self { bits })
} else {
None
}
}
#[inline]
pub const fn from_bits_truncate(bits: u16) -> Self {
Self {
bits: bits & Self::all().bits,
}
}
#[inline]
pub const fn is_empty(&self) -> bool {
self.bits() == Self::empty().bits()
}
#[inline]
pub const fn intersects(&self, other: Self) -> bool {
!(Self {
bits: self.bits & other.bits,
})
.is_empty()
}
#[inline]
pub const fn contains(&self, other: Self) -> bool {
(self.bits & other.bits) == other.bits
}
#[inline]
pub fn insert(&mut self, other: Self) {
self.bits |= other.bits;
}
#[inline]
pub fn remove(&mut self, other: Self) {
self.bits &= !other.bits;
}
#[inline]
pub fn toggle(&mut self, other: Self) {
self.bits ^= other.bits;
}
#[inline]
#[must_use]
pub const fn intersection(self, other: Self) -> Self {
Self {
bits: self.bits & other.bits,
}
}
#[inline]
#[must_use]
pub const fn union(self, other: Self) -> Self {
Self {
bits: self.bits | other.bits,
}
}
#[inline]
#[must_use]
pub const fn difference(self, other: Self) -> Self {
Self {
bits: self.bits & !other.bits,
}
}
}
impl std::ops::BitOr for MacStyle {
type Output = Self;
#[inline]
fn bitor(self, other: MacStyle) -> Self {
Self {
bits: self.bits | other.bits,
}
}
}
impl std::ops::BitOrAssign for MacStyle {
#[inline]
fn bitor_assign(&mut self, other: Self) {
self.bits |= other.bits;
}
}
impl std::ops::BitXor for MacStyle {
type Output = Self;
#[inline]
fn bitxor(self, other: Self) -> Self {
Self {
bits: self.bits ^ other.bits,
}
}
}
impl std::ops::BitXorAssign for MacStyle {
#[inline]
fn bitxor_assign(&mut self, other: Self) {
self.bits ^= other.bits;
}
}
impl std::ops::BitAnd for MacStyle {
type Output = Self;
#[inline]
fn bitand(self, other: Self) -> Self {
Self {
bits: self.bits & other.bits,
}
}
}
impl std::ops::BitAndAssign for MacStyle {
#[inline]
fn bitand_assign(&mut self, other: Self) {
self.bits &= other.bits;
}
}
impl std::ops::Sub for MacStyle {
type Output = Self;
#[inline]
fn sub(self, other: Self) -> Self {
Self {
bits: self.bits & !other.bits,
}
}
}
impl std::ops::SubAssign for MacStyle {
#[inline]
fn sub_assign(&mut self, other: Self) {
self.bits &= !other.bits;
}
}
impl std::ops::Not for MacStyle {
type Output = Self;
#[inline]
fn not(self) -> Self {
Self { bits: !self.bits } & Self::all()
}
}
impl std::fmt::Debug for MacStyle {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
let members: &[(&str, Self)] = &[
("BOLD", Self::BOLD),
("ITALIC", Self::ITALIC),
("UNDERLINE", Self::UNDERLINE),
("OUTLINE", Self::OUTLINE),
("SHADOW", Self::SHADOW),
("CONDENSED", Self::CONDENSED),
("EXTENDED", Self::EXTENDED),
];
let mut first = true;
for (name, value) in members {
if self.contains(*value) {
if !first {
f.write_str(" | ")?;
}
first = false;
f.write_str(name)?;
}
}
if first {
f.write_str("(empty)")?;
}
Ok(())
}
}
impl std::fmt::Binary for MacStyle {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
std::fmt::Binary::fmt(&self.bits, f)
}
}
impl std::fmt::Octal for MacStyle {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
std::fmt::Octal::fmt(&self.bits, f)
}
}
impl std::fmt::LowerHex for MacStyle {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
std::fmt::LowerHex::fmt(&self.bits, f)
}
}
impl std::fmt::UpperHex for MacStyle {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
std::fmt::UpperHex::fmt(&self.bits, f)
}
}
impl font_types::Scalar for MacStyle {
type Raw = <u16 as font_types::Scalar>::Raw;
fn to_raw(self) -> Self::Raw {
self.bits().to_raw()
}
fn from_raw(raw: Self::Raw) -> Self {
let t = <u16>::from_raw(raw);
Self::from_bits_truncate(t)
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> From<MacStyle> for FieldType<'a> {
fn from(src: MacStyle) -> FieldType<'a> {
src.bits().into()
}
}
#[derive(Debug, Clone, Copy)]
#[doc(hidden)]
pub struct HeadMarker {}
impl HeadMarker {
fn version_byte_range(&self) -> Range<usize> {
let start = 0;
start..start + MajorMinor::RAW_BYTE_LEN
}
fn font_revision_byte_range(&self) -> Range<usize> {
let start = self.version_byte_range().end;
start..start + Fixed::RAW_BYTE_LEN
}
fn checksum_adjustment_byte_range(&self) -> Range<usize> {
let start = self.font_revision_byte_range().end;
start..start + u32::RAW_BYTE_LEN
}
fn magic_number_byte_range(&self) -> Range<usize> {
let start = self.checksum_adjustment_byte_range().end;
start..start + u32::RAW_BYTE_LEN
}
fn flags_byte_range(&self) -> Range<usize> {
let start = self.magic_number_byte_range().end;
start..start + u16::RAW_BYTE_LEN
}
fn units_per_em_byte_range(&self) -> Range<usize> {
let start = self.flags_byte_range().end;
start..start + u16::RAW_BYTE_LEN
}
fn created_byte_range(&self) -> Range<usize> {
let start = self.units_per_em_byte_range().end;
start..start + LongDateTime::RAW_BYTE_LEN
}
fn modified_byte_range(&self) -> Range<usize> {
let start = self.created_byte_range().end;
start..start + LongDateTime::RAW_BYTE_LEN
}
fn x_min_byte_range(&self) -> Range<usize> {
let start = self.modified_byte_range().end;
start..start + i16::RAW_BYTE_LEN
}
fn y_min_byte_range(&self) -> Range<usize> {
let start = self.x_min_byte_range().end;
start..start + i16::RAW_BYTE_LEN
}
fn x_max_byte_range(&self) -> Range<usize> {
let start = self.y_min_byte_range().end;
start..start + i16::RAW_BYTE_LEN
}
fn y_max_byte_range(&self) -> Range<usize> {
let start = self.x_max_byte_range().end;
start..start + i16::RAW_BYTE_LEN
}
fn mac_style_byte_range(&self) -> Range<usize> {
let start = self.y_max_byte_range().end;
start..start + MacStyle::RAW_BYTE_LEN
}
fn lowest_rec_ppem_byte_range(&self) -> Range<usize> {
let start = self.mac_style_byte_range().end;
start..start + u16::RAW_BYTE_LEN
}
fn font_direction_hint_byte_range(&self) -> Range<usize> {
let start = self.lowest_rec_ppem_byte_range().end;
start..start + i16::RAW_BYTE_LEN
}
fn index_to_loc_format_byte_range(&self) -> Range<usize> {
let start = self.font_direction_hint_byte_range().end;
start..start + i16::RAW_BYTE_LEN
}
fn glyph_data_format_byte_range(&self) -> Range<usize> {
let start = self.index_to_loc_format_byte_range().end;
start..start + i16::RAW_BYTE_LEN
}
}
impl TopLevelTable for Head<'_> {
const TAG: Tag = Tag::new(b"head");
}
impl<'a> FontRead<'a> for Head<'a> {
fn read(data: FontData<'a>) -> Result<Self, ReadError> {
let mut cursor = data.cursor();
cursor.advance::<MajorMinor>();
cursor.advance::<Fixed>();
cursor.advance::<u32>();
cursor.advance::<u32>();
cursor.advance::<u16>();
cursor.advance::<u16>();
cursor.advance::<LongDateTime>();
cursor.advance::<LongDateTime>();
cursor.advance::<i16>();
cursor.advance::<i16>();
cursor.advance::<i16>();
cursor.advance::<i16>();
cursor.advance::<MacStyle>();
cursor.advance::<u16>();
cursor.advance::<i16>();
cursor.advance::<i16>();
cursor.advance::<i16>();
cursor.finish(HeadMarker {})
}
}
pub type Head<'a> = TableRef<'a, HeadMarker>;
impl<'a> Head<'a> {
pub fn version(&self) -> MajorMinor {
let range = self.shape.version_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn font_revision(&self) -> Fixed {
let range = self.shape.font_revision_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn checksum_adjustment(&self) -> u32 {
let range = self.shape.checksum_adjustment_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn magic_number(&self) -> u32 {
let range = self.shape.magic_number_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn flags(&self) -> u16 {
let range = self.shape.flags_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn units_per_em(&self) -> u16 {
let range = self.shape.units_per_em_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn created(&self) -> LongDateTime {
let range = self.shape.created_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn modified(&self) -> LongDateTime {
let range = self.shape.modified_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn x_min(&self) -> i16 {
let range = self.shape.x_min_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn y_min(&self) -> i16 {
let range = self.shape.y_min_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn x_max(&self) -> i16 {
let range = self.shape.x_max_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn y_max(&self) -> i16 {
let range = self.shape.y_max_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn mac_style(&self) -> MacStyle {
let range = self.shape.mac_style_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn lowest_rec_ppem(&self) -> u16 {
let range = self.shape.lowest_rec_ppem_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn font_direction_hint(&self) -> i16 {
let range = self.shape.font_direction_hint_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn index_to_loc_format(&self) -> i16 {
let range = self.shape.index_to_loc_format_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn glyph_data_format(&self) -> i16 {
let range = self.shape.glyph_data_format_byte_range();
self.data.read_at(range.start).unwrap()
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> SomeTable<'a> for Head<'a> {
fn type_name(&self) -> &str {
"Head"
}
fn get_field(&self, idx: usize) -> Option<Field<'a>> {
match idx {
0usize => Some(Field::new("version", self.version())),
1usize => Some(Field::new("font_revision", self.font_revision())),
2usize => Some(Field::new(
"checksum_adjustment",
self.checksum_adjustment(),
)),
3usize => Some(Field::new("magic_number", self.magic_number())),
4usize => Some(Field::new("flags", self.flags())),
5usize => Some(Field::new("units_per_em", self.units_per_em())),
6usize => Some(Field::new("created", self.created())),
7usize => Some(Field::new("modified", self.modified())),
8usize => Some(Field::new("x_min", self.x_min())),
9usize => Some(Field::new("y_min", self.y_min())),
10usize => Some(Field::new("x_max", self.x_max())),
11usize => Some(Field::new("y_max", self.y_max())),
12usize => Some(Field::new("mac_style", self.mac_style())),
13usize => Some(Field::new("lowest_rec_ppem", self.lowest_rec_ppem())),
14usize => Some(Field::new(
"font_direction_hint",
self.font_direction_hint(),
)),
15usize => Some(Field::new(
"index_to_loc_format",
self.index_to_loc_format(),
)),
16usize => Some(Field::new("glyph_data_format", self.glyph_data_format())),
_ => None,
}
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> std::fmt::Debug for Head<'a> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
(self as &dyn SomeTable<'a>).fmt(f)
}
}