New frames

This commit is contained in:
Mani 2024-06-01 12:20:28 +03:30
parent 0e53a4799f
commit ddd6fb5a9d
3 changed files with 106 additions and 1 deletions

View file

@ -56,4 +56,5 @@ var FrameMap = map[string]FrameType{
"rick": Rick,
"spidyswing": Spidy,
"torus-knot": TorusKnot,
"snoopy": Snoopy,
}

104
frames/snoopy.go Normal file
View file

@ -0,0 +1,104 @@
package frames
var MyAnimation = DefaultFrameType(myAnimationFrames)
var myAnimationFrames = []string{
`
@@%%@@
@@@@@@@@@@@ @@@@@@
@@@ @@@@@@@@ @ @@@@
@@@ @@@@@@@@@@ @@ @@@@@@
@@@@@@@@@@@@ @@@ @@@@@@
@@@@@@@ @@@@@@@@@ @
@@@@@@@@@@@@@ @@@@@@ @@@
@@@@@@@@@@@@@@@@@@@@@@@ @@@ @@@@@@@ @@
@@@@@ @@@@@@@ @@ @@@ @@@@@@@@@@ @@@ @@
@@@ @@@@@@@@@@@@@ @@ @@
@@ @@@ @@@@@ @@ @@@@@@@@@@ @@@ @@
@@@ @@ @@@@@ @@@@ @@@@@ @@@ @@@
@ @@@ @@@@@@ @@ @@@ @@@@
@@ @@ @@@@@@@@ @@ @@@@
@@ @@ @@ @@@@@ @@@ @@@
@@@ @@@ @@@ @@
@@@ @@ @@@ @@@
@@ @@@ @@@@ @@ @@@
@@ @@@ @@@@@@@@ @@@ @@@
@@@ @@@@ @@@@@ @@@@ @@@@
@@@ @@@@@@@@ @@@@@ @@@@@
@@ @@@@ @@@@@@@@@@ @@@@@@@@@
@@@@@@@ @@ @@ @@@@@@@
@@@@ @@ @@@@@@@@@@ @@
@@@@ @@@@@@@@@@@@@ @@ @@ @@ @@@
@@@ @@@@@ @@@ @@@ @@@
@@@@@@ @@@@@@@@@@ @@@@
@@@ @@@@@@@@ @@@
@@@ @@ @@@ @
@@@ @@@@@@@@@@ @@@@@ @@@@
@@@ @@ @@@@@@ @@@
@@ @@ @@@
@@ @@@@ @@
@@@ @@@ @@@@ @@ @@
@@@@@@@@@ @@@@ @@@ @@ @@ @@
@@@@ @@ @@@@@@@ @@@@@ @@@ @@@ @@
@@@@@@ @ @@@ @@@@@ @@@ @@ @
@@ @@@@@@@@ @@@ @@@@@@@ @@@ @@ @@
@@ @@@@@@@@@ @@@ @@@@@@@@@@ @ @@@ @@ @@
@@@ @ @@@@ @@ @@@ @@@@@@ @@ @
@@ @@ @@@@ @@ @@@ @@@ @@@ @@
@@@@@@ @@@@ @@ @@@ @@@ @@ @@ @@@
@@@@@ @@ @@@@ @@ @@@ @@ @@@@@ @@@
@@@@@@@ @@@@@@ @@ @@ @@@ @@@@
@@@@@@@@@@@@ @@@@@@@@@@@`,
`
@@%%@@
@@@@@@@@@@@ @@@@@@
@@@ @@@@@@@@ @ @@@@
@@@ @@@@@@@@@@ @@ @@@@@@
@@@@@@@@@@@@ @@@ @@@@@@
@@@@@@@ @@@@@@@@@ @
@@@@@@@@@@@@@ @@@@@@ @@@
@@@@@@@@@@@@@@@@@@@@@@@ @@@ @@@@@@@ @@
@@@@@ @@@@@@@ @@ @@@ @@@@@@@@@@ @@@ @@
@@@ @@@@@@@@@@@@@ @@ @@
@@ @@@ @@@@@ @@ @@@@@@@@@@ @@@ @@
@@@ @@ @@@@@ @@@@ @@@@@ @@@ @@@
@ @@@ @@@@@@ @@ @@@ @@@@
@@ @@ @@@@@@@@ @@ @@@@
@@ @@ @@ @@@@@ @@@ @@@
@@@ @@@ @@@ @@
@@@ @@ @@@ @@@
@@ @@@ @@@@ @@ @@@
@@ @@@ @@@@@@@@ @@@ @@@
@@@ @@@@ @@@@@ @@@@ @@@@
@@@ @@@@@@@@ @@@@@ @@@@@
@@ @@@@ @@@@@@@@@@ @@@@@@@@@
@@@@@@@ @@ @@ @@@@@@@
@@@@ @@ @@@@@@@@@@ @@
@@@@ @@@@@@@@@@@@@ @@ @@ @@ @@@
@@@ @@@@@ @@@ @@@ @@@
@@@@@@ @@@@@@@@@@ @@@@
@@@ @@@@@@@@ @@@
@@@ @@ @@@ @
@@@ @@@@@@@@@@ @@@@@ @@@@
@@@ @@ @@@@@@ @@@
@@ @@ @@@
@@ @@@@ @@
@@@ @@@ @@@@ @@ @@
@@@@@@@@@ @@@@ @@@@@@@@ @@ @@
@@@@ @@ @@@@@@@ @@@@@@@@@@@ @@@ @@
@@@@@@ @ @@@ @@@@@@@@@@@@@ @@ @
@@ @@@ @@@@@@@ @@@@@@@@@@@ @@ @@
@@ @@@ @@@@@@@@@@ @@@@@@@@@@@ @@ @@
@@@ @@@ @@@@@@@@@@@@@@@@ @
@@ @@@ @@@@@@@@@@@@@@ @@
@@@@@@ @@@ @@@@ @@ @@@@@@@ @@@
@@@@@ @@ @@@ @@@ @@@@@ @@@
@@@ @@ @@ @@@ @@@@@ @@@@
@@@@@@@@@@@@ @@@@@@@@@@@`,
}

View file

@ -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"