Hochwasser/rpc/repl.go

247 lines
5.6 KiB
Go
Raw Normal View History

2020-02-14 22:29:58 +01:00
package rpc
import (
"bufio"
"encoding/hex"
"fmt"
"image"
"image/color"
"os"
"strconv"
"strings"
2020-12-31 18:44:56 +01:00
"github.com/SpeckiJ/Hochwasser/pixelflut"
2020-02-14 22:29:58 +01:00
"github.com/SpeckiJ/Hochwasser/render"
)
// Fluter implements flut operations that can be triggered via a REPL
type Fluter interface {
2020-12-31 18:44:56 +01:00
getTask() pixelflut.FlutTask
applyTask(pixelflut.FlutTask)
2020-02-14 22:29:58 +01:00
stopTask()
toggleMetrics()
}
const commandMode = "cmd"
const textMode = "txt"
2020-02-14 22:29:58 +01:00
// RunREPL starts reading os.Stdin for commands to apply to the given Fluter
func RunREPL(f Fluter) {
mode := commandMode
2022-01-02 08:07:49 +01:00
textSize := 10.0
2020-12-28 00:58:50 +01:00
var textCol image.Image = image.White
var bgCol image.Image = image.Transparent
2020-02-14 22:29:58 +01:00
fmt.Print("[rán] REPL is active. ")
printHelp()
2020-02-14 22:29:58 +01:00
scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
inputStr := scanner.Text()
switch strings.ToLower(mode) {
2020-02-14 22:29:58 +01:00
case textMode:
if strings.ToLower(inputStr) == commandMode {
2020-02-14 22:29:58 +01:00
fmt.Println("[rán] command mode")
mode = commandMode
continue
}
t := f.getTask()
2020-02-15 13:58:01 +01:00
t.Img = render.RenderText(inputStr, textSize, textCol, bgCol)
2020-02-14 22:29:58 +01:00
f.applyTask(t)
case commandMode:
input := strings.Split(inputStr, " ")
cmd := strings.ToLower(input[0])
args := input[1:]
t := f.getTask()
printTask := true
2020-02-14 22:29:58 +01:00
switch cmd {
case "stop":
t.Paused = true
2020-02-14 22:29:58 +01:00
f.stopTask()
printTask = false
2020-02-14 22:29:58 +01:00
case "start":
t.Paused = false
2020-02-14 22:29:58 +01:00
2022-01-02 07:17:16 +01:00
case "toggle", ".":
t.Paused = !t.Paused
if t.Paused {
f.stopTask()
printTask = false
}
case "offset", "of":
if len(args) == 1 && args[0] == "rand" {
t.RandOffset = true
t.Offset = image.Point{}
} else if len(args) == 2 {
t.RandOffset = false
2020-02-14 22:29:58 +01:00
x, err := strconv.Atoi(args[0])
y, err2 := strconv.Atoi(args[1])
if err == nil && err2 == nil {
t.Offset = image.Pt(x, y)
}
}
case "connections", "c":
2020-02-14 22:29:58 +01:00
if len(args) == 1 {
if conns, err := strconv.Atoi(args[0]); err == nil {
t.MaxConns = conns
}
}
case "host", "address", "a":
if len(args) == 1 {
t.Address = args[0]
}
case "order", "o":
if len(args) == 1 {
t.RenderOrder = pixelflut.NewOrder(args[0])
}
2020-02-14 22:29:58 +01:00
2020-12-29 18:28:19 +01:00
case "rgbsplit":
t.RGBSplit = !t.RGBSplit
2020-02-14 22:29:58 +01:00
case "txt":
if len(args) > 0 {
if size, err := strconv.Atoi(args[0]); err == nil {
2022-01-02 08:07:49 +01:00
textSize = float64(size)
2020-02-14 22:29:58 +01:00
}
}
if len(args) > 1 {
2020-12-28 00:58:50 +01:00
textCol = parseColorOrPalette(args[1])
2020-02-14 22:29:58 +01:00
}
2020-02-15 13:58:01 +01:00
if len(args) > 2 {
2020-12-28 00:58:50 +01:00
bgCol = parseColorOrPalette(args[2])
}
if len(args) < 4 {
fmt.Printf("[rán] text mode, return via '%v'\n", strings.ToUpper(commandMode))
2020-12-28 00:58:50 +01:00
mode = textMode
printTask = false
2020-12-28 00:58:50 +01:00
} else {
input := strings.Join(args[3:], " ")
t.Img = render.RenderText(input, textSize, textCol, bgCol)
2020-02-15 13:58:01 +01:00
}
2020-02-14 22:29:58 +01:00
case "img", "i":
2020-02-14 22:29:58 +01:00
if len(args) > 0 {
path := strings.Join(args, " ")
if img, err := render.ReadImage(path); err != nil {
fmt.Println(err)
2020-12-31 18:44:56 +01:00
continue
2020-02-14 22:29:58 +01:00
} else {
2020-12-31 17:42:53 +01:00
t.Img = img
2020-02-14 22:29:58 +01:00
}
}
2022-01-02 08:07:49 +01:00
case "scale", "s":
quality := true
var facX, facY float64
var err error
if len(args) >= 1 {
facX, err = strconv.ParseFloat(args[0], 64)
if err != nil {
fmt.Println(err)
continue
}
facY = facX
if len(args) >= 2 {
facY, err = strconv.ParseFloat(args[1], 64)
if err != nil {
fmt.Println(err)
continue
}
}
if len(args) > 2 {
quality = false
}
t.Img = render.ScaleImage(t.Img, facX, facY, quality)
}
case "rotate", "r":
t.Img = render.RotateImage90(t.Img)
// the commands below don't affect the task, so we don't need to apply it to clients -> continue
2020-02-14 22:29:58 +01:00
case "metrics":
f.toggleMetrics()
continue
case "status":
fmt.Println(t)
continue
case "help":
printHelp()
continue
default:
fmt.Print("[rán] unknown command. ")
printHelp()
continue
}
2020-02-14 22:29:58 +01:00
if printTask {
fmt.Println(t)
2020-02-14 22:29:58 +01:00
}
f.applyTask(t)
2020-02-14 22:29:58 +01:00
}
}
}
2020-12-28 00:58:50 +01:00
func printHelp() {
fmt.Println(`available commands:
general
start start fluting
stop pause fluting
status print current task
content
i <filepath> set image
txt <scale> <color <bgcolor> <txt> send text
txt [<scale> [<color> [<bgcolor>]] enter interactive text mode
2022-01-02 08:07:49 +01:00
scale <facX> [<facY> [lofi]] scale content
rotate rotate content 90°
draw modes
o set order (l,r,t,b,random)
of <x> <y> set top-left offset
of rand random offset for each draw
rgbsplit toggle RGB split effect
networking
c <n> set number of connections per client
a <host>:<port> set target server
metrics toggle bandwidth reporting (may cost some performance)`)
}
2020-12-28 00:58:50 +01:00
// try to parse as hex-encoded RGB color,
// alternatively treat it as palette name. If both fail,
// give image.Transparent
func parseColorOrPalette(input string) image.Image {
if input == "w" {
return image.NewUniform(color.White)
} else if input == "b" {
return image.NewUniform(color.Black)
} else if input == "t" {
return image.Transparent
} else if col, err := hex.DecodeString(input); err == nil && len(col) >= 3 {
2020-12-28 00:58:50 +01:00
var alpha byte = 0xff
if len(col) == 4 {
alpha = col[3]
}
return image.NewUniform(color.NRGBA{col[0], col[1], col[2], alpha})
}
if pal := render.PrideFlags[input]; len(pal) != 0 {
2020-12-29 21:09:00 +01:00
return &render.StripePattern{Palette: pal, Size: 13}
}
if p, ok := render.DynPatterns[input]; ok {
return p
}
return image.Transparent
2020-12-28 00:58:50 +01:00
}