From 8b922c1f00b7bd22f922b7169dab812595c9a031 Mon Sep 17 00:00:00 2001 From: InigoGutierrez Date: Thu, 22 Jun 2023 17:39:52 +0200 Subject: Created dominion scripts and updated docs.sh to not need a page number. --- games/dominion/showKingdom.sh | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100755 games/dominion/showKingdom.sh (limited to 'games/dominion') diff --git a/games/dominion/showKingdom.sh b/games/dominion/showKingdom.sh new file mode 100755 index 0000000..e405867 --- /dev/null +++ b/games/dominion/showKingdom.sh @@ -0,0 +1,42 @@ +#!/bin/sh + +# showKingdom.sh: Shows the images of a card list received as input +# +# Usage: showKingdom.sh + +scriptName="${0##*/}" + +usageMessage="Usage: ${scriptName}" + +error() { + printf '%s error: %s\n' "$scriptName" "$*" >&2 +} + +errorAndUsage() { + printf '%s error: %s\n%s\n' "$scriptName" "$*" "$usageMessage" >&2 +} + +outputDirBase='/tmp/showKingdom' +outputDir="${outputDirBase}/$(date '+%y%m%d%H%M%S')" +[ -d "$outputDir" ] || mkdir -p "$outputDir" + +counter=1 + +while read -r card; do + name="$(echo "$card" | grep -Eo '[A-Za-z][A-Za-z ]*[A-Za-z]' | sed 's/ /_/g')" + + # Avoid redownload if image exists already + existingFile="$(find "$outputDirBase" -name "${name}.jpg" | sed 1q)" + if [ -n "$existingFile" ]; then + if ! cp "$existingFile" "$outputDir"; then + # If copy fails, assume file exists and copy it with an appended counter + cp "$existingFile" "${outputDir}/${name}${counter}.jpg" + counter=$((counter+1)) + fi + else + wget "https://robinzigmond.github.io/Dominion-app/images/card_images/${name}.jpg" --directory-prefix="$outputDir" + fi + +done + +sxiv -tb "$outputDir" & -- cgit v1.2.1