Cleanup main package
This commit is contained in:
parent
0b05522b05
commit
2f73596d35
73
gilo.go
73
gilo.go
@ -2,68 +2,15 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"fmt"
|
|
||||||
"golang.org/x/term"
|
|
||||||
"os"
|
"os"
|
||||||
|
"timshome.page/gilo/internal/rune"
|
||||||
|
"timshome.page/gilo/internal/terminal"
|
||||||
)
|
)
|
||||||
|
|
||||||
func isAscii(char rune) bool {
|
|
||||||
ord := int(char)
|
|
||||||
|
|
||||||
return ord < 0x80
|
|
||||||
}
|
|
||||||
|
|
||||||
func isCtrl(char rune) bool {
|
|
||||||
if !isAscii(char) {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
ord := int(char)
|
|
||||||
|
|
||||||
return ord == 0x7f || ord < 0x20
|
|
||||||
}
|
|
||||||
|
|
||||||
// Return the input code of a Ctrl-key chord.
|
|
||||||
func ctrlKey(char rune) rune {
|
|
||||||
ord := int(char)
|
|
||||||
raw := ord & 0x1f
|
|
||||||
|
|
||||||
if !isCtrl(rune(raw)) {
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
return rune(raw)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Put the terminal in raw mode
|
|
||||||
func rawOn() *term.State {
|
|
||||||
oldState, err := term.MakeRaw(int(os.Stdin.Fd()))
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return oldState
|
|
||||||
}
|
|
||||||
|
|
||||||
// Restore the terminal to canonical mode
|
|
||||||
func rawOff(oldState *term.State) {
|
|
||||||
err := term.Restore(int(os.Stdin.Fd()), oldState)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Print a formatted string to stdout, with CRLF line endings for proper terminal formatting
|
|
||||||
func outLn(format string, a ...interface{}) {
|
|
||||||
formatted := fmt.Sprintf(format, a...)
|
|
||||||
|
|
||||||
fmt.Printf("%s\r\n", formatted)
|
|
||||||
}
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
// Go to proper raw mode, but restore canonical mode at extit
|
// Go to proper raw mode, but restore canonical mode at exit
|
||||||
oldState := rawOn()
|
oldState := terminal.RawOn()
|
||||||
defer rawOff(oldState)
|
defer terminal.RawOff(oldState)
|
||||||
|
|
||||||
reader := bufio.NewReader(os.Stdin)
|
reader := bufio.NewReader(os.Stdin)
|
||||||
|
|
||||||
@ -75,13 +22,13 @@ func main() {
|
|||||||
|
|
||||||
// Ugliest syntax structure ever?
|
// Ugliest syntax structure ever?
|
||||||
switch {
|
switch {
|
||||||
case char == ctrlKey('q'):
|
case char == rune.Ctrl('q'):
|
||||||
outLn("bye!")
|
terminal.OutLn("bye!")
|
||||||
return
|
return
|
||||||
case isCtrl(char):
|
case rune.IsCtrl(char):
|
||||||
outLn("%d", char)
|
terminal.OutLn("%d", char)
|
||||||
default:
|
default:
|
||||||
outLn("%d ('%c')", char, char)
|
terminal.OutLn("%d ('%c')", char, char)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user