From ddd6fb5a9df438f6b2881989db6b0fc7923339fd Mon Sep 17 00:00:00 2001 From: Mani Date: Sat, 1 Jun 2024 12:20:28 +0330 Subject: [PATCH] New frames --- frames/frames.go | 1 + frames/snoopy.go | 104 +++++++++++++++++++++++++++++++++++++++++++++++ main.go | 2 +- 3 files changed, 106 insertions(+), 1 deletion(-) create mode 100644 frames/snoopy.go diff --git a/frames/frames.go b/frames/frames.go index 4d5a23a..d237904 100644 --- a/frames/frames.go +++ b/frames/frames.go @@ -56,4 +56,5 @@ var FrameMap = map[string]FrameType{ "rick": Rick, "spidyswing": Spidy, "torus-knot": TorusKnot, + "snoopy": Snoopy, } diff --git a/frames/snoopy.go b/frames/snoopy.go new file mode 100644 index 0000000..b539c23 --- /dev/null +++ b/frames/snoopy.go @@ -0,0 +1,104 @@ +package frames + +var MyAnimation = DefaultFrameType(myAnimationFrames) + +var myAnimationFrames = []string{ + ` + @@%%@@ + @@@@@@@@@@@ @@@@@@ + @@@ @@@@@@@@ @ @@@@ + @@@ @@@@@@@@@@ @@ @@@@@@ + @@@@@@@@@@@@ @@@ @@@@@@ + @@@@@@@ @@@@@@@@@ @ + @@@@@@@@@@@@@ @@@@@@ @@@ + @@@@@@@@@@@@@@@@@@@@@@@ @@@ @@@@@@@ @@ + @@@@@ @@@@@@@ @@ @@@ @@@@@@@@@@ @@@ @@ + @@@ @@@@@@@@@@@@@ @@ @@ + @@ @@@ @@@@@ @@ @@@@@@@@@@ @@@ @@ + @@@ @@ @@@@@ @@@@ @@@@@ @@@ @@@ + @ @@@ @@@@@@ @@ @@@ @@@@ + @@ @@ @@@@@@@@ @@ @@@@ + @@ @@ @@ @@@@@ @@@ @@@ + @@@ @@@ @@@ @@ + @@@ @@ @@@ @@@ + @@ @@@ @@@@ @@ @@@ + @@ @@@ @@@@@@@@ @@@ @@@ + @@@ @@@@ @@@@@ @@@@ @@@@ + @@@ @@@@@@@@ @@@@@ @@@@@ + @@ @@@@ @@@@@@@@@@ @@@@@@@@@ + @@@@@@@ @@ @@ @@@@@@@ + @@@@ @@ @@@@@@@@@@ @@ + @@@@ @@@@@@@@@@@@@ @@ @@ @@ @@@ + @@@ @@@@@ @@@ @@@ @@@ + @@@@@@ @@@@@@@@@@ @@@@ + @@@ @@@@@@@@ @@@ + @@@ @@ @@@ @ + @@@ @@@@@@@@@@ @@@@@ @@@@ + @@@ @@ @@@@@@ @@@ + @@ @@ @@@ + @@ @@@@ @@ + @@@ @@@ @@@@ @@ @@ + @@@@@@@@@ @@@@ @@@ @@ @@ @@ + @@@@ @@ @@@@@@@ @@@@@ @@@ @@@ @@ + @@@@@@ @ @@@ @@@@@ @@@ @@ @ + @@ @@@@@@@@ @@@ @@@@@@@ @@@ @@ @@ + @@ @@@@@@@@@ @@@ @@@@@@@@@@ @ @@@ @@ @@ + @@@ @ @@@@ @@ @@@ @@@@@@ @@ @ + @@ @@ @@@@ @@ @@@ @@@ @@@ @@ + @@@@@@ @@@@ @@ @@@ @@@ @@ @@ @@@ + @@@@@ @@ @@@@ @@ @@@ @@ @@@@@ @@@ + @@@@@@@ @@@@@@ @@ @@ @@@ @@@@ + @@@@@@@@@@@@ @@@@@@@@@@@`, + ` + + + + + + + @@%%@@ + @@@@@@@@@@@ @@@@@@ + @@@ @@@@@@@@ @ @@@@ + @@@ @@@@@@@@@@ @@ @@@@@@ + @@@@@@@@@@@@ @@@ @@@@@@ + @@@@@@@ @@@@@@@@@ @ + @@@@@@@@@@@@@ @@@@@@ @@@ + @@@@@@@@@@@@@@@@@@@@@@@ @@@ @@@@@@@ @@ + @@@@@ @@@@@@@ @@ @@@ @@@@@@@@@@ @@@ @@ + @@@ @@@@@@@@@@@@@ @@ @@ + @@ @@@ @@@@@ @@ @@@@@@@@@@ @@@ @@ + @@@ @@ @@@@@ @@@@ @@@@@ @@@ @@@ + @ @@@ @@@@@@ @@ @@@ @@@@ + @@ @@ @@@@@@@@ @@ @@@@ + @@ @@ @@ @@@@@ @@@ @@@ + @@@ @@@ @@@ @@ + @@@ @@ @@@ @@@ + @@ @@@ @@@@ @@ @@@ + @@ @@@ @@@@@@@@ @@@ @@@ + @@@ @@@@ @@@@@ @@@@ @@@@ + @@@ @@@@@@@@ @@@@@ @@@@@ + @@ @@@@ @@@@@@@@@@ @@@@@@@@@ + @@@@@@@ @@ @@ @@@@@@@ + @@@@ @@ @@@@@@@@@@ @@ + @@@@ @@@@@@@@@@@@@ @@ @@ @@ @@@ + @@@ @@@@@ @@@ @@@ @@@ + @@@@@@ @@@@@@@@@@ @@@@ + @@@ @@@@@@@@ @@@ + @@@ @@ @@@ @ + @@@ @@@@@@@@@@ @@@@@ @@@@ + @@@ @@ @@@@@@ @@@ + @@ @@ @@@ + @@ @@@@ @@ + @@@ @@@ @@@@ @@ @@ + @@@@@@@@@ @@@@ @@@@@@@@ @@ @@ + @@@@ @@ @@@@@@@ @@@@@@@@@@@ @@@ @@ + @@@@@@ @ @@@ @@@@@@@@@@@@@ @@ @ + @@ @@@ @@@@@@@ @@@@@@@@@@@ @@ @@ + @@ @@@ @@@@@@@@@@ @@@@@@@@@@@ @@ @@ + @@@ @@@ @@@@@@@@@@@@@@@@ @ + @@ @@@ @@@@@@@@@@@@@@ @@ + @@@@@@ @@@ @@@@ @@ @@@@@@@ @@@ + @@@@@ @@ @@@ @@@ @@@@@ @@@ + @@@ @@ @@ @@@ @@@@@ @@@@ + @@@@@@@@@@@@ @@@@@@@@@@@`, + } \ No newline at end of file diff --git a/main.go b/main.go index 78e9e3e..8c86491 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( "strings" "time" - "github.com/hugomd/ascii-live/frames" + "github.com/MaArasteh/ascii-live/frames" "github.com/golang/glog" "github.com/gorilla/mux"