Portal glyph banner & Galatic Coordinate converter

all features appear work!
This commit is contained in:
bradley.richins
2020-10-11 23:28:48 -06:00
parent 0ef42c0cd4
commit 2cab8b286c

22
gui
View File

@@ -36,10 +36,26 @@ if [ $HGLEN != 12 ]; then
zen_error "12 (HEX) chars are required" 1 zen_error "12 (HEX) chars are required" 1
fi fi
HEXGLYPH=${HEXGLYPH^^} # Make string uppercase # Make string uppercase
HEXGLYPH=${HEXGLYPH^^}
echo -e "Glyph code: \e[0;94m$HEXGLYPH\e[0m" # not necessary but nice to have echo -e "Glyph code: \e[0;94m$HEXGLYPH\e[0m" # not necessary but nice to have
GC=$(bash ./converter.sh $HEXGLYPH) CHOICE=$(zenity --list --checklist --title="Options" --text="Options" --column="Use" --column="Feature" TRUE "Banner" False "Translator")
echo -e "Galatic Coordinates: \e[0;94m$GC\e[0m" # not necessary but nice to have" OPTS=$(echo $CHOICE | tr "|" "\n")
for OP in $OPTS
do
if [ "$OP" == "Banner" ]; then
BANNER=1
elif [ "$OP" == "Translator" ]; then
GC=$(bash ./converter.sh $HEXGLYPH)
echo -e "Galatic Coordinates: \e[0;94m$GC\e[0m" # not necessary but nice to have"
fi
done
if [ "$BANNER" == 1 ]; then
SIZE=$(zenity --list --text "Select image size" --radiolist --column "Select" --column "Size" TRUE 3072x256 FALSE 1536x126 FALSE 768x64 FALSE 384x32 FALSE 192x16)
FILENAME=$(zenity --forms --title="Save" --text="Planet name" --add-entry="")
bash -c "./genimg.sh $HEXGLYPH $SIZE $FILENAME" && echo -e "Saved to \e[0;94m$FILENAME-$SIZE.png\e[0m"
fi
exit 0 exit 0