mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
add channels_set_*_palindex()
This commit is contained in:
parent
c9c18ef740
commit
706d492ecd
4
NEWS.md
4
NEWS.md
@ -13,6 +13,10 @@ rearrangements of Notcurses.
|
|||||||
* `iprefix()` has been added, corresponding to `IPREFIXSTRLEN`. This ought
|
* `iprefix()` has been added, corresponding to `IPREFIXSTRLEN`. This ought
|
||||||
be used if you want binary prefixes without the 'i' suffix indicating
|
be used if you want binary prefixes without the 'i' suffix indicating
|
||||||
binary prefixes, which I predict will endear you to exactly no one.
|
binary prefixes, which I predict will endear you to exactly no one.
|
||||||
|
* Added `channels_set_fg_palindex()` and `channels_set_bg_palindex()`.
|
||||||
|
Rewrote `cell_set_fg_palindex()` and `cell_set_bg_palindex()` in terms
|
||||||
|
of these two. This is possible because the palette index now overlaps the
|
||||||
|
RGB in a channel (they were originally in the attrword).
|
||||||
|
|
||||||
* 1.6.15 (2020-08-16)
|
* 1.6.15 (2020-08-16)
|
||||||
* Styles now work properly with `ncdirect`, which apparently has never
|
* Styles now work properly with `ncdirect`, which apparently has never
|
||||||
|
@ -124,6 +124,7 @@ mbswidth(const char* mbs){
|
|||||||
// if this bit *and* CELL_BGDEFAULT_MASK are set, we're using a
|
// if this bit *and* CELL_BGDEFAULT_MASK are set, we're using a
|
||||||
// palette-indexed background color
|
// palette-indexed background color
|
||||||
#define CELL_BG_PALETTE 0x0000000008000000ull
|
#define CELL_BG_PALETTE 0x0000000008000000ull
|
||||||
|
#define NCPALETTESIZE 256
|
||||||
// if this bit *and* CELL_FGDEFAULT_MASK are set, we're using a
|
// if this bit *and* CELL_FGDEFAULT_MASK are set, we're using a
|
||||||
// palette-indexed foreground color
|
// palette-indexed foreground color
|
||||||
#define CELL_FG_PALETTE (CELL_BG_PALETTE << 32u)
|
#define CELL_FG_PALETTE (CELL_BG_PALETTE << 32u)
|
||||||
@ -349,6 +350,30 @@ channels_set_fg_rgb_clipped(uint64_t* channels, int r, int g, int b){
|
|||||||
*channels = ((uint64_t)channel << 32llu) | (*channels & 0xffffffffllu);
|
*channels = ((uint64_t)channel << 32llu) | (*channels & 0xffffffffllu);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set the 2-bit alpha component of the foreground channel.
|
||||||
|
static inline int
|
||||||
|
channels_set_fg_alpha(uint64_t* channels, unsigned alpha){
|
||||||
|
unsigned channel = channels_fchannel(*channels);
|
||||||
|
if(channel_set_alpha(&channel, alpha) < 0){
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
*channels = ((uint64_t)channel << 32llu) | (*channels & 0xffffffffllu);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int
|
||||||
|
channels_set_fg_palindex(uint64_t* channels, int idx){
|
||||||
|
if(idx < 0 || idx >= NCPALETTESIZE){
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
*channels |= CELL_FGDEFAULT_MASK;
|
||||||
|
*channels |= CELL_FG_PALETTE;
|
||||||
|
channels_set_fg_alpha(channels, CELL_ALPHA_OPAQUE);
|
||||||
|
*channels &= 0xff000000ffffffffull;
|
||||||
|
*channels |= ((uint64_t)idx << 32u);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
// Same, but set an assembled 24 bit channel at once.
|
// Same, but set an assembled 24 bit channel at once.
|
||||||
static inline int
|
static inline int
|
||||||
channels_set_fg(uint64_t* channels, unsigned rgb){
|
channels_set_fg(uint64_t* channels, unsigned rgb){
|
||||||
@ -380,28 +405,6 @@ channels_set_bg_rgb_clipped(uint64_t* channels, int r, int g, int b){
|
|||||||
channels_set_bchannel(channels, channel);
|
channels_set_bchannel(channels, channel);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Same, but set an assembled 24 bit channel at once.
|
|
||||||
static inline int
|
|
||||||
channels_set_bg(uint64_t* channels, unsigned rgb){
|
|
||||||
unsigned channel = channels_bchannel(*channels);
|
|
||||||
if(channel_set(&channel, rgb) < 0){
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
channels_set_bchannel(channels, channel);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set the 2-bit alpha component of the foreground channel.
|
|
||||||
static inline int
|
|
||||||
channels_set_fg_alpha(uint64_t* channels, unsigned alpha){
|
|
||||||
unsigned channel = channels_fchannel(*channels);
|
|
||||||
if(channel_set_alpha(&channel, alpha) < 0){
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
*channels = ((uint64_t)channel << 32llu) | (*channels & 0xffffffffllu);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set the 2-bit alpha component of the background channel.
|
// Set the 2-bit alpha component of the background channel.
|
||||||
static inline int
|
static inline int
|
||||||
channels_set_bg_alpha(uint64_t* channels, unsigned alpha){
|
channels_set_bg_alpha(uint64_t* channels, unsigned alpha){
|
||||||
@ -416,6 +419,32 @@ channels_set_bg_alpha(uint64_t* channels, unsigned alpha){
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set the cell's background palette index, set the background palette index
|
||||||
|
// bit, set it background-opaque, and clear the background default color bit.
|
||||||
|
static inline int
|
||||||
|
channels_set_bg_palindex(uint64_t* channels, int idx){
|
||||||
|
if(idx < 0 || idx >= NCPALETTESIZE){
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
*channels |= CELL_BGDEFAULT_MASK;
|
||||||
|
*channels |= CELL_BG_PALETTE;
|
||||||
|
channels_set_bg_alpha(channels, CELL_ALPHA_OPAQUE);
|
||||||
|
*channels &= 0xffffffffff000000;
|
||||||
|
*channels |= idx;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Same, but set an assembled 24 bit channel at once.
|
||||||
|
static inline int
|
||||||
|
channels_set_bg(uint64_t* channels, unsigned rgb){
|
||||||
|
unsigned channel = channels_bchannel(*channels);
|
||||||
|
if(channel_set(&channel, rgb) < 0){
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
channels_set_bchannel(channels, channel);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
// Is the foreground using the "default foreground color"?
|
// Is the foreground using the "default foreground color"?
|
||||||
static inline bool
|
static inline bool
|
||||||
channels_fg_default_p(uint64_t channels){
|
channels_fg_default_p(uint64_t channels){
|
||||||
@ -1689,8 +1718,6 @@ API int ncplane_mergedown(struct ncplane* RESTRICT src, struct ncplane* RESTRICT
|
|||||||
// *excluding* the base cell. The cursor is homed.
|
// *excluding* the base cell. The cursor is homed.
|
||||||
API void ncplane_erase(struct ncplane* n);
|
API void ncplane_erase(struct ncplane* n);
|
||||||
|
|
||||||
#define NCPALETTESIZE 256
|
|
||||||
|
|
||||||
// Extract the 32-bit background channel from a cell.
|
// Extract the 32-bit background channel from a cell.
|
||||||
static inline unsigned
|
static inline unsigned
|
||||||
cell_bchannel(const cell* cl){
|
cell_bchannel(const cell* cl){
|
||||||
@ -1774,15 +1801,7 @@ cell_set_fg(cell* c, uint32_t channel){
|
|||||||
// bit, set it foreground-opaque, and clear the foreground default color bit.
|
// bit, set it foreground-opaque, and clear the foreground default color bit.
|
||||||
static inline int
|
static inline int
|
||||||
cell_set_fg_palindex(cell* cl, int idx){
|
cell_set_fg_palindex(cell* cl, int idx){
|
||||||
if(idx < 0 || idx >= NCPALETTESIZE){
|
return channels_set_fg_palindex(&cl->channels, idx);
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
cl->channels |= CELL_FGDEFAULT_MASK;
|
|
||||||
cl->channels |= CELL_FG_PALETTE;
|
|
||||||
cell_set_fg_alpha(cl, CELL_ALPHA_OPAQUE);
|
|
||||||
cl->channels &= 0xff000000ffffffffull;
|
|
||||||
cl->channels |= ((uint64_t)idx << 32u);
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline unsigned
|
static inline unsigned
|
||||||
@ -1814,15 +1833,7 @@ cell_set_bg(cell* c, uint32_t channel){
|
|||||||
// bit, set it background-opaque, and clear the background default color bit.
|
// bit, set it background-opaque, and clear the background default color bit.
|
||||||
static inline int
|
static inline int
|
||||||
cell_set_bg_palindex(cell* cl, int idx){
|
cell_set_bg_palindex(cell* cl, int idx){
|
||||||
if(idx < 0 || idx >= NCPALETTESIZE){
|
return channels_set_bg_palindex(&cl->channels, idx);
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
cl->channels |= CELL_BGDEFAULT_MASK;
|
|
||||||
cl->channels |= CELL_BG_PALETTE;
|
|
||||||
cell_set_bg_alpha(cl, CELL_ALPHA_OPAQUE);
|
|
||||||
cl->channels &= 0xffffffffff000000;
|
|
||||||
cl->channels |= idx;
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline unsigned
|
static inline unsigned
|
||||||
|
Loading…
Reference in New Issue
Block a user