3 This program is free software; you can redistribute it and/or
4 modify it under the terms of the GNU Lesser General Public
5 License (LGPL) as published by the Free Software Foundation.
7 Please refer to the COPYING file for more information.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 Copyright © 2004 Bruno T. C. de Oliveira
19 Copyright © 2006 Pierre Habouzit
32 #include <sys/ioctl.h>
33 #include <sys/types.h>
39 #define IS_CONTROL(ch) !((ch) & 0xffffff60UL)
41 static int has_default = 0;
45 C0_SOH, C0_STX, C0_ETX, C0_EOT, C0_ENQ, C0_ACK, C0_BEL,
46 C0_BS , C0_HT , C0_LF , C0_VT , C0_FF , C0_CR , C0_SO , C0_SI ,
47 C0_DLE, C0_DC1, C0_DC2, D0_DC3, C0_DC4, C0_NAK, C0_SYN, C0_ETB,
48 C0_CAN, C0_EM , C0_SUB, C0_ESC, C0_IS4, C0_IS3, C0_IS2, C0_IS1,
53 C1_41 , C1_BPH, C1_NBH, C1_44 , C1_NEL, C1_SSA, C1_ESA,
54 C1_HTS, C1_HTJ, C1_VTS, C1_PLD, C1_PLU, C1_RI , C1_SS2, C1_SS3,
55 C1_DCS, C1_PU1, C1_PU2, C1_STS, C1_CCH, C1_MW , C1_SPA, C1_EPA,
56 C1_SOS, C1_59 , C1_SCI, C1_CSI, CS_ST , C1_OSC, C1_PM , C1_APC,
61 CSI_CUU, CSI_CUD, CSI_CUF, CSI_CUB, CSI_CNL, CSI_CPL, CSI_CHA,
62 CSI_CUP, CSI_CHT, CSI_ED , CSI_EL , CSI_IL , CSI_DL , CSI_EF , CSI_EA ,
63 CSI_DCH, CSI_SEE, CSI_CPR, CSI_SU , CSI_SD , CSI_NP , CSI_PP , CSI_CTC,
64 CSI_ECH, CSI_CVT, CSI_CBT, CSI_SRS, CSI_PTX, CSI_SDS, CSI_SIMD, CSI_5F,
65 CSI_HPA, CSI_HPR, CSI_REP, CSI_DA , CSI_VPA, CSI_VPR, CSI_HVP, CSI_TBC,
66 CSI_SM , CSI_MC , CSI_HPB, CSI_VPB, CSI_RM , CSI_SGR, CSI_DSR, CSI_DAQ,
67 CSI_70 , CSI_71 , CSI_72 , CSI_73 , CSI_74 , CSI_75 , CSI_76 , CSI_77 ,
68 CSI_78 , CSI_79 , CSI_7A , CSI_7B , CSI_7C , CSI_7D , CSI_7E , CSI_7F
76 unsigned seen_input : 1;
79 unsigned graphmode : 1;
86 struct t_row_t *lines;
87 struct t_row_t *scroll_top;
88 struct t_row_t *scroll_bot;
91 struct t_row_t *curs_row;
92 int curs_col, curs_srow, curs_scol;
94 /* buffers and parsing state */
101 typedef struct t_row_t {
107 static char const * const keytable[KEY_MAX+1] = {
111 [KEY_RIGHT] = "\e[C",
113 [KEY_BACKSPACE] = "\177",
114 [KEY_HOME] = "\e[1~",
118 [KEY_PPAGE] = "\e[5~",
119 [KEY_NPAGE] = "\e[6~",
120 [KEY_SUSPEND] = "\x1A", /* Ctrl+Z gets mapped to this */
121 [KEY_F(1)] = "\e[[A",
122 [KEY_F(2)] = "\e[[B",
123 [KEY_F(3)] = "\e[[C",
124 [KEY_F(4)] = "\e[[D",
125 [KEY_F(5)] = "\e[[E",
126 [KEY_F(6)] = "\e[17~",
127 [KEY_F(7)] = "\e[18~",
128 [KEY_F(8)] = "\e[19~",
129 [KEY_F(9)] = "\e[20~",
130 [KEY_F(10)] = "\e[21~",
133 static void t_row_set(t_row_t *row, int start, int len, uint16_t attr)
136 wmemset(row->text + start, 0, len);
137 for (int i = start; i < len + start; i++) {
142 static void t_row_roll(t_row_t *start, t_row_t *end, int count)
151 t_row_t *buf = alloca(count * sizeof(t_row_t));
153 memcpy(buf, start, count * sizeof(t_row_t));
154 memmove(start, start + count, (n - count) * sizeof(t_row_t));
155 memcpy(end - count, buf, count * sizeof(t_row_t));
156 for (t_row_t *row = start; row < end; row++) {
162 static void clamp_cursor_to_bounds(madtty_t *t)
164 if (t->curs_row < t->lines) {
165 t->curs_row = t->lines;
167 if (t->curs_row >= t->lines + t->rows) {
168 t->curs_row = t->lines + t->rows - 1;
171 if (t->curs_col < 0) {
174 if (t->curs_col >= t->cols) {
175 t->curs_col = t->cols - 1;
179 static void cursor_line_down(madtty_t *t)
182 if (t->curs_row < t->scroll_bot)
185 t->curs_row = t->scroll_bot - 1;
186 t_row_roll(t->scroll_top, t->scroll_bot, 1);
187 t_row_set(t->curs_row, 0, t->cols, 0);
190 __attribute__((const))
191 static uint16_t build_attrs(unsigned curattrs)
193 return ((curattrs & ~A_COLOR) | COLOR_PAIR(curattrs & 0xff))
194 >> NCURSES_ATTR_SHIFT;
197 static void new_escape_sequence(madtty_t *t)
204 static void cancel_escape_sequence(madtty_t *t)
211 static bool is_valid_csi_ender(int c)
213 return (c >= 'a' && c <= 'z')
214 || (c >= 'A' && c <= 'Z')
215 || (c == '@' || c == '`');
218 /* interprets a 'set attribute' (SGR) CSI escape sequence */
219 static void interpret_csi_SGR(madtty_t *t, int param[], int pcount)
224 /* special case: reset attributes */
225 t->curattrs = A_NORMAL;
229 for (i = 0; i < pcount; i++) {
231 #define CASE(x, op) case x: op; break
232 CASE(0, t->curattrs = A_NORMAL);
233 CASE(1, t->curattrs |= A_BOLD);
234 CASE(4, t->curattrs |= A_UNDERLINE);
235 CASE(5, t->curattrs |= A_BLINK);
236 CASE(6, t->curattrs |= A_BLINK);
237 CASE(7, t->curattrs |= A_REVERSE);
238 CASE(8, t->curattrs |= A_INVIS);
239 CASE(22, t->curattrs &= ~A_BOLD);
240 CASE(24, t->curattrs &= ~A_UNDERLINE);
241 CASE(25, t->curattrs &= ~A_BLINK);
242 CASE(27, t->curattrs &= ~A_REVERSE);
243 CASE(28, t->curattrs &= ~A_INVIS);
245 case 30 ... 37: /* fg */
247 t->curattrs &= ~0xf0;
248 t->curattrs |= (param[i] + 1 - 30) << 4;
251 t->curattrs |= (7 - (param[i] - 30)) << 3;
256 t->curattrs &= has_default ? ~0xf0 : ~070;
259 case 40 ... 47: /* bg */
261 t->curattrs &= ~0x0f;
262 t->curattrs |= (param[i] + 1 - 40);
265 t->curattrs |= (param[i] - 40);
270 t->curattrs &= has_default ? ~0x0f : ~007;
279 /* interprets an 'erase display' (ED) escape sequence */
280 static void interpret_csi_ED(madtty_t *t, int param[], int pcount)
282 t_row_t *row, *start, *end;
283 attr_t attr = build_attrs(t->curattrs);
286 if (pcount && param[0] == 2) {
288 end = t->lines + t->rows;
290 if (pcount && param[0] == 1) {
293 t_row_set(t->curs_row, 0, t->curs_col + 1, attr);
295 t_row_set(t->curs_row, t->curs_col,
296 t->cols - t->curs_col, attr);
297 start = t->curs_row + 1;
298 end = t->lines + t->rows;
301 for (row = start; row < end; row++) {
302 t_row_set(row, 0, t->cols, attr);
306 /* interprets a 'move cursor' (CUP) escape sequence */
307 static void interpret_csi_CUP(madtty_t *t, int param[], int pcount)
311 t->curs_row = t->lines;
316 return; /* malformed */
319 t->curs_row = t->lines + param[0] - 1;
320 t->curs_col = param[1] - 1;
322 clamp_cursor_to_bounds(t);
325 /* Interpret the 'relative mode' sequences: CUU, CUD, CUF, CUB, CNL,
326 * CPL, CHA, HPR, VPA, VPR, HPA */
328 interpret_csi_C(madtty_t *t, char verb, int param[], int pcount)
330 int n = (pcount && param[0] > 0) ? param[0] : 1;
333 case 'A': t->curs_row -= n; break;
334 case 'B': case 'e': t->curs_row += n; break;
335 case 'C': case 'a': t->curs_col += n; break;
336 case 'D': t->curs_col -= n; break;
337 case 'E': t->curs_row += n; t->curs_col = 0; break;
338 case 'F': t->curs_row -= n; t->curs_col = 0; break;
339 case 'G': case '`': t->curs_col = param[0] - 1; break;
340 case 'd': t->curs_row = t->lines + param[0] - 1; break;
343 clamp_cursor_to_bounds(t);
346 /* Interpret the 'erase line' escape sequence */
347 static void interpret_csi_EL(madtty_t *t, int param[], int pcount)
349 attr_t attr = build_attrs(t->curattrs);
351 switch (pcount ? param[0] : 0) {
353 t_row_set(t->curs_row, 0, t->curs_col + 1, attr);
356 t_row_set(t->curs_row, 0, t->cols, attr);
359 t_row_set(t->curs_row, t->curs_col, t->cols - t->curs_col,
365 /* Interpret the 'insert blanks' sequence (ICH) */
366 static void interpret_csi_ICH(madtty_t *t, int param[], int pcount)
368 t_row_t *row = t->curs_row;
369 int n = (pcount && param[0] > 0) ? param[0] : 1;
372 if (t->curs_col + n > t->cols) {
373 n = t->cols - t->curs_col;
376 for (i = t->cols - 1; i >= t->curs_col + n; i--) {
377 row->text[i] = row->text[i - n];
378 row->attr[i] = row->attr[i - n];
381 t_row_set(row, t->curs_col, n, build_attrs(t->curattrs));
384 /* Interpret the 'delete chars' sequence (DCH) */
385 static void interpret_csi_DCH(madtty_t *t, int param[], int pcount)
387 t_row_t *row = t->curs_row;
388 int n = (pcount && param[0] > 0) ? param[0] : 1;
391 if (t->curs_col + n > t->cols) {
392 n = t->cols - t->curs_col;
395 for (i = t->curs_col; i < t->cols - n; i++) {
396 row->text[i] = row->text[i + n];
397 row->attr[i] = row->attr[i + n];
400 t_row_set(row, t->cols - n, n, build_attrs(t->curattrs));
403 /* Interpret a 'scroll reverse' (SR) */
404 static void interpret_csi_SR(madtty_t *t)
406 t_row_roll(t->scroll_top, t->scroll_bot, -1);
407 t_row_set(t->scroll_top, 0, t->cols, build_attrs(t->curattrs));
410 /* Interpret an 'insert line' sequence (IL) */
411 static void interpret_csi_IL(madtty_t *t, int param[], int pcount)
413 int n = (pcount && param[0] > 0) ? param[0] : 1;
415 if (t->curs_row + n >= t->scroll_bot) {
416 for (t_row_t *row = t->curs_row; row < t->scroll_bot; row++) {
417 t_row_set(row, 0, t->cols, build_attrs(t->curattrs));
420 t_row_roll(t->curs_row, t->scroll_bot, -n);
421 for (t_row_t *row = t->curs_row; row < t->curs_row + n; row++) {
422 t_row_set(row, 0, t->cols, build_attrs(t->curattrs));
427 /* Interpret a 'delete line' sequence (DL) */
428 static void interpret_csi_DL(madtty_t *t, int param[], int pcount)
430 int n = (pcount && param[0] > 0) ? param[0] : 1;
432 if (t->curs_row + n >= t->scroll_bot) {
433 for (t_row_t *row = t->curs_row; row < t->scroll_bot; row++) {
434 t_row_set(row, 0, t->cols, build_attrs(t->curattrs));
437 t_row_roll(t->curs_row, t->scroll_bot, n);
438 for (t_row_t *row = t->scroll_bot - n; row < t->scroll_bot; row++) {
439 t_row_set(row, 0, t->cols, build_attrs(t->curattrs));
444 /* Interpret an 'erase characters' (ECH) sequence */
445 static void interpret_csi_ECH(madtty_t *t, int param[], int pcount)
447 int n = (pcount && param[0] > 0) ? param[0] : 1;
449 if (t->curs_col + n < t->cols) {
450 n = t->cols - t->curs_col;
452 t_row_set(t->curs_row, t->curs_col, n, build_attrs(t->curattrs));
455 /* Interpret a 'set scrolling region' (DECSTBM) sequence */
456 static void interpret_csi_DECSTBM(madtty_t *t, int param[], int pcount)
458 int new_top, new_bot;
462 t->scroll_top = t->lines;
463 t->scroll_bot = t->lines + t->rows;
466 return; /* malformed */
469 new_top = param[0] - 1;
472 /* clamp to bounds */
475 if (new_top >= t->rows)
476 new_top = t->rows - 1;
479 if (new_bot >= t->rows)
482 /* check for range validity */
483 if (new_top < new_bot) {
484 t->scroll_top = t->lines + new_top;
485 t->scroll_bot = t->lines + new_bot;
491 static void es_interpret_csi(madtty_t *t)
493 static int csiparam[BUFSIZ];
495 const char *p = t->ebuf + 1;
496 char verb = t->ebuf[t->elen - 1];
498 p += t->ebuf[1] == '?'; /* CSI private mode */
500 /* parse numeric parameters */
501 while (isdigit((unsigned char)*p) || *p == ';') {
503 if (param_count >= (int)sizeof(csiparam))
504 return; /* too long! */
505 csiparam[param_count++] = 0;
507 if (param_count == 0) csiparam[param_count++] = 0;
508 csiparam[param_count - 1] *= 10;
509 csiparam[param_count - 1] += *p - '0';
515 if (t->ebuf[1] == '?') {
518 if (csiparam[0] == 25)
523 if (csiparam[0] == 25)
529 /* delegate handling depending on command character (verb) */
532 if (param_count == 1 && csiparam[0] == 4) /* insert mode */
536 if (param_count == 1 && csiparam[0] == 4) /* replace mode */
539 case 'm': /* it's a 'set attribute' sequence */
540 interpret_csi_SGR(t, csiparam, param_count); break;
541 case 'J': /* it's an 'erase display' sequence */
542 interpret_csi_ED(t, csiparam, param_count); break;
543 case 'H': case 'f': /* it's a 'move cursor' sequence */
544 interpret_csi_CUP(t, csiparam, param_count); break;
545 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
546 case 'e': case 'a': case 'd': case '`':
547 /* it is a 'relative move' */
548 interpret_csi_C(t, verb, csiparam, param_count); break;
549 case 'K': /* erase line */
550 interpret_csi_EL(t, csiparam, param_count); break;
551 case '@': /* insert characters */
552 interpret_csi_ICH(t, csiparam, param_count); break;
553 case 'P': /* delete characters */
554 interpret_csi_DCH(t, csiparam, param_count); break;
555 case 'L': /* insert lines */
556 interpret_csi_IL(t, csiparam, param_count); break;
557 case 'M': /* delete lines */
558 interpret_csi_DL(t, csiparam, param_count); break;
559 case 'X': /* erase chars */
560 interpret_csi_ECH(t, csiparam, param_count); break;
561 case 'r': /* set scrolling region */
562 interpret_csi_DECSTBM(t, csiparam, param_count); break;
563 case 's': /* save cursor location */
564 t->curs_srow = t->curs_row - t->lines;
565 t->curs_scol = t->curs_col;
567 case 'u': /* restore cursor location */
568 t->curs_row = t->lines + t->curs_srow;
569 t->curs_col = t->curs_scol;
570 clamp_cursor_to_bounds(t);
577 static void try_interpret_escape_seq(madtty_t *t)
579 char lastchar = t->ebuf[t->elen-1];
587 cancel_escape_sequence(t);
596 case ']': /* xterm thing */
597 if (lastchar == '\a')
605 if (is_valid_csi_ender(lastchar)) {
607 cancel_escape_sequence(t);
613 if (t->elen + 1 >= (int)sizeof(t->ebuf)) {
616 fprintf(stderr, "cancelled: \\033");
617 for (int i = 0; i < (int)t->elen; i++) {
618 if (isprint(t->ebuf[i])) {
619 fputc(t->ebuf[i], stderr);
621 fprintf(stderr, "\\%03o", t->ebuf[i]);
626 cancel_escape_sequence(t);
630 static void madtty_process_nonprinting(madtty_t *t, wchar_t wc)
634 new_escape_sequence(t);
638 /* do nothing for now... maybe a visual bell would be nice? */
646 case C0_HT: /* tab */
647 t->curs_col = (t->curs_col + 8) & ~7;
648 if (t->curs_col >= t->cols)
649 t->curs_col = t->cols - 1;
662 case C0_SO: /* shift out - acs */
665 case C0_SI: /* shift in - acs */
666 t->graphmode = false;
671 // vt100 special graphics and line drawing
672 // 5f-7e standard vt100
673 // 40-5e rxvt extension for extra curses acs chars
674 static uint16_t const vt100_0[62] = { // 41 .. 7e
675 0x2191, 0x2193, 0x2192, 0x2190, 0x2588, 0x259a, 0x2603, // 41-47 hi mr. snowman!
676 0, 0, 0, 0, 0, 0, 0, 0, // 48-4f
677 0, 0, 0, 0, 0, 0, 0, 0, // 50-57
678 0, 0, 0, 0, 0, 0, 0, 0x0020, // 58-5f
679 0x25c6, 0x2592, 0x2409, 0x240c, 0x240d, 0x240a, 0x00b0, 0x00b1, // 60-67
680 0x2424, 0x240b, 0x2518, 0x2510, 0x250c, 0x2514, 0x253c, 0x23ba, // 68-6f
681 0x23bb, 0x2500, 0x23bc, 0x23bd, 0x251c, 0x2524, 0x2534, 0x252c, // 70-77
682 0x2502, 0x2264, 0x2265, 0x03c0, 0x2260, 0x00a3, 0x00b7, // 78-7e
685 static void madtty_putc(madtty_t *t, wchar_t wc)
689 if (!t->seen_input) {
691 kill(-t->childpid, SIGWINCH);
695 assert (t->elen + 1 < (int)sizeof(t->ebuf));
696 t->ebuf[t->elen] = wc;
697 t->ebuf[++t->elen] = '\0';
698 try_interpret_escape_seq(t);
699 } else if (IS_CONTROL(wc)) {
700 madtty_process_nonprinting(t, wc);
705 if (wc >= 0x41 && wc <= 0x7e && vt100_0[wc - 0x41]) {
706 wc = vt100_0[wc - 0x41];
710 width = wcwidth(wc) ?: 1;
713 if (width == 2 && t->curs_col == t->cols - 1) {
716 tmp->text[t->curs_col] = 0;
717 tmp->attr[t->curs_col] = build_attrs(t->curattrs);
721 if (t->curs_col >= t->cols) {
730 wmemmove(tmp->text + t->curs_col + width, tmp->text + t->curs_col,
731 (t->cols - t->curs_col - width));
732 memmove(tmp->attr + t->curs_col + width, tmp->attr + t->curs_col,
733 (t->cols - t->curs_col - width) * sizeof(tmp->attr[0]));
736 tmp->text[t->curs_col] = wc;
737 tmp->attr[t->curs_col] = build_attrs(t->curattrs);
740 tmp->text[t->curs_col] = 0;
741 tmp->attr[t->curs_col] = build_attrs(t->curattrs);
747 int madtty_process(madtty_t *t)
756 res = read(t->pty, t->rbuf + t->rlen, sizeof(t->rbuf) - t->rlen);
761 while (pos < t->rlen) {
765 len = (ssize_t)mbrtowc(&wc, t->rbuf + pos, t->rlen - pos, &t->ps);
768 memmove(t->rbuf, t->rbuf + pos, t->rlen);
777 pos += len ? len : 1;
782 memmove(t->rbuf, t->rbuf + pos, t->rlen);
786 madtty_t *madtty_create(int rows, int cols)
791 if (rows <= 0 || cols <= 0)
794 t = (madtty_t*)calloc(sizeof(madtty_t), 1);
798 /* record dimensions */
802 /* default mode is replace */
805 /* create the cell matrix */
806 t->lines = (t_row_t*)calloc(sizeof(t_row_t), t->rows);
807 for (i = 0; i < t->rows; i++) {
808 t->lines[i].text = (wchar_t *)calloc(sizeof(wchar_t), t->cols);
809 t->lines[i].attr = (uint16_t *)calloc(sizeof(uint16_t), t->cols);
812 t->pty = -1; /* no pty for now */
814 /* initialization of other public fields */
815 t->curs_row = t->lines;
817 t->curattrs = A_NORMAL; /* white text over black background */
819 /* initial scrolling area is the whole window */
820 t->scroll_top = t->lines;
821 t->scroll_bot = t->lines + t->rows;
826 void madtty_resize(madtty_t *t, int rows, int cols)
828 struct winsize ws = { .ws_row = rows, .ws_col = cols };
829 t_row_t *lines = t->lines;
831 if (rows <= 0 || cols <= 0)
834 if (t->rows != rows) {
835 while (t->rows > rows) {
836 free(lines[t->rows - 1].text);
837 free(lines[t->rows - 1].attr);
841 lines = realloc(lines, sizeof(t_row_t) * rows);
844 if (t->cols != cols) {
845 for (int row = 0; row < t->rows; row++) {
846 lines[row].text = realloc(lines[row].text, sizeof(wchar_t) * cols);
847 lines[row].attr = realloc(lines[row].attr, sizeof(uint16_t) * cols);
849 t_row_set(lines + row, t->cols, cols - t->cols, 0);
854 while (t->rows < rows) {
855 lines[t->rows].text = (wchar_t *)calloc(sizeof(wchar_t), cols);
856 lines[t->rows].attr = (uint16_t *)calloc(sizeof(uint16_t), cols);
860 t->curs_row += lines - t->lines;
861 t->scroll_top += lines - t->lines;
862 t->scroll_bot += lines - t->lines;
863 if (t->scroll_bot > lines + t->rows)
864 t->scroll_bot = lines + t->rows;
866 clamp_cursor_to_bounds(t);
867 ioctl(t->pty, TIOCSWINSZ, &ws);
868 kill(-t->childpid, SIGWINCH);
871 void madtty_destroy(madtty_t *t)
877 for (i = 0; i < t->rows; i++) {
878 free(t->lines[i].text);
879 free(t->lines[i].attr);
885 void madtty_draw(madtty_t *t, WINDOW *win, int srow, int scol)
888 for (int i = 0; i < t->rows; i++) {
889 t_row_t *row = t->lines + i;
895 wmove(win, srow + i, scol);
896 for (int j = 0; j < t->cols; j++) {
897 if (!j || row->attr[j] != row->attr[j - 1])
898 wattrset(win, (attr_t)row->attr[j] << NCURSES_ATTR_SHIFT);
899 if (row->text[j] >= 128) {
900 char buf[MB_CUR_MAX + 1];
903 len = wcrtomb(buf, row->text[j], NULL);
904 waddnstr(win, buf, len);
905 if (wcwidth(row->text[j]) > 1)
908 waddch(win, row->text[j] > ' ' ? row->text[j] : ' ');
914 wmove(win, srow + t->curs_row - t->lines, scol + t->curs_col);
915 curs_set(!t->curshid);
918 /******************************************************/
920 pid_t madtty_forkpty(madtty_t *t, const char *p, const char *argv[], int *pty)
927 ws.ws_xpixel = ws.ws_ypixel = 0;
929 pid = forkpty(&t->pty, NULL, NULL, &ws);
935 setenv("TERM", "rxvt", 1);
936 execv(p, (char *const*)argv);
937 fprintf(stderr, "\nexecv() failed.\nCommand: '%s'\n", argv[0]);
943 return t->childpid = pid;
946 int madtty_getpty(madtty_t *t)
951 void madtty_keypress(madtty_t *t, int keycode)
953 char c = (char)keycode;
957 if (keycode >= 0 && keycode < KEY_MAX && keytable[keycode]) {
958 buf = keytable[keycode];
959 len = strlen(keytable[keycode]);
966 int res = write(t->pty, buf, len);
967 if (res < 0 && errno != EAGAIN && errno != EINTR)
975 void madtty_init_colors(void)
977 if (COLOR_PAIRS > 64) {
978 use_default_colors();
979 assume_default_colors(-1, -1);
982 for (int bg = -1; bg < 8; bg++) {
983 for (int fg = -1; fg < 8; fg++) {
984 init_pair((fg + 1) * 16 + bg + 1, fg, bg);
988 for (int bg = 0; bg < 8; bg++) {
989 for (int fg = 0; fg < 8; fg++) {
990 init_pair((7 - fg) * 8 + bg, fg, bg);
996 int madtty_color_pair(int fg, int bg)
1003 return COLOR_PAIR((fg + 1) * 16 + bg + 1);
1009 return COLOR_PAIR((7 - fg) * 8 + bg);