sampler-fork/console/console.go

38 lines
574 B
Go
Raw Normal View History

package console
import (
"fmt"
ui "github.com/sqshq/termui"
"log"
"time"
)
const (
MaxRenderInterval = 1000 * time.Millisecond
MinRenderInterval = 100 * time.Millisecond
AppTitle = "sampler"
2019-02-25 00:08:36 +00:00
AppVersion = "0.1.0"
)
2019-03-08 04:04:46 +00:00
type AsciiFont string
const (
AsciiFontFlat AsciiFont = "flat"
AsciiFont3D AsciiFont = "3d"
)
type Console struct{}
func (self *Console) Init() {
fmt.Printf("\033]0;%s\007", AppTitle)
if err := ui.Init(); err != nil {
log.Fatalf("failed to initialize termui: %v", err)
}
}
func (self *Console) Close() {
ui.Close()
}