mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 17:36:29 +00:00
refactor: move background color detection into Lua
This commit is contained in:
@@ -348,15 +348,6 @@ static void ui_set_option(UI *ui, bool init, String name, Object value, Error *e
|
||||
return;
|
||||
}
|
||||
|
||||
if (strequal(name.data, "term_background")) {
|
||||
VALIDATE_T("term_background", kObjectTypeString, value.type, {
|
||||
return;
|
||||
});
|
||||
set_tty_background(value.data.string.data);
|
||||
ui->term_background = string_to_cstr(value.data.string);
|
||||
return;
|
||||
}
|
||||
|
||||
if (strequal(name.data, "stdin_fd")) {
|
||||
VALIDATE_T("stdin_fd", kObjectTypeInteger, value.type, {
|
||||
return;
|
||||
|
@@ -3183,23 +3183,6 @@ bool set_tty_option(const char *name, char *value)
|
||||
return false;
|
||||
}
|
||||
|
||||
void set_tty_background(const char *value)
|
||||
{
|
||||
if (option_was_set("bg") || strequal(p_bg, value)) {
|
||||
// background is already set... ignore
|
||||
return;
|
||||
}
|
||||
if (starting) {
|
||||
// Wait until after startup, so OptionSet is triggered.
|
||||
do_cmdline_cmd((value[0] == 'l')
|
||||
? "autocmd VimEnter * ++once ++nested :lua if not vim.api.nvim_get_option_info2('bg', {}).was_set then vim.o.bg = 'light' end"
|
||||
: "autocmd VimEnter * ++once ++nested :lua if not vim.api.nvim_get_option_info2('bg', {}).was_set then vim.o.bg = 'dark' end");
|
||||
} else {
|
||||
set_option_value_give_err("bg", CSTR_AS_OPTVAL((char *)value), 0);
|
||||
reset_option_was_set("bg");
|
||||
}
|
||||
}
|
||||
|
||||
/// Find index for an option
|
||||
///
|
||||
/// @param[in] arg Option name.
|
||||
|
@@ -124,7 +124,6 @@ void tinput_init(TermInput *input, Loop *loop)
|
||||
input->loop = loop;
|
||||
input->paste = 0;
|
||||
input->in_fd = STDIN_FILENO;
|
||||
input->waiting_for_bg_response = 0;
|
||||
input->extkeys_type = kExtkeysNone;
|
||||
input->ttimeout = (bool)p_ttimeout;
|
||||
input->ttimeoutlen = p_ttm;
|
||||
@@ -579,113 +578,6 @@ static HandleState handle_bracketed_paste(TermInput *input)
|
||||
return kNotApplicable;
|
||||
}
|
||||
|
||||
static void set_bg(char *bgvalue)
|
||||
{
|
||||
if (ui_client_attached) {
|
||||
MAXSIZE_TEMP_ARRAY(args, 2);
|
||||
ADD_C(args, CSTR_AS_OBJ("term_background"));
|
||||
ADD_C(args, CSTR_AS_OBJ(bgvalue));
|
||||
rpc_send_event(ui_client_channel_id, "nvim_ui_set_option", args);
|
||||
}
|
||||
}
|
||||
|
||||
// During startup, tui.c requests the background color (see `ext.get_bg`).
|
||||
//
|
||||
// Here in input.c, we watch for the terminal response `\e]11;COLOR\a`. If
|
||||
// COLOR matches `rgb:RRRR/GGGG/BBBB/AAAA` where R, G, B, and A are hex digits,
|
||||
// then compute the luminance[1] of the RGB color and classify it as light/dark
|
||||
// accordingly. Note that the color components may have anywhere from one to
|
||||
// four hex digits, and require scaling accordingly as values out of 4, 8, 12,
|
||||
// or 16 bits. Also note the A(lpha) component is optional, and is parsed but
|
||||
// ignored in the calculations.
|
||||
//
|
||||
// [1] https://en.wikipedia.org/wiki/Luma_%28video%29
|
||||
HandleState handle_background_color(TermInput *input)
|
||||
{
|
||||
if (input->waiting_for_bg_response <= 0) {
|
||||
return kNotApplicable;
|
||||
}
|
||||
size_t count = 0;
|
||||
size_t component = 0;
|
||||
size_t header_size = 0;
|
||||
size_t num_components = 0;
|
||||
size_t buf_size = rbuffer_size(input->read_stream.buffer);
|
||||
uint16_t rgb[] = { 0, 0, 0 };
|
||||
uint16_t rgb_max[] = { 0, 0, 0 };
|
||||
bool eat_backslash = false;
|
||||
bool done = false;
|
||||
bool bad = false;
|
||||
if (buf_size >= 9
|
||||
&& !rbuffer_cmp(input->read_stream.buffer, "\x1b]11;rgb:", 9)) {
|
||||
header_size = 9;
|
||||
num_components = 3;
|
||||
} else if (buf_size >= 10
|
||||
&& !rbuffer_cmp(input->read_stream.buffer, "\x1b]11;rgba:", 10)) {
|
||||
header_size = 10;
|
||||
num_components = 4;
|
||||
} else if (buf_size < 10
|
||||
&& !rbuffer_cmp(input->read_stream.buffer,
|
||||
"\x1b]11;rgba", buf_size)) {
|
||||
// An incomplete sequence was found, waiting for the next input.
|
||||
return kIncomplete;
|
||||
} else {
|
||||
input->waiting_for_bg_response--;
|
||||
if (input->waiting_for_bg_response == 0) {
|
||||
DLOG("did not get a response for terminal background query");
|
||||
}
|
||||
return kNotApplicable;
|
||||
}
|
||||
RBUFFER_EACH(input->read_stream.buffer, c, i) {
|
||||
count = i + 1;
|
||||
// Skip the header.
|
||||
if (i < header_size) {
|
||||
continue;
|
||||
}
|
||||
if (eat_backslash) {
|
||||
done = true;
|
||||
break;
|
||||
} else if (c == '\x07') {
|
||||
done = true;
|
||||
break;
|
||||
} else if (c == '\x1b') {
|
||||
eat_backslash = true;
|
||||
} else if (bad) {
|
||||
// ignore
|
||||
} else if ((c == '/') && (++component < num_components)) {
|
||||
// work done in condition
|
||||
} else if (ascii_isxdigit(c)) {
|
||||
if (component < 3 && rgb_max[component] != 0xffff) {
|
||||
rgb_max[component] = (uint16_t)((rgb_max[component] << 4) | 0xf);
|
||||
rgb[component] = (uint16_t)((rgb[component] << 4) | hex2nr(c));
|
||||
}
|
||||
} else {
|
||||
bad = true;
|
||||
}
|
||||
}
|
||||
if (done && !bad && rgb_max[0] && rgb_max[1] && rgb_max[2]) {
|
||||
rbuffer_consumed(input->read_stream.buffer, count);
|
||||
double r = (double)rgb[0] / (double)rgb_max[0];
|
||||
double g = (double)rgb[1] / (double)rgb_max[1];
|
||||
double b = (double)rgb[2] / (double)rgb_max[2];
|
||||
double luminance = (0.299 * r) + (0.587 * g) + (0.114 * b); // CCIR 601
|
||||
bool is_dark = luminance < 0.5;
|
||||
char *bgvalue = is_dark ? "dark" : "light";
|
||||
DLOG("bg response: %s", bgvalue);
|
||||
ui_client_bg_response = is_dark ? kTrue : kFalse;
|
||||
set_bg(bgvalue);
|
||||
input->waiting_for_bg_response = 0;
|
||||
} else if (!done && !bad) {
|
||||
// An incomplete sequence was found, waiting for the next input.
|
||||
return kIncomplete;
|
||||
} else {
|
||||
input->waiting_for_bg_response = 0;
|
||||
rbuffer_consumed(input->read_stream.buffer, count);
|
||||
DLOG("failed to parse bg response");
|
||||
return kNotApplicable;
|
||||
}
|
||||
return kComplete;
|
||||
}
|
||||
|
||||
static void handle_osc_event(TermInput *input, const TermKeyKey *key)
|
||||
{
|
||||
assert(input);
|
||||
@@ -712,14 +604,12 @@ static void handle_osc_event(TermInput *input, const TermKeyKey *key)
|
||||
static void handle_raw_buffer(TermInput *input, bool force)
|
||||
{
|
||||
HandleState is_paste = kNotApplicable;
|
||||
HandleState is_bc = kNotApplicable;
|
||||
|
||||
do {
|
||||
if (!force
|
||||
&& (handle_focus_event(input)
|
||||
|| (is_paste = handle_bracketed_paste(input)) != kNotApplicable
|
||||
|| (is_bc = handle_background_color(input)) != kNotApplicable)) {
|
||||
if (is_paste == kIncomplete || is_bc == kIncomplete) {
|
||||
|| (is_paste = handle_bracketed_paste(input)) != kNotApplicable)) {
|
||||
if (is_paste == kIncomplete) {
|
||||
// Wait for the next input, leaving it in the raw buffer due to an
|
||||
// incomplete sequence.
|
||||
return;
|
||||
|
@@ -24,7 +24,6 @@ typedef struct term_input {
|
||||
// Phases: -1=all 0=disabled 1=first-chunk 2=continue 3=last-chunk
|
||||
int8_t paste;
|
||||
bool ttimeout;
|
||||
int8_t waiting_for_bg_response;
|
||||
int8_t waiting_for_csiu_response;
|
||||
ExtkeysType extkeys_type;
|
||||
OptInt ttimeoutlen;
|
||||
|
@@ -133,7 +133,6 @@ struct TUIData {
|
||||
int reset_scroll_region;
|
||||
int set_cursor_style, reset_cursor_style;
|
||||
int save_title, restore_title;
|
||||
int get_bg;
|
||||
int set_underline_style;
|
||||
int set_underline_color;
|
||||
int enable_extended_keys, disable_extended_keys;
|
||||
@@ -250,7 +249,6 @@ static void terminfo_start(TUIData *tui)
|
||||
tui->unibi_ext.reset_scroll_region = -1;
|
||||
tui->unibi_ext.set_cursor_style = -1;
|
||||
tui->unibi_ext.reset_cursor_style = -1;
|
||||
tui->unibi_ext.get_bg = -1;
|
||||
tui->unibi_ext.set_underline_color = -1;
|
||||
tui->unibi_ext.enable_extended_keys = -1;
|
||||
tui->unibi_ext.disable_extended_keys = -1;
|
||||
@@ -327,9 +325,7 @@ static void terminfo_start(TUIData *tui)
|
||||
unibi_out(tui, unibi_enter_ca_mode);
|
||||
unibi_out(tui, unibi_keypad_xmit);
|
||||
unibi_out(tui, unibi_clear_screen);
|
||||
// Ask the terminal to send us the background color.
|
||||
tui->input.waiting_for_bg_response = 5;
|
||||
unibi_out_ext(tui, tui->unibi_ext.get_bg);
|
||||
|
||||
// Enable bracketed paste
|
||||
unibi_out_ext(tui, tui->unibi_ext.enable_bracketed_paste);
|
||||
|
||||
@@ -1882,9 +1878,6 @@ static void patch_terminfo_bugs(TUIData *tui, const char *term, const char *colo
|
||||
#define XTERM_SETAB_16 \
|
||||
"\x1b[%?%p1%{8}%<%t4%p1%d%e%p1%{16}%<%t10%p1%{8}%-%d%e39%;m"
|
||||
|
||||
tui->unibi_ext.get_bg = (int)unibi_add_ext_str(ut, "ext.get_bg",
|
||||
"\x1b]11;?\x07");
|
||||
|
||||
// Query the terminal to see if it supports CSI u key encoding by writing CSI
|
||||
// ? u followed by a request for the primary device attributes (CSI c)
|
||||
// See https://sw.kovidgoyal.net/kitty/keyboard-protocol/#detection-of-support-for-this-protocol
|
||||
|
Reference in New Issue
Block a user