Skip to main content

BitmapFont

Struct BitmapFont 

Source
pub struct BitmapFont { /* private fields */ }
Expand description

A 1-bit-per-pixel bitmap glyph font.

Copy because it is just a static reference plus a few small fields.

Implementations§

Source§

impl BitmapFont

Source

pub const fn new( data: &'static [u8], glyph_width: u8, glyph_height: u8, glyph_count: u16, ) -> Self

Constructs a bitmap font from a static byte slice, mapped through the built-in CP437 char encoding.

data must contain exactly glyph_count * glyph_height bytes.

Source

pub const fn with_charset( data: &'static [u8], glyph_width: u8, glyph_height: u8, glyph_count: u16, charset: &'static [(char, u8)], ) -> Self

Constructs a bitmap font from a static byte slice, mapped through an explicit char -> glyph-index charset instead of the built-in CP437 encoding.

This is how a font extends coverage past CP437: glyph_index looks a char up in charset instead of the CP437 table, so a font built this way can answer for codepoints (quadrants, sextants, braille, …) that CP437 has no mapping for at all. data must contain exactly glyph_count * glyph_height bytes.

charset is scanned linearly, so it is meant for the focused repertoire a font actually declares (a few dozen block or marker glyphs), not for a second general-purpose encoding table.

Source

pub fn rows(&self, index: u8) -> &[u8]

Returns the row bytes for glyph index.

Each byte is one row; bit 7 (MSB) is the leftmost pixel.

§Panics

Panics if index as u16 >= self.glyph_count.

Source

pub fn glyph_pixels(&self, index: u8) -> impl Iterator<Item = (u8, u8)> + '_

Iterates the set (“on”) pixels of glyph index as (x, y) coordinates, row-major from the top: x in 0..glyph_width, y in 0..glyph_height.

This is the single place the 1-bit format’s MSB-first bit order lives (pixel x of a row is bit glyph_width - 1 - x of that row’s byte), so consumers (the GL atlas builder, the software rasterizer’s glyph blit) decode through it instead of each re-deriving the shift and risking disagreement. It is also the one seam that has to change for wider-than-8px glyphs (multi-byte rows, #164): today a row is a single byte (glyph_width <= 8), so its bits are read straight out of that byte.

A glyph_width above 8 is out of this format’s contract (rows are one byte, so only bits 0..8 exist); it is clamped to 8 here rather than shifting past the byte’s width, so columns 8.. of an oversized font are simply never yielded instead of panicking.

§Panics

Panics if index as u16 >= self.glyph_count (via rows).

Source

pub const fn glyph_width(&self) -> u8

The width of each glyph in pixels (≤ 8 for single-byte rows).

Source

pub const fn glyph_height(&self) -> u8

The height of each glyph in pixels; also bytes per glyph.

Source

pub const fn glyph_count(&self) -> u16

The total number of glyphs stored in this font.

Glyph indices 0..glyph_count() are valid arguments to rows. A GPU backend uses this to size its glyph atlas (one texture-array layer per glyph).

Source

pub const fn glyph_index(&self, ch: char) -> Option<u8>

Maps a Unicode char to a glyph index in this font, or None if this font does not cover ch.

If this font was built with with_charset, ch is looked up in that explicit table; otherwise it goes through the built-in CP437 mapping. A miss is either ch not being in this font’s repertoire at all, or its mapped index falling outside this font’s glyph_count (e.g. a font built with fewer than 256 glyphs).

A returned index is always < glyph_count(), so it is always a valid argument to rows and glyph_pixels.

Substituting something drawable for a miss is FontChain::resolve’s job, not this one’s: a font cannot answer for a character it has no glyph for, and pretending otherwise is what hides a chain’s later fonts from ever being consulted.

Trait Implementations§

Source§

impl Clone for BitmapFont

Source§

fn clone(&self) -> BitmapFont

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for BitmapFont

Source§

impl Debug for BitmapFont

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for BitmapFont

Source§

impl From<BitmapFont> for FontChain<'static>

Source§

fn from(font: BitmapFont) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for BitmapFont

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<C> WithAlpha for C
where C: Copy,

Source§

fn with_alpha_first<A>(self, alpha: A) -> AlphaFirst<A, Self>

Wraps self with alpha, storing alpha before the color in memory (see AlphaFirst).
Source§

fn with_alpha_last<A>(self, alpha: A) -> AlphaLast<A, Self>

Wraps self with alpha, storing alpha after the color in memory (see AlphaLast).
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more