mirror of
https://github.com/syssecfsu/witty.git
synced 2024-12-25 04:02:36 +01:00
69 lines
1.1 KiB
Go
69 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"log"
|
|
"os"
|
|
"time"
|
|
|
|
"golang.org/x/term"
|
|
)
|
|
|
|
type writeRecord struct {
|
|
Dur time.Duration `json:"Duration"`
|
|
Data []byte `json:"Data"`
|
|
}
|
|
|
|
func main() {
|
|
if len(os.Args) != 2 {
|
|
log.Fatalln("Usage: replay <recordfile>")
|
|
}
|
|
|
|
fp, err := os.Open(os.Args[1])
|
|
|
|
if err != nil {
|
|
log.Fatalln("Failed to open record file", err)
|
|
}
|
|
|
|
screen := struct {
|
|
io.Reader
|
|
io.Writer
|
|
}{os.Stdin, os.Stdout}
|
|
|
|
t := term.NewTerminal(screen, ">")
|
|
|
|
if t == nil {
|
|
log.Fatalln("Failed to create terminal")
|
|
}
|
|
|
|
w, h, err := term.GetSize(int(os.Stdout.Fd()))
|
|
|
|
if (w != 120) || (h != 36) {
|
|
fmt.Println("Set terminal window to 120x36")
|
|
os.Stdout.WriteString(`\e[8;50;100t`)
|
|
}
|
|
/* if err := term.SetSize(120, 36); err != nil {
|
|
log.Println("Failed to set terminal size", err)
|
|
} */
|
|
|
|
decoder := json.NewDecoder(fp)
|
|
|
|
if decoder == nil {
|
|
log.Fatalln("Failed to create JSON decoder")
|
|
}
|
|
|
|
for decoder.More() {
|
|
var record writeRecord
|
|
|
|
if err := decoder.Decode(&record); err != nil {
|
|
log.Println("Failed to decode record", err)
|
|
continue
|
|
}
|
|
|
|
time.Sleep(record.Dur)
|
|
t.Write(record.Data)
|
|
}
|
|
}
|