From 581b0cdae91488bd8c3a54f1aae2f0bc7446011e Mon Sep 17 00:00:00 2001 From: Pierluigi Sforza Date: Mon, 22 May 2023 19:00:24 +0200 Subject: [PATCH] externalized animations to simplify multiline frames --- animations/in-line-ascii.sh | 15 + animations/in-line-utf8.sh | 36 ++ animations/vt100-globe.sh | 785 ++++++++++++++++++++++++++++++++++++ animations/vt100-zorro.sh | 496 +++++++++++++++++++++++ bash_loading_animations.sh | 48 +-- 5 files changed, 1334 insertions(+), 46 deletions(-) create mode 100644 animations/in-line-ascii.sh create mode 100644 animations/in-line-utf8.sh create mode 100644 animations/vt100-globe.sh create mode 100644 animations/vt100-zorro.sh diff --git a/animations/in-line-ascii.sh b/animations/in-line-ascii.sh new file mode 100644 index 0000000..37b7f98 --- /dev/null +++ b/animations/in-line-ascii.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash + +## ASCII animations ## +# Will work in any terminal, including the TTY. +# The first value of an array is the interval (in seconds) between each frame + +BLA_classic=( 0.25 '-' "\\" '|' '/' ) +BLA_box=( 0.2 ┤ ┴ ├ ┬ ) +BLA_bubble=( 0.6 · o O O o · ) +BLA_breathe=( 0.9 '  ()  ' ' (  ) ' '(    )' ' (  ) ' ) +BLA_growing_dots=( 0.5 '.  ' '.. ' '...' '.. ' '.  ' '   ' ) +BLA_passing_dots=( 0.25 '.  ' '.. ' '...' ' ..' '  .' '   ' ) +BLA_metro=( 0.2 '[    ]' '[=   ]' '[==  ]' '[=== ]' '[ ===]' '[  ==]' '[   =]' ) +BLA_snake=( 0.4 '[=     ]' '[~<    ]' '[~~=   ]' '[~~~<  ]' '[ ~~~= ]' '[  ~~~<]' '[   ~~~]' '[    ~~]' '[     ~]' '[      ]' ) +BLA_filling_bar=( 0.25 '█▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '███▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '█████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '██████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '███████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '█████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '██████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '███████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '█████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '██████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '███████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '████████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '█████████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '██████████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '███████████████████▒▒▒▒▒▒▒▒▒▒▒▒▒' '████████████████████▒▒▒▒▒▒▒▒▒▒▒▒' '█████████████████████▒▒▒▒▒▒▒▒▒▒▒' '██████████████████████▒▒▒▒▒▒▒▒▒▒' '███████████████████████▒▒▒▒▒▒▒▒▒' '████████████████████████▒▒▒▒▒▒▒▒' '█████████████████████████▒▒▒▒▒▒▒' '██████████████████████████▒▒▒▒▒▒' '███████████████████████████▒▒▒▒▒' '████████████████████████████▒▒▒▒' '█████████████████████████████▒▒▒' '██████████████████████████████▒▒' '███████████████████████████████▒' '████████████████████████████████') diff --git a/animations/in-line-utf8.sh b/animations/in-line-utf8.sh new file mode 100644 index 0000000..15f44a3 --- /dev/null +++ b/animations/in-line-utf8.sh @@ -0,0 +1,36 @@ +#!/usr/bin/env bash + +## UTF-8 animations ## +# Require Unicode support (will work in most modern terminals, but not in TTY). +# Some animations may not render properly with certain fonts. +# The first value of an array is the interval (in seconds) between each frame + +BLA_classic_utf8=( 0.25 '—' "\\" '|' '/' ) +BLA_bounce=( 0.3 . · ˙ · ) +BLA_vertical_block=( 0.25 ▁ ▂ ▃ ▄ ▅ ▆ ▇ █ █ ▇ ▆ ▅ ▄ ▃ ▂ ▁ ) +BLA_horizontal_block=( 0.25 ▏ ▎ ▍ ▌ ▋ ▊ ▉ ▉ ▊ ▋ ▌ ▍ ▎ ▏ ) +BLA_quarter=( 0.25 ▖ ▘ ▝ ▗ ) +BLA_triangle=( 0.45 ◢ ◣ ◤ ◥) +BLA_semi_circle=( 0.1 ◐ ◓ ◑ ◒ ) +BLA_rotating_eyes=( 0.4 ◡◡ ⊙⊙ ⊙⊙ ◠◠ ) +BLA_firework=( 0.4 '⢀' '⠠' '⠐' '⠈' '*' '*' ' ' ) +BLA_braille=( 0.2 ⠁ ⠂ ⠄ ⡀ ⢀ ⠠ ⠐ ⠈ ) +BLA_braille_whitespace=( 0.2 ⣾ ⣽ ⣻ ⢿ ⡿ ⣟ ⣯ ⣷ ) +BLA_trigram=( 0.25 ☰ ☱ ☳ ☶ ☴ ) +BLA_arrow=( 0.15 ▹▹▹▹▹ ▸▹▹▹▹ ▹▸▹▹▹ ▹▹▸▹▹ ▹▹▹▸▹ ▹▹▹▹▸ ▹▹▹▹▹ ▹▹▹▹▹ ▹▹▹▹▹ ▹▹▹▹▹ ▹▹▹▹▹ ▹▹▹▹▹ ▹▹▹▹▹ ) +BLA_bouncing_ball=( 0.4 '(●     )' '( ●    )' '(  ●   )' '(   ●  )' '(    ● )' '(     ●)' '(    ● )' '(   ●  )' '(  ●   )' '( ●    )' ) +BLA_big_dot=( 0.7 ∙∙∙ ●∙∙ ∙●∙ ∙∙● ) +BLA_modern_metro=( 0.15 ▰▱▱▱▱▱▱ ▰▰▱▱▱▱▱ ▰▰▰▱▱▱▱ ▱▰▰▰▱▱▱ ▱▱▰▰▰▱▱ ▱▱▱▰▰▰▱ ▱▱▱▱▰▰▰ ▱▱▱▱▱▰▰ ▱▱▱▱▱▱▰ ▱▱▱▱▱▱▱ ▱▱▱▱▱▱▱ ▱▱▱▱▱▱▱ ▱▱▱▱▱▱▱ ) +BLA_pong=( 0.35 '▐⠂       ▌' '▐⠈       ▌' '▐ ⠂      ▌' '▐ ⠠      ▌' '▐  ⡀     ▌' '▐  ⠠     ▌' '▐   ⠂    ▌' '▐   ⠈    ▌' '▐    ⠂   ▌' '▐    ⠠   ▌' '▐     ⡀  ▌' '▐     ⠠  ▌' '▐      ⠂ ▌' '▐      ⠈ ▌' '▐       ⠂▌' '▐       ⠠▌' '▐       ⡀▌' '▐      ⠠ ▌' '▐      ⠂ ▌' '▐     ⠈  ▌' '▐     ⠂  ▌' '▐    ⠠   ▌' '▐    ⡀   ▌' '▐   ⠠    ▌' '▐   ⠂    ▌' '▐  ⠈     ▌' '▐  ⠂     ▌' '▐ ⠠      ▌' '▐ ⡀      ▌' '▐⠠       ▌' ) +BLA_earth=( 0.45 🌍 🌎 🌏 ) +BLA_clock=( 0.2 🕛 🕐 🕑 🕒 🕓 🕔 🕕 🕖 🕗 🕘 🕙 🕚 ) +BLA_moon=( 0.8 🌑 🌒 🌓 🌔 🌕 🌖 🌗 🌘 ) +BLA_orange_pulse=( 0.35 🔸 🔶 🟠 🟠 🔶 ) +BLA_blue_pulse=( 0.35 🔹 🔷 🔵 🔵 🔷 ) +BLA_football=( 0.25 ' 👧⚽️       👦' '👧  ⚽️      👦' '👧   ⚽️     👦' '👧    ⚽️    👦' '👧     ⚽️   👦' '👧      ⚽️  👦' '👧       ⚽️👦 ' '👧      ⚽️  👦' '👧     ⚽️   👦' '👧    ⚽️    👦' '👧   ⚽️     👦' '👧  ⚽️      👦' ) +BLA_blink=( 0.25 😐 😐 😐 😐 😐 😐 😐 😐 😐 😑 ) +BLA_camera=( 0.1 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📸 📷 📸 ) +BLA_sparkling_camera=( 0.1 '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📸✨' '📷 ' '📸✨' ) +BLA_sick=( 0.9 🤢 🤢 🤮 ) +BLA_monkey=( 0.4 🙉 🙈 🙊 🙈 ) +BLA_bomb=( 0.25 '💣   ' ' 💣  ' '  💣 ' '   💣' '   💣' '   💣' '   💣' '   💣' '   💥' '    ' '    ' ) \ No newline at end of file diff --git a/animations/vt100-globe.sh b/animations/vt100-globe.sh new file mode 100644 index 0000000..0cdd62b --- /dev/null +++ b/animations/vt100-globe.sh @@ -0,0 +1,785 @@ +#!/usr/bin/env bash + +globe=( 0.25 + +' + + _-o#&&*^^^^?d:>b\_ + _o/"*^^ ^^,, dMF9MMMMMHo_ + .o&#^ *"MbHMMMMMMMMMMMHo. + .o"" ^ vodM*$&&HMMMMMMMMMM?. + ,^ $M&ood,~^*(&##MMMMMMH\ + / ,MMMMMMM#b?#bobMMMMHMMML + & ?MMMMMMMMMMMMMMMMM7MMM$R*Hk + ?$. :MMMMMMMMMMMMMMMMMMM/HMMM|**L +| |MMMMMMMMMMMMMMMMMMMMbMH^ T, +$H#: **MMMMMMMMMMMMMMMMMMMMb#}^ *? +]MMH# ""*""""*#MMMMMMMMMMMMM^ - +MMMMMb_ |MMMMMMMMMMMP^ : +HMMMMMMMHo *MMMMMMMMMT . +?MMMMMMMMP 9MMMMMMMM} - +-?MMMMMMM |MMMMMMMMM?,d- ^ + :|MMMMMM- *MMMMMMMT .M|. : + .9MMM[ &MMMMM*^ *^ . + :9MMk *MMM#" - + &M} * .- + *&. . + *~, . ./ + . _ .- + ^*--._,dd###pp=""^ +' +' + + _v->#H#P? "^:o<>\_ + .,dP* *^^ "^-o.+H6&MMMHo_ + oHMH9^ *?&bHMHMMMMMMHo. + oMP"^ ^ ooMP*#&HMMMMMMM?. + ,M* - **MSdob//*^&##MMMH\ + d*^ .,MMMMMMH#o>#ooMMMMMb + HM- :HMMMMMMMMMMMMMMM&HM[R\ + d"Z\. 9MMMMMMMMMMMMMMMMM[HMM|: +-H - MMMMMMMMMMMMMMMMMMMbMP^ : +:??Mb# *9MMMMMMMMMMMMMMMMMMH#! . +: MMMMH#, "*""""*#HMMMMMMMMMMH - +||MMMMMM6\. {MMMMMMMMMH^ : +:|MMMMMMMMMMHo *9MMMMMMMM^ . +. HMMMMMMMMMMP^ !MMMMMMMM * +- *#MMMMMMMMM HMMMMMMM*,/ : + : ?MMMMMMMF HMMMMMM^,P^ : + . HMMMMR^ {MMMMP^ ^^ - + : *HMMMT iMMH^ .^ + -.*HMH . + -:*H . ^ + -*\,, . .- + ^ . _ .-* + ^*~\.__,obb#q==~^^^ +' +' + + .ovr:HMM#?:*^ >b\_ + .,:&Hi^ *^ "^ \\|&bSMHo_ + oHMMM#*} *?&dMMMMMMHo. + .dMMMH"^^^^ ,oHH*&&9MMMM?. + ,MMM*^ **M\bd<|"*&#MH\ + dHH?^ :MMMMMM#bd#odMML + H^ |\ *dMMMMMMMMMMMMMM9Mk + JL/"7+,. *MMMMMMMMMMMMMMMH9ML +-*Hp ^ |MMMMMMMMMMMMMMMMHH|: +: \\#M#d? *HMMMMMMMMMMMMMMMMH. +. JMMMMM##, ***""^"*#MMMMMMMMH +-. ,MMMMMMMM6o_ |MMMMMMMM^: +: |MMMMMMMMMMMMMb\ TMMMMMMT : +. ?MMMMMMMMMMMMM^ :MMMMMM|.* +- ?HMMMMMMMMMM: HMMMMMM\|: + : 9MMMMMMMMH^ *MMMMMP.P. + . *MMMMMMT^^ HMMM*^^- + - TMMMMM^ MM*^ - + ^. HMM# - + -. *9M: .^ + -. *b,, . . ^ + ^-\ ., .-* + ^-:b~\\_,oddq==--" +' +' + + _oo##^9MMHb^:^-,o_ + .oH":HH$^ ""^ "^ -\7*R&o_ + .oHMMMHMH#9: "\bMMMMHo. + dMMMMMM*""^*^ .oHM"H9MM?. + ,MMMMMM^ "HLbd<|?&H\ + JMMH#H^ |MMMMM#b>bHb + :MH ."\ *|MMMMMMMMMMMM& + .:M:d-"|:b.. 9MMMMMMMMMMMMM+ +: "*H| - &MMMMMMMMMMMMMH: +. *LvdHH#d? *?MMMMMMMMMMMMMb +: iMMMMMMH#b *"*"^"#HMMMMMM +. . ,MMMMMMMMMMb\. {MMMMMH +- |MMMMMMMMMMMMMMHb, *MMMMM| +: |MMMMMMMMMMMMMMH^ &MMMM, +- *#MMMMMMMMMMMM |MMMM6- + : *MMMMMMMMMM+ ]MMMT/ + . *MMMMMMMP" HMM** + - |MMMMMH^ ,M#^- + ^. :MMMH| .- + . |MM - + * . *#?.. . ..^ + -. _. .- + ^-|.#qo__,,ob=~~-^^ +' +' + + _ooppH[*MMMD::--\_ + _oHMR":&M&. ""^ "^ /&\\_ + oHMMMMMHMMH#9, *"#&H6?*MMH:-.._ + .oHMMMR:"&MZ\ *"^ " |$-_ + ..dMMMMMMMMdMMM#9\ *^HHo. + . ,dMMMMMMMMMMM"*^ * ?MP?. + . |MMMMMMMMMMM^ *"$b&\ + - |MMMMHH##M^ HMMH? + - TTMM| >.. \MMMMMH + : |MM\,#-""$~b\. *MMMMMM+ +. **"H&# - &MMMMMM| +: *\v,#MHddc. *9MMMMMb +. MMMMMMMM##\ *"":HM +- . .HMMMMMMMMMMRo_. |M +: |MMMMMMMMMMMMMMMM#\ :M +- *HMMMMMMMMMMMMMMM^ |T +: **HMMMMMMMMMMMM^ H^ + : MMMMMMMMMMM| |T + . MMMMMMMM?^ ./ + *. MMMMMMH^ ./ + -. |MMMH#^ . + . *MM* . ^ + -. #M: . . .- + * . ., .- + ^-.-~ooHH__,,v~--* +' +' + + _ood>H&H&Z?#M#b-\. + .\HMMMMMR?*\M6b."*^ ^^**v. + .. .MMMMMMMMMMHMMM#&. **~o. + . ,HMMMMMMMMMMMM*"^-* &b. + . .MMMMMMMMMMMMH^ *"&\ + - RMMMMM#H##R^ 4Mb + - |7MMM^ ?:: *|MMb + / HMM__#|*"\>?v.. *MMML +. *"^#Hd| * 9MMM: +- |\,\?HH#bbL *9MMb +: !MMMMMMMH#b, *""T +. . ,MMMMMMMMMMMbo. | +: 4MMMMMMMMMMMMMMMHo | +: ?MMMMMMMMMMMMMMM? : +-. *#MMMMMMMMMMMM: .- + : |MMMMMMMMMM? . + - JMMMMMMMT^ : + *. MMMMMMH^ - + -. |MMM#** - + . HMH^ . ^ + -. #H:. .- + * . .\ .- + ^-..-+oodHL_,--/-* +' +' + + _,\?dZkMHF&$*q#b.. + .//9MMMMMMM?:^HM\\"*-^^*.. + ..* :MMMMMMMMMMHMMMMH?_ *-\ + . .dMMMMMMMMMMMMMM^"^" *\. + . |MMMMMMMMMMMMMR \\ + - T9MMMMMHH##M" *? + : (9MMM^ !^:. &k + .: HMM\_?p "":-b\. *ML +- "^"H&#, : |M| +: ?\,\dMH#b#. 9b +: |MMMMMMM##, ** +: . +MMMMMMMMMMMo_ - +: HMMMMMMMMMMMMMM#, : +: 9MMMMMMMMMMMMMH^ . +: . *HMMMMMMMMMMP .^ + : MMMMMMMMMH^ . + - :MMMMMMM^* . + *. 9MMMMM*^ - + -. {MMM#^ : + - |MM" .^ + *. &M^.. . ..^ + ^ . ._ .- + ^-. -voboo#&:,-.-* +' +' + + _oo:\bk99M[<$$+b\. + .$*"MMMMMMMM[:"\Mb\?^" . + . ^* HMMMMMMMMMMHMMMM+?. *. + . .HMMMMMMMMMMMMMMP"^^ . + . *MMMMMMMMMMMMMM| -*. + - *&MMMMMMHH##H: : + : *(*MMM} *|\ | + : *- ?MMb__#|""*|+v.. \ +. *^^*H#b - :| +: **\v,#M#b#, \ +. 9MMMMMMHb. : +: . #MMMMMMMMMb\ - +- .HMMMMMMMMMMMMb : +: *MMMMMMMMMMMMH . +-: . *#MMMMMMMMMP ^ + : ]MMMMMMMH^ : + - ,MMMMMM?^ . + *: HMMMMH" - + -. .HMM#* .- + *. .HH*^ . + *-. &R". .- + -. ._ .- + ^-. .voodoodc?..-* +' +' + + _\oo\?ddk9MRbS>v\_ + ..:>*""MMMMMMMMM:?|H?$?-. + ..- - "HMMMMMMMMMMHMMMH\_-. + . dMMMMMMMMMMMMMMT" . + . TMMMMMMMMMMMMMM *. + - *&HMMMMMM#H#H: . + - *\7HMMH |\. . + : * HMM\_?c*""+?\.. : +- "**#&#| . - +: *?,\#MHdb. . +: |MMMMMH#. : +: . ,HMMMMMMMb, - +: ^ 4MMMMMMMMMMH* +: . 9MMMMMMMMMT- +:.* *#MMMMMMMH ^ + : ^ HMMMMMH^: + - |MMMMH" - + *: |MMMH*^ .^ + ^? dMM#^ . + \. .dH" .^ + -. ,M^- ..^ + * . .. ..-* + ^-. .\ooooboo<^.-* +' +' + + _o,:o?\?dM&MHcc~,. + ..^^:&#""HMMMMMMMM$:?&&?. + .* -* ^HMMMMMMMMMHMMMp\. + . ^ |MMMMMMMMMMMMMM"^ . + . *9MMMMMMMMMMMMM -. + - **9MMMMMHH##[ . + - *\Z9MMM *~\ . + : ^| ?MMb_?p""-?v.. : +- *"^*&#, - . +: *?,oHH#? . +-- |MMMMH,: +: . |MMMMMM6, +: - |MMMMMMMM +? HMMMMMMP +-- . ^ |HMMMMM^ + :.* . ^ JMMMM+ + \ ,MMMP: + : |MMH?: + -:\. dM#" . + \ ,H*^ .^ + -. d^:..^ + * . .,.- + ^-.. .\oooodov~^-* +' +' + + _o\:,??\??MR9#cb\_ + .v/^^^:&#""#HMMMMMMM$?*d\. + ..~^ - -* *"#MMMMMMMMMMMHv. + .-^ HMMMMMMMMMMMR!. + : *9MMMMMMMMMMM| -. + . **9MMMMMH##| . + - *(#MMH *:, . + : ^| *HMb_>/"|\,.: +.^ *"^#&b - . +: ?\oHH?. +: !MMM& +: . . HMMMM +/. - -MMMMM +\*. 9MMMP +:. . . - |MMM^ + \... ^ .MMT + &. .dMP + \, .HM* + \. *\. ,H&^ + *- *| - ,&^: + *. ,/\ ^ + ^-.. _.- + "---.._\o,oov+--^" +' +' + + _,d?,:?o?:?HM>#b\_ + ..H*"^^*^H#*"**MMMMMM6$$v_ + v//" - ** *^#MMMMMMMMHo. + /"* |MMMMMMMMMM:. + ,> *HMMMMMMMMH:. + : *#HMMMMHH\ - + ^ *Z#MM, *,: + : ^\ ?HH_>:*\, +: "^*&| *: +. <\Hb +: MM +: . iMM +Mb\. {MM +::.*- - !MP +*&. . . - :M^ + 9H, \ ^ |T + HM? ,P + *ML ?? + :&. *o .d^ + ^: |T /" + -. .<^^ + *... ..- + "*-=.,_,,,oov-~.-* +' +' + + _,oc>?_:b?o?HH#b\_ + .v/99*""" ^*H#""*HMMMMMZ,_ + oH* /" - ^ "*#MMMMM#o. + ./*>- *MMMMMMMb + ,b/^ *#MMMMMMM\ + :^ **HMMMMb: + /- *|&MH *\ + / *-. |Hb??\ +,- ^ "*&,. +1 \} +!. T +$,. . 1 +?*M??. M +?.::| ^\ - ? + M?&. . . - ,^ + 9MMH\ .. ^ * . + HMMM#. :^ + 9#MMb .. + -:"# *b. .- + . * {! / + - ,-^ + ^ . .- + ***^==\_.,,,ov--\-* +' +' + + _\o##??,:io??$#b\_ + .oH#"H9*""" "*#H*"*#MMMHo_ + oHMM- -^ - ^^ ***HMMHo. + dM#S>-* ?MMMM?. + ,&&,/^ "#MMMH\ + d?-" **HMMb + H? "ZHb: + /: \ H?L +|:| . **: +:?: \ +>" : +M|\,_ | +!|":HH?-^. : +:^^_:?"\ *-- - . +- |ML?b . .. - - + :HMMMMH\ \ * : + >MMMMMM#. . + ^M*HMMM| - + *. *"#+ *?v .* + . *- +?^ - + * . ..^ + - . .- + "*\b=p?.._\\vv---* +' +' + + _,o#bH\??::?o?cbo_ + .o#MH#**SH""^ "**H#"*#MHo_ + oHMMMH^ ^" - * ^*HHo. + .dMMM#">>- *HM?. + ,MH:R_o/ **MH\ + dMM^ ^ "ML + HMR! ^ *#k + d&^. -. *L +:M :: * *- +/| !| - +k.$-" : +}9R:!,,_. . +\::\^:**M#\-^. - +: "^^..:"!*\ ^- - * +- ,HMb.H| . _ - .^ + : ,MMMMMMMb. .. . + .*HMMMMMMMM? . + *.*9M#*HMMMM : + -.^ "##* *b, . + . * ,/^ .^ + * . ..^ + - . ..- + "**#d##c.._\v----* +' +' + + _,o#&oHb?\o::d?>\_ + .oHHMMM#**$M""* "**HH"#&o_ + oHMMMMMMD^ .^^ - ^ **bo. + .dMMMMMH*^/|- *\b. + ,MMMM?T|_o/ *\\ + dMMMMP ^^ *| + HMMMH& - *\ + /MH7^ : -- : +-:MM {. . . +:i?^ .!& . +:{, o| ^ : +-T?9M\:-^o,_ . +: \?::**"*?9MHo./.. - +. ^"*^^ _.*"!"^. *- - * +- ,bMM?.M\ . . - . .^ + : .oMMMMMMMMb. .. * . + . *HMMMMMMMMMMb - + - 9MH*#HMMMMH .^ + ^. ^ *"*##^ *b. : + . * .d^^ .^ + -. . ^ + -. .-* + "**##H###:._\--.-* +' +' + + _oo#H&d#b?\b:_>>\_ + .oHMMMMMMH*"*9R"^-***#P\-_ + oHMMMMMMMMM$ ." ^ *^- + .dMMMMMMMMH*",?- ^\. + ,MMMMMMM:?}.,d^ *. + dMMMMMMMH /^^ : + HMMMMMMM&^ - - + dPTMMP>^ : -. : +|? -MM} .\ . +J^ ::*^ -$L . +: ?b .,H- ^ : +- |6.&MP:: !.,_. - +: *\:: "^ "*:"MM#,-^, - : +- ****:^ _.:"?**\ *- . +: .?bMML.]# - _ * . .^ + - .o#MMMMMMMMH\ \. . . + - *HMMMMMMMMMMMH : + *. *HMM#*#MMMMMH^ - + -. ^ **##*^ i+ : + - *^ v/^ .^ + *- ..^ + ^ . .- + "**##HMH##:__,-.-* +' +' + + _oo##Mbb&bo??o_>\_ + .oHMMMMMMMMM**#?M*^ "?*&.. + oHMMMMMMMMMMMM4 *" - *. + .dMMMMMMMMMMMM#"\?.- . + ,MMMMMMMMMM}"9:_,d^ -. + dMMMMMMMMMMM| ^^^ . + &MMMMMMMMMMH\ - . + :{M*"MMMPT"^ : *-. : +.^M^ ^MMM. -T, . . +- k i:?^^ -|& . +: * -o& .,H- " : +- *M:*HMP|:^!.o._. . +: "<:::^<^ ^"**9MH#,-^ . - +- ^^^**^^._.*"?*^| ^ - : +: ?#dMM_.M? . . - ..^ + : ,ddMMMMMMMMMb. .. ^ . + . TMMMMMMMMMMMMM, : + - ?MMH**#MMMMMH^ : + ^. ^ "*##*^ &. : + -. *^ ,~" .^ + -. ..^ + * . .- + ****##HMMMH#<:,..-* +' +' + + _,dd#HMb&dHo?\?:\_ + .oHMMMMMMMMMMMH***9P^*"\v. + oHMMMMMMMMMMMMMMM> *^ -. + .dMMMMMMMMMMMMMMMH*^|~-^ . + ,MMMMMMMMMMMMM6>*H._,& -. + dMMMMMMMMMMMMMMM| *" . + H*MMMMMMMMMMMMMH&. - . + d^ HMM""&MMMPT^^ :. *.- +,^ MP *TMMM, |: . - +| #: ? *" : &L : +! *^ /?H ,#r *^ : +. ?M: HMM^<~->,o._ : +: *9:::^**-**^:*9MHb,|-, ^ : +. *"^^^:^ :_ ""!"^. *| : +*. _dbHM6_|H. . . ^ .^ + \ _odHMMMMMMMMH, .. * : + *- |MMMMMMMMMMMMM| : + *. 9MMH**#MMMMMH^ : + -. ^ "?##" d : + . ^ ,/" .^ + *.. ..^ + * . .- + ^*"#HHMMMMM#<>..-* +' +' + + _oo##bHMb&d#bd,>\_ + .oHMMMMMMMMMMMMMM***9R"-.. + oHMMMMMMMMMMMMMMMMMH\ ? *-. + .dMMMMMMMMMMMMMMMMMMM#".}-^ . + ,MMMMMMMMMMMMMMMMM6/*H _o} -. + dMMMMMMMMMMMMMMMMMMML *^^ . + HbP*HMMMMMMMMMMMMMMM*: - , + dMH^ *MMMP^"HMMMR^T" : : +|H^ -MR^ *?MMMb P, . . +1& *| |.**" .-*&| . +M^ " |\&| .,#~ "^ : +T :HL.|HMH\c~*|v,\_ : +| *"|:::^:*-** ^"MM#\-^. -: +% **^**^*^ :_ ^?^*| **. : +||, ,#dMM?.M? . .* - + ?\ .,odMMMMMMMMM? \ * : + / |MMMMMMMMMMMMM: .^ + *. TMMH#*9MMMMM* : + -. * "*#*^ ,: . + . * .v^^ .^ + *. ..^ + ^- . .- + "*\+HHMMMMMMHr~.-* +' +' + + _,,>#b&HMHd&&bb>\_ + _oHMMMMMMMMMMMMMMMMH**H:. + oHMMMMMMMMMMMMMMMMMMMM#v*? *. + .dMMMMMMMMMMMMMMMMMMMMMMH**+| . + ,MMMMMMMMMMMMMMMMMMMMMb|?+.,H -. + ddHMMMMMMMMMMMMMMMMMMMMMb *^ . + HMMkZ**HMMMMMMMMMMMMMMMMH\ - . : + dTMMM* *9MMMP^"*MMMMPT"* .. : +|M6H^^ 4MP^ *"HMMM| !|. . . +1MHp^ #L $ *"^ .-:&. . +MMM^ " q:H. .o#-**^ : +MM^ ?H?.|MMH::::-o,_. - +M[ **?:::^|* *"*:9MH\~-. * +&M. ""^*^^^.:.*?^*. ^| -: +*M|d, .dbHM[.1? .. : + 9||| . _obMMMMMMMMH, . : + H.^ MMMMMMMMMMMM} - + \ |MMH#*HMMMMH^ .^ + . * *#*^ ,:- + * ^^ .-^. + *. .- + ^- . .-* + ^*\bqHMMMMMMHHb--* +' +' + + .,:,#&6dHHHb&##o\_ + .oHHMMMMMMMMMMMMMMMMMH*\,. + oHMMMMMMMMMMMMMMMMMMMMMMHb:^-. + .dMMMMMMMMMMMMMMMMMMMMMMMMMH|\/^ . + ,&HMMMMMMMMMMMMMMMMMMMMMMM/"&.,d. -. + dboMMHMMMMMMMMMMMMMMMMMMMMMML *^ . + HMHMMM$Z***MMMMMMMMMMMMMMMMMM|.- . + dMM}MMMM#^ *9MMMH?"*MMMMR^T^ _ : +|MMMbM#^^ |MM" **MMMH. <_ . +dMMMM#& *&. .?**" .^&: . +MMMMMH- *^ -v/H .dD "^ ^ : +MMMM* **M: 4MM*::-!v,_ : +MMMM **?::" "^**"?9Mb::. : +&MMM, *"^"^|"._ "?*| - : +*MMM}.H ,#dM[_H ..: + 9MMi*M: . .ooHMMMMMMM, .. + 9Mb *- 1MMMMMMMMMM| : + ?M |MM#*#MMMM* . + -. * |#"^ ,^ + . -" v* + -. .- + - . . * + ^-*#d#HHMMMMHH#"-^ +' +' + + _,<_:&S6dHHHb&bb\_ + .odHMMMMMMMMMMMMMMMMMMM}-_ + .oHMMMMMMMMMMMMMMMMMMMMMMMM#d:. + ?9MMMMMMMMMMMMMMMMMMMMMMMMMMMH-$ . + ,::dHMMMMMMMMMMMMMMMMMMMMMMMMH:\.?? -. + dMdboHMMHMMMMMMMMMMMMMMMMMMMMMMH, ^ . + HMMMM7MMMb$R***MMMMMMMMMMMMMMMMMH\ - . + dMMMMM/MMMMM* *$MMMM*^"*MMMM?&^ . : +|MMMMMMb1H*^ HMP^ ^9MMM| &. . . +dMMMMMMM##~* *#\ |.**" .-9. : +9MMMMMMMM* * |v7? .,H *^ * : +SMMMMMMH^ ^9M_-MMH::-\v_ : +:HMMMMM *\_:"^|^*^:9Mv\. +-|MMMMM, ""*^*^:.*?\ \ +*:MMMMM}.d} .?bM6,| | + :?MMM6 M| . .,oHMMMMM| / + .?MMM- *^ &MMMMMMMM|. + -*HM- HMH#*MMM?: + ^. ^ *#*:* + - -^/ + * . . ^ + * . . * + ^--##HH#HMMMHH#""* +' +' + + _o,d_?dZdoHHHb#b\_ + .vdMMMMMMMMMMMMMMMMMMMMH\. + .,HHMMMMMMMMMMMMMMMMMMMMMMMMH&,. + /?RMMMMMMMMMMMMMMMMMMMMMMMMMMMMH|.. + ,\?>*T#RMMMMMMMMMMMMMMMMMMMMMMMM6*\|/ + dMMbd#ooHMMMHMMMMMMMMMMMMMMMMMMMMMH,*^ ^ + HMMMMMMMTMMMMb$ZP**HMMMMMMMMMMMMMMMM|. : + dMMMMMMMM}$MMMMMH^ *HMMMH?"*MMMM?T^ . : +|MMMMMMMMMMoMH*^^ *MM? **MMM| +\ . +1MMMMMMMMMMMb#/ ?#? |*#" -T: : +*^HMMMMMMMMMM*^ " ~?& .?} ^ ^ . +- 4MMMMMMMMP" *M? HMTc:\\.: +: *MMMMMMM[ "#:::*>*"?M{ +. |MMMMMMH. **^**^_*:- +- |MMMMMMM|.dD ,#Mb\^ + : *MMMMM: iM| . _oHMMMM: + . ?MMMM^ "^ ,MMMMMMP + : *HMH JM#*MMT + -. ^ * #^ + . / + -. - .^ + -. . * + ^--=&&MH##HMHH#""" +' +' + + .-:?,Z?:&$dHH##b\_ + ,:bqRMMMMMMMMMMMMMMMMMHo. + .?HHHMMMMMMMMMMMMMMMMMMMMMMMHo. + -o/*M9MMMMMMMMMMMMMMMMMMMMMMMMMMMv + .:H\b\^|?#HHMMMMMMMMMMMMMMMMMMMMMM6?Z\ + .?MMMHbdbbodMMMMHMMMMMMMMMMMMMMMMMMMM\^: + :MMMMMMMMMMM7MMMMb?6P**#MMMMMMMMMMMMMMM_ : + \MMMMMMMMMMMMb^MMMMMM? **MMMM*"*MMMR<^ . - +.1MMMMMMMMMMMMMb]M#"" 9MR^ *?MMb \. : +-MMMMMMMMMMMMMMMH##|* *&. |**^ .\ . +-?""*MMMMMMMMMMMMM^ ^ |?b ,}" : +: MMMMMMMMMMH^ *M_|M}r\? +. *MMMMMMMMM^ *$_:*^"H +- TMMMMMMMM, ^"**:: +: {MMMMMMMM| oH| .#M- + : *9MMMMMM^ .MP . ,oMMT + . HMMMMP^ *^ ,MMMP + - *MMH^ HH9* + ^. * * .^ + - . ^ + * . - .- + * . .- + ^ -==pHMMH##HH#""" +' +' + + _..-:b&::&?&&##bo_ + ...?-#&9MMMMMMMMMMMMMMMHo_ + .. .1&#MMHMMMMMMMMMMMMMMMMMMMHo. + . .o/##R9MMMMMMMMMMMMMMMMMMMMMMMM?. + .- |MSd?|^*$?#HMMMMMMMMMMMMMMMMMMMMMH\ + - dMMMMHbd##oodMMMM#MMMMMMMMMMMMMMMMMH: + - JMMMMMMMMMMMMM7HMMMH$SR***MMMMMMMMMMMMb> + : {MMMMMMMMMMMMMMM*9MMMMMH^ **HMMM?"*MM[| : +- |MMMMMMMMMMMMMMMMM +' + +' + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* , _0_ _@_ * + #3* \/\ /\ )---- -----{ /\|/\ * +#4* \/\ /\/)---- -----{\/\|/\ * +#3* | | \ * +#4* X | . * +#3* / \ / \ * +#4* / \ / \ * +#3* _/ |_ / |_ * +#4* _/ |_ _/ |_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' + +' + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ ___. * + #4* _0_ _@_ ___. * + #3* /\ /\ )--====={===(\|/ * +#4* /\ /\/)---- { \|/ * +#3* | | \\ * +#4* , X \\ * +#3* / \ / \ * +#4* / \ / \ * +#3* _| \_ | \_ * +#4* _| \_ _| \_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' + +' + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* _0_ _@_ . * + #3* /\ /\ )---====={===(\|/\/ * +#4* /\ /\/)---- { \|/\/ * +#3* / | | * +#4* , X | * +#3* / \ / \ * +#4* / \ / \ * +#3* _| \_ | \_ * +#4* _| \_ _| \_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' + +' + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* _0_ _@_ * + #3* /\ /\ )---- -----{ /\|/\_. * +#4* /\ /\/)---- -----{\/\|/\_. * +#3* | | | * +#4* , X | * +#3* / \ / \ * +#4* / \ / \ * +#3* _| \_ / |_ * +#4* _| \_ _/ |_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' + +' + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* | * + #4* | * + #3* | * + #4* | * + #3* _@_ T _@_ * + #4* _0____| _@_ * + #3* /\ / -----{ /\|/\ * +#4* /\ / -----{\/\|/\ * +#3* / | | \ * +#4* , X | . * +#3* / \ / \ * +#4* / \ / \ * +#3* _| \_ / |_ * +#4* _| \_ _/ |_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' + +' + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* ,___ _0_ _@_ * + #3* \ /\==)==== { /\|/\ * +#4* \ /= ) ====={\/\|/\ * +#3* // | / * +#4* // | . * +#3* / \ / \ * +#4* / \ / \ * +#3* _/ |_ / |_ * +#4* _/ |_ _/ |_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' + +' + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* _0_ _@_ * + #3* /\ /\ ) ====={=/\|/\ * +#4* /\ /===)==== {\/\|/\ * +#3* \ | | \ * +#4* , X | . * +#3* / \ / \ * +#4* / \ / \ * +#3* _/ |_ / |_ * +#4* _/ |_ _/ |_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' +' + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* _0_ _@_ * + #3* /\ /\ =)==== { /\|/\ * +#4* ,__/\ / = ) ====={\/\|/\ * +#3* | | / * +#4* X | . * +#3* / \ / \ * +#4* / \ / \ * +#3* _/ |_ | \_ * +#4* _/ |_ _| \_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' +' + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* , _0_ _@_ * + #3* \/\ /\ ) ====={=/\|/\ * +#4* \/\ /===)==== {\/\|/\ * +#3* | | | * +#4* X | . * +#3* / \ / \ * +#4* / \ / \ * +#3* _| \_ / |_ * +#4* _| \_ _/ |_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' + +' + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* _0_ _@_ * + #3* /\ /\ ) -----{ /\|/\ * +#4* /\ /===)==== -----{\/\|/\ * +#3* \ | | \ * +#4* , X | . * +#3* / \ / \ * +#4* / \ / \ * +#3* _| \_ / |_ * +#4* _| \_ _/ |_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' +' + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* , _0_ _@_ * + #3* \/\ /\-)---- -----{ /\|/\ * +#4* \/\ /\/)---- -----{\/\|/\_. * +#3* | | * +#4* X | * +#3* / \ / \ * +#4* / \ / \ * +#3* _| \_ / |_ * +#4* _| \_ _/ |_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' +' + + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* , _0_ _@_ * + #3* \/\ /\-)---- -----{ /\|/\ * +#4* \/\ /\/)---- -----{\/\|/\_. * +#3* | | * +#4* X | * +#3* / \ / \ * +#4* / \ / \ * +#3* _| \_ / |_ * +#4* _| \_ _/ |_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' +' + + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* , _0_ _@_ * + #3* \/\ /\ )---- -----{ /\|/\ * +#4* \/\ /\/)---- -----{\/\|/\_. * +#3* | | * +#4* X | * +#3* / \ / \ * +#4* / \ / \ * +#3* _| \_ / |_ * +#4* _| \_ _/ |_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' + +' + + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* _0_ _@_ * + #3* \/\ /\ ) ====={=/\|/\ * +#4* \/\ /\/)==== {\/\|/\ * +#3* | | \ * +#4* X | . * +#3* / \ / \ * +#4* / \ / \ * +#3* _| \_ / |_ * +#4* _| \_ _/ |_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' +' + + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* _0_ _@_ * + #3* /\ /\ )--====={=/\|/\ * +#4* ,__/\ /\/)==== {\/\|/\ * +#3* | | \ * +#4* X | . * +#3* / \ / \ * +#4* / \ / \ * +#3* _/ |_ | \_ * +#4* _/ |_ _| \_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' +' + + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* _0_ _@_ * + #3* /\ /\ )-====={=/\|/\ * +#4* /\ /\/)==== {\/\|/\ * +#3* / | | \ * +#4* , X | . * +#3* / \ / \ * +#4* / \ / \ * +#3* _/ |_ | \_ * +#4* _/ |_ _| \_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' +' + + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* _0_ _@_ _ * + #3* /\ /\=)==={===(\|/ \ * +#4* /\ /\/)==={= =\|/ . * +#3* \ | \\ * +#4* , X \\ * +#3* / \ / \ * +#4* / \ / \ * +#3* _/ |_ | \_ * +#4* _/ |_ _| \_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' +' + + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* _0_ _@_ ___. * + #3* /\ /\====={===(\|/ * +#4* /\ /\ { =\|/ * +#3* | | \ \\ * +#4* , X , \\ * +#3* / \ -)---- / \ * +#4* / \ -)---- / \ * +#3* _/ |_ | \_ * +#4* _/ |_ _| \_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' +' + + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* _@_ _@_ * + #4* _0_ _@_ * + #3* /\ /\ -----{ /\|/\ * +#4* ,__/\ /\ -----{\/\|/\_. * +#3* | \ | * +#4* X , | * +#3* / \ / \ * +#4* / \ / \ * +#3* _/ |_-)---- | \_ * +#4* _/ |_-)---- _| \_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' +' + + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * + #3* * + #4* \ / * + #3* \_@_/ _@_ * + #4* \_0_/ _@_ * + #3* \ / -----{ /\|/\ * +#4* \ / -----{\/\|/\ * +#3* | | / * +#4* X | . * +#3* / \ / \ * +#4* / \ / \ * +#3* _| \_-)---- | \_ * +#4* _| \_-)---- _| \_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' +' + + #3**** The Amazing stories of Zorro ****** + #4**** The Amazing stories of Zorro ****** + #3* * + #4* * + #3* * + #4* * +  + #3* * + #4* \ / * + #3* \_@_/ _@_ * + #4* \_0_/ _@_ * + #3* \ / -----{ /\|/\ * +#4* \ / -----{\/\|/\/ * +#3* | | * +#4* X | * +#3* / \ / \ * +#4* / \ / \ * +#3* _| |_ -)---- | \_ * +#4* _| |_ -)---- _| \_ * +#3*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* +#4*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* + By cokirsey@unix1.tcd.ie +' + +) diff --git a/bash_loading_animations.sh b/bash_loading_animations.sh index 0985a80..ed6ac2f 100644 --- a/bash_loading_animations.sh +++ b/bash_loading_animations.sh @@ -5,52 +5,8 @@ # shellcheck disable=SC2034 # https://github.com/koalaman/shellcheck/wiki/SC2034 ### Loading animations list ### -# The first value of an array is the interval (in seconds) between each frame - -## ASCII animations ## -# Will work in any terminal, including the TTY. -BLA_classic=( 0.25 '-' "\\" '|' '/' ) -BLA_box=( 0.2 ┤ ┴ ├ ┬ ) -BLA_bubble=( 0.6 · o O O o · ) -BLA_breathe=( 0.9 '  ()  ' ' (  ) ' '(    )' ' (  ) ' ) -BLA_growing_dots=( 0.5 '.  ' '.. ' '...' '.. ' '.  ' '   ' ) -BLA_passing_dots=( 0.25 '.  ' '.. ' '...' ' ..' '  .' '   ' ) -BLA_metro=( 0.2 '[    ]' '[=   ]' '[==  ]' '[=== ]' '[ ===]' '[  ==]' '[   =]' ) -BLA_snake=( 0.4 '[=     ]' '[~<    ]' '[~~=   ]' '[~~~<  ]' '[ ~~~= ]' '[  ~~~<]' '[   ~~~]' '[    ~~]' '[     ~]' '[      ]' ) -BLA_filling_bar=( 0.25 '█▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '███▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '█████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '██████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '███████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '█████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '██████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '███████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '█████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '██████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '███████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '████████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '█████████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '██████████████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒' '███████████████████▒▒▒▒▒▒▒▒▒▒▒▒▒' '████████████████████▒▒▒▒▒▒▒▒▒▒▒▒' '█████████████████████▒▒▒▒▒▒▒▒▒▒▒' '██████████████████████▒▒▒▒▒▒▒▒▒▒' '███████████████████████▒▒▒▒▒▒▒▒▒' '████████████████████████▒▒▒▒▒▒▒▒' '█████████████████████████▒▒▒▒▒▒▒' '██████████████████████████▒▒▒▒▒▒' '███████████████████████████▒▒▒▒▒' '████████████████████████████▒▒▒▒' '█████████████████████████████▒▒▒' '██████████████████████████████▒▒' '███████████████████████████████▒' '████████████████████████████████') - -## UTF-8 animations ## -# Require Unicode support (will work in most modern terminals, but not in TTY). -# Some animations may not render properly with certain fonts. -BLA_classic_utf8=( 0.25 '—' "\\" '|' '/' ) -BLA_bounce=( 0.3 . · ˙ · ) -BLA_vertical_block=( 0.25 ▁ ▂ ▃ ▄ ▅ ▆ ▇ █ █ ▇ ▆ ▅ ▄ ▃ ▂ ▁ ) -BLA_horizontal_block=( 0.25 ▏ ▎ ▍ ▌ ▋ ▊ ▉ ▉ ▊ ▋ ▌ ▍ ▎ ▏ ) -BLA_quarter=( 0.25 ▖ ▘ ▝ ▗ ) -BLA_triangle=( 0.45 ◢ ◣ ◤ ◥) -BLA_semi_circle=( 0.1 ◐ ◓ ◑ ◒ ) -BLA_rotating_eyes=( 0.4 ◡◡ ⊙⊙ ⊙⊙ ◠◠ ) -BLA_firework=( 0.4 '⢀' '⠠' '⠐' '⠈' '*' '*' ' ' ) -BLA_braille=( 0.2 ⠁ ⠂ ⠄ ⡀ ⢀ ⠠ ⠐ ⠈ ) -BLA_braille_whitespace=( 0.2 ⣾ ⣽ ⣻ ⢿ ⡿ ⣟ ⣯ ⣷ ) -BLA_trigram=( 0.25 ☰ ☱ ☳ ☶ ☴ ) -BLA_arrow=( 0.15 ▹▹▹▹▹ ▸▹▹▹▹ ▹▸▹▹▹ ▹▹▸▹▹ ▹▹▹▸▹ ▹▹▹▹▸ ▹▹▹▹▹ ▹▹▹▹▹ ▹▹▹▹▹ ▹▹▹▹▹ ▹▹▹▹▹ ▹▹▹▹▹ ▹▹▹▹▹ ) -BLA_bouncing_ball=( 0.4 '(●     )' '( ●    )' '(  ●   )' '(   ●  )' '(    ● )' '(     ●)' '(    ● )' '(   ●  )' '(  ●   )' '( ●    )' ) -BLA_big_dot=( 0.7 ∙∙∙ ●∙∙ ∙●∙ ∙∙● ) -BLA_modern_metro=( 0.15 ▰▱▱▱▱▱▱ ▰▰▱▱▱▱▱ ▰▰▰▱▱▱▱ ▱▰▰▰▱▱▱ ▱▱▰▰▰▱▱ ▱▱▱▰▰▰▱ ▱▱▱▱▰▰▰ ▱▱▱▱▱▰▰ ▱▱▱▱▱▱▰ ▱▱▱▱▱▱▱ ▱▱▱▱▱▱▱ ▱▱▱▱▱▱▱ ▱▱▱▱▱▱▱ ) -BLA_pong=( 0.35 '▐⠂       ▌' '▐⠈       ▌' '▐ ⠂      ▌' '▐ ⠠      ▌' '▐  ⡀     ▌' '▐  ⠠     ▌' '▐   ⠂    ▌' '▐   ⠈    ▌' '▐    ⠂   ▌' '▐    ⠠   ▌' '▐     ⡀  ▌' '▐     ⠠  ▌' '▐      ⠂ ▌' '▐      ⠈ ▌' '▐       ⠂▌' '▐       ⠠▌' '▐       ⡀▌' '▐      ⠠ ▌' '▐      ⠂ ▌' '▐     ⠈  ▌' '▐     ⠂  ▌' '▐    ⠠   ▌' '▐    ⡀   ▌' '▐   ⠠    ▌' '▐   ⠂    ▌' '▐  ⠈     ▌' '▐  ⠂     ▌' '▐ ⠠      ▌' '▐ ⡀      ▌' '▐⠠       ▌' ) -BLA_earth=( 0.45 🌍 🌎 🌏 ) -BLA_clock=( 0.2 🕛 🕐 🕑 🕒 🕓 🕔 🕕 🕖 🕗 🕘 🕙 🕚 ) -BLA_moon=( 0.8 🌑 🌒 🌓 🌔 🌕 🌖 🌗 🌘 ) -BLA_orange_pulse=( 0.35 🔸 🔶 🟠 🟠 🔶 ) -BLA_blue_pulse=( 0.35 🔹 🔷 🔵 🔵 🔷 ) -BLA_football=( 0.25 ' 👧⚽️       👦' '👧  ⚽️      👦' '👧   ⚽️     👦' '👧    ⚽️    👦' '👧     ⚽️   👦' '👧      ⚽️  👦' '👧       ⚽️👦 ' '👧      ⚽️  👦' '👧     ⚽️   👦' '👧    ⚽️    👦' '👧   ⚽️     👦' '👧  ⚽️      👦' ) -BLA_blink=( 0.25 😐 😐 😐 😐 😐 😐 😐 😐 😐 😑 ) -BLA_camera=( 0.1 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📸 📷 📸 ) -BLA_sparkling_camera=( 0.1 '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📷 ' '📸✨' '📷 ' '📸✨' ) -BLA_sick=( 0.9 🤢 🤢 🤮 ) -BLA_monkey=( 0.4 🙉 🙈 🙊 🙈 ) -BLA_bomb=( 0.25 '💣   ' ' 💣  ' '  💣 ' '   💣' '   💣' '   💣' '   💣' '   💣' '   💥' '    ' '    ' ) +ABSOLUTE_PATH=$(dirname -- "$(readlink -f "${BASH_SOURCE}")") +for ANIMATION in $ABSOLUTE_PATH/animations/*.sh; do source $ANIMATION; done declare -a BLA_active_loading_animation