Add Win32 VT mode support

This commit is contained in:
KsaNL 2023-05-17 18:41:47 +08:00 committed by GitHub
parent c0ab06e961
commit aa7766b47e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,7 @@ import (
"net"
"os"
"regexp"
"runtime"
"strings"
"time"
@ -14,6 +15,7 @@ import (
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"golang.org/x/sys/windows"
)
const (
@ -142,6 +144,21 @@ var serverCmd = &cobra.Command{
},
}
// Add console VT color mode
func openWinVT() {
if runtime.GOOS != "windows" {
return
}
stdout := windows.Handle(os.Stdout.Fd())
var mode uint32
windows.GetConsoleMode(stdout, &mode)
mode |= windows.ENABLE_VIRTUAL_TERMINAL_PROCESSING // Add VT Color Support
windows.SetConsoleMode(stdout, mode)
}
// fakeFlags replace the old flag format with the new format(eg: `-config` ->> `--config`)
func fakeFlags() {
var args []string
@ -157,6 +174,9 @@ func fakeFlags() {
}
func init() {
//
openWinVT()
// compatible with old flag format
fakeFlags()