2007-11-27 23:28:51 +00:00
|
|
|
/* $Id: input.c,v 1.42 2007-11-27 23:28:51 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);
|
|
|
|
|
|
|
|
void input_write(struct input_ctx *, int, ...);
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-10-10 19:45:20 +00:00
|
|
|
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 *);
|
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-11-20 21:42:29 +00:00
|
|
|
#define input_limit(v, lower, upper) do { \
|
|
|
|
if (v < lower) \
|
|
|
|
v = lower; \
|
|
|
|
if (v > upper) \
|
|
|
|
v = upper; \
|
|
|
|
} while (0)
|
|
|
|
|
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-27 19:23:34 +00:00
|
|
|
void
|
|
|
|
input_write(struct input_ctx *ictx, int cmd, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
if (ictx->w->screen.mode & (MODE_HIDDEN|MODE_BACKGROUND))
|
|
|
|
return;
|
|
|
|
|
|
|
|
va_start(ap, cmd);
|
|
|
|
tty_vwrite_window(ictx->w, cmd, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
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-10-24 15:29:29 +00:00
|
|
|
w->ictx.state = 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-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);
|
|
|
|
|
|
|
|
while (ictx->off < ictx->len) {
|
|
|
|
ch = ictx->buf[ictx->off++];
|
2007-10-10 19:45:20 +00:00
|
|
|
ictx->state = ictx->state(ch, ictx);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
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-09-28 22:47:22 +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)
|
|
|
|
return (input_state_escape);
|
|
|
|
input_handle_c0_control(ch, ictx);
|
2007-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (INPUT_C1CONTROL(ch)) {
|
2007-09-28 22:47:22 +00:00
|
|
|
ch -= 0x40;
|
|
|
|
if (ch == '[')
|
|
|
|
return (input_state_sequence_first);
|
2007-10-01 17:37:41 +00:00
|
|
|
if (ch == ']')
|
|
|
|
return (input_state_title_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
input_handle_c1_control(ch, ictx);
|
2007-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
2007-10-10 19:45:20 +00:00
|
|
|
|
|
|
|
input_handle_character(ch, ictx);
|
2007-09-28 22:47:22 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
2007-10-10 19:45:20 +00:00
|
|
|
|
2007-09-28 22:47:22 +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);
|
|
|
|
return (input_state_escape);
|
2007-10-10 19:45:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (INPUT_INTERMEDIATE(ch))
|
2007-09-28 22:47:22 +00:00
|
|
|
return (input_state_intermediate);
|
2007-10-10 19:45:20 +00:00
|
|
|
|
|
|
|
if (INPUT_PARAMETER(ch)) {
|
2007-09-28 22:47:22 +00:00
|
|
|
input_handle_private_two(ch, ictx);
|
2007-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (INPUT_UPPERCASE(ch)) {
|
2007-09-28 22:47:22 +00:00
|
|
|
if (ch == '[')
|
|
|
|
return (input_state_sequence_first);
|
2007-10-01 17:37:41 +00:00
|
|
|
if (ch == ']')
|
|
|
|
return (input_state_title_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
input_handle_c1_control(ch, ictx);
|
2007-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (INPUT_LOWERCASE(ch)) {
|
2007-09-28 22:47:22 +00:00
|
|
|
input_handle_standard_two(ch, ictx);
|
2007-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-10-01 17:37:41 +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') {
|
|
|
|
ictx->title_type = ch - '0';
|
|
|
|
return (input_state_title_second);
|
|
|
|
}
|
2007-10-10 19:45:20 +00:00
|
|
|
|
2007-10-01 17:37:41 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
|
|
|
|
|
|
|
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 == ';') {
|
|
|
|
ictx->title_len = 0;
|
|
|
|
return (input_state_title_next);
|
|
|
|
}
|
2007-10-10 19:45:20 +00:00
|
|
|
|
2007-10-01 17:37:41 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2007-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
|
2007-10-01 17:37:41 +00:00
|
|
|
if (ch == '\007') {
|
2007-10-19 23:25:33 +00:00
|
|
|
ictx->title_buf[ictx->title_len++] = '\0';
|
2007-10-01 17:37:41 +00:00
|
|
|
switch (ictx->title_type) {
|
|
|
|
case 0:
|
2007-10-24 15:40:59 +00:00
|
|
|
strlcpy(s->title, ictx->title_buf, sizeof s->title);
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_TITLE, s->title);
|
2007-10-01 17:37:41 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch >= 0x20) {
|
2007-10-01 17:37:41 +00:00
|
|
|
if (ictx->title_len < (sizeof ictx->title_buf) - 1) {
|
|
|
|
ictx->title_buf[ictx->title_len++] = ch;
|
|
|
|
return (input_state_title_next);
|
|
|
|
}
|
2007-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
2007-10-01 17:37:41 +00:00
|
|
|
}
|
2007-10-10 19:45:20 +00:00
|
|
|
|
2007-10-01 17:37:41 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
|
|
|
|
2007-09-28 22:47:22 +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-09-28 22:47:22 +00:00
|
|
|
return (input_state_intermediate);
|
2007-10-10 19:45:20 +00:00
|
|
|
|
|
|
|
if (INPUT_PARAMETER(ch)) {
|
2007-09-28 22:47:22 +00:00
|
|
|
input_handle_private_two(ch, ictx);
|
2007-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (INPUT_UPPERCASE(ch) || INPUT_LOWERCASE(ch)) {
|
2007-09-28 22:47:22 +00:00
|
|
|
input_handle_standard_two(ch, ictx);
|
2007-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-28 22:47:22 +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-10-10 19:45:20 +00:00
|
|
|
if (INPUT_PARAMETER(ch)) {
|
2007-11-21 13:11:41 +00:00
|
|
|
input_new_argument(ictx); /* XXX extraneous arg if priv */
|
2007-09-28 22:47:22 +00:00
|
|
|
if (ch >= 0x3c && ch <= 0x3f) {
|
|
|
|
/* Private control sequence. */
|
|
|
|
ictx->private = ch;
|
|
|
|
return (input_state_sequence_next);
|
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-29 14:25:49 +00:00
|
|
|
/* Pass character on directly. */
|
2007-10-10 19:45:20 +00:00
|
|
|
return (input_state_sequence_next(ch, ictx));
|
2007-09-28 22:47:22 +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-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
return (input_state_sequence_intermediate);
|
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-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
2007-09-29 14:25:49 +00:00
|
|
|
input_new_argument(ictx);
|
2007-09-28 22:47:22 +00:00
|
|
|
return (input_state_sequence_next);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2007-09-29 14:25:49 +00:00
|
|
|
if (input_add_argument(ictx, ch) != 0)
|
2007-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
return (input_state_sequence_next);
|
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-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
2007-09-28 22:47:22 +00:00
|
|
|
input_handle_sequence(ch, ictx);
|
2007-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-28 22:47:22 +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
|
|
|
{
|
2007-10-10 19:45:20 +00:00
|
|
|
if (INPUT_INTERMEDIATE(ch))
|
2007-09-28 22:47:22 +00:00
|
|
|
return (input_state_sequence_intermediate);
|
2007-10-10 19:45:20 +00:00
|
|
|
|
|
|
|
if (INPUT_UPPERCASE(ch) || INPUT_LOWERCASE(ch)) {
|
2007-09-28 22:47:22 +00:00
|
|
|
input_handle_sequence(ch, ictx);
|
2007-10-10 19:45:20 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
return (input_state_first);
|
|
|
|
}
|
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)
|
|
|
|
{
|
2007-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
log_debug2("-- ch %zu: %hhu (%c)", ictx->off, ch, ch);
|
2007-10-04 19:03:52 +00:00
|
|
|
|
2007-11-20 21:42:29 +00:00
|
|
|
if (s->cx == screen_size_x(s)) {
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CHARACTER, '\r');
|
|
|
|
input_write(ictx, TTY_CHARACTER, '\n');
|
2007-10-05 17:51:56 +00:00
|
|
|
|
2007-10-24 15:40:59 +00:00
|
|
|
s->cx = 0;
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_display_cursor_down(s);
|
|
|
|
} else if (!screen_in_x(s, s->cx) || !screen_in_y(s, s->cy))
|
|
|
|
return;
|
2007-10-05 17:51:56 +00:00
|
|
|
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_display_cursor_set(s, ch);
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CHARACTER, ch);
|
2007-10-12 11:44:30 +00:00
|
|
|
|
2007-10-24 15:40:59 +00:00
|
|
|
s->cx++;
|
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-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
|
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-11-27 19:23:34 +00:00
|
|
|
return;
|
2007-07-09 19:04:12 +00:00
|
|
|
case '\n': /* LF */
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_display_cursor_down(s);
|
2007-09-28 22:47:22 +00:00
|
|
|
break;
|
2007-07-09 19:04:12 +00:00
|
|
|
case '\r': /* CR */
|
2007-10-24 15:40:59 +00:00
|
|
|
s->cx = 0;
|
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-10-19 10:21:36 +00:00
|
|
|
return;
|
2007-07-09 19:04:12 +00:00
|
|
|
case '\010': /* BS */
|
2007-10-24 15:40:59 +00:00
|
|
|
if (s->cx > 0)
|
|
|
|
s->cx--;
|
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-11-20 21:42:29 +00:00
|
|
|
screen_display_cursor_down(s);
|
2007-11-09 17:06:01 +00:00
|
|
|
}
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CURSORMOVE, s->cy, s->cx);
|
2007-11-24 23:29:49 +00:00
|
|
|
return;
|
|
|
|
case '\016': /* SO */
|
2007-11-27 23:01:27 +00:00
|
|
|
s->attr |= ATTR_CHARSET;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_ATTRIBUTES, s->attr, s->colr);
|
2007-11-24 23:29:49 +00:00
|
|
|
return;
|
|
|
|
case '\017': /* SI */
|
2007-11-27 23:01:27 +00:00
|
|
|
s->attr &= ~ATTR_CHARSET;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_ATTRIBUTES, s->attr, s->colr);
|
2007-11-09 17:06:01 +00:00
|
|
|
return;
|
2007-07-09 19:04:12 +00:00
|
|
|
default:
|
2007-09-28 22:47:22 +00:00
|
|
|
log_debug("unknown c0: %hhu", ch);
|
|
|
|
return;
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CHARACTER, ch);
|
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)
|
|
|
|
{
|
2007-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
|
2007-09-28 22:47:22 +00:00
|
|
|
log_debug2("-- c1 %zu: %hhu (%c)", ictx->off, ch, ch);
|
|
|
|
|
|
|
|
switch (ch) {
|
|
|
|
case 'M': /* RI */
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_display_cursor_up(s);
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_REVERSEINDEX);
|
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-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
|
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-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_KKEYPADON);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
|
|
|
case '>': /* DECKPNM*/
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_KKEYPADOFF);
|
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;
|
|
|
|
s->saved_colr = s->colr;
|
|
|
|
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-10-24 15:40:59 +00:00
|
|
|
s->cx = s->saved_cx;
|
|
|
|
s->cy = s->saved_cy;
|
|
|
|
s->attr = s->saved_attr;
|
|
|
|
s->colr = s->saved_colr;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_ATTRIBUTES, s->attr, s->colr);
|
|
|
|
input_write(ictx, TTY_CURSORMOVE, s->cy, s->cx);
|
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
|
|
|
|
|
|
|
log_debug("unknown s2: %hhu", ch);
|
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-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
u_int i;
|
2007-09-28 22:47:22 +00:00
|
|
|
struct input_arg *iarg;
|
|
|
|
|
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-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-07-09 19:04:12 +00:00
|
|
|
|
2007-10-24 15:40:59 +00:00
|
|
|
if (n == 0 || n > s->cy) {
|
2007-09-28 22:47:22 +00:00
|
|
|
log_debug3("cuu: out of range: %hu", n);
|
|
|
|
return;
|
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-10-24 15:40:59 +00:00
|
|
|
s->cy -= n;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CURSORUP, 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-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-09-28 22:47:22 +00:00
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
input_limit(n, 1, screen_last_y(s) - s->cy);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-10-24 15:40:59 +00:00
|
|
|
s->cy += n;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CURSORDOWN, 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-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-09-28 22:47:22 +00:00
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
input_limit(n, 1, screen_last_x(s) - s->cx);
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-10-24 15:40:59 +00:00
|
|
|
s->cx += n;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CURSORRIGHT, 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-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-07-09 19:04:12 +00:00
|
|
|
|
2007-10-24 15:40:59 +00:00
|
|
|
if (n == 0 || n > s->cx) {
|
2007-09-28 22:47:22 +00:00
|
|
|
log_debug3("cub: out of range: %hu", n);
|
|
|
|
return;
|
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-10-24 15:40:59 +00:00
|
|
|
s->cx -= n;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CURSORLEFT, 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-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-09-28 22:47:22 +00:00
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
input_limit(n, 1, screen_last_x(s) - s->cx);
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_display_delete_characters(s, s->cx, s->cy, n);
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_DELETECHARACTER, n);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_dl(struct input_ctx *ictx)
|
|
|
|
{
|
2007-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-09-28 22:47:22 +00:00
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
input_limit(n, 1, screen_last_y(s) - s->cy);
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-11-20 18:46:32 +00:00
|
|
|
if (s->cy < s->rupper || s->cy > s->rlower)
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_display_delete_lines(s, s->cy, n);
|
2007-09-29 18:48:04 +00:00
|
|
|
else
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_display_delete_lines_region(s, s->cy, n);
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_DELETELINE, n);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_ich(struct input_ctx *ictx)
|
|
|
|
{
|
2007-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-09-28 22:47:22 +00:00
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
input_limit(n, 1, screen_last_x(s) - s->cx);
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_display_insert_characters(s, s->cx, s->cy, n);
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_INSERTCHARACTER, n);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_il(struct input_ctx *ictx)
|
|
|
|
{
|
2007-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-09-28 22:47:22 +00:00
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
input_limit(n, 1, screen_last_y(s) - s->cy);
|
|
|
|
|
2007-11-20 18:46:32 +00:00
|
|
|
if (s->cy < s->rupper || s->cy > s->rlower)
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_display_insert_lines(s, s->cy, n);
|
2007-09-29 18:48:04 +00:00
|
|
|
else
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_display_insert_lines_region(s, s->cy, n);
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_INSERTLINE, n);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_vpa(struct input_ctx *ictx)
|
|
|
|
{
|
2007-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-09-28 22:47:22 +00:00
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
input_limit(n, 1, screen_size_y(s));
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-10-24 15:40:59 +00:00
|
|
|
s->cy = n - 1;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CURSORMOVE, s->cy, s->cx);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_hpa(struct input_ctx *ictx)
|
|
|
|
{
|
2007-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-09-28 22:47:22 +00:00
|
|
|
return;
|
2007-11-20 21:42:29 +00:00
|
|
|
input_limit(n, 1, screen_size_x(s));
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-10-24 15:40:59 +00:00
|
|
|
s->cx = n - 1;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CURSORMOVE, s->cy, s->cx);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_cup(struct input_ctx *ictx)
|
|
|
|
{
|
2007-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-11-20 21:42:29 +00:00
|
|
|
input_limit(n, 1, screen_size_y(s));
|
|
|
|
input_limit(m, 1, screen_size_x(s));
|
2007-09-28 22:47:22 +00:00
|
|
|
|
2007-10-24 15:40:59 +00:00
|
|
|
s->cx = m - 1;
|
|
|
|
s->cy = n - 1;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CURSORMOVE, s->cy, s->cx);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_ed(struct input_ctx *ictx)
|
|
|
|
{
|
2007-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
uint16_t n;
|
|
|
|
u_int i;
|
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-11-20 21:42:29 +00:00
|
|
|
screen_display_fill_cursor_eos(
|
|
|
|
s, SCREEN_DEFDATA, s->attr, s->colr);
|
|
|
|
|
2007-11-27 22:12:14 +00:00
|
|
|
input_write(ictx, TTY_CLEARENDOFLINE);
|
|
|
|
for (i = s->cy + 1; i < screen_size_y(s); i++) {
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CURSORMOVE, i, 0);
|
|
|
|
input_write(ictx, TTY_CLEARENDOFLINE);
|
2007-09-29 10:57:39 +00:00
|
|
|
}
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CURSORMOVE, s->cy, s->cx);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 2:
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_display_fill_lines(
|
|
|
|
s, 0, screen_size_y(s), SCREEN_DEFDATA, s->attr, s->colr);
|
2007-11-21 13:11:41 +00:00
|
|
|
|
2007-11-20 21:42:29 +00:00
|
|
|
for (i = 0; i < screen_size_y(s); i++) {
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CURSORMOVE, i, 0);
|
|
|
|
input_write(ictx, TTY_CLEARENDOFLINE);
|
2007-09-29 10:57:39 +00:00
|
|
|
}
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CURSORMOVE, s->cy, s->cx);
|
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-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-11-20 21:42:29 +00:00
|
|
|
screen_display_fill_cursor_eol(
|
|
|
|
s, SCREEN_DEFDATA, s->attr, s->colr);
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CLEARENDOFLINE);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 1:
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_display_fill_cursor_bol(
|
|
|
|
s, SCREEN_DEFDATA, s->attr, s->colr);
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CLEARSTARTOFLINE);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 2:
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_display_fill_line(
|
|
|
|
s, s->cy, SCREEN_DEFDATA, s->attr, s->colr);
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CLEARLINE);
|
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-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-10-24 15:40:59 +00:00
|
|
|
s->mode |= MODE_KCURSOR;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_KCURSORON);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 25: /* TCEM */
|
2007-10-24 15:40:59 +00:00
|
|
|
s->mode |= MODE_CURSOR;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CURSORON);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-11-27 23:28:51 +00:00
|
|
|
case 1000:
|
|
|
|
s->mode |= MODE_MOUSE;
|
|
|
|
input_write(ictx, TTY_MOUSEON);
|
|
|
|
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-10-24 15:40:59 +00:00
|
|
|
s->mode |= MODE_INSERT;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_INSERTON);
|
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
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-10-24 15:40:59 +00:00
|
|
|
s->mode &= ~MODE_KCURSOR;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_KCURSOROFF);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 25: /* TCEM */
|
2007-10-24 15:40:59 +00:00
|
|
|
s->mode &= ~MODE_CURSOR;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_CURSOROFF);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-11-27 23:28:51 +00:00
|
|
|
case 1000:
|
|
|
|
s->mode &= ~MODE_MOUSE;
|
|
|
|
input_write(ictx, TTY_MOUSEOFF);
|
|
|
|
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-10-24 15:40:59 +00:00
|
|
|
s->mode &= ~MODE_INSERT;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_INSERTOFF);
|
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-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
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-10-24 15:01:25 +00:00
|
|
|
/* Special case: both zero restores to entire screen. */
|
|
|
|
/* XXX this will catch [0;0r and [;r etc too, is this right? */
|
|
|
|
if (n == 0 && m == 0) {
|
|
|
|
n = 1;
|
2007-11-20 21:42:29 +00:00
|
|
|
m = screen_size_y(s);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
2007-10-24 15:01:25 +00:00
|
|
|
|
2007-11-20 21:42:29 +00:00
|
|
|
input_limit(n, 1, screen_size_y(s));
|
|
|
|
input_limit(m, 1, screen_size_y(s));
|
2007-10-24 15:01:25 +00:00
|
|
|
|
2007-09-29 17:45:10 +00:00
|
|
|
if (n > m) {
|
|
|
|
log_debug3("decstbm: out of range: %hu,%hu", n, m);
|
2007-09-28 22:47:22 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-10-24 15:01:25 +00:00
|
|
|
/* Cursor moves to top-left. */
|
2007-10-24 15:40:59 +00:00
|
|
|
s->cx = 0;
|
|
|
|
s->cy = n - 1;
|
2007-10-24 15:01:25 +00:00
|
|
|
|
2007-11-20 18:46:32 +00:00
|
|
|
s->rupper = n - 1;
|
|
|
|
s->rlower = m - 1;
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_SCROLLREGION, s->rupper, s->rlower);
|
2007-09-28 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
input_handle_sequence_sgr(struct input_ctx *ictx)
|
|
|
|
{
|
2007-10-24 15:40:59 +00:00
|
|
|
struct screen *s = &ictx->w->screen;
|
|
|
|
u_int i, n;
|
|
|
|
uint16_t m;
|
2007-09-28 22:47:22 +00:00
|
|
|
|
|
|
|
n = ARRAY_LENGTH(&ictx->args);
|
|
|
|
if (n == 0) {
|
2007-10-24 15:40:59 +00:00
|
|
|
s->attr = 0;
|
|
|
|
s->colr = SCREEN_DEFCOLR;
|
2007-09-28 22:47:22 +00:00
|
|
|
} else {
|
|
|
|
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;
|
|
|
|
switch (m) {
|
|
|
|
case 0:
|
|
|
|
case 10:
|
2007-11-27 23:01:27 +00:00
|
|
|
s->attr &= ATTR_CHARSET;
|
2007-10-24 15:40:59 +00:00
|
|
|
s->colr = SCREEN_DEFCOLR;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 1:
|
2007-10-24 15:40:59 +00:00
|
|
|
s->attr |= ATTR_BRIGHT;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 2:
|
2007-10-24 15:40:59 +00:00
|
|
|
s->attr |= ATTR_DIM;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 3:
|
2007-10-24 15:40:59 +00:00
|
|
|
s->attr |= ATTR_ITALICS;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 4:
|
2007-10-24 15:40:59 +00:00
|
|
|
s->attr |= ATTR_UNDERSCORE;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 5:
|
2007-10-24 15:40:59 +00:00
|
|
|
s->attr |= ATTR_BLINK;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 7:
|
2007-10-24 15:40:59 +00:00
|
|
|
s->attr |= ATTR_REVERSE;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 8:
|
2007-10-24 15:40:59 +00:00
|
|
|
s->attr |= ATTR_HIDDEN;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 23:
|
2007-10-24 15:40:59 +00:00
|
|
|
s->attr &= ~ATTR_ITALICS;
|
2007-09-28 22:47:22 +00:00
|
|
|
break;
|
|
|
|
case 24:
|
2007-10-24 15:40:59 +00:00
|
|
|
s->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:
|
2007-10-24 15:40:59 +00:00
|
|
|
s->colr &= 0x0f;
|
|
|
|
s->colr |= (m - 30) << 4;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-28 22:47:22 +00:00
|
|
|
case 39:
|
2007-10-24 15:40:59 +00:00
|
|
|
s->colr &= 0x0f;
|
|
|
|
s->colr |= 0x80;
|
2007-09-28 22:47:22 +00:00
|
|
|
break;
|
|
|
|
case 40:
|
|
|
|
case 41:
|
|
|
|
case 42:
|
|
|
|
case 43:
|
|
|
|
case 44:
|
|
|
|
case 45:
|
|
|
|
case 46:
|
|
|
|
case 47:
|
2007-10-24 15:40:59 +00:00
|
|
|
s->colr &= 0xf0;
|
|
|
|
s->colr |= m - 40;
|
2007-09-28 22:47:22 +00:00
|
|
|
break;
|
|
|
|
case 49:
|
2007-10-24 15:40:59 +00:00
|
|
|
s->colr &= 0xf0;
|
|
|
|
s->colr |= 0x08;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-11-27 19:23:34 +00:00
|
|
|
input_write(ictx, TTY_ATTRIBUTES, s->attr, s->colr);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|