1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
|
package vt10x
import (
"fmt"
"strconv"
"strings"
)
// CSI (Control Sequence Introducer)
// ESC+[
type csiEscape struct {
buf []byte
args []int
mode byte
priv bool
}
func (c *csiEscape) reset() {
c.buf = c.buf[:0]
c.args = c.args[:0]
c.mode = 0
c.priv = false
}
func (c *csiEscape) put(b byte) bool {
c.buf = append(c.buf, b)
if b >= 0x40 && b <= 0x7E || len(c.buf) >= 256 {
c.parse()
return true
}
return false
}
func (c *csiEscape) parse() {
c.mode = c.buf[len(c.buf)-1]
if len(c.buf) == 1 {
return
}
s := string(c.buf)
c.args = c.args[:0]
if s[0] == '?' {
c.priv = true
s = s[1:]
}
s = s[:len(s)-1]
ss := strings.Split(s, ";")
for _, p := range ss {
i, err := strconv.Atoi(p)
if err != nil {
//t.logf("invalid CSI arg '%s'\n", p)
break
}
c.args = append(c.args, i)
}
}
func (c *csiEscape) arg(i, def int) int {
if i >= len(c.args) || i < 0 {
return def
}
return c.args[i]
}
// maxarg takes the maximum of arg(i, def) and def
func (c *csiEscape) maxarg(i, def int) int {
return max(c.arg(i, def), def)
}
func (t *State) handleCSI() {
c := &t.csi
switch c.mode {
default:
goto unknown
case '@': // ICH - insert <n> blank char
t.insertBlanks(c.arg(0, 1))
case 'A': // CUU - cursor <n> up
t.moveTo(t.cur.X, t.cur.Y-c.maxarg(0, 1))
case 'B', 'e': // CUD, VPR - cursor <n> down
t.moveTo(t.cur.X, t.cur.Y+c.maxarg(0, 1))
case 'c': // DA - device attributes
if c.arg(0, 0) == 0 {
// TODO: write vt102 id
}
case 'C', 'a': // CUF, HPR - cursor <n> forward
t.moveTo(t.cur.X+c.maxarg(0, 1), t.cur.Y)
case 'D': // CUB - cursor <n> backward
t.moveTo(t.cur.X-c.maxarg(0, 1), t.cur.Y)
case 'E': // CNL - cursor <n> down and first col
t.moveTo(0, t.cur.Y+c.arg(0, 1))
case 'F': // CPL - cursor <n> up and first col
t.moveTo(0, t.cur.Y-c.arg(0, 1))
case 'g': // TBC - tabulation clear
switch c.arg(0, 0) {
// clear current tab stop
case 0:
t.tabs[t.cur.X] = false
// clear all tabs
case 3:
for i := range t.tabs {
t.tabs[i] = false
}
default:
goto unknown
}
case 'G', '`': // CHA, HPA - Move to <col>
t.moveTo(c.arg(0, 1)-1, t.cur.Y)
case 'H', 'f': // CUP, HVP - move to <row> <col>
t.moveAbsTo(c.arg(1, 1)-1, c.arg(0, 1)-1)
case 'I': // CHT - cursor forward tabulation <n> tab stops
n := c.arg(0, 1)
for i := 0; i < n; i++ {
t.putTab(true)
}
case 'J': // ED - clear screen
// TODO: sel.ob.x = -1
switch c.arg(0, 0) {
case 0: // below
t.clear(t.cur.X, t.cur.Y, t.cols-1, t.cur.Y)
if t.cur.Y < t.rows-1 {
t.clear(0, t.cur.Y+1, t.cols-1, t.rows-1)
}
case 1: // above
if t.cur.Y > 1 {
t.clear(0, 0, t.cols-1, t.cur.Y-1)
}
t.clear(0, t.cur.Y, t.cur.X, t.cur.Y)
case 2: // all
t.clear(0, 0, t.cols-1, t.rows-1)
default:
goto unknown
}
case 'K': // EL - clear line
switch c.arg(0, 0) {
case 0: // right
t.clear(t.cur.X, t.cur.Y, t.cols-1, t.cur.Y)
case 1: // left
t.clear(0, t.cur.Y, t.cur.X, t.cur.Y)
case 2: // all
t.clear(0, t.cur.Y, t.cols-1, t.cur.Y)
}
case 'S': // SU - scroll <n> lines up
t.scrollUp(t.top, c.arg(0, 1))
case 'T': // SD - scroll <n> lines down
t.scrollDown(t.top, c.arg(0, 1))
case 'L': // IL - insert <n> blank lines
t.insertBlankLines(c.arg(0, 1))
case 'l': // RM - reset mode
t.setMode(c.priv, false, c.args)
case 'M': // DL - delete <n> lines
t.deleteLines(c.arg(0, 1))
case 'X': // ECH - erase <n> chars
t.clear(t.cur.X, t.cur.Y, t.cur.X+c.arg(0, 1)-1, t.cur.Y)
case 'P': // DCH - delete <n> chars
t.deleteChars(c.arg(0, 1))
case 'Z': // CBT - cursor backward tabulation <n> tab stops
n := c.arg(0, 1)
for i := 0; i < n; i++ {
t.putTab(false)
}
case 'd': // VPA - move to <row>
t.moveAbsTo(t.cur.X, c.arg(0, 1)-1)
case 'h': // SM - set terminal mode
t.setMode(c.priv, true, c.args)
case 'm': // SGR - terminal attribute (color)
t.setAttr(c.args)
case 'n':
switch c.arg(0, 0) {
case 5: // DSR - device status report
t.w.Write([]byte("\033[0n"))
case 6: // CPR - cursor position report
t.w.Write([]byte(fmt.Sprintf("\033[%d;%dR", t.cur.Y+1, t.cur.X+1)))
}
case 'r': // DECSTBM - set scrolling region
if c.priv {
goto unknown
} else {
t.setScroll(c.arg(0, 1)-1, c.arg(1, t.rows)-1)
t.moveAbsTo(0, 0)
}
case 's': // DECSC - save cursor position (ANSI.SYS)
t.saveCursor()
case 'u': // DECRC - restore cursor position (ANSI.SYS)
t.restoreCursor()
}
return
unknown: // TODO: get rid of this goto
t.logf("unknown CSI sequence '%c'\n", c.mode)
// TODO: c.dump()
}
|