sampler-fork/console/console.go

51 lines
773 B
Go

package console
import (
"fmt"
ui "github.com/gizak/termui/v3"
"log"
"os"
"time"
)
const (
MaxRenderInterval = 1000 * time.Millisecond
MinRenderInterval = 100 * time.Millisecond
ColumnsCount = 80
RowsCount = 40
AppTitle = "sampler"
AppVersion = "1.0.0"
AppLicenseWarning = "UNLICENSED. FOR NON-COMMERCIAL USE ONLY. VISIT WWW.SAMPLER.DEV"
)
const (
BellCharacter = "\a"
)
type AsciiFont string
const (
AsciiFont2D AsciiFont = "2d"
AsciiFont3D AsciiFont = "3d"
)
func Init() {
fmt.Printf("\033]0;%s\007", AppTitle)
if err := ui.Init(); err != nil {
log.Fatalf("Failed to initialize ui: %v", err)
}
}
func Close() {
ui.Close()
}
func Exit(message string) {
if len(message) > 0 {
println(message)
}
os.Exit(0)
}