mirror of
https://gitlab1.ptb.de/waltem01/Matrix
synced 2024-12-26 03:51:45 +00:00
65 lines
1.5 KiB
Go
65 lines
1.5 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
|
|
"github.com/buger/goterm"
|
|
"github.com/go-resty/resty/v2"
|
|
"github.com/joho/godotenv"
|
|
)
|
|
|
|
func output(client *resty.Client, url string, width, height int, arr [][]Cell) {
|
|
goterm.MoveCursor(1, 2)
|
|
// Prepare instructions for matrix
|
|
instructions := make([]interface{}, 0)
|
|
// Append all live cells as pixel instructions
|
|
for j := 0; j < height; j++ {
|
|
for i := 0; i < width; i++ {
|
|
if arr[i][j].live {
|
|
instructions = append(instructions, Pixel{X: i, Y: j, Endpoint: PIXEL})
|
|
goterm.Print("X")
|
|
continue
|
|
}
|
|
goterm.Print(" ")
|
|
}
|
|
goterm.Println()
|
|
}
|
|
// Append update instruction
|
|
instructions = append(instructions, Update{Endpoint: UPDATE})
|
|
// Send to matrix
|
|
sendRequest(client, url, instructions)
|
|
|
|
// Update terminal UI
|
|
goterm.Flush()
|
|
}
|
|
|
|
func main() {
|
|
const FPS = 10
|
|
|
|
// Load .env file if it exists
|
|
err := godotenv.Load(".env")
|
|
if err != nil {
|
|
log.Fatal("Error loading .env file")
|
|
}
|
|
|
|
// Load env server data
|
|
url, width, height := loadMatrixData()
|
|
goterm.Printf("On '%s' at [%d x %d] with %d FPS\n", url, width, height, FPS)
|
|
|
|
// Initialize resty client
|
|
client := resty.New()
|
|
// Initialize pixel color
|
|
sendRequest(client, url, []interface{}{Color{R: 255, G: 255, B: 255, Endpoint: COLOR}})
|
|
|
|
// Run Game of Life
|
|
done := setup(func(c [][]Cell) {
|
|
output(client, url, width, height, c)
|
|
}, width, height, FPS)
|
|
|
|
// Wait for user input to quit
|
|
fmt.Scanln()
|
|
// Stop Game of Life, wait for routine
|
|
done <- true
|
|
}
|