lists/convert-previews.sh

54 lines
990 B
Bash
Raw Permalink Normal View History

2025-02-11 04:41:53 +00:00
#!/bin/sh
# This scripts resizes all the previews
# into _files so they can be uploaded
# to a CDN delivering package previews
DECL="$1"
DECL_IMG=$(basename "$1" | cut -d '.' -f 1)
DECLDIR=$(dirname "$DECL")
TYPE=$(dirname "$DECLDIR")
TYPE=$(basename "$TYPE")
GAMEDIR=$(basename "$DECLDIR")
NAME=$(grep packageInfo "$DECL" | awk '{ print $2 }')
GPREFIX=$GAMEDIR
if [ $TYPE = Addons ]
then
PREFIX="addon"
fi
if [ $TYPE = Maps ]
then
PREFIX="map"
fi
if [ $TYPE = Mods ]
then
PREFIX="mod"
fi
if [ $TYPE = Campaigns ]
then
PREFIX="campaign"
fi
if [ $TYPE = Patches ]
then
PREFIX="patch"
fi
2025-02-11 04:56:11 +00:00
PKGNAME=$(echo "$GPREFIX"-"$PREFIX"-"$NAME" | awk '{print tolower($0)}')
2025-02-11 04:41:53 +00:00
if [ -f "$DECLDIR/$DECL_IMG.png" ]
then
convert -resize 128x128\! "$DECLDIR/$DECL_IMG.png" ./_files/$PKGNAME.jpg
echo "resized to ./_files/$PKGNAME.jpg"
fi
if [ -f "$DECLDIR/$DECL_IMG.jpg" ]
then
convert -resize 128x128\! "$DECLDIR/$DECL_IMG.jpg" ./_files/$PKGNAME.jpg
echo "resized to ./_files/$PKGNAME.jpg"
fi