-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgetkey.go
56 lines (46 loc) · 1.33 KB
/
getkey.go
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
package styledconsole
import (
"bufio"
"io"
"os"
)
type typedKey struct {
KeyType string
Character rune
ArrowKey rune
}
func getKey() (*typedKey, error) {
reader := bufio.NewReader(os.Stdin)
// We do not handle the error yet but when calling ReadRune()
peekedBytes, _ := reader.Peek(1)
if len(peekedBytes) == 1 && peekedBytes[0] == '\033' && reader.Buffered() == 3 {
peekedBytes, _ := reader.Peek(3)
// We test for an escape sequence (byte 91 is "[")
if len(peekedBytes) == 3 && peekedBytes[0] == '\033' && peekedBytes[1] == 91 {
// We have an escape sequence, we discard it.
_, _ = reader.Discard(3)
// The escape codes for arrows are <esc>[A, <esc>[B, <esc>[C and <esc>[D
switch peekedBytes[2] {
case 'A':
// advance reader by 3 bytes
return &typedKey{KeyType: "arrowKey", ArrowKey: '↑'}, nil
case 'B':
return &typedKey{KeyType: "arrowKey", ArrowKey: '↓'}, nil
case 'C':
return &typedKey{KeyType: "arrowKey", ArrowKey: '→'}, nil
case 'D':
return &typedKey{KeyType: "arrowKey", ArrowKey: '←'}, nil
}
// The escape sequence is not handled yet.
return nil, nil
}
}
inputRune, _, err := reader.ReadRune()
if err != nil {
if err == io.EOF {
return &typedKey{KeyType: "EOF"}, nil
}
return nil, err
}
return &typedKey{KeyType: "char", Character: inputRune}, nil
}