Struct libnotcurses_sys::ffi::nccell [−][src]
#[repr(C)]pub struct nccell { pub gcluster: u32, pub gcluster_backstop: u8, pub width: u8, pub stylemask: u16, pub channels: u64, }
Expand description
An nccell corresponds to a single character cell on some plane, which can be occupied by a single grapheme cluster (some root spacing glyph, along with possible combining characters, which might span multiple columns). At any cell, we can have a theoretically arbitrarily long UTF-8 EGC, a foreground color, a background color, and an attribute set. Valid grapheme cluster contents include:
- A NUL terminator,
- A single control character, followed by a NUL terminator,
- At most one spacing character, followed by zero or more nonspacing characters, followed by a NUL terminator.
Multi-column characters can only have a single style/color throughout. Existence is suffering, and thus wcwidth() is not reliable. It’s just quoting whether or not the EGC contains a “Wide Asian” double-width character. This is set for some things, like most emoji, and not set for other things, like cuneiform. True display width is a function of the font and terminal. Among the longest Unicode codepoints is
U+FDFD ARABIC LIGATURE BISMILLAH AR-RAHMAN AR-RAHEEM ﷽
wcwidth() rather optimistically claims this most exalted glyph to occupy a single column. BiDi text is too complicated for me to even get into here. Be assured there are no easy answers; ours is indeed a disturbing Universe.
Each nccell occupies 16 static bytes (128 bits). The surface is thus ~1.6MB for a (pretty large) 500x200 terminal. At 80x43, it’s less than 64KB. Dynamic requirements (the egcpool) can add up to 16MB to an ncplane, but such large pools are unlikely in common use.
We implement some small alpha compositing. Foreground and background both have two bits of inverted alpha. The actual grapheme written to a cell is the topmost non-zero grapheme. If its alpha is 00, its foreground color is used unchanged. If its alpha is 10, its foreground color is derived entirely from cells underneath it. Otherwise, the result will be a composite. Likewise for the background. If the bottom of a coordinate’s zbuffer is reached with a cumulative alpha of zero, the default is used. In this way, a terminal configured with transparent background can be supported through multiple occluding ncplanes. A foreground alpha of 11 requests high-contrast text (relative to the computed background). A background alpha of 11 is currently forbidden.
Default color takes precedence over palette or RGB, and cannot be used with transparency. Indexed palette takes precedence over RGB. It cannot meaningfully set transparency, but it can be mixed into a cascading color. RGB is used if neither default terminal colors nor palette indexing are in play, and fully supports all transparency options.
This structure is exposed only so that most functions can be inlined. Do not directly modify or access the fields of this structure; use the API.
Fields
gcluster: u32
4B → 4B little endian EGC
gcluster_backstop: u8
1B → 5B (8 bits of zero)
width: u8
1B → 6B (8 bits of EGC column width)
stylemask: u16
2B → 8B (16 bits of NCSTYLE_* attributes)
channels: u64
- 8B == 16B
Implementations
New NcCell
, expects a 7-bit char
.
Breaks the UTF-8 string in egc
down, setting up this NcCell
,
and returns the number of bytes copied out of egc
.
The styling of the cell is left untouched, but any resources are released. C style function: nccell_load().
Same as load, plus blasts the styling with
style
and channels
.
- Breaks the UTF-8 string in
gcluster
down, setting up this NcCell. - Returns the number of bytes copied out of
gcluster
. - Any resources are released.
- Blasts the styling with
style
andchannels
.
C style function: nccell_prime().
Duplicate this NcCell
into another one.
Both must be or will be bound to common_plane
.
C style function: nccell_duplicate().
Initializes (zeroes out) this NcCell
.
C style function: nccell_init().
Releases resources held by the current cell in the NcPlane plane
.
C style function: nccell_release().
Returns the NcChannels
of this NcCell
.
(No equivalent C style function)
Extracts the background NcAlphaBits
(shifted to LSBs).
C style function: nccell_bg_alpha().
Is the background NcChannel
using the “default background color”?
C style function: nccell_bg_default_p().
Gets the NcPaletteIndex
of the background NcChannel
.
C style function: nccell_bg_palindex().
Is the background NcChannel
using an NcPaletteIndex
indexed
NcPalette
color?
C style function: nccell_bg_palindex_p().
Gets the background NcRgb
(shifted to LSBs).
C style function: nccell_bg_rgb().
Gets the background RGB NcComponent
s.
C style function: nccell_bg_rgb8().
Extracts the foreground NcAlphaBits
(shifted to LSBs).
C style function: nccell_fg_alpha().
Is the foreground NcChannel
using the “default foreground color”?
C style function: nccell_fg_default_p().
Gets the NcPaletteIndex
of the foreground NcChannel
.
C style function: nccell_fg_palindex().
Is the foreground NcChannel
using an NcPaletteIndex
indexed
NcPalette
color?
C style function: nccell_fg_palindex_p().
Gets the foreground NcRgb
(shifted to LSBs).
C style function: nccell_fg_rgb().
Gets the foreground RGB NcComponent
s.
C style function: nccell_fg_rgb8().
Sets the background NcAlphaBits
.
C style function: nccell_set_bg_alpha().
Indicates to use the “default color” for the background NcChannel
.
C style function: nccell_set_bg_default().
Sets the background NcPaletteIndex
.
Also sets NCALPHA_BG_PALETTE and NCALPHA_OPAQUE, and clears out NCALPHA_BGDEFAULT_MASK.
C style function: nccell_set_bg_palindex().
Sets the background NcRgb
and marks it as not using the default color.
C style function: nccell_set_bg_rgb().
Sets the background RGB NcComponent
s, and marks it as not using
the “default color”.
C style function: nccell_set_bg_rgb8().
Sets the foreground NcAlphaBits
.
C style function: nccell_set_fg_alpha().
Indicates to use the “default color” for the foreground NcChannel
.
C style function: nccell_set_fg_default().
Sets the foreground NcPaletteIndex
.
Also sets NCALPHA_FG_PALETTE and NCALPHA_OPAQUE, and clears out NCALPHA_BGDEFAULT_MASK.
C style function: nccell_set_fg_palindex().
Sets the foreground NcRgb
and marks it as not using the default color.
C style function: nccell_set_fg_rgb().
Sets the foreground RGB NcComponent
s, and marks it as not using
the “default color”.
C style function: nccell_set_fg_rgb8().
Returns true if the two cells have distinct EGC
s, attributes,
or NcChannel
s.
The actual egcpool index needn’t be the same–indeed, the planes
needn’t even be the same. Only the expanded EGC
must be bit-equal.
C style function: nccellcmp().
Saves the NcStyle
and the NcChannels
, and returns the EGC
.
(These are the three elements of an NcCell
).
C style function: nccell_fg_alpha().
Returns the NcStyle
bits.
C style function: nccell_styles().
Removes the specified NcStyle
bits.
C style function: nccell_off_styles().
Adds the specified NcStyle
bits.
C style function: nccell_on_styles().
Sets just the specified NcStyle
bits.
C style function: nccell_set_styles().
Copies the UTF8-encoded EGC
out of this NcCell,
whether simple or complex.
The result is not tied to the NcPlane, and persists across erases and destruction.
C style function: nccell_strdup().
Does this NcCell contain a wide codepoint?
C style function: nccell_double_wide_p().
Is this the left half of a wide character?
C style function: nccell_wide_left_p().
Is this the right side of a wide character?
C style function: nccell_wide_right_p().
Loads up six cells with the EGC
s necessary to draw a box.
On error, any NcCell
s this function might have loaded before the error
are released.
There must be at least six EGC
s in gcluster
.
C style function: nccells_load_box().
NcCell.load_box() with the double box-drawing characters.
C style function: nccells_double_box().
NcCell.load_box() with the rounded box-drawing characters.
C style function: nccells_rounded_box().
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for nccell
impl UnwindSafe for nccell
Blanket Implementations
Mutably borrows from an owned value. Read more