diff options
author | Vivia Nikolaidou | 2013-11-05 15:49:25 +0200 |
---|---|---|
committer | Vivia Nikolaidou | 2013-11-05 15:49:25 +0200 |
commit | 2f80a68b1f4e9cb5a636a38de90dd39987ebaa51 (patch) | |
tree | b2ccc8c89db8bd3d34c8688cf737595f13c9d08f | |
parent | Fixed advert command (diff) | |
download | shbot-2f80a68b1f4e9cb5a636a38de90dd39987ebaa51.tar.gz shbot-2f80a68b1f4e9cb5a636a38de90dd39987ebaa51.tar.bz2 shbot-2f80a68b1f4e9cb5a636a38de90dd39987ebaa51.zip |
Added the duck generation module.
The duck generation module listens to the "duck" command. It will
then generate a random duck based on https://github.com/adyxax/hsbot
with some additional heads and beaks.
-rwxr-xr-x | shbrain.sh | 2 | ||||
-rwxr-xr-x | shduck.sh | 30 | ||||
-rwxr-xr-x | shhelp.sh | 2 |
3 files changed, 33 insertions, 1 deletions
@@ -22,6 +22,8 @@ do ./shquote.sh ${ARGS[*]} elif [ "$CMD" = "trains" ]; then ./shtrains.sh ${ARGS[*]} + elif [ "$CMD" = "duck" ]; then + ./shduck.sh elif [ "$CMD" = "help" ]; then ./shhelp.sh $ARGS else diff --git a/shduck.sh b/shduck.sh new file mode 100755 index 0000000..5fc4b02 --- /dev/null +++ b/shduck.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +# Duck generation based on https://github.com/adyxax/hsbot + +RANDOM=$$ #Seed random number generator from script PID +export GLOBIGNORE="*" #Do not substitute asterisks (e.g. in $heads) for lists of files!! + +#Body parts (both RTL and LTR where applicable) +leftbeaks=(">" "=") +rightbeaks=("<" "=") +leftbody=("_/" "__/" "_~" "__~") +rightbody=("\\\\_" "\\\\__" "~_" "~__") +heads=("o" "O" "0" "@" "©" "®" "ð" "*" "ò" "ô" "ó" "ø" "⊕" "Ω" "ꙫ" "ꙩ" "Ꙩ" "ȯ" "◔" "õ" "ȯ" "⁰" "Ö" "Ó" "Ò" "Õ" "Ô" "ö") + +head=${heads[$RANDOM % ${#heads[@]} ]} #Pick a head + +left=$(expr $RANDOM % 2) #Whether it will be a left-to-right duck + +#Generate the duck +if [ $left == 1 ]; then + beak=${leftbeaks[$RANDOM % ${#leftbeaks[@]} ]} + body=${leftbody[$RANDOM % ${#leftbody[@]} ]} + duck=$beak$head$body +else + beak=${rightbeaks[$RANDOM % ${#rightbeaks[@]} ]} + body=${rightbody[$RANDOM % ${#rightbody[@]} ]} + duck=$body$head$beak +fi + +echo $duck @@ -16,7 +16,7 @@ case "$1" in "trains") echo "trains [STATION] : Prints the next trains that will stop at Courbevoie's station." echo " When provided, only results that concerns STATION are advertised." ;; - *) echo "The following commands are available : advert help join part quote trains" + *) echo "The following commands are available : advert help join part quote trains duck" ;; esac |