neowofetch/utils/printing.go

231 lines
4.9 KiB
Go
Raw Normal View History

2022-09-22 14:05:20 +02:00
package utils
import (
2022-09-22 14:44:27 +02:00
"encoding/base64"
2022-09-22 14:05:20 +02:00
"fmt"
2022-09-25 10:24:09 +02:00
"io/ioutil"
2022-09-22 14:44:27 +02:00
"os"
"path/filepath"
"strconv"
2022-09-22 14:05:20 +02:00
"strings"
2022-09-22 14:44:27 +02:00
2022-09-25 20:50:20 +02:00
"github.com/exhq/neowofetch/asciiarts"
2022-09-22 14:44:27 +02:00
"github.com/exhq/neowofetch/data"
"github.com/exhq/neowofetch/images"
2022-09-22 14:05:20 +02:00
)
func rgb(r, g, b int) string {
return fmt.Sprintf("\x1b[38:2::%d:%d:%dm", r, g, b)
}
var colors = make(map[string]string)
var oldcolors = make(map[string]int)
2022-10-16 14:02:02 +02:00
var color_map = map[string]string{
"black": "30",
"red": "31",
"green": "32",
"yellow": "33",
"blue": "34",
"magenta": "35",
"cyan": "36",
"white": "37",
"*": "37",
}
2022-09-22 14:05:20 +02:00
var logoIndex = 0
var isInProgressLine = false
var logoLines []string
var logoWidth int
var defaultcolor = "red 255 38 116 \ngreen 16 210 117\nblue 104 174 212\nwhite 250 253 255"
2022-09-22 14:44:27 +02:00
var pngWidth = 12
var pngHeight = 12
var pngData []byte
var colorconf = os.Getenv("HOME") + "/.config/neowofetch/colors"
var folderconf = filepath.Dir(colorconf)
var _, existcolorconf = os.Stat(colorconf)
var _, existfolderconf = os.Stat(folderconf)
func Initcolor() {
if os.IsNotExist(existfolderconf) {
os.Mkdir(folderconf, os.ModePerm)
}
if os.IsNotExist(existcolorconf) {
f, _ := os.Create(colorconf)
_, _ = f.WriteString(defaultcolor)
}
c, _ := os.ReadFile(colorconf)
content := string(c)
if Defaultcolor {
content = defaultcolor
}
lines := strings.Split(string(content), "\n")
for _, line := range lines {
2022-10-14 11:00:43 +02:00
if line == "" {
continue
}
word := strings.Split(line, " ")
R, _ := strconv.Atoi(word[1])
G, _ := strconv.Atoi(word[2])
B, _ := strconv.Atoi(word[3])
colors[word[0]] = rgb(R, G, B)
}
}
2022-09-22 14:44:27 +02:00
func CutePrintInit() {
dist := data.GetDistroVariable("ID")
2022-09-25 20:50:20 +02:00
logo := asciiarts.GetAscii(dist)
if Asciiforced {
logo = asciiarts.GetAscii(Forceddistro)
2022-09-25 10:24:09 +02:00
}
2022-09-22 14:05:20 +02:00
if noascii {
logo = ""
}
2022-09-22 14:44:27 +02:00
if usepng {
pngData = images.DistroImages[dist]
logo = strings.Repeat(" ", pngWidth) + " " + strings.Repeat("\n", pngHeight)
2022-09-22 14:44:27 +02:00
}
2022-09-25 12:27:18 +02:00
if Customascii {
body, _ := ioutil.ReadFile(asciidir)
logo = (string(body))
}
2022-09-22 14:05:20 +02:00
logoLines = strings.Split(logo, "\n")
logoWidth = 0
for _, v := range logoLines {
2022-09-25 20:50:20 +02:00
lineLength := len([]rune(v)) + 2
2022-09-22 14:05:20 +02:00
if lineLength > logoWidth {
2022-09-25 20:50:20 +02:00
logoWidth = lineLength
2022-09-22 14:05:20 +02:00
}
}
}
func printLogoIfAtBeginningOfNewLine() {
if !isInProgressLine {
isInProgressLine = true
if logoIndex < len(logoLines) {
logoLine := logoLines[logoIndex]
logoLineLength := len([]rune(logoLine))
padding := strings.Repeat(" ", logoWidth-logoLineLength)
fmt.Printf("%s%s", logoLine, padding)
} else {
fmt.Printf("%s", strings.Repeat(" ", logoWidth))
}
2022-09-22 14:44:27 +02:00
logoIndex += 1
2022-09-22 14:05:20 +02:00
}
}
func uwuify(message string) string {
2022-09-22 14:05:20 +02:00
sentence := strings.Split(message, " ")
ret := ""
2022-09-22 14:05:20 +02:00
for i, word := range sentence {
if !strings.Contains(strings.ToLower(word), "uwu") {
word = strings.ReplaceAll(word, "u", "UwU")
if !strings.Contains(strings.ToLower(word), "owo") {
2022-09-22 14:05:20 +02:00
word = strings.ReplaceAll(word, "o", "OwO")
}
word = strings.ReplaceAll(word, "r", "w")
}
if i != 0 {
ret += " "
}
ret += word
}
return ret
}
type Format struct {
noUwuOverride bool
colorFormat string
oldcolorFormat int
2022-09-22 14:05:20 +02:00
}
func parseFormat(format string) (parsedFormat Format) {
for _, v := range strings.Split(format, "|") {
colorFormat, isColor := colors[v]
parsedFormat.colorFormat += colorFormat
if isColor && hascolor {
2022-09-22 14:05:20 +02:00
parsedFormat.colorFormat += colorFormat
} else {
switch v {
case "italic":
parsedFormat.colorFormat += "\x1b[3m"
case "bold":
parsedFormat.colorFormat += "\x1b1"
case "nouwu":
parsedFormat.noUwuOverride = true
case "*":
default:
if hascolor && !colorold {
println("Unknown format code: ", v)
}
2022-09-22 14:05:20 +02:00
}
}
}
return parsedFormat
}
2022-09-25 12:27:18 +02:00
func getcustomizeddistro() string {
if !Asciiforced {
2022-09-25 12:27:18 +02:00
return data.GetDistroVariable("ID")
} else {
return Forceddistro
2022-09-25 12:27:18 +02:00
}
}
2022-09-22 14:05:20 +02:00
func CutePrint(
message string,
format string,
) {
printLogoIfAtBeginningOfNewLine()
parsedFormat := parseFormat(format)
willUwuify := shoulduwuify && !parsedFormat.noUwuOverride
if willUwuify {
message = uwuify(message)
}
if !colorold {
fmt.Printf("%s%s\x1b[0m", parsedFormat.colorFormat, message)
} else {
if os.IsNotExist(existcolorconf) {
f, _ := os.Create(colorconf)
_, _ = f.WriteString("red 255 0 0 \ngreen 0 255 0\nblue 0 0 255\nwhite 255 255 255")
2022-10-16 14:02:02 +02:00
}
if colorold && hascolor {
for k, v := range color_map {
if strings.Contains(format, k) {
fmt.Printf("\033[1;%sm%s\033[m", v, message)
break
}
}
}
}
2022-09-22 14:05:20 +02:00
}
func CuteNewLine() {
printLogoIfAtBeginningOfNewLine()
isInProgressLine = false
fmt.Println()
}
func CutePrintEnd() {
for logoIndex < len(logoLines) {
CuteNewLine()
}
2022-09-22 14:44:27 +02:00
if usepng {
fmt.Printf("\x1b[%dA", logoIndex)
fmt.Printf("\x1b]1337;File=inline=1;width=%d;height=%d:", pngWidth, pngHeight)
enc := base64.NewEncoder(base64.StdEncoding, os.Stdout)
2022-09-25 12:27:18 +02:00
enc.Write(images.DistroImages[getcustomizeddistro()])
2022-09-22 14:44:27 +02:00
enc.Close()
fmt.Println("\a")
}
2022-09-22 14:05:20 +02:00
}