2008-09-09 17:35:04 +00:00
|
|
|
/* $Id: input.c,v 1.57 2008-09-09 17:35:04 nicm Exp $ */
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2007-09-28 22:47:22 +00:00
|
|
|
#include <stdlib.h>
|
2007-09-28 22:54:21 +00:00
|
|
|
#include <string.h>
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
2007-10-10 19:45:20 +00:00
|
|
|
#define INPUT_C0CONTROL(ch) (ch <= 0x1f)
|
|
|
|
#define INPUT_INTERMEDIATE(ch) (ch == 0xa0 || (ch >= 0x20 && ch <= 0x2f))
|
|
|
|
#define INPUT_PARAMETER(ch) (ch >= 0x30 && ch <= 0x3f)
|
|
|
|
#define INPUT_UPPERCASE(ch) (ch >= 0x40 && ch <= 0x5f)
|
|
|
|
#define INPUT_LOWERCASE(ch) (ch >= 0x60 && ch <= 0x7e)
|
|
|
|
#define INPUT_DELETE(ch) (ch == 0x7f)
|
|
|
|
#define INPUT_C1CONTROL(ch) (ch >= 0x80 && ch <= 0x9f)
|
|
|
|
#define INPUT_G1DISPLAYABLE(ch) (ch >= 0xa1 && ch <= 0xfe)
|
|
|
|
#define INPUT_SPECIAL(ch) (ch == 0xff)
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
int input_get_argument(struct input_ctx *, u_int, uint16_t *, uint16_t);
|
2007-09-29 14:25:49 +00:00
|
|
|
int input_new_argument(struct input_ctx *);
|
2007-11-27 19:23:34 +00:00
|
|
|
int input_add_argument(struct input_ctx *, u_char);
|
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
void input_start_string(struct input_ctx *, int);
|
|
|
|
void input_abort_string(struct input_ctx *);
|
|
|
|
int input_add_string(struct input_ctx *, u_char);
|
|
|
|
char *input_get_string(struct input_ctx *);
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
void input_state(struct input_ctx *, void *);
|
|
|
|
|
|
|
|
void input_state_first(u_char, struct input_ctx *);
|
|
|
|
void input_state_escape(u_char, struct input_ctx *);
|
|
|
|
void input_state_intermediate(u_char, struct input_ctx *);
|
|
|
|
void input_state_title_first(u_char, struct input_ctx *);
|
|
|
|
void input_state_title_second(u_char, struct input_ctx *);
|
|
|
|
void input_state_title_next(u_char, struct input_ctx *);
|
|
|
|
void input_state_sequence_first(u_char, struct input_ctx *);
|
|
|
|
void input_state_sequence_next(u_char, struct input_ctx *);
|
|
|
|
void input_state_sequence_intermediate(u_char, struct input_ctx *);
|
|
|
|
void input_state_string_next(u_char, struct input_ctx *);
|
|
|
|
void input_state_string_escape(u_char, struct input_ctx *);
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
void input_handle_character(u_char, struct input_ctx *);
|
|
|
|
void input_handle_c0_control(u_char, struct input_ctx *);
|
|
|
|
void input_handle_c1_control(u_char, struct input_ctx *);
|
|
|
|
void input_handle_private_two(u_char, struct input_ctx *);
|
|
|
|
void input_handle_standard_two(u_char, struct input_ctx *);
|
|
|
|
void input_handle_sequence(u_char, struct input_ctx *);
|
|
|
|
|
|
|
|
void input_handle_sequence_cuu(struct input_ctx *);
|
|
|
|
void input_handle_sequence_cud(struct input_ctx *);
|
|
|
|
void input_handle_sequence_cuf(struct input_ctx *);
|
|
|
|
void input_handle_sequence_cub(struct input_ctx *);
|
|
|
|
void input_handle_sequence_dch(struct input_ctx *);
|
|
|
|
void input_handle_sequence_dl(struct input_ctx *);
|
|
|
|
void input_handle_sequence_ich(struct input_ctx *);
|
|
|
|
void input_handle_sequence_il(struct input_ctx *);
|
|
|
|
void input_handle_sequence_vpa(struct input_ctx *);
|
|
|
|
void input_handle_sequence_hpa(struct input_ctx *);
|
|
|
|
void input_handle_sequence_cup(struct input_ctx *);
|
|
|
|
void input_handle_sequence_cup(struct input_ctx *);
|
|
|
|
void input_handle_sequence_ed(struct input_ctx *);
|
|
|
|
void input_handle_sequence_el(struct input_ctx *);
|
|
|
|
void input_handle_sequence_sm(struct input_ctx *);
|
|
|
|
void input_handle_sequence_rm(struct input_ctx *);
|
|
|
|
void input_handle_sequence_decstbm(struct input_ctx *);
|
|
|
|
void input_handle_sequence_sgr(struct input_ctx *);
|
2007-10-24 15:29:29 +00:00
|
|
|
void input_handle_sequence_dsr(struct input_ctx *);
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-09-29 14:25:49 +00:00
|
|
|
int
|
|
|
|
input_new_argument(struct input_ctx *ictx)
|
|
|
|
{
|
|
|
|
struct input_arg *arg;
|
|
|
|
|
|
|
|
ARRAY_EXPAND(&ictx->args, 1);
|
|
|
|
|
|
|
|
arg = &ARRAY_LAST(&ictx->args);
|
|
|
|
arg->used = 0;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
input_add_argument(struct input_ctx *ictx, u_char ch)
|
|
|
|
{
|
|
|
|
struct input_arg *arg;
|
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) == 0)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
arg = &ARRAY_LAST(&ictx->args);
|
|
|
|
if (arg->used > (sizeof arg->data) - 1)
|
|
|
|
return (-1);
|
|
|
|
arg->data[arg->used++] = ch;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
int
|
|
|
|
input_get_argument(struct input_ctx *ictx, u_int i, uint16_t *n, uint16_t d)
|
|
|
|
{
|
|
|
|
struct input_arg *arg;
|
|
|
|
const char *errstr;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
*n = d;
|
|
|
|
if (i >= ARRAY_LENGTH(&ictx->args))
|
|
|
|
return (0);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
arg = &ARRAY_ITEM(&ictx->args, i);
|
2007-09-29 14:25:49 +00:00
|
|
|
if (*arg->data == '\0')
|
2007-09-28 22:47:22 +00:00
|
|
|
return (0);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-29 14:25:49 +00:00
|
|
|
*n = strtonum(arg->data, 0, UINT16_MAX, &errstr);
|
2007-09-28 22:47:22 +00:00
|
|
|
if (errstr != NULL)
|
|
|
|
return (-1);
|
2007-07-09 19:04:12 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
void
|
|
|
|
input_start_string(struct input_ctx *ictx, int type)
|
|
|
|
{
|
|
|
|
ictx->string_type = type;
|
|
|
|
ictx->string_len = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_abort_string(struct input_ctx *ictx)
|
|
|
|
{
|
2008-06-18 19:06:51 +00:00
|
|
|
if (ictx->string_buf != NULL)
|
|
|
|
xfree(ictx->string_buf);
|
2007-11-30 11:08:35 +00:00
|
|
|
ictx->string_buf = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
input_add_string(struct input_ctx *ictx, u_char ch)
|
|
|
|
{
|
|
|
|
ictx->string_buf = xrealloc(ictx->string_buf, 1, ictx->string_len + 1);
|
|
|
|
ictx->string_buf[ictx->string_len++] = ch;
|
|
|
|
|
|
|
|
if (ictx->string_len >= MAXSTRINGLEN) {
|
|
|
|
input_abort_string(ictx);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
input_get_string(struct input_ctx *ictx)
|
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
if (ictx->string_buf == NULL)
|
|
|
|
return (xstrdup(""));
|
|
|
|
|
|
|
|
input_add_string(ictx, '\0');
|
|
|
|
s = ictx->string_buf;
|
|
|
|
ictx->string_buf = NULL;
|
|
|
|
return (s);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_state(struct input_ctx *ictx, void *state)
|
|
|
|
{
|
|
|
|
ictx->state = state;
|
|
|
|
}
|
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
void
|
2007-10-24 15:29:29 +00:00
|
|
|
input_init(struct window *w)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2007-10-24 15:29:29 +00:00
|
|
|
ARRAY_INIT(&w->ictx.args);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
w->ictx.string_len = 0;
|
|
|
|
w->ictx.string_buf = NULL;
|
|
|
|
|
|
|
|
input_state(&w->ictx, input_state_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-10-24 15:29:29 +00:00
|
|
|
input_free(struct window *w)
|
2007-09-28 22:47:22 +00:00
|
|
|
{
|
2007-11-30 11:08:35 +00:00
|
|
|
if (w->ictx.string_buf != NULL)
|
|
|
|
xfree(w->ictx.string_buf);
|
|
|
|
|
2007-10-24 15:29:29 +00:00
|
|
|
ARRAY_FREE(&w->ictx.args);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2007-09-29 09:15:49 +00:00
|
|
|
void
|
2007-11-27 19:23:34 +00:00
|
|
|
input_parse(struct window *w)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2007-10-24 15:29:29 +00:00
|
|
|
struct input_ctx *ictx = &w->ictx;
|
|
|
|
u_char ch;
|
|
|
|
|
|
|
|
if (BUFFER_USED(w->in) == 0)
|
|
|
|
return;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-10-24 15:29:29 +00:00
|
|
|
ictx->buf = BUFFER_OUT(w->in);
|
|
|
|
ictx->len = BUFFER_USED(w->in);
|
2007-09-28 22:47:22 +00:00
|
|
|
ictx->off = 0;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-10-24 15:29:29 +00:00
|
|
|
ictx->w = w;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
log_debug2("entry; buffer=%zu", ictx->len);
|
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
if (w->mode == NULL)
|
|
|
|
screen_write_start(&ictx->ctx, &w->base, tty_write_window, w);
|
|
|
|
else
|
|
|
|
screen_write_start(&ictx->ctx, &w->base, NULL, NULL);
|
|
|
|
|
2008-06-04 19:20:10 +00:00
|
|
|
if (ictx->off != ictx->len)
|
|
|
|
w->flags |= WINDOW_ACTIVITY;
|
2007-09-28 22:47:22 +00:00
|
|
|
while (ictx->off < ictx->len) {
|
|
|
|
ch = ictx->buf[ictx->off++];
|
2007-11-30 11:08:35 +00:00
|
|
|
ictx->state(ch, ictx);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2007-10-24 15:29:29 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_stop(&ictx->ctx);
|
|
|
|
|
2007-10-24 15:29:29 +00:00
|
|
|
buffer_remove(w->in, ictx->len);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
void
|
2007-10-10 19:45:20 +00:00
|
|
|
input_state_first(u_char ch, struct input_ctx *ictx)
|
2007-09-28 22:47:22 +00:00
|
|
|
{
|
2007-10-10 19:45:20 +00:00
|
|
|
if (INPUT_C0CONTROL(ch)) {
|
2007-09-28 22:47:22 +00:00
|
|
|
if (ch == 0x1b)
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_escape);
|
2007-12-06 09:46:23 +00:00
|
|
|
else
|
2007-11-30 11:08:35 +00:00
|
|
|
input_handle_c0_control(ch, ictx);
|
|
|
|
return;
|
2007-10-10 19:45:20 +00:00
|
|
|
}
|
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
if (INPUT_C1CONTROL(ch)) {
|
2007-09-28 22:47:22 +00:00
|
|
|
ch -= 0x40;
|
|
|
|
if (ch == '[')
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_sequence_first);
|
|
|
|
else if (ch == ']')
|
|
|
|
input_state(ictx, input_state_title_first);
|
|
|
|
else
|
|
|
|
input_handle_c1_control(ch, ictx);
|
|
|
|
return;
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2007-10-10 19:45:20 +00:00
|
|
|
input_handle_character(ch, ictx);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
void
|
2007-10-10 19:45:20 +00:00
|
|
|
input_state_escape(u_char ch, struct input_ctx *ictx)
|
2007-09-28 22:47:22 +00:00
|
|
|
{
|
2007-10-10 19:45:20 +00:00
|
|
|
/* Treat C1 control and G1 displayable as 7-bit equivalent. */
|
|
|
|
if (INPUT_C1CONTROL(ch) || INPUT_G1DISPLAYABLE(ch))
|
2007-09-28 22:47:22 +00:00
|
|
|
ch &= 0x7f;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-10-10 19:45:20 +00:00
|
|
|
if (INPUT_C0CONTROL(ch)) {
|
2007-09-28 22:47:22 +00:00
|
|
|
input_handle_c0_control(ch, ictx);
|
2007-11-30 11:08:35 +00:00
|
|
|
return;
|
2007-10-10 19:45:20 +00:00
|
|
|
}
|
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
if (INPUT_INTERMEDIATE(ch)) {
|
|
|
|
input_state(ictx, input_state_intermediate);
|
|
|
|
return;
|
|
|
|
}
|
2007-10-10 19:45:20 +00:00
|
|
|
|
|
|
|
if (INPUT_PARAMETER(ch)) {
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
input_handle_private_two(ch, ictx);
|
2007-11-30 11:08:35 +00:00
|
|
|
return;
|
2007-10-10 19:45:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (INPUT_UPPERCASE(ch)) {
|
2007-09-28 22:47:22 +00:00
|
|
|
if (ch == '[')
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_sequence_first);
|
|
|
|
else if (ch == ']')
|
|
|
|
input_state(ictx, input_state_title_first);
|
|
|
|
else {
|
|
|
|
input_state(ictx, input_state_first);
|
|
|
|
input_handle_c1_control(ch, ictx);
|
|
|
|
}
|
|
|
|
return;
|
2007-10-10 19:45:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (INPUT_LOWERCASE(ch)) {
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
input_handle_standard_two(ch, ictx);
|
2007-11-30 11:08:35 +00:00
|
|
|
return;
|
2007-10-10 19:45:20 +00:00
|
|
|
}
|
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
void
|
2007-10-10 19:45:20 +00:00
|
|
|
input_state_title_first(u_char ch, struct input_ctx *ictx)
|
2007-10-01 17:37:41 +00:00
|
|
|
{
|
|
|
|
if (ch >= '0' && ch <= '9') {
|
2007-11-30 11:08:35 +00:00
|
|
|
if (ch == '0')
|
|
|
|
input_start_string(ictx, STRING_TITLE);
|
|
|
|
else
|
|
|
|
input_start_string(ictx, STRING_IGNORE);
|
|
|
|
input_state(ictx, input_state_title_second);
|
|
|
|
return;
|
2007-12-06 09:46:23 +00:00
|
|
|
}
|
2007-10-10 19:45:20 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
2007-10-01 17:37:41 +00:00
|
|
|
}
|
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
void
|
2007-10-10 19:45:20 +00:00
|
|
|
input_state_title_second(u_char ch, struct input_ctx *ictx)
|
2007-10-01 17:37:41 +00:00
|
|
|
{
|
|
|
|
if (ch == ';') {
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_title_next);
|
|
|
|
return;
|
2007-10-01 17:37:41 +00:00
|
|
|
}
|
2007-10-10 19:45:20 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
2007-10-01 17:37:41 +00:00
|
|
|
}
|
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
void
|
2007-10-10 19:45:20 +00:00
|
|
|
input_state_title_next(u_char ch, struct input_ctx *ictx)
|
2007-10-01 17:37:41 +00:00
|
|
|
{
|
|
|
|
if (ch == '\007') {
|
2007-11-30 11:08:35 +00:00
|
|
|
if (ictx->string_type == STRING_TITLE) {
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_set_title(
|
|
|
|
&ictx->ctx, input_get_string(ictx));
|
2007-11-30 11:08:35 +00:00
|
|
|
} else
|
|
|
|
input_abort_string(ictx);
|
|
|
|
input_state(ictx, input_state_first);
|
|
|
|
return;
|
2007-10-10 19:45:20 +00:00
|
|
|
}
|
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
if (ch >= 0x20 && ch != 0x7f) {
|
|
|
|
if (input_add_string(ictx, ch) != 0)
|
|
|
|
input_state(ictx, input_state_first);
|
|
|
|
return;
|
2007-10-01 17:37:41 +00:00
|
|
|
}
|
2007-10-10 19:45:20 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
2007-10-01 17:37:41 +00:00
|
|
|
}
|
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
void
|
2007-10-10 19:45:20 +00:00
|
|
|
input_state_intermediate(u_char ch, struct input_ctx *ictx)
|
2007-09-28 22:47:22 +00:00
|
|
|
{
|
2007-10-10 19:45:20 +00:00
|
|
|
if (INPUT_INTERMEDIATE(ch))
|
2007-11-30 11:08:35 +00:00
|
|
|
return;
|
2007-10-10 19:45:20 +00:00
|
|
|
|
|
|
|
if (INPUT_PARAMETER(ch)) {
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
input_handle_private_two(ch, ictx);
|
2007-11-30 11:08:35 +00:00
|
|
|
return;
|
2007-10-10 19:45:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (INPUT_UPPERCASE(ch) || INPUT_LOWERCASE(ch)) {
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
input_handle_standard_two(ch, ictx);
|
2007-11-30 11:08:35 +00:00
|
|
|
return;
|
2007-10-10 19:45:20 +00:00
|
|
|
}
|
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
void
|
2007-10-10 19:45:20 +00:00
|
|
|
input_state_sequence_first(u_char ch, struct input_ctx *ictx)
|
2007-09-28 22:47:22 +00:00
|
|
|
{
|
|
|
|
ictx->private = '\0';
|
2007-09-29 14:25:49 +00:00
|
|
|
ARRAY_CLEAR(&ictx->args);
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_sequence_next);
|
|
|
|
|
2007-10-10 19:45:20 +00:00
|
|
|
if (INPUT_PARAMETER(ch)) {
|
2007-11-30 11:08:35 +00:00
|
|
|
input_new_argument(ictx);
|
2007-09-28 22:47:22 +00:00
|
|
|
if (ch >= 0x3c && ch <= 0x3f) {
|
|
|
|
/* Private control sequence. */
|
|
|
|
ictx->private = ch;
|
2007-11-30 11:08:35 +00:00
|
|
|
return;
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2007-11-30 11:08:35 +00:00
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-29 14:25:49 +00:00
|
|
|
/* Pass character on directly. */
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state_sequence_next(ch, ictx);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
void
|
2007-10-10 19:45:20 +00:00
|
|
|
input_state_sequence_next(u_char ch, struct input_ctx *ictx)
|
2007-09-28 22:47:22 +00:00
|
|
|
{
|
2007-10-10 19:45:20 +00:00
|
|
|
if (INPUT_INTERMEDIATE(ch)) {
|
2007-09-29 14:25:49 +00:00
|
|
|
if (input_add_argument(ictx, '\0') != 0)
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
|
|
|
else
|
|
|
|
input_state(ictx, input_state_sequence_intermediate);
|
|
|
|
return;
|
2007-10-10 19:45:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (INPUT_PARAMETER(ch)) {
|
2007-09-28 22:47:22 +00:00
|
|
|
if (ch == ';') {
|
2007-09-29 14:25:49 +00:00
|
|
|
if (input_add_argument(ictx, '\0') != 0)
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
|
|
|
else
|
|
|
|
input_new_argument(ictx);
|
|
|
|
} else if (input_add_argument(ictx, ch) != 0)
|
|
|
|
input_state(ictx, input_state_first);
|
|
|
|
return;
|
2007-10-10 19:45:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (INPUT_UPPERCASE(ch) || INPUT_LOWERCASE(ch)) {
|
2007-09-29 14:25:49 +00:00
|
|
|
if (input_add_argument(ictx, '\0') != 0)
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
|
|
|
else {
|
|
|
|
input_state(ictx, input_state_first);
|
|
|
|
input_handle_sequence(ch, ictx);
|
|
|
|
}
|
|
|
|
return;
|
2007-10-10 19:45:20 +00:00
|
|
|
}
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
void
|
2007-10-10 19:45:20 +00:00
|
|
|
input_state_sequence_intermediate(u_char ch, struct input_ctx *ictx)
|
2007-09-28 22:47:22 +00:00
|
|
|
{
|
2008-09-08 20:51:19 +00:00
|
|
|
if (INPUT_INTERMEDIATE(ch)) {
|
|
|
|
log_debug2(":: in %zu: %hhu (%c)", ictx->off, ch, ch);
|
2007-11-30 11:08:35 +00:00
|
|
|
return;
|
2008-09-08 20:51:19 +00:00
|
|
|
}
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2007-10-10 19:45:20 +00:00
|
|
|
if (INPUT_UPPERCASE(ch) || INPUT_LOWERCASE(ch)) {
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
input_handle_sequence(ch, ictx);
|
2007-11-30 11:08:35 +00:00
|
|
|
return;
|
2007-10-10 19:45:20 +00:00
|
|
|
}
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
input_state(ictx, input_state_first);
|
|
|
|
}
|
2007-10-10 19:45:20 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
void
|
|
|
|
input_state_string_next(u_char ch, struct input_ctx *ictx)
|
|
|
|
{
|
|
|
|
if (ch == 0x1b) {
|
|
|
|
input_state(ictx, input_state_string_escape);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch >= 0x20 && ch != 0x7f) {
|
|
|
|
if (input_add_string(ictx, ch) != 0)
|
|
|
|
input_state(ictx, input_state_first);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_state_string_escape(u_char ch, struct input_ctx *ictx)
|
|
|
|
{
|
|
|
|
if (ch == '\\') {
|
|
|
|
input_state(ictx, input_state_first);
|
|
|
|
switch (ictx->string_type) {
|
|
|
|
case STRING_NAME:
|
|
|
|
xfree(ictx->w->name);
|
|
|
|
ictx->w->name = input_get_string(ictx);
|
|
|
|
server_status_window(ictx->w);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
input_state(ictx, input_state_string_next);
|
|
|
|
input_state_string_next(ch, ictx);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
void
|
|
|
|
input_handle_character(u_char ch, struct input_ctx *ictx)
|
|
|
|
{
|
|
|
|
log_debug2("-- ch %zu: %hhu (%c)", ictx->off, ch, ch);
|
2007-10-05 17:51:56 +00:00
|
|
|
|
2008-06-04 19:20:10 +00:00
|
|
|
screen_write_put_character(&ictx->ctx, ch);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
void
|
|
|
|
input_handle_c0_control(u_char ch, struct input_ctx *ictx)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen *s = ictx->ctx.s;
|
2008-09-08 22:03:56 +00:00
|
|
|
u_short attr;
|
2007-10-24 15:40:59 +00:00
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
log_debug2("-- c0 %zu: %hhu", ictx->off, ch);
|
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
switch (ch) {
|
|
|
|
case '\0': /* NUL */
|
2007-12-06 09:46:23 +00:00
|
|
|
break;
|
2007-07-09 19:04:12 +00:00
|
|
|
case '\n': /* LF */
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_cursor_down_scroll(&ictx->ctx);
|
2007-09-28 22:47:22 +00:00
|
|
|
break;
|
2007-07-09 19:04:12 +00:00
|
|
|
case '\r': /* CR */
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_move_cursor(&ictx->ctx, 0, s->cy);
|
2007-09-28 22:47:22 +00:00
|
|
|
break;
|
2007-09-29 09:15:49 +00:00
|
|
|
case '\007': /* BELL */
|
2007-10-24 15:29:29 +00:00
|
|
|
ictx->w->flags |= WINDOW_BELL;
|
2007-12-06 09:46:23 +00:00
|
|
|
break;
|
2007-07-09 19:04:12 +00:00
|
|
|
case '\010': /* BS */
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_cursor_left(&ictx->ctx, 1);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-11-09 17:06:01 +00:00
|
|
|
case '\011': /* TAB */
|
|
|
|
s->cx = ((s->cx / 8) * 8) + 8;
|
2007-11-20 21:42:29 +00:00
|
|
|
if (s->cx > screen_last_x(s)) {
|
2007-11-09 17:06:01 +00:00
|
|
|
s->cx = 0;
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_cursor_down(&ictx->ctx, 1);
|
2007-11-09 17:06:01 +00:00
|
|
|
}
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_move_cursor(&ictx->ctx, s->cx, s->cy);
|
|
|
|
break;
|
2007-11-24 23:29:49 +00:00
|
|
|
case '\016': /* SO */
|
2007-12-06 13:54:33 +00:00
|
|
|
attr = s->attr | ATTR_CHARSET;
|
2008-09-08 17:40:51 +00:00
|
|
|
screen_write_set_attributes(&ictx->ctx, attr, s->fg, s->bg);
|
2007-12-06 09:46:23 +00:00
|
|
|
break;
|
2007-11-24 23:29:49 +00:00
|
|
|
case '\017': /* SI */
|
2007-12-06 13:54:33 +00:00
|
|
|
attr = s->attr & ~ATTR_CHARSET;
|
2008-09-08 17:40:51 +00:00
|
|
|
screen_write_set_attributes(&ictx->ctx, attr, s->fg, s->bg);
|
2007-12-06 09:46:23 +00:00
|
|
|
break;
|
2007-07-09 19:04:12 +00:00
|
|
|
default:
|
2007-09-28 22:47:22 +00:00
|
|
|
log_debug("unknown c0: %hhu", ch);
|
2007-12-06 09:46:23 +00:00
|
|
|
break;
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
void
|
|
|
|
input_handle_c1_control(u_char ch, struct input_ctx *ictx)
|
|
|
|
{
|
|
|
|
log_debug2("-- c1 %zu: %hhu (%c)", ictx->off, ch, ch);
|
|
|
|
|
|
|
|
switch (ch) {
|
|
|
|
case 'M': /* RI */
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_cursor_up_scroll(&ictx->ctx);
|
2007-09-28 22:47:22 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
log_debug("unknown c1: %hhu", ch);
|
|
|
|
break;
|
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
void
|
|
|
|
input_handle_private_two(u_char ch, struct input_ctx *ictx)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen *s = ictx->ctx.s;
|
2007-10-24 15:40:59 +00:00
|
|
|
|
2007-09-29 14:25:49 +00:00
|
|
|
log_debug2("-- p2 %zu: %hhu (%c)", ictx->off, ch, ch);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
switch (ch) {
|
|
|
|
case '=': /* DECKPAM */
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_set_mode(&ictx->ctx, MODE_KKEYPAD);
|
2008-07-23 23:44:50 +00:00
|
|
|
log_debug("kkeypad on (application mode)");
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2008-07-23 23:44:50 +00:00
|
|
|
case '>': /* DECKPNM */
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_clear_mode(&ictx->ctx, MODE_KKEYPAD);
|
2008-07-23 23:44:50 +00:00
|
|
|
log_debug("kkeypad off (number mode)");
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-10-24 15:01:25 +00:00
|
|
|
case '7': /* DECSC */
|
2007-10-24 15:40:59 +00:00
|
|
|
s->saved_cx = s->cx;
|
|
|
|
s->saved_cy = s->cy;
|
|
|
|
s->saved_attr = s->attr;
|
2008-09-08 17:40:51 +00:00
|
|
|
s->saved_fg = s->fg;
|
|
|
|
s->saved_bg = s->bg;
|
2007-10-24 15:40:59 +00:00
|
|
|
s->mode |= MODE_SAVED;
|
2007-10-24 15:01:25 +00:00
|
|
|
break;
|
|
|
|
case '8': /* DECRC */
|
2007-10-24 15:40:59 +00:00
|
|
|
if (!(s->mode & MODE_SAVED))
|
2007-10-24 15:01:25 +00:00
|
|
|
break;
|
2007-12-06 13:54:33 +00:00
|
|
|
screen_write_set_attributes(
|
2008-09-08 17:40:51 +00:00
|
|
|
&ictx->ctx, s->saved_attr, s->saved_fg, s->saved_bg);
|
2007-12-06 13:54:33 +00:00
|
|
|
screen_write_move_cursor(&ictx->ctx, s->saved_cx, s->saved_cy);
|
2007-10-24 15:01:25 +00:00
|
|
|
break;
|
2007-07-09 19:04:12 +00:00
|
|
|
default:
|
2007-09-28 22:47:22 +00:00
|
|
|
log_debug("unknown p2: %hhu", ch);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
void
|
|
|
|
input_handle_standard_two(u_char ch, struct input_ctx *ictx)
|
|
|
|
{
|
2007-09-29 14:25:49 +00:00
|
|
|
log_debug2("-- s2 %zu: %hhu (%c)", ictx->off, ch, ch);
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-11-30 11:08:35 +00:00
|
|
|
switch (ch) {
|
|
|
|
case 'k':
|
|
|
|
input_start_string(ictx, STRING_NAME);
|
|
|
|
input_state(ictx, input_state_string_next);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
log_debug("unknown s2: %hhu", ch);
|
|
|
|
break;
|
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
void
|
|
|
|
input_handle_sequence(u_char ch, struct input_ctx *ictx)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2007-09-28 22:47:22 +00:00
|
|
|
static const struct {
|
|
|
|
u_char ch;
|
|
|
|
void (*fn)(struct input_ctx *);
|
|
|
|
} table[] = {
|
2007-09-30 13:29:28 +00:00
|
|
|
{ '@', input_handle_sequence_ich },
|
2007-09-28 22:47:22 +00:00
|
|
|
{ 'A', input_handle_sequence_cuu },
|
|
|
|
{ 'B', input_handle_sequence_cud },
|
|
|
|
{ 'C', input_handle_sequence_cuf },
|
|
|
|
{ 'D', input_handle_sequence_cub },
|
|
|
|
{ 'G', input_handle_sequence_hpa },
|
|
|
|
{ 'H', input_handle_sequence_cup },
|
|
|
|
{ 'J', input_handle_sequence_ed },
|
|
|
|
{ 'K', input_handle_sequence_el },
|
2007-09-30 13:29:28 +00:00
|
|
|
{ 'L', input_handle_sequence_il },
|
|
|
|
{ 'M', input_handle_sequence_dl },
|
|
|
|
{ 'P', input_handle_sequence_dch },
|
|
|
|
{ 'd', input_handle_sequence_vpa },
|
|
|
|
{ 'f', input_handle_sequence_cup },
|
2007-09-28 22:47:22 +00:00
|
|
|
{ 'h', input_handle_sequence_sm },
|
|
|
|
{ 'l', input_handle_sequence_rm },
|
|
|
|
{ 'm', input_handle_sequence_sgr },
|
2007-10-24 15:29:29 +00:00
|
|
|
{ 'n', input_handle_sequence_dsr },
|
2007-09-30 13:29:28 +00:00
|
|
|
{ 'r', input_handle_sequence_decstbm },
|
2007-09-28 22:47:22 +00:00
|
|
|
};
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen *s = ictx->ctx.s;
|
2007-10-24 15:40:59 +00:00
|
|
|
u_int i;
|
2007-09-28 22:47:22 +00:00
|
|
|
struct input_arg *iarg;
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2007-11-23 22:51:13 +00:00
|
|
|
log_debug2("-- sq %zu: %hhu (%c): %u [sx=%u, sy=%u, cx=%u, cy=%u, "
|
|
|
|
"ru=%u, rl=%u]", ictx->off, ch, ch, ARRAY_LENGTH(&ictx->args),
|
|
|
|
screen_size_x(s), screen_size_y(s), s->cx, s->cy, s->rupper,
|
|
|
|
s->rlower);
|
2007-09-28 22:47:22 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&ictx->args); i++) {
|
|
|
|
iarg = &ARRAY_ITEM(&ictx->args, i);
|
2007-09-29 14:25:49 +00:00
|
|
|
if (*iarg->data != '\0')
|
|
|
|
log_debug2(" ++ %u: %s", i, iarg->data);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
/* XXX bsearch? */
|
|
|
|
for (i = 0; i < (sizeof table / sizeof table[0]); i++) {
|
|
|
|
if (table[i].ch == ch) {
|
|
|
|
table[i].fn(ictx);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
log_debug("unknown sq: %c (%hhu %hhu)", ch, ch, ictx->private);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
void
|
|
|
|
input_handle_sequence_cuu(struct input_ctx *ictx)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
uint16_t n;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
if (ictx->private != '\0')
|
|
|
|
return;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 1) != 0)
|
|
|
|
return;
|
2007-12-06 09:46:23 +00:00
|
|
|
if (n == 0)
|
|
|
|
n = 1;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_cursor_up(&ictx->ctx, n);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
void
|
|
|
|
input_handle_sequence_cud(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
uint16_t n;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
if (ictx->private != '\0')
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 1) != 0)
|
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
if (n == 0)
|
2007-12-06 09:46:23 +00:00
|
|
|
n = 1;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_cursor_down(&ictx->ctx, n);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
void
|
|
|
|
input_handle_sequence_cuf(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
uint16_t n;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
if (ictx->private != '\0')
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 1) != 0)
|
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
if (n == 0)
|
2007-12-06 09:46:23 +00:00
|
|
|
n = 1;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_cursor_right(&ictx->ctx, n);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_cub(struct input_ctx *ictx)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
uint16_t n;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
if (ictx->private != '\0')
|
|
|
|
return;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 1) != 0)
|
|
|
|
return;
|
2007-12-06 09:46:23 +00:00
|
|
|
if (n == 0)
|
|
|
|
n = 1;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_cursor_left(&ictx->ctx, n);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
void
|
|
|
|
input_handle_sequence_dch(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
uint16_t n;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
if (ictx->private != '\0')
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 1) != 0)
|
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
if (n == 0)
|
2007-12-06 09:46:23 +00:00
|
|
|
n = 1;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_delete_characters(&ictx->ctx, n);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_dl(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
uint16_t n;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
if (ictx->private != '\0')
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 1) != 0)
|
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
if (n == 0)
|
2007-12-06 09:46:23 +00:00
|
|
|
n = 1;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_delete_lines(&ictx->ctx, n);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_ich(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
uint16_t n;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
if (ictx->private != '\0')
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 1) != 0)
|
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
if (n == 0)
|
2007-12-06 09:46:23 +00:00
|
|
|
n = 1;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_insert_characters(&ictx->ctx, n);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_il(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
uint16_t n;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
if (ictx->private != '\0')
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 1) != 0)
|
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
if (n == 0)
|
2007-12-06 09:46:23 +00:00
|
|
|
n = 1;
|
2007-11-20 21:42:29 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_insert_lines(&ictx->ctx, n);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_vpa(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen *s = ictx->ctx.s;
|
|
|
|
uint16_t n;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
if (ictx->private != '\0')
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 1) != 0)
|
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
if (n == 0)
|
2007-12-06 09:46:23 +00:00
|
|
|
n = 1;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_move_cursor(&ictx->ctx, s->cx, n - 1);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_hpa(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen *s = ictx->ctx.s;
|
|
|
|
uint16_t n;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
if (ictx->private != '\0')
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 1) != 0)
|
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
if (n == 0)
|
2007-12-06 09:46:23 +00:00
|
|
|
n = 1;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_move_cursor(&ictx->ctx, n - 1, s->cy);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_cup(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
uint16_t n, m;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
if (ictx->private != '\0')
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 2)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 1) != 0)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 1, &m, 1) != 0)
|
|
|
|
return;
|
2007-12-06 09:46:23 +00:00
|
|
|
if (n == 0)
|
|
|
|
n = 1;
|
|
|
|
if (m == 0)
|
|
|
|
m = 1;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_move_cursor(&ictx->ctx, m - 1, n - 1);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_ed(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
uint16_t n;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
if (ictx->private != '\0')
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 0) != 0)
|
|
|
|
return;
|
|
|
|
if (n > 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (n) {
|
|
|
|
case 0:
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_fill_end_of_screen(&ictx->ctx);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 2:
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_fill_screen(&ictx->ctx);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_el(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
uint16_t n;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
if (ictx->private != '\0')
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 0) != 0)
|
|
|
|
return;
|
|
|
|
if (n > 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (n) {
|
|
|
|
case 0:
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_fill_end_of_line(&ictx->ctx);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 1:
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_fill_start_of_line(&ictx->ctx);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 2:
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_fill_line(&ictx->ctx);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_sm(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
uint16_t n;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 0) != 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ictx->private == '?') {
|
|
|
|
switch (n) {
|
|
|
|
case 1: /* GATM */
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_set_mode(&ictx->ctx, MODE_KCURSOR);
|
2008-01-03 21:32:11 +00:00
|
|
|
log_debug("kcursor on");
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 25: /* TCEM */
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_set_mode(&ictx->ctx, MODE_CURSOR);
|
2008-01-03 21:32:11 +00:00
|
|
|
log_debug("cursor on");
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-11-27 23:28:51 +00:00
|
|
|
case 1000:
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_set_mode(&ictx->ctx, MODE_MOUSE);
|
2008-01-03 21:32:11 +00:00
|
|
|
log_debug("mouse on");
|
2007-11-27 23:28:51 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
default:
|
|
|
|
log_debug("unknown SM [%hhu]: %u", ictx->private, n);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (n) {
|
|
|
|
case 4: /* IRM */
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_set_mode(&ictx->ctx, MODE_INSERT);
|
2008-01-03 21:32:11 +00:00
|
|
|
log_debug("insert on");
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 34:
|
|
|
|
/* Cursor high visibility not supported. */
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
default:
|
|
|
|
log_debug("unknown SM [%hhu]: %u", ictx->private, n);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_rm(struct input_ctx *ictx)
|
|
|
|
{
|
2007-10-24 15:40:59 +00:00
|
|
|
uint16_t n;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 0) != 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ictx->private == '?') {
|
|
|
|
switch (n) {
|
|
|
|
case 1: /* GATM */
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_clear_mode(&ictx->ctx, MODE_KCURSOR);
|
2008-01-03 21:32:11 +00:00
|
|
|
log_debug("kcursor off");
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 25: /* TCEM */
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_clear_mode(&ictx->ctx, MODE_CURSOR);
|
2008-01-03 21:32:11 +00:00
|
|
|
log_debug("cursor off");
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-11-27 23:28:51 +00:00
|
|
|
case 1000:
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_clear_mode(&ictx->ctx, MODE_MOUSE);
|
2008-01-03 21:32:11 +00:00
|
|
|
log_debug("mouse off");
|
2007-11-27 23:28:51 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
default:
|
|
|
|
log_debug("unknown RM [%hhu]: %u", ictx->private, n);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-09-28 22:47:22 +00:00
|
|
|
} else if (ictx->private == '\0') {
|
|
|
|
switch (n) {
|
|
|
|
case 4: /* IRM */
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_clear_mode(&ictx->ctx, MODE_INSERT);
|
2008-01-03 21:32:11 +00:00
|
|
|
log_debug("insert off");
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 34:
|
|
|
|
/* Cursor high visibility not supported. */
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
default:
|
|
|
|
log_debug("unknown RM [%hhu]: %u", ictx->private, n);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-24 15:29:29 +00:00
|
|
|
void
|
|
|
|
input_handle_sequence_dsr(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen *s = ictx->ctx.s;
|
|
|
|
uint16_t n;
|
|
|
|
char reply[32];
|
2007-10-24 15:29:29 +00:00
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 1)
|
|
|
|
return;
|
|
|
|
if (input_get_argument(ictx, 0, &n, 0) != 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ictx->private == '\0') {
|
|
|
|
switch (n) {
|
|
|
|
case 6: /* cursor position */
|
|
|
|
xsnprintf(reply, sizeof reply,
|
2007-10-24 15:40:59 +00:00
|
|
|
"\033[%u;%uR", s->cy + 1, s->cx + 1);
|
2007-10-24 15:29:29 +00:00
|
|
|
log_debug("cursor request, reply: %s", reply);
|
|
|
|
buffer_write(ictx->w->out, reply, strlen(reply));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
void
|
|
|
|
input_handle_sequence_decstbm(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen *s = ictx->ctx.s;
|
|
|
|
uint16_t n, m;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
if (ictx->private != '\0')
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ARRAY_LENGTH(&ictx->args) > 2)
|
|
|
|
return;
|
2007-10-24 15:01:25 +00:00
|
|
|
if (input_get_argument(ictx, 0, &n, 0) != 0)
|
2007-09-28 22:47:22 +00:00
|
|
|
return;
|
2007-10-24 15:01:25 +00:00
|
|
|
if (input_get_argument(ictx, 1, &m, 0) != 0)
|
2007-09-28 22:47:22 +00:00
|
|
|
return;
|
2007-12-06 09:46:23 +00:00
|
|
|
if (n == 0)
|
2007-10-24 15:01:25 +00:00
|
|
|
n = 1;
|
2007-12-06 09:46:23 +00:00
|
|
|
if (m == 0)
|
2007-11-20 21:42:29 +00:00
|
|
|
m = screen_size_y(s);
|
2007-10-24 15:01:25 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_set_region(&ictx->ctx, n - 1, m - 1);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_sgr(struct input_ctx *ictx)
|
|
|
|
{
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen *s = ictx->ctx.s;
|
|
|
|
u_int i, n;
|
2008-09-08 17:40:51 +00:00
|
|
|
uint16_t m, o;
|
2008-09-08 22:03:56 +00:00
|
|
|
u_short attr;
|
|
|
|
u_char fg, bg;
|
2008-09-08 17:40:51 +00:00
|
|
|
|
|
|
|
attr = s->attr;
|
|
|
|
fg = s->fg;
|
|
|
|
bg = s->bg;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
n = ARRAY_LENGTH(&ictx->args);
|
2008-09-09 17:35:04 +00:00
|
|
|
if (n == 0) {
|
2007-12-06 09:46:23 +00:00
|
|
|
attr = 0;
|
2008-09-08 17:40:51 +00:00
|
|
|
fg = 8;
|
|
|
|
bg = 8;
|
2008-09-09 17:35:04 +00:00
|
|
|
} else {
|
2007-09-28 22:47:22 +00:00
|
|
|
for (i = 0; i < n; i++) {
|
2007-10-01 14:18:42 +00:00
|
|
|
if (input_get_argument(ictx, i, &m, 0) != 0)
|
2007-09-28 22:47:22 +00:00
|
|
|
return;
|
2008-09-09 17:35:04 +00:00
|
|
|
|
|
|
|
if (m == 38 || m == 48) {
|
|
|
|
i++;
|
|
|
|
if (input_get_argument(ictx, i, &o, 0) != 0)
|
|
|
|
return;
|
|
|
|
if (o != 5)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
i++;
|
|
|
|
if (input_get_argument(ictx, i, &o, 0) != 0)
|
|
|
|
return;
|
|
|
|
if (m == 38) {
|
|
|
|
attr |= ATTR_FG256;
|
|
|
|
fg = o;
|
|
|
|
} else if (m == 48) {
|
|
|
|
attr |= ATTR_BG256;
|
|
|
|
bg = o;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
switch (m) {
|
|
|
|
case 0:
|
|
|
|
case 10:
|
2007-12-06 09:46:23 +00:00
|
|
|
attr &= ATTR_CHARSET;
|
2008-09-08 17:40:51 +00:00
|
|
|
fg = 8;
|
|
|
|
bg = 8;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 1:
|
2007-12-06 09:46:23 +00:00
|
|
|
attr |= ATTR_BRIGHT;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 2:
|
2007-12-06 09:46:23 +00:00
|
|
|
attr |= ATTR_DIM;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 3:
|
2007-12-06 09:46:23 +00:00
|
|
|
attr |= ATTR_ITALICS;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 4:
|
2007-12-06 09:46:23 +00:00
|
|
|
attr |= ATTR_UNDERSCORE;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 5:
|
2007-12-06 09:46:23 +00:00
|
|
|
attr |= ATTR_BLINK;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 7:
|
2007-12-06 09:46:23 +00:00
|
|
|
attr |= ATTR_REVERSE;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 8:
|
2007-12-06 09:46:23 +00:00
|
|
|
attr |= ATTR_HIDDEN;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 23:
|
2007-12-06 09:46:23 +00:00
|
|
|
attr &= ~ATTR_ITALICS;
|
2007-09-28 22:47:22 +00:00
|
|
|
break;
|
|
|
|
case 24:
|
2007-12-06 09:46:23 +00:00
|
|
|
attr &= ~ATTR_UNDERSCORE;
|
2007-09-28 22:47:22 +00:00
|
|
|
break;
|
|
|
|
case 30:
|
|
|
|
case 31:
|
|
|
|
case 32:
|
|
|
|
case 33:
|
2007-07-09 19:04:12 +00:00
|
|
|
case 34:
|
2007-09-28 22:47:22 +00:00
|
|
|
case 35:
|
|
|
|
case 36:
|
|
|
|
case 37:
|
2008-09-08 22:03:56 +00:00
|
|
|
attr &= ~ATTR_FG256;
|
2008-09-08 17:40:51 +00:00
|
|
|
fg = m - 30;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 39:
|
2008-09-08 22:03:56 +00:00
|
|
|
attr &= ~ATTR_FG256;
|
2008-09-08 17:40:51 +00:00
|
|
|
fg = 8;
|
2007-09-28 22:47:22 +00:00
|
|
|
break;
|
|
|
|
case 40:
|
|
|
|
case 41:
|
|
|
|
case 42:
|
|
|
|
case 43:
|
|
|
|
case 44:
|
|
|
|
case 45:
|
|
|
|
case 46:
|
2008-09-08 22:03:56 +00:00
|
|
|
case 47:
|
|
|
|
attr &= ~ATTR_BG256;
|
2008-09-08 17:40:51 +00:00
|
|
|
bg = m - 40;
|
2007-09-28 22:47:22 +00:00
|
|
|
break;
|
|
|
|
case 49:
|
2008-09-08 22:03:56 +00:00
|
|
|
attr &= ~ATTR_BG256;
|
2008-09-08 17:40:51 +00:00
|
|
|
bg = 8;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-09-08 17:40:51 +00:00
|
|
|
screen_write_set_attributes(&ictx->ctx, attr, fg, bg);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|