1
1
mirror of https://github.com/walles/moar.git synced 2024-11-22 21:50:43 +03:00
moar/twin/screen-setup-windows.go

55 lines
1.3 KiB
Go
Raw Normal View History

// +build windows
package twin
import (
"os"
"golang.org/x/sys/windows"
"golang.org/x/term"
)
func (screen *UnixScreen) setupSigwinchNotification() {
screen.sigwinch = make(chan int, 1)
screen.sigwinch <- 0 // Trigger initial screen size query
// No SIGWINCH handling on Windows for now, contributions welcome, see
// sigwinch.go for inspiration.
}
func (screen *UnixScreen) setupTtyInTtyOut() {
// This won't work if we're getting data piped to us, contributions welcome.
screen.ttyIn = os.Stdin
// Set input stream to raw mode
2021-04-15 21:14:06 +03:00
var err error
2021-04-17 08:25:58 +03:00
stdin := windows.Handle(screen.ttyIn.Fd())
var originalMode uint32
err = windows.GetConsoleMode(stdin, &originalMode)
if err != nil {
panic(err)
}
err = windows.SetConsoleMode(stdin, originalMode|windows.ENABLE_VIRTUAL_TERMINAL_INPUT)
if err != nil {
panic(err)
}
screen.oldTerminalState, err = term.MakeRaw(int(screen.ttyIn.Fd()))
2021-04-15 21:14:06 +03:00
if err != nil {
panic(err)
}
screen.ttyOut = os.Stdout
// Enable console colors, from: https://stackoverflow.com/a/52579002
stdout := windows.Handle(screen.ttyOut.Fd())
2021-04-17 08:25:58 +03:00
err = windows.GetConsoleMode(stdout, &originalMode)
if err != nil {
panic(err)
}
err = windows.SetConsoleMode(stdout, originalMode|windows.ENABLE_VIRTUAL_TERMINAL_PROCESSING)
if err != nil {
panic(err)
}
}