#include "csi.h" #include #include #include #include #define LOG_MODULE "csi" #define LOG_ENABLE_DBG 1 #include "log.h" #include "grid.h" static bool csi_sgr(struct terminal *term) { for (size_t i = 0; i < term->vt.params.idx; i++) { switch (term->vt.params.v[i].value) { case 0: term->vt.attrs.bold = false; term->vt.dim = false; term->vt.attrs.italic = false; term->vt.attrs.underline = false; term->vt.attrs.strikethrough = false; term->vt.attrs.blink = false; term->vt.attrs.conceal = false; term->vt.attrs.reverse = false; term->vt.attrs.foreground = term->grid.foreground; term->vt.attrs.background = term->grid.background; break; case 1: term->vt.attrs.bold = true; break; case 2: term->vt.dim = true; break; case 3: term->vt.attrs.italic = true; break; case 4: term->vt.attrs.underline = true; break; case 5: term->vt.attrs.blink = true; break; case 6: term->vt.attrs.blink = true; break; case 7: term->vt.attrs.reverse = true; break; case 8: term->vt.attrs.conceal = true; break; case 9: term->vt.attrs.strikethrough = true; break; case 22: term->vt.attrs.bold = term->vt.dim = false; break; case 23: term->vt.attrs.italic = false; break; case 24: term->vt.attrs.underline = false; break; case 25: term->vt.attrs.blink = false; break; case 27: term->vt.attrs.reverse = false; break; case 28: term->vt.attrs.conceal = false; break; case 29: term->vt.attrs.strikethrough = false; break; case 30: term->vt.attrs.foreground = 0x000000ff; break; case 31: term->vt.attrs.foreground = 0xff0000ff; break; case 32: term->vt.attrs.foreground = 0x00ff00ff; break; case 33: term->vt.attrs.foreground = 0xf0f000ff; break; case 34: term->vt.attrs.foreground = 0x0000ffff; break; case 35: term->vt.attrs.foreground = 0xf000f0ff; break; case 36: term->vt.attrs.foreground = 0x00f0f0ff; break; case 37: term->vt.attrs.foreground = 0xffffffff; break; case 39: term->vt.attrs.foreground = term->grid.foreground; break; case 40: term->vt.attrs.background = 0x000000ff; break; case 41: term->vt.attrs.background = 0xff0000ff; break; case 42: term->vt.attrs.background = 0x00ff00ff; break; case 43: term->vt.attrs.background = 0xf0f000ff; break; case 44: term->vt.attrs.background = 0x0000ffff; break; case 45: term->vt.attrs.background = 0xf000f0ff; break; case 46: term->vt.attrs.background = 0x00f0f0ff; break; case 47: term->vt.attrs.background = 0xffffffff; break; case 49: term->vt.attrs.background = term->grid.background; break; default: LOG_ERR("unimplemented: CSI: SGR: %u", term->vt.params.v[i].value); return false; } } return true; } bool csi_dispatch(struct terminal *term, uint8_t final) { LOG_DBG("CSI: %zu paramaters, final = %c", term->vt.params.idx, final); for (size_t i = 0; i < term->vt.params.idx; i++) { LOG_DBG(" #%zu: %u", i, term->vt.params.v[i].value); for (size_t j = 0; j < term->vt.params.v[i].sub.idx; j++) LOG_DBG(" #%zu: %u", j, term->vt.params.v[i].sub.value[j]); } if (term->vt.intermediates.idx == 0) { switch (final) { case 'c': write(term->ptmx, "\033[?6c", 5); return true; case 'm': return csi_sgr(term); case 'J': { assert(term->vt.params.idx == 0); int start = grid_cursor_linear(&term->grid, term->grid.cursor.row, 0); int end = term->grid.cols * term->grid.rows; grid_erase(&term->grid, start, end); return true; } case 'K': { assert(term->vt.params.idx == 0); int start = term->grid.linear_cursor; int end = grid_cursor_linear( &term->grid, term->grid.cursor.row, term->grid.cols - 1); LOG_DBG("K: %d -> %d", start, end); grid_erase(&term->grid, start, end); return true; } case 'C': { int count = term->vt.params.idx > 0 ? term->vt.params.v[0].value : 1; grid_cursor_right(&term->grid, count); return true; } case 'D': { int count = term->vt.params.idx > 0 ? term->vt.params.v[0].value : 1; grid_cursor_left(&term->grid, count); return true; } default: LOG_ERR("CSI: unimplemented final: %c", final); abort(); } } else { LOG_ERR("CSI: unimplemented: intermediates: %.*s", (int)term->vt.intermediates.idx, term->vt.intermediates.data); //abort(); return true; } return false; }