1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-11-22 16:23:01 +01:00

Manually attempt to decode input char sequences

This is currently a fallback method for when the terminal doesn't
detect ctrl arrow sequences, but it is generalized for future additions
This commit is contained in:
jfreegman 2020-10-13 16:12:55 -04:00
parent 9c06ad608b
commit 3015138a5a
No known key found for this signature in database
GPG Key ID: 3627F3144076AE63
6 changed files with 180 additions and 58 deletions

View File

@ -1002,7 +1002,10 @@ static void send_action(ToxWindow *self, ChatContext *ctx, Tox *m, char *action)
cqueue_add(ctx->cqueue, action, strlen(action), OUT_ACTION, id); cqueue_add(ctx->cqueue, action, strlen(action), OUT_ACTION, id);
} }
static void chat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr) /*
* Return true if input is recognized by handler
*/
bool chat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
{ {
ChatContext *ctx = self->chatwin; ChatContext *ctx = self->chatwin;
StatusBar *statusbar = self->stb; StatusBar *statusbar = self->stb;
@ -1014,7 +1017,7 @@ static void chat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
UNUSED_VAR(y); UNUSED_VAR(y);
if (y2 <= 0 || x2 <= 0) { if (y2 <= 0 || x2 <= 0) {
return; return false;
} }
if (ctx->pastemode && key == '\r') { if (ctx->pastemode && key == '\r') {
@ -1023,7 +1026,7 @@ static void chat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
if (self->help->active) { if (self->help->active) {
help_onKey(self, key); help_onKey(self, key);
return; return true;
} }
if (ltr || key == '\n') { /* char is printable */ if (ltr || key == '\n') { /* char is printable */
@ -1033,16 +1036,21 @@ static void chat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
set_self_typingstatus(self, m, 1); set_self_typingstatus(self, m, 1);
} }
return; return true;
} }
if (line_info_onKey(self, key)) { if (line_info_onKey(self, key)) {
return; return true;
} }
input_handle(self, key, x, x2); if (input_handle(self, key, x, x2)) {
return true;
}
int input_ret = false;
if (key == '\t' && ctx->len > 1 && ctx->line[0] == '/') { /* TAB key: auto-complete */ if (key == '\t' && ctx->len > 1 && ctx->line[0] == '/') { /* TAB key: auto-complete */
input_ret = true;
int diff = -1; int diff = -1;
/* TODO: make this not suck */ /* TODO: make this not suck */
@ -1080,6 +1088,7 @@ static void chat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
} }
} else if (key == '\r') { } else if (key == '\r') {
input_ret = true;
rm_trailing_spaces_buf(ctx); rm_trailing_spaces_buf(ctx);
if (!wstring_is_empty(ctx->line)) { if (!wstring_is_empty(ctx->line)) {
@ -1096,7 +1105,7 @@ static void chat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
if (line[0] == '/') { if (line[0] == '/') {
if (strcmp(line, "/close") == 0) { if (strcmp(line, "/close") == 0) {
kill_chat_window(self, m); kill_chat_window(self, m);
return; return input_ret;
} else if (strncmp(line, "/me ", strlen("/me ")) == 0) { } else if (strncmp(line, "/me ", strlen("/me ")) == 0) {
send_action(self, ctx, m, line + strlen("/me ")); send_action(self, ctx, m, line + strlen("/me "));
} else { } else {
@ -1125,6 +1134,8 @@ static void chat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
if (ctx->len <= 0 && ctx->self_is_typing) { if (ctx->len <= 0 && ctx->self_is_typing) {
set_self_typingstatus(self, m, 0); set_self_typingstatus(self, m, 0);
} }
return input_ret;
} }
static void chat_onDraw(ToxWindow *self, Tox *m) static void chat_onDraw(ToxWindow *self, Tox *m)

View File

@ -825,25 +825,28 @@ static void unblock_friend(Tox *m, uint32_t bnum)
sort_friendlist_index(); sort_friendlist_index();
} }
static void friendlist_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr) /*
* Return true if input is recognized by handler
*/
static bool friendlist_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
{ {
if (self->help->active) { if (self->help->active) {
help_onKey(self, key); help_onKey(self, key);
return; return true;
} }
if (key == 'h') { if (key == 'h') {
help_init_menu(self); help_init_menu(self);
return; return true;
} }
if (!blocklist_view && !Friends.num_friends && (key != KEY_RIGHT && key != KEY_LEFT)) { if (!blocklist_view && !Friends.num_friends && (key != KEY_RIGHT && key != KEY_LEFT)) {
return; return true;
} }
if (blocklist_view && !Blocked.num_blocked && (key != KEY_RIGHT && key != KEY_LEFT)) { if (blocklist_view && !Blocked.num_blocked && (key != KEY_RIGHT && key != KEY_LEFT)) {
return; return true;
} }
int f = 0; int f = 0;
@ -860,11 +863,11 @@ static void friendlist_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
del_friend_deactivate(m, key); del_friend_deactivate(m, key);
} }
return; return true;
} }
if (key == ltr) { if (key == ltr) {
return; return true;
} }
switch (key) { switch (key) {
@ -914,6 +917,8 @@ static void friendlist_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
break; break;
} }
return true;
} }
#define FLIST_OFST 6 /* Accounts for space at top and bottom */ #define FLIST_OFST 6 /* Accounts for space at top and bottom */

View File

@ -480,7 +480,10 @@ static void send_group_action(ToxWindow *self, ChatContext *ctx, Tox *m, char *a
} }
} }
static void groupchat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr) /*
* Return true if input is recognized by handler
*/
static bool groupchat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
{ {
ChatContext *ctx = self->chatwin; ChatContext *ctx = self->chatwin;
@ -491,12 +494,12 @@ static void groupchat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
UNUSED_VAR(y); UNUSED_VAR(y);
if (x2 <= 0 || y2 <= 0) { if (x2 <= 0 || y2 <= 0) {
return; return false;
} }
if (self->help->active) { if (self->help->active) {
help_onKey(self, key); help_onKey(self, key);
return; return true;
} }
if (ctx->pastemode && key == '\r') { if (ctx->pastemode && key == '\r') {
@ -505,18 +508,22 @@ static void groupchat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
if (ltr || key == '\n') { /* char is printable */ if (ltr || key == '\n') { /* char is printable */
input_new_char(self, key, x, x2); input_new_char(self, key, x, x2);
return; return true;
} }
if (line_info_onKey(self, key)) { if (line_info_onKey(self, key)) {
return; return true;
} }
if (input_handle(self, key, x, x2)) { if (input_handle(self, key, x, x2)) {
return; return true;
} }
bool input_ret = false;
if (key == '\t') { /* TAB key: auto-completes peer name or command */ if (key == '\t') { /* TAB key: auto-completes peer name or command */
input_ret = true;
if (ctx->len > 0) { if (ctx->len > 0) {
int diff; int diff;
@ -534,7 +541,6 @@ static void groupchat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
} }
#endif #endif
else { else {
diff = complete_line(self, group_cmd_list, AC_NUM_GROUP_COMMANDS, MAX_CMDNAME_SIZE); diff = complete_line(self, group_cmd_list, AC_NUM_GROUP_COMMANDS, MAX_CMDNAME_SIZE);
} }
@ -551,16 +557,20 @@ static void groupchat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
sound_notify(self, notif_error, 0, NULL); sound_notify(self, notif_error, 0, NULL);
} }
} else if (key == user_settings->key_peer_list_down) { /* Scroll peerlist up and down one position */ } else if (key == user_settings->key_peer_list_down) { /* Scroll peerlist up and down one position */
input_ret = true;
const int L = y2 - CHATBOX_HEIGHT - SDBAR_OFST; const int L = y2 - CHATBOX_HEIGHT - SDBAR_OFST;
if (groupchats[self->num].side_pos < (int64_t) groupchats[self->num].num_peers - L) { if (groupchats[self->num].side_pos < (int64_t) groupchats[self->num].num_peers - L) {
++groupchats[self->num].side_pos; ++groupchats[self->num].side_pos;
} }
} else if (key == user_settings->key_peer_list_up) { } else if (key == user_settings->key_peer_list_up) {
input_ret = true;
if (groupchats[self->num].side_pos > 0) { if (groupchats[self->num].side_pos > 0) {
--groupchats[self->num].side_pos; --groupchats[self->num].side_pos;
} }
} else if (key == '\r') { } else if (key == '\r') {
input_ret = true;
rm_trailing_spaces_buf(ctx); rm_trailing_spaces_buf(ctx);
if (!wstring_is_empty(ctx->line)) { if (!wstring_is_empty(ctx->line)) {
@ -577,7 +587,7 @@ static void groupchat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
if (line[0] == '/') { if (line[0] == '/') {
if (strcmp(line, "/close") == 0) { if (strcmp(line, "/close") == 0) {
delete_groupchat(self, m, self->num); delete_groupchat(self, m, self->num);
return; return true;
} else if (strncmp(line, "/me ", strlen("/me ")) == 0) { } else if (strncmp(line, "/me ", strlen("/me ")) == 0) {
send_group_action(self, ctx, m, line + strlen("/me ")); send_group_action(self, ctx, m, line + strlen("/me "));
} else { } else {
@ -596,6 +606,8 @@ static void groupchat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
wmove(self->window, y2 - CURS_Y_OFFSET, 0); wmove(self->window, y2 - CURS_Y_OFFSET, 0);
reset_buf(ctx); reset_buf(ctx);
} }
return input_ret;
} }
static void groupchat_onDraw(ToxWindow *self, Tox *m) static void groupchat_onDraw(ToxWindow *self, Tox *m)

View File

@ -212,7 +212,10 @@ static int add_friend_request(const char *public_key, const char *data)
return -1; return -1;
} }
static void prompt_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr) /*
* Return true if input is recognized by handler
*/
static bool prompt_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
{ {
ChatContext *ctx = self->chatwin; ChatContext *ctx = self->chatwin;
@ -223,7 +226,7 @@ static void prompt_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
UNUSED_VAR(y); UNUSED_VAR(y);
if (x2 <= 0 || y2 <= 0) { if (x2 <= 0 || y2 <= 0) {
return; return false;
} }
if (ctx->pastemode && key == '\r') { if (ctx->pastemode && key == '\r') {
@ -233,21 +236,27 @@ static void prompt_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
/* ignore non-menu related input if active */ /* ignore non-menu related input if active */
if (self->help->active) { if (self->help->active) {
help_onKey(self, key); help_onKey(self, key);
return; return true;
} }
if (ltr || key == '\n') { /* char is printable */ if (ltr || key == '\n') { /* char is printable */
input_new_char(self, key, x, x2); input_new_char(self, key, x, x2);
return; return true;
} }
if (line_info_onKey(self, key)) { if (line_info_onKey(self, key)) {
return; return true;
} }
input_handle(self, key, x, x2); if (input_handle(self, key, x, x2)) {
return true;
}
int input_ret = false;
if (key == '\t') { /* TAB key: auto-completes command */ if (key == '\t') { /* TAB key: auto-completes command */
input_ret = true;
if (ctx->len > 1 && ctx->line[0] == '/') { if (ctx->len > 1 && ctx->line[0] == '/') {
int diff = -1; int diff = -1;
@ -285,6 +294,8 @@ static void prompt_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
sound_notify(self, notif_error, 0, NULL); sound_notify(self, notif_error, 0, NULL);
} }
} else if (key == '\r') { } else if (key == '\r') {
input_ret = true;
rm_trailing_spaces_buf(ctx); rm_trailing_spaces_buf(ctx);
if (!wstring_is_empty(ctx->line)) { if (!wstring_is_empty(ctx->line)) {
@ -305,6 +316,8 @@ static void prompt_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
wmove(self->window, y2 - CURS_Y_OFFSET, 0); wmove(self->window, y2 - CURS_Y_OFFSET, 0);
reset_buf(ctx); reset_buf(ctx);
} }
return input_ret;
} }
static void prompt_onDraw(ToxWindow *self, Tox *m) static void prompt_onDraw(ToxWindow *self, Tox *m)

View File

@ -567,6 +567,91 @@ static void draw_bar(void)
refresh(); refresh();
} }
/*
* Gets current char from stdscr and puts it in ch.
*
* Return 1 if char is printable.
* Return 0 if char is not printable.
* Return -1 on error.
*/
static int get_current_char(wint_t *ch)
{
wint_t tmpchar = 0;
bool is_printable = false;
#ifdef HAVE_WIDECHAR
int status = wget_wch(stdscr, &tmpchar);
if (status == ERR) {
return -1;
}
if (status == OK) {
is_printable = iswprint(tmpchar);
}
#else
tmpchar = getch();
if (tmpchar == ERR) {
return -1;
}
is_printable = isprint(tmpchar);
#endif /* HAVE_WIDECHAR */
*ch = tmpchar;
return (int) is_printable;
}
static struct key_sequence_codes {
wchar_t *code;
wint_t key;
} Keys[] = {
{ L"[1;5D", T_KEY_C_LEFT },
{ L"[1;5C", T_KEY_C_RIGHT },
{ NULL, 0 }
};
/*
* Return key code corresponding to character sequence queued in stdscr.
* Return -1 if sequence is unknown.
*/
#define MAX_SEQUENCE_SIZE 5
static wint_t get_input_sequence_code(void)
{
wchar_t code[MAX_SEQUENCE_SIZE + 1];
size_t length = 0;
wint_t ch = 0;
for (size_t i = 0; i < MAX_SEQUENCE_SIZE; ++i) {
int res = get_current_char(&ch);
if (res < 0) {
break;
}
++length;
code[i] = (wchar_t) ch;
}
if (length == 0) {
return -1;
}
code[length] = L'\0';
for (size_t i = 0; Keys[i].key != 0; ++i) {
if (wcscmp(code, Keys[i].code) == 0) {
return Keys[i].key;
}
}
return -1;
}
void draw_active_window(Tox *m) void draw_active_window(Tox *m)
{ {
ToxWindow *a = windows[active_window_index]; ToxWindow *a = windows[active_window_index];
@ -579,51 +664,47 @@ void draw_active_window(Tox *m)
a->alert = WINDOW_ALERT_NONE; a->alert = WINDOW_ALERT_NONE;
pthread_mutex_unlock(&Winthread.lock); pthread_mutex_unlock(&Winthread.lock);
wint_t ch = 0;
draw_bar(); draw_bar();
touchwin(a->window); touchwin(a->window);
a->onDraw(a, m); a->onDraw(a, m);
wrefresh(a->window); wrefresh(a->window);
/* Handle input */ wint_t ch = 0;
bool ltr; int printable = get_current_char(&ch);
#ifdef HAVE_WIDECHAR
int status = wget_wch(stdscr, &ch);
if (status == ERR) { if (printable < 0) {
return; return;
} }
if (status == OK) { if (printable == 0 && (ch == user_settings->key_next_tab || ch == user_settings->key_prev_tab)) {
ltr = iswprint(ch);
} else { /* if (status == KEY_CODE_YES) */
ltr = false;
}
#else
ch = getch();
if (ch == ERR) {
return;
}
/* TODO verify if this works */
ltr = isprint(ch);
#endif /* HAVE_WIDECHAR */
if (!ltr && (ch == user_settings->key_next_tab || ch == user_settings->key_prev_tab)) {
set_next_window((int) ch); set_next_window((int) ch);
} else { return;
} else if (printable == 0 && !a->is_friendlist) {
pthread_mutex_lock(&Winthread.lock); pthread_mutex_lock(&Winthread.lock);
a->onKey(a, m, ch, ltr); bool input_ret = a->onKey(a, m, ch, (bool) printable);
pthread_mutex_unlock(&Winthread.lock); pthread_mutex_unlock(&Winthread.lock);
if (input_ret) {
return;
}
// if an unprintable key code is unrecognized by input handler we attempt to manually decode char sequence
wint_t tmp = get_input_sequence_code();
if (tmp != (wint_t) -1) {
ch = tmp;
}
} }
pthread_mutex_lock(&Winthread.lock);
a->onKey(a, m, ch, (bool) printable);
pthread_mutex_unlock(&Winthread.lock);
} }
/* refresh inactive windows to prevent scrolling bugs. /* Refresh inactive windows to prevent scrolling bugs.
call at least once per second */ * Call at least once per second.
*/
void refresh_inactive_windows(void) void refresh_inactive_windows(void)
{ {
for (uint8_t i = 0; i < MAX_WINDOWS_NUM; ++i) { for (uint8_t i = 0; i < MAX_WINDOWS_NUM; ++i) {

View File

@ -113,7 +113,7 @@ typedef struct Help Help;
struct ToxWindow { struct ToxWindow {
/* ncurses */ /* ncurses */
void(*onKey)(ToxWindow *, Tox *, wint_t, bool); bool(*onKey)(ToxWindow *, Tox *, wint_t, bool);
void(*onDraw)(ToxWindow *, Tox *); void(*onDraw)(ToxWindow *, Tox *);
void(*onInit)(ToxWindow *, Tox *); void(*onInit)(ToxWindow *, Tox *);