2020-05-25 19:26:40 -04:00
|
|
|
package tea
|
2020-01-10 16:02:04 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2020-02-18 14:52:57 -05:00
|
|
|
"fmt"
|
2020-01-10 16:02:04 -05:00
|
|
|
"io"
|
|
|
|
"unicode/utf8"
|
|
|
|
)
|
|
|
|
|
2020-07-29 20:49:20 -04:00
|
|
|
// KeyMsg contains information about a keypress. KeyMsgs are always sent to
|
|
|
|
// the program's update function. There are a couple general patterns you could
|
|
|
|
// use to check for keypresses:
|
|
|
|
//
|
2020-07-30 11:29:20 -04:00
|
|
|
// // Switch on the type (safer)
|
2020-07-29 20:49:20 -04:00
|
|
|
// switch msg := msg.(type) {
|
|
|
|
// case KeyMsg:
|
|
|
|
// switch msg.Type {
|
2020-07-30 11:29:20 -04:00
|
|
|
// case KeyEnter:
|
|
|
|
// fmt.Println("you pressed enter!")
|
|
|
|
// case KeyRune:
|
|
|
|
// switch msg.Rune {
|
|
|
|
// case 'a':
|
|
|
|
// fmt.Println("you pressed a!")
|
|
|
|
// }
|
2020-07-29 20:49:20 -04:00
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
2020-07-30 11:29:20 -04:00
|
|
|
// // Switch on the string representation of the key (shorter)
|
2020-07-29 20:49:20 -04:00
|
|
|
// switch msg := msg.(type) {
|
|
|
|
// case KeyMsg:
|
|
|
|
// switch msg.String() {
|
2020-07-30 11:29:20 -04:00
|
|
|
// case "enter":
|
|
|
|
// fmt.Println("you pressed enter!")
|
|
|
|
// case "a':
|
|
|
|
// fmt.Println("you pressed a!")
|
2020-07-29 20:49:20 -04:00
|
|
|
// }
|
|
|
|
// }
|
2020-01-17 20:46:34 -05:00
|
|
|
type KeyMsg Key
|
2020-01-10 16:02:04 -05:00
|
|
|
|
2020-05-25 08:02:46 -04:00
|
|
|
// String returns a friendly name for a key.
|
2020-07-29 20:49:20 -04:00
|
|
|
//
|
|
|
|
// k := KeyType{Type: KeyEnter}
|
|
|
|
// fmt.Println(k)
|
|
|
|
// // Output: enter
|
2020-02-19 18:35:34 -05:00
|
|
|
func (k *KeyMsg) String() (str string) {
|
|
|
|
if k.Alt {
|
|
|
|
str += "alt+"
|
|
|
|
}
|
2020-01-17 20:46:34 -05:00
|
|
|
if k.Type == KeyRune {
|
2020-02-19 18:35:34 -05:00
|
|
|
str += string(k.Rune)
|
|
|
|
return str
|
2020-01-26 16:46:30 -05:00
|
|
|
} else if s, ok := keyNames[int(k.Type)]; ok {
|
2020-02-19 18:35:34 -05:00
|
|
|
str += s
|
|
|
|
return str
|
2020-01-17 20:46:34 -05:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2020-07-29 20:49:20 -04:00
|
|
|
// IsRune returns whether or not the key is a rune.
|
2020-01-17 20:46:34 -05:00
|
|
|
func (k *KeyMsg) IsRune() bool {
|
2020-01-25 00:56:53 -05:00
|
|
|
return k.Type == KeyRune
|
2020-01-17 20:46:34 -05:00
|
|
|
}
|
|
|
|
|
2020-05-25 08:02:46 -04:00
|
|
|
// Key contains information about a keypress.
|
2020-01-17 20:46:34 -05:00
|
|
|
type Key struct {
|
|
|
|
Type KeyType
|
|
|
|
Rune rune
|
2020-02-19 18:35:34 -05:00
|
|
|
Alt bool
|
2020-01-17 20:46:34 -05:00
|
|
|
}
|
|
|
|
|
2020-07-29 20:49:20 -04:00
|
|
|
// KeyType indicates the key pressed, such as KeyEnter or KeyBreak or
|
|
|
|
// KeyCtrlC. All other keys will be type KeyRune. To get the rune value, check
|
|
|
|
// the Rune method on a Key struct, or use the Key.String() method:
|
|
|
|
//
|
|
|
|
// k := Key{Type: KeyRune, Rune: 'a', Alt: true}
|
|
|
|
// if k.Type == KeyRune {
|
|
|
|
//
|
|
|
|
// fmt.Println(k.Rune)
|
|
|
|
// // Output: a
|
|
|
|
//
|
|
|
|
// fmt.Println(k.String())
|
|
|
|
// // Output: alt+a
|
|
|
|
//
|
|
|
|
// }
|
2020-01-17 20:46:34 -05:00
|
|
|
type KeyType int
|
|
|
|
|
|
|
|
// Control keys. I know we could do this with an iota, but the values are very
|
2020-01-26 15:39:54 -05:00
|
|
|
// specific, so we set the values explicitly to avoid any confusion.
|
|
|
|
//
|
|
|
|
// See also:
|
|
|
|
// https://en.wikipedia.org/wiki/C0_and_C1_control_codes
|
2020-01-17 20:46:34 -05:00
|
|
|
const (
|
2020-01-26 15:39:54 -05:00
|
|
|
keyNUL = 0 // null, \0
|
|
|
|
keySOH = 1 // start of heading
|
|
|
|
keySTX = 2 // start of text
|
2020-01-17 20:46:34 -05:00
|
|
|
keyETX = 3 // break, ctrl+c
|
2020-01-26 15:39:54 -05:00
|
|
|
keyEOT = 4 // end of transmission
|
|
|
|
keyENQ = 5 // enquiry
|
|
|
|
keyACK = 6 // acknowledge
|
|
|
|
keyBEL = 7 // bell, \a
|
2020-01-26 16:46:30 -05:00
|
|
|
keyBS = 8 // backspace
|
2020-01-18 11:20:26 -05:00
|
|
|
keyHT = 9 // horizontal tabulation, \t
|
|
|
|
keyLF = 10 // line feed, \n
|
2020-01-26 15:39:54 -05:00
|
|
|
keyVT = 11 // vertical tabulation \v
|
|
|
|
keyFF = 12 // form feed \f
|
2020-01-17 20:46:34 -05:00
|
|
|
keyCR = 13 // carriage return, \r
|
2020-01-26 15:39:54 -05:00
|
|
|
keySO = 14 // shift out
|
|
|
|
keySI = 15 // shift in
|
|
|
|
keyDLE = 16 // data link escape
|
|
|
|
keyDC1 = 17 // device control one
|
|
|
|
keyDC2 = 18 // device control two
|
|
|
|
keyDC3 = 19 // device control three
|
|
|
|
keyDC4 = 20 // device control four
|
|
|
|
keyNAK = 21 // negative acknowledge
|
|
|
|
keySYN = 22 // synchronous idle
|
|
|
|
keyETB = 23 // end of transmission block
|
|
|
|
keyCAN = 24 // cancel
|
|
|
|
keyEM = 25 // end of medium
|
|
|
|
keySUB = 26 // substitution
|
|
|
|
keyESC = 27 // escape, \e
|
|
|
|
keyFS = 28 // file separator
|
|
|
|
keyGS = 29 // group separator
|
|
|
|
keyRS = 30 // record separator
|
2020-01-17 20:46:34 -05:00
|
|
|
keyUS = 31 // unit separator
|
2020-01-26 15:39:54 -05:00
|
|
|
keySP = 32 // space
|
2020-01-17 20:46:34 -05:00
|
|
|
keyDEL = 127 // delete. on most systems this is mapped to backspace, I hear
|
|
|
|
)
|
|
|
|
|
2020-07-29 20:49:20 -04:00
|
|
|
// Control key aliases:
|
2020-01-26 16:46:30 -05:00
|
|
|
const (
|
2020-02-18 15:33:06 -05:00
|
|
|
KeyNull = keyNUL
|
2020-01-26 16:46:30 -05:00
|
|
|
KeyBreak = keyETX
|
|
|
|
KeyEnter = keyCR
|
|
|
|
KeyBackspace = keyBS
|
2020-02-18 11:06:37 -05:00
|
|
|
KeyTab = keyHT
|
2020-01-26 16:46:30 -05:00
|
|
|
KeySpace = keySP
|
|
|
|
KeyEsc = keyESC
|
|
|
|
KeyEscape = keyESC
|
|
|
|
KeyDelete = keyDEL
|
|
|
|
|
|
|
|
KeyCtrlAt = keyNUL // ctrl+@
|
|
|
|
KeyCtrlA = keySOH
|
|
|
|
KeyCtrlB = keySTX
|
|
|
|
KeyCtrlC = keyETX
|
|
|
|
KeyCtrlD = keyEOT
|
|
|
|
KeyCtrlE = keyENQ
|
|
|
|
KeyCtrlF = keyACK
|
|
|
|
KeyCtrlG = keyBEL
|
|
|
|
KeyCtrlH = keyBS
|
|
|
|
KeyCtrlI = keyHT
|
|
|
|
KeyCtrlJ = keyLF
|
|
|
|
KeyCtrlK = keyVT
|
|
|
|
KeyCtrlL = keyFF
|
|
|
|
KeyCtrlM = keyCR
|
|
|
|
KeyCtrlN = keySO
|
|
|
|
KeyCtrlO = keySI
|
|
|
|
KeyCtrlP = keyDLE
|
|
|
|
KeyCtrlQ = keyDC1
|
|
|
|
KeyCtrlR = keyDC2
|
|
|
|
KeyCtrlS = keyDC3
|
|
|
|
KeyCtrlT = keyDC4
|
|
|
|
KeyCtrlU = keyNAK
|
2020-07-21 15:50:07 -04:00
|
|
|
KeyCtrlV = keySYN
|
2020-01-26 16:46:30 -05:00
|
|
|
KeyCtrlW = keyETB
|
|
|
|
KeyCtrlX = keyCAN
|
|
|
|
KeyCtrlY = keyEM
|
|
|
|
KeyCtrlZ = keySUB
|
|
|
|
KeyCtrlOpenBracket = keyESC // ctrl+[
|
|
|
|
KeyCtrlBackslash = keyFS // ctrl+\
|
|
|
|
KeyCtrlCloseBracket = keyGS // ctrl+]
|
|
|
|
KeyCtrlCaret = keyRS // ctrl+^
|
|
|
|
KeyCtrlUnderscore = keyUS // ctrl+_
|
|
|
|
KeyCtrlQuestionMark = keyDEL // ctrl+?
|
|
|
|
)
|
|
|
|
|
2020-07-29 20:49:20 -04:00
|
|
|
// Other keys:
|
2020-01-26 16:46:30 -05:00
|
|
|
const (
|
|
|
|
KeyRune = -(iota + 1)
|
|
|
|
KeyUp
|
|
|
|
KeyDown
|
|
|
|
KeyRight
|
|
|
|
KeyLeft
|
2020-02-18 14:52:57 -05:00
|
|
|
KeyShiftTab
|
2020-02-19 21:06:57 -05:00
|
|
|
KeyHome
|
|
|
|
KeyEnd
|
|
|
|
KeyPgUp
|
|
|
|
KeyPgDown
|
2020-01-26 16:46:30 -05:00
|
|
|
)
|
|
|
|
|
2020-01-17 20:46:34 -05:00
|
|
|
// Mapping for control keys to friendly consts
|
2020-01-26 16:46:30 -05:00
|
|
|
var keyNames = map[int]string{
|
|
|
|
keyNUL: "ctrl+@", // also ctrl+`
|
|
|
|
keySOH: "ctrl+a",
|
|
|
|
keySTX: "ctrl+b",
|
|
|
|
keyETX: "ctrl+c",
|
|
|
|
keyEOT: "ctrl+d",
|
|
|
|
keyENQ: "ctrl+e",
|
|
|
|
keyACK: "ctrl+f",
|
|
|
|
keyBEL: "ctrl+g",
|
|
|
|
keyBS: "backspace", // also ctrl+h
|
|
|
|
keyHT: "tab", // also ctrl+i
|
|
|
|
keyLF: "ctrl+j",
|
|
|
|
keyVT: "ctrl+k",
|
|
|
|
keyFF: "ctrl+l",
|
|
|
|
keyCR: "enter",
|
|
|
|
keySO: "ctrl+n",
|
|
|
|
keySI: "ctrl+o",
|
|
|
|
keyDLE: "ctrl+p",
|
|
|
|
keyDC1: "ctrl+q",
|
|
|
|
keyDC2: "ctrl+r",
|
|
|
|
keyDC3: "ctrl+s",
|
|
|
|
keyDC4: "ctrl+t",
|
|
|
|
keyNAK: "ctrl+u",
|
|
|
|
keySYN: "ctrl+v",
|
|
|
|
keyETB: "ctrl+w",
|
|
|
|
keyCAN: "ctrl+x",
|
|
|
|
keyEM: "ctrl+y",
|
|
|
|
keySUB: "ctrl+z",
|
|
|
|
keyESC: "esc",
|
|
|
|
keyFS: "ctrl+\\",
|
|
|
|
keyGS: "ctrl+]",
|
|
|
|
keyRS: "ctrl+^",
|
|
|
|
keyUS: "ctrl+_",
|
|
|
|
keySP: "space",
|
|
|
|
keyDEL: "delete",
|
|
|
|
|
2020-02-18 14:52:57 -05:00
|
|
|
KeyRune: "rune",
|
|
|
|
KeyUp: "up",
|
|
|
|
KeyDown: "down",
|
|
|
|
KeyRight: "right",
|
|
|
|
KeyLeft: "left",
|
|
|
|
KeyShiftTab: "shift+tab",
|
2020-02-19 21:06:57 -05:00
|
|
|
KeyHome: "home",
|
|
|
|
KeyEnd: "end",
|
|
|
|
KeyPgUp: "pgup",
|
|
|
|
KeyPgDown: "pgdown",
|
2020-01-17 20:46:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mapping for sequences to consts
|
2020-02-19 22:22:12 -05:00
|
|
|
// TODO: should we just move this into the hex table?
|
2020-01-17 20:46:34 -05:00
|
|
|
var sequences = map[string]KeyType{
|
2020-02-19 18:35:34 -05:00
|
|
|
"\x1b[A": KeyUp,
|
|
|
|
"\x1b[B": KeyDown,
|
|
|
|
"\x1b[C": KeyRight,
|
|
|
|
"\x1b[D": KeyLeft,
|
2020-01-10 23:12:25 -05:00
|
|
|
}
|
|
|
|
|
2020-02-19 21:06:57 -05:00
|
|
|
// Mapping for hex codes to consts. Unclear why these won't register as
|
|
|
|
// sequences.
|
|
|
|
var hexes = map[string]Key{
|
2020-05-25 08:03:59 -04:00
|
|
|
"1b5b5a": {Type: KeyShiftTab},
|
|
|
|
"1b0d": {Type: KeyEnter, Alt: true},
|
|
|
|
"1b7f": {Type: KeyDelete, Alt: true},
|
|
|
|
"1b5b48": {Type: KeyHome},
|
|
|
|
"1b5b377e": {Type: KeyHome}, // urxvt
|
|
|
|
"1b5b313b3348": {Type: KeyHome, Alt: true},
|
|
|
|
"1b1b5b377e": {Type: KeyHome, Alt: true}, // ursvt
|
|
|
|
"1b5b46": {Type: KeyEnd},
|
|
|
|
"1b5b387e": {Type: KeyEnd}, // urxvt
|
|
|
|
"1b5b313b3346": {Type: KeyEnd, Alt: true},
|
|
|
|
"1b1b5b387e": {Type: KeyEnd, Alt: true}, // urxvt
|
|
|
|
"1b5b357e": {Type: KeyPgUp},
|
|
|
|
"1b5b353b337e": {Type: KeyPgUp, Alt: true},
|
|
|
|
"1b1b5b357e": {Type: KeyPgUp, Alt: true}, // urxvt
|
|
|
|
"1b5b367e": {Type: KeyPgDown},
|
|
|
|
"1b5b363b337e": {Type: KeyPgDown, Alt: true},
|
|
|
|
"1b1b5b367e": {Type: KeyPgDown, Alt: true}, // urxvt
|
|
|
|
"1b5b313b3341": {Type: KeyUp, Alt: true},
|
|
|
|
"1b5b313b3342": {Type: KeyDown, Alt: true},
|
|
|
|
"1b5b313b3343": {Type: KeyRight, Alt: true},
|
|
|
|
"1b5b313b3344": {Type: KeyLeft, Alt: true},
|
2020-02-19 21:06:57 -05:00
|
|
|
}
|
|
|
|
|
2020-07-29 20:51:55 -04:00
|
|
|
// readInput reads keypress and mouse input from a TTY and returns a message
|
2020-06-22 20:30:16 -04:00
|
|
|
// containing information about the key or mouse event accordingly
|
2020-07-29 20:51:55 -04:00
|
|
|
func readInput(r io.Reader) (Msg, error) {
|
2020-01-10 16:02:04 -05:00
|
|
|
var buf [256]byte
|
|
|
|
|
|
|
|
// Read and block
|
2020-02-19 18:35:34 -05:00
|
|
|
numBytes, err := r.Read(buf[:])
|
2020-01-10 16:02:04 -05:00
|
|
|
if err != nil {
|
2020-06-22 20:30:16 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// See if it's a mouse event. For now we're parsing X10-type mouse events
|
|
|
|
// only.
|
|
|
|
mouseEvent, err := parseX10MouseEvent(buf[:numBytes])
|
|
|
|
if err == nil {
|
|
|
|
return MouseMsg(mouseEvent), nil
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|
|
|
|
|
2020-02-19 21:06:57 -05:00
|
|
|
hex := fmt.Sprintf("%x", buf[:numBytes])
|
|
|
|
|
|
|
|
// Some of these need special handling
|
|
|
|
if k, ok := hexes[hex]; ok {
|
2020-07-20 11:50:27 -04:00
|
|
|
return KeyMsg(k), nil
|
2020-02-18 14:52:57 -05:00
|
|
|
}
|
|
|
|
|
2020-02-19 18:35:34 -05:00
|
|
|
// Get unicode value
|
|
|
|
char, _ := utf8.DecodeRune(buf[:])
|
|
|
|
if char == utf8.RuneError {
|
2020-06-22 20:30:16 -04:00
|
|
|
return nil, errors.New("could not decode rune")
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|
|
|
|
|
2020-01-10 23:46:46 -05:00
|
|
|
// Is it a control character?
|
2020-02-19 18:35:34 -05:00
|
|
|
if numBytes == 1 && char <= keyUS || char == keyDEL {
|
2020-06-22 20:30:16 -04:00
|
|
|
return KeyMsg(Key{Type: KeyType(char)}), nil
|
2020-01-10 23:46:46 -05:00
|
|
|
}
|
|
|
|
|
2020-01-14 17:15:17 -05:00
|
|
|
// Is it a special sequence, like an arrow key?
|
2020-02-19 18:35:34 -05:00
|
|
|
if k, ok := sequences[string(buf[:numBytes])]; ok {
|
2020-06-22 20:30:16 -04:00
|
|
|
return KeyMsg(Key{Type: k}), nil
|
2020-01-10 23:46:46 -05:00
|
|
|
}
|
|
|
|
|
2020-02-19 18:35:34 -05:00
|
|
|
// Is the alt key pressed? The buffer will be prefixed with an escape
|
|
|
|
// sequence if so
|
|
|
|
if numBytes > 1 && buf[0] == 0x1b {
|
|
|
|
// Now remove the initial escape sequence and re-process to get the
|
|
|
|
// character.
|
|
|
|
c, _ := utf8.DecodeRune(buf[1:])
|
|
|
|
if c == utf8.RuneError {
|
2020-06-22 20:30:16 -04:00
|
|
|
return nil, errors.New("could not decode rune after removing initial escape")
|
2020-02-19 18:35:34 -05:00
|
|
|
}
|
2020-06-22 20:30:16 -04:00
|
|
|
return KeyMsg(Key{Alt: true, Type: KeyRune, Rune: c}), nil
|
2020-02-18 15:33:06 -05:00
|
|
|
}
|
|
|
|
|
2020-02-19 18:35:34 -05:00
|
|
|
// Just a regular, ol' rune
|
2020-06-22 20:30:16 -04:00
|
|
|
return KeyMsg(Key{Type: KeyRune, Rune: char}), nil
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|