2022-01-10 07:00:54 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Requirements: git-bash
|
|
|
|
# https://git-scm.com/download/win
|
|
|
|
|
|
|
|
set -Eeuo pipefail
|
|
|
|
|
|
|
|
trap cleanup SIGINT SIGTERM ERR EXIT
|
|
|
|
|
2022-02-13 17:15:24 +00:00
|
|
|
# Whoami
|
2022-01-10 07:00:54 +00:00
|
|
|
ScriptFullname=$(readlink -e "$0")
|
|
|
|
ScriptName=$(basename "$0")
|
|
|
|
ScriptDir=$(dirname "$ScriptFullname")
|
|
|
|
|
|
|
|
# Common
|
|
|
|
SteamPath=$(reg_readkey "HKCU\Software\Valve\Steam" "SteamPath")
|
|
|
|
DocumentsPath=$(reg_readkey "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" "Personal")
|
|
|
|
ThirdPartyBin="$ScriptDir/3rd-party-bin"
|
|
|
|
|
|
|
|
# Usefull KF2 executables / Paths / Configs
|
|
|
|
KFDoc="$DocumentsPath/My Games/KillingFloor2"
|
|
|
|
KFPath="$SteamPath/steamapps/common/killingfloor2"
|
|
|
|
KFWin64="$KFPath/Binaries/Win64"
|
|
|
|
KFEditor="$KFWin64/KFEditor.exe"
|
|
|
|
KFEditorPatcher="$KFWin64/kfeditor_patcher.exe"
|
|
|
|
KFEditorMergePackages="$KFWin64/KFEditor_mergepackages.exe"
|
|
|
|
KFGame="$KFWin64/KFGame.exe"
|
|
|
|
KFWorkshop="$KFPath/Binaries/WorkshopUserTool.exe"
|
|
|
|
KFUnpublish="$KFDoc/KFGame/Unpublished"
|
|
|
|
KFPublish="$KFDoc/KFGame/Published"
|
|
|
|
KFEditorConf="$KFDoc/KFGame/Config/KFEditor.ini"
|
|
|
|
|
|
|
|
# Source filesystem
|
|
|
|
MutSource="$ScriptDir/.."
|
|
|
|
MutPubContent="$MutSource/PublicationContent"
|
|
|
|
MutConfig="$MutSource/Config"
|
|
|
|
MutLocalization="$MutSource/Localization"
|
2022-01-14 23:51:08 +00:00
|
|
|
MutBuildConfig="$MutSource/build.cfg"
|
|
|
|
MutTestConfig="$MutSource/test.cfg"
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
# Steam workshop upload filesystem
|
|
|
|
KFUnpublishBrewedPC="$KFUnpublish/BrewedPC"
|
|
|
|
KFUnpublishPackages="$KFUnpublishBrewedPC/Packages"
|
|
|
|
KFUnpublishScript="$KFUnpublishBrewedPC/Script"
|
|
|
|
KFUnpublishConfig="$KFUnpublish/Config"
|
|
|
|
KFUnpublishLocalization="$KFUnpublish/Localization"
|
|
|
|
KFPublishBrewedPC="$KFPublish/BrewedPC"
|
|
|
|
KFPublishPackages="$KFPublishBrewedPC/Packages"
|
|
|
|
KFPublishScript="$KFPublishBrewedPC/Script"
|
|
|
|
KFPublishConfig="$KFPublish/Config"
|
|
|
|
KFPublishLocalization="$KFPublish/Localization"
|
|
|
|
|
|
|
|
# Tmp files
|
2022-01-14 22:22:30 +00:00
|
|
|
MutWsInfo="$KFDoc/wsinfo.txt"
|
2022-01-10 07:00:54 +00:00
|
|
|
KFEditorConfBackup="$KFEditorConf.backup"
|
|
|
|
|
2022-02-13 17:15:24 +00:00
|
|
|
function reg_readkey () # $1: path, $2: key
|
|
|
|
{
|
|
|
|
cygpath -u $(
|
|
|
|
reg query "$1" //v "$2" | \
|
|
|
|
grep -F "$2" | \
|
|
|
|
awk '{ $1=$2=""; print $0 }' )
|
|
|
|
}
|
|
|
|
|
|
|
|
function is_true () # $1: Bool arg to check
|
|
|
|
{
|
|
|
|
echo "$1" | grep -Piq '^true$'
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_latest () # $1: Reponame, $2: filename, $3: output filename
|
|
|
|
{
|
|
|
|
local ApiUrl="https://api.github.com/repos/$1/releases/latest"
|
|
|
|
local LatestTag=$(curl --silent "$ApiUrl" | grep -Po '"tag_name": "\K.*?(?=")')
|
|
|
|
local DownloadUrl="https://github.com/$1/releases/download/$LatestTag/$2"
|
|
|
|
|
|
|
|
mkdir -p "$(dirname "$3")/"
|
|
|
|
curl -LJs "$DownloadUrl" -o "$3"
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_latest_multini () # $1: file to save
|
|
|
|
{
|
|
|
|
get_latest "GenZmeY/multini" "multini-windows-amd64.exe" "$1"
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_latest_kfeditor_patcher () # $1: file to save
|
|
|
|
{
|
|
|
|
get_latest "notpeelz/kfeditor-patcher" "kfeditor_patcher.exe" "$1"
|
|
|
|
}
|
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
function show_help ()
|
|
|
|
{
|
|
|
|
cat <<EOF
|
2022-01-12 22:04:34 +00:00
|
|
|
Usage: $0 OPTION
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
Build, pack, test and upload your kf2 packages to the Steam Workshop.
|
|
|
|
|
|
|
|
Available options:
|
2022-01-15 03:06:18 +00:00
|
|
|
-ib, --init-build generate $(basename "$MutBuildConfig") with build parameters
|
|
|
|
-it, --init-test generate $(basename "$MutTestConfig") with test parameters
|
|
|
|
-i, --init the same as "./$ScriptName --init-build; ./$ScriptName --init-test"
|
|
|
|
-c, --compile build package(s)
|
|
|
|
-b, --brew compress *.upk and place inside *.u
|
|
|
|
-bm, --brew-manual the same (almost) as above, but with patched kfeditor by @notpeelz
|
|
|
|
-u, --upload upload package(s) to the Steam Workshop
|
|
|
|
-t, --test run local single player test with $(basename "$MutTestConfig") parameters
|
|
|
|
-v, --version show version
|
|
|
|
-h, --help show this help
|
|
|
|
|
|
|
|
Shortcuts for multiple options:
|
|
|
|
-cb compile, brew
|
|
|
|
-cu compile, upload
|
|
|
|
-cbm compile, brew_manual
|
|
|
|
-cbu compile, brew, upload
|
|
|
|
-cbmu compile, brew_manual, upload
|
|
|
|
-ct compile, run_test
|
|
|
|
-cbt compile, brew, run_test
|
|
|
|
-cbmt compile, brew_manual, run_test
|
2022-01-10 07:00:54 +00:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2022-01-12 22:04:34 +00:00
|
|
|
function show_version ()
|
|
|
|
{
|
|
|
|
cat <<EOF
|
2022-01-14 22:22:30 +00:00
|
|
|
$ScriptName $(git describe 2> /dev/null)
|
2022-01-12 22:04:34 +00:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
function cleanup()
|
|
|
|
{
|
|
|
|
trap - SIGINT SIGTERM ERR EXIT
|
|
|
|
restore_kfeditorconf
|
|
|
|
}
|
|
|
|
|
|
|
|
function backup_kfeditorconf ()
|
|
|
|
{
|
|
|
|
cp -f "$KFEditorConf" "$KFEditorConfBackup"
|
|
|
|
}
|
|
|
|
|
|
|
|
function restore_kfeditorconf ()
|
|
|
|
{
|
|
|
|
if [[ -f "$KFEditorConfBackup" ]]; then
|
|
|
|
mv -f "$KFEditorConfBackup" "$KFEditorConf"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function init_build ()
|
|
|
|
{
|
|
|
|
local PackageList=""
|
|
|
|
|
|
|
|
:> "$MutBuildConfig"
|
|
|
|
|
2022-01-14 22:22:30 +00:00
|
|
|
while read -r Package
|
2022-01-10 07:00:54 +00:00
|
|
|
do
|
|
|
|
if [[ -z "$PackageList" ]]; then
|
|
|
|
PackageList="$Package"
|
|
|
|
else
|
|
|
|
PackageList="$PackageList $Package"
|
|
|
|
fi
|
|
|
|
done < <(find "$MutSource" -mindepth 2 -maxdepth 2 -type d -ipath '*/Classes' | sed -r 's|.+/([^/]+)/[^/]+|\1|' | sort)
|
|
|
|
|
2022-01-16 02:07:46 +00:00
|
|
|
cat > "$MutBuildConfig" <<EOF
|
|
|
|
# Build parameters
|
|
|
|
|
|
|
|
# If True - compresses the mutator when compiling
|
|
|
|
# Scripts will be stored in binary form
|
|
|
|
# (reduces the size of the output file)
|
|
|
|
StripSource="True"
|
|
|
|
|
|
|
|
# Mutators to be compiled
|
|
|
|
# Specify them with a space as a separator,
|
|
|
|
# Mutators will be compiled in the specified order
|
|
|
|
PackageBuildOrder="$PackageList"
|
|
|
|
|
|
|
|
# Mutators that will be uploaded to the workshop
|
|
|
|
# Specify them with a space as a separator,
|
|
|
|
# The order doesn't matter
|
|
|
|
PackageUpload="$PackageList"
|
|
|
|
EOF
|
2022-01-10 07:00:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function read_build_settings ()
|
|
|
|
{
|
|
|
|
if ! [[ -f "$MutBuildConfig" ]]; then init_build; fi
|
|
|
|
|
|
|
|
if bash -n "$MutBuildConfig"; then
|
2022-01-14 23:59:00 +00:00
|
|
|
# shellcheck source=./.shellcheck/build.cfg
|
2022-01-10 07:00:54 +00:00
|
|
|
source "$MutBuildConfig"
|
|
|
|
else
|
|
|
|
echo "$MutBuildConfig broken! Check this file before continue or create new one using $0 --init-build"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function read_test_settings ()
|
|
|
|
{
|
|
|
|
if ! [[ -f "$MutTestConfig" ]]; then init_test; fi
|
|
|
|
|
|
|
|
if bash -n "$MutTestConfig"; then
|
2022-01-14 23:59:00 +00:00
|
|
|
# shellcheck source=./.shellcheck/test.cfg
|
2022-01-10 07:00:54 +00:00
|
|
|
source "$MutTestConfig"
|
|
|
|
else
|
|
|
|
echo "$MutTestConfig broken! Check this file before continue or create new one using $0 --init-test"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2022-01-24 00:20:41 +00:00
|
|
|
function merge_package () # $1: What, $2: Where
|
2022-01-10 07:00:54 +00:00
|
|
|
{
|
2022-01-14 22:22:30 +00:00
|
|
|
local ModificationTime=""
|
2022-01-24 00:20:41 +00:00
|
|
|
local ModificationTimeNew=""
|
2022-01-14 22:22:30 +00:00
|
|
|
local PID=""
|
2022-01-10 07:00:54 +00:00
|
|
|
|
2022-01-24 00:20:41 +00:00
|
|
|
ModificationTime=$(stat -c %y "$KFWin64/$2")
|
|
|
|
CMD //C "cd /D $(cygpath -w "$KFWin64") && $(basename "$KFEditorMergePackages") make $1 $2" &
|
|
|
|
PID="$!"
|
|
|
|
while ps -p "$PID" &> /dev/null
|
|
|
|
do
|
|
|
|
ModificationTimeNew="$(stat -c %y "$KFWin64/$2")"
|
|
|
|
if [[ "$ModificationTime" != "$ModificationTimeNew" ]]; then # wait for write
|
|
|
|
while ps -p "$PID" &> /dev/null
|
|
|
|
do
|
|
|
|
ModificationTime="$ModificationTimeNew"
|
|
|
|
sleep 1
|
|
|
|
ModificationTimeNew="$(stat -c %y "$KFWin64/$2")"
|
|
|
|
if [[ "$ModificationTime" == "$ModificationTimeNew" ]]; then # wait for write finish
|
|
|
|
kill "$PID"
|
|
|
|
rm -f "$KFWin64/$1" # cleanup (auto)
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
|
|
|
|
rm -f "$KFWin64/$1" # cleanup (manual)
|
|
|
|
}
|
|
|
|
|
|
|
|
function merge_packages () # $1: Mutator name
|
|
|
|
{
|
2022-01-10 07:00:54 +00:00
|
|
|
cp -f "$KFUnpublishScript/$1.u" "$KFWin64"
|
|
|
|
|
2022-01-14 22:22:30 +00:00
|
|
|
while read -r Upk
|
2022-01-10 07:00:54 +00:00
|
|
|
do
|
|
|
|
cp -f "$MutSource/$1/$Upk" "$KFWin64"
|
2022-01-24 00:20:41 +00:00
|
|
|
merge_package "$Upk" "$1.u"
|
2022-01-10 07:00:54 +00:00
|
|
|
done < <(find "$MutSource/$1" -type f -name '*.upk' -printf "%f\n")
|
|
|
|
}
|
|
|
|
|
|
|
|
function compiled ()
|
|
|
|
{
|
|
|
|
for Package in $PackageBuildOrder
|
|
|
|
do
|
|
|
|
if ! test -f "$KFUnpublishScript/$Package.u"; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
function compile ()
|
|
|
|
{
|
2022-01-16 02:07:46 +00:00
|
|
|
local StripSourceArg=""
|
2022-01-14 22:22:30 +00:00
|
|
|
local PID=""
|
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
read_build_settings
|
2022-01-15 02:48:16 +00:00
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
if ! command -v multini &> /dev/null; then
|
2022-01-15 02:48:16 +00:00
|
|
|
get_latest_multini "$ThirdPartyBin/multini.exe"
|
2022-01-10 07:00:54 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
backup_kfeditorconf
|
|
|
|
|
|
|
|
multini --del "$KFEditorConf" 'ModPackages' 'ModPackages'
|
|
|
|
for Package in $PackageBuildOrder
|
|
|
|
do
|
|
|
|
multini --add "$KFEditorConf" 'ModPackages' 'ModPackages' "$Package"
|
|
|
|
done
|
|
|
|
multini --set "$KFEditorConf" 'ModPackages' 'ModPackagesInPath' "$(cygpath -w "$MutSource")"
|
|
|
|
|
|
|
|
rm -rf "$KFUnpublish" "$KFPublish"
|
|
|
|
|
|
|
|
mkdir -p "$KFUnpublishPackages" "$KFUnpublishScript"
|
2022-01-12 22:04:34 +00:00
|
|
|
|
2022-01-14 22:22:30 +00:00
|
|
|
for Package in $PackageBuildOrder
|
|
|
|
do
|
|
|
|
find "$MutSource/$Package" -type f -name '*.upk' -exec cp -f {} "$KFUnpublishPackages" \;
|
|
|
|
done
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
if [[ -d "$MutLocalization" ]]; then
|
|
|
|
mkdir -p "$KFUnpublishLocalization"
|
|
|
|
cp -rf "$MutLocalization"/* "$KFUnpublishLocalization"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -d "$MutConfig" ]]; then
|
|
|
|
mkdir -p "$KFUnpublishConfig"
|
|
|
|
cp -rf "$MutConfig"/* "$KFUnpublishConfig"
|
|
|
|
fi
|
|
|
|
|
2022-01-16 02:07:46 +00:00
|
|
|
if is_true "$StripSource"; then StripSourceArg="-stripsource"; fi
|
|
|
|
|
|
|
|
CMD //C "$(cygpath -w "$KFEditor") make $StripSourceArg -useunpublished" &
|
2022-01-14 22:22:30 +00:00
|
|
|
PID="$!"
|
2022-01-10 07:00:54 +00:00
|
|
|
while ps -p "$PID" &> /dev/null
|
|
|
|
do
|
|
|
|
if compiled; then kill "$PID"; break; fi
|
2022-01-24 00:20:41 +00:00
|
|
|
sleep 1
|
2022-01-24 04:17:19 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
find "$KFUnpublish" -type d -empty -delete
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
restore_kfeditorconf
|
|
|
|
}
|
|
|
|
|
|
|
|
function publish_common ()
|
|
|
|
{
|
|
|
|
if [[ -d "$MutLocalization" ]]; then
|
|
|
|
mkdir -p "$KFPublishLocalization"
|
|
|
|
cp -rf "$MutLocalization"/* "$KFPublishLocalization"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -d "$MutConfig" ]]; then
|
|
|
|
mkdir -p "$KFPublishConfig"
|
|
|
|
cp -rf "$MutConfig"/* "$KFPublishConfig"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function brewed ()
|
|
|
|
{
|
|
|
|
for Package in $PackageUpload
|
|
|
|
do
|
|
|
|
if ! test -f "$KFPublishBrewedPC/$Package.u"; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2022-01-24 02:26:49 +00:00
|
|
|
function brew_cleanup ()
|
|
|
|
{
|
|
|
|
for Package in $PackageBuildOrder
|
|
|
|
do
|
|
|
|
if ! echo "$PackageUpload" | grep -Pq "(^|\s+)$Package(\s+|$)"; then
|
|
|
|
find "$KFPublishBrewedPC" -type f -name "$Package.u" -delete
|
|
|
|
find "$MutSource/$Package" -type f -name '*.upk' -printf "%f\n" | xargs -I{} find "$KFPublishBrewedPC" -type f -name {} -delete
|
|
|
|
fi
|
|
|
|
done
|
2022-01-24 03:22:17 +00:00
|
|
|
|
2022-01-24 02:26:49 +00:00
|
|
|
rm -f "$KFPublishBrewedPC"/*.tmp
|
|
|
|
}
|
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
function brew ()
|
|
|
|
{
|
2022-01-14 22:22:30 +00:00
|
|
|
local PID=""
|
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
read_build_settings
|
|
|
|
|
|
|
|
if ! compiled ; then
|
|
|
|
echo "You must compile packages before brewing. Use $0 --compile for this."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm -rf "$KFPublish"
|
|
|
|
|
|
|
|
mkdir -p "$KFPublishBrewedPC"
|
|
|
|
|
2022-01-15 02:48:16 +00:00
|
|
|
CMD //C "cd /D $(cygpath -w "$KFWin64") && $(basename "$KFEditor") brewcontent -platform=PC $PackageUpload -useunpublished" &
|
2022-01-14 22:22:30 +00:00
|
|
|
PID="$!"
|
2022-01-10 07:00:54 +00:00
|
|
|
while ps -p "$PID" &> /dev/null
|
|
|
|
do
|
|
|
|
if brewed; then kill "$PID"; break; fi
|
2022-01-24 00:20:41 +00:00
|
|
|
sleep 1
|
2022-01-10 07:00:54 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
publish_common
|
2022-01-24 02:26:49 +00:00
|
|
|
brew_cleanup
|
2022-01-24 03:22:17 +00:00
|
|
|
|
2022-01-24 04:17:19 +00:00
|
|
|
find "$KFPublish" -type d -empty -delete
|
2022-01-10 07:00:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function brew_manual ()
|
|
|
|
{
|
|
|
|
read_build_settings
|
|
|
|
|
|
|
|
if ! compiled ; then
|
|
|
|
echo "You must compile packages before brewing. Use $0 --compile for this."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm -rf "$KFPublish"
|
|
|
|
|
2022-01-24 00:20:41 +00:00
|
|
|
mkdir -p "$KFPublishBrewedPC"
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
if ! [[ -x "$KFEditorPatcher" ]]; then
|
|
|
|
get_latest_kfeditor_patcher "$KFEditorPatcher"
|
|
|
|
fi
|
|
|
|
|
2022-01-24 00:20:41 +00:00
|
|
|
CMD //C "cd /D $(cygpath -w "$KFWin64") && $(basename "$KFEditorPatcher")"
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
for Package in $PackageUpload
|
|
|
|
do
|
|
|
|
merge_packages "$Package"
|
2022-01-24 00:20:41 +00:00
|
|
|
mv "$KFWin64/$Package.u" "$KFPublishBrewedPC"
|
2022-01-10 07:00:54 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
publish_common
|
2022-01-24 03:22:17 +00:00
|
|
|
|
2022-01-24 04:17:19 +00:00
|
|
|
find "$KFPublish" -type d -empty -delete
|
2022-01-24 03:22:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Uploading without brewing
|
|
|
|
function publish_unpublished ()
|
|
|
|
{
|
|
|
|
mkdir -p "$KFPublishBrewedPC" "$KFPublishScript" "$KFPublishPackages"
|
|
|
|
|
|
|
|
for Package in $PackageUpload
|
|
|
|
do
|
|
|
|
cp -f "$KFUnpublishScript/$Package.u" "$KFPublishScript"
|
|
|
|
find "$MutSource/$Package" -type f -name '*.upk' -exec cp -f {} "$KFPublishPackages" \;
|
|
|
|
done
|
|
|
|
|
|
|
|
publish_common
|
|
|
|
|
2022-01-24 04:17:19 +00:00
|
|
|
find "$KFPublish" -type d -empty -delete
|
2022-01-10 07:00:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function upload ()
|
|
|
|
{
|
2022-01-14 22:22:30 +00:00
|
|
|
local PreparedWsDir=""
|
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
read_build_settings
|
|
|
|
|
|
|
|
if ! compiled ; then
|
|
|
|
echo "You must compile packages before uploading. Use $0 --compile for this."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! [[ -d "$KFPublish" ]]; then
|
2022-01-24 03:22:17 +00:00
|
|
|
publish_unpublished
|
2022-01-10 07:00:54 +00:00
|
|
|
fi
|
|
|
|
|
2022-01-24 04:17:19 +00:00
|
|
|
find "$KFPublish" -type d -empty -delete
|
2022-01-10 07:00:54 +00:00
|
|
|
|
2022-01-24 03:22:17 +00:00
|
|
|
PreparedWsDir=$(mktemp -d -u -p "$KFDoc")
|
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
cat > "$MutWsInfo" <<EOF
|
2022-01-16 04:18:08 +00:00
|
|
|
\$Description "$(cat "$MutPubContent/description.txt")"
|
|
|
|
\$Title "$(cat "$MutPubContent/title.txt")"
|
|
|
|
\$PreviewFile "$(cygpath -w "$MutPubContent/preview.png")"
|
|
|
|
\$Tags "$(cat "$MutPubContent/tags.txt")"
|
|
|
|
\$MicroTxItem "false"
|
|
|
|
\$PackageDirectory "$(cygpath -w "$PreparedWsDir")"
|
2022-01-10 07:00:54 +00:00
|
|
|
EOF
|
|
|
|
|
2022-01-15 02:48:16 +00:00
|
|
|
cp -rf "$KFPublish" "$PreparedWsDir"
|
2022-01-10 07:00:54 +00:00
|
|
|
|
2022-01-15 02:48:16 +00:00
|
|
|
CMD //C "$(cygpath -w "$KFWorkshop") $(basename "$MutWsInfo")"
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
rm -rf "$PreparedWsDir"
|
|
|
|
rm -f "$MutWsInfo"
|
|
|
|
}
|
|
|
|
|
|
|
|
function init_test ()
|
|
|
|
{
|
|
|
|
local AviableMutators=""
|
|
|
|
local AviableGamemodes=""
|
|
|
|
|
2022-01-15 02:48:16 +00:00
|
|
|
read_build_settings
|
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
for Package in $PackageUpload
|
|
|
|
do
|
|
|
|
# find available mutators
|
2022-01-14 22:22:30 +00:00
|
|
|
while read -r MutClass
|
2022-01-10 07:00:54 +00:00
|
|
|
do
|
|
|
|
if [[ -z "$AviableMutators" ]]; then
|
|
|
|
AviableMutators="$Package.$MutClass"
|
|
|
|
else
|
|
|
|
AviableMutators="$AviableMutators,$Package.$MutClass"
|
|
|
|
fi
|
|
|
|
done < <(grep -rihPo '\s.+extends\s(KF)?Mutator' "$MutSource/$Package" | awk '{ print $1 }')
|
|
|
|
|
|
|
|
# find available gamemodes
|
2022-01-14 22:22:30 +00:00
|
|
|
while read -r GamemodeClass
|
2022-01-10 07:00:54 +00:00
|
|
|
do
|
|
|
|
if [[ -z "$AviableGamemodes" ]]; then
|
2022-01-14 22:22:30 +00:00
|
|
|
AviableGamemodes="$Package.$GamemodeClass"
|
2022-01-10 07:00:54 +00:00
|
|
|
else
|
2022-01-14 22:22:30 +00:00
|
|
|
AviableGamemodes="$AviableGamemodes,$Package.$GamemodeClass"
|
2022-01-10 07:00:54 +00:00
|
|
|
fi
|
|
|
|
done < <(grep -rihPo '\s.+extends\sKFGameInfo_' "$MutSource/$Package" | awk '{ print $1 }')
|
|
|
|
done
|
|
|
|
|
|
|
|
if [[ -z "$AviableGamemodes" ]]; then
|
|
|
|
AviableGamemodes="KFGameContent.KFGameInfo_Survival"
|
|
|
|
fi
|
|
|
|
|
|
|
|
cat > "$MutTestConfig" <<EOF
|
|
|
|
# Test parameters
|
|
|
|
|
|
|
|
# Map:
|
|
|
|
Map="KF-Nuked"
|
|
|
|
|
|
|
|
# Game:
|
|
|
|
# Survival: KFGameContent.KFGameInfo_Survival
|
|
|
|
# WeeklyOutbreak: KFGameContent.KFGameInfo_WeeklySurvival
|
|
|
|
# Endless: KFGameContent.KFGameInfo_Endless
|
|
|
|
# Objective: KFGameContent.KFGameInfo_Objective
|
|
|
|
# Versus: KFGameContent.KFGameInfo_VersusSurvival
|
|
|
|
Game="$AviableGamemodes"
|
|
|
|
|
|
|
|
# Difficulty:
|
|
|
|
# Normal: 0
|
|
|
|
# Hard: 1
|
|
|
|
# Suicide: 2
|
|
|
|
# Hell: 3
|
|
|
|
Difficulty="0"
|
|
|
|
|
|
|
|
# GameLength:
|
|
|
|
# 4 waves: 0
|
|
|
|
# 7 waves: 1
|
|
|
|
# 10 waves: 2
|
|
|
|
GameLength="0"
|
|
|
|
|
|
|
|
# Mutators
|
|
|
|
Mutators="$AviableMutators"
|
|
|
|
|
|
|
|
# Additional parameters
|
|
|
|
Args=""
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
function run_test ()
|
|
|
|
{
|
|
|
|
local UseUnpublished=""
|
|
|
|
|
|
|
|
read_build_settings
|
|
|
|
read_test_settings
|
|
|
|
|
|
|
|
if ! brewed; then UseUnpublished="-useunpublished"; fi
|
|
|
|
|
2022-01-15 02:48:16 +00:00
|
|
|
CMD //C "$(cygpath -w "$KFGame") $Map?Difficulty=$Difficulty?GameLength=$GameLength?Game=$Game?Mutator=$Mutators?$Args $UseUnpublished" -log
|
2022-01-10 07:00:54 +00:00
|
|
|
}
|
|
|
|
|
2022-01-24 00:20:41 +00:00
|
|
|
function debug ()
|
|
|
|
{
|
|
|
|
set -o xtrace
|
|
|
|
}
|
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
export PATH="$PATH:$ThirdPartyBin"
|
|
|
|
|
|
|
|
if [[ $# -eq 0 ]]; then show_help; exit 0; fi
|
|
|
|
case $1 in
|
2022-01-15 03:06:18 +00:00
|
|
|
# Options
|
2022-01-24 00:20:41 +00:00
|
|
|
-h|--help ) show_help ;;
|
|
|
|
-v|--version ) show_version ;;
|
|
|
|
-ib|--init-build ) init_build ;;
|
|
|
|
-it|--init-test ) init_test ;;
|
|
|
|
-i|--init ) init_build; init_test ;;
|
|
|
|
-c|--compile ) compile ;;
|
|
|
|
-b|--brew ) brew ;;
|
|
|
|
-bm|--brew-manual ) brew_manual ;;
|
|
|
|
-u|--upload ) upload ;;
|
|
|
|
-t|--test ) run_test ;;
|
2022-01-15 03:06:18 +00:00
|
|
|
# Shortcuts
|
2022-01-24 00:20:41 +00:00
|
|
|
-cb ) compile; brew ;;
|
|
|
|
-cu ) compile; upload ;;
|
|
|
|
-cbm ) compile; brew_manual ;;
|
|
|
|
-cbu ) compile; brew; upload ;;
|
|
|
|
-cbmu ) compile; brew_manual; upload ;;
|
|
|
|
-ct ) compile; run_test ;;
|
|
|
|
-cbt ) compile; brew; run_test ;;
|
|
|
|
-cbmt ) compile; brew_manual; run_test ;;
|
|
|
|
# Debug
|
|
|
|
-dh ) debug; show_help ;;
|
|
|
|
-dv ) debug; show_version ;;
|
|
|
|
-dib ) debug; init_build ;;
|
|
|
|
-dit ) debug; init_test ;;
|
|
|
|
-di ) debug; init_build; init_test ;;
|
|
|
|
-dc ) debug; compile ;;
|
|
|
|
-db ) debug; brew ;;
|
|
|
|
-dbm ) debug; brew_manual ;;
|
|
|
|
-du ) debug; upload ;;
|
|
|
|
-dt ) debug; run_test ;;
|
|
|
|
-dcb ) debug; compile; brew ;;
|
|
|
|
-dcu ) debug; compile; upload ;;
|
|
|
|
-dcbm ) debug; compile; brew_manual ;;
|
|
|
|
-dcbu ) debug; compile; brew; upload ;;
|
|
|
|
-dcbmu ) debug; compile; brew_manual; upload ;;
|
|
|
|
-dct ) debug; compile; run_test ;;
|
|
|
|
-dcbt ) debug; compile; brew; run_test ;;
|
|
|
|
-dcbmt ) debug; compile; brew_manual; run_test ;;
|
2022-01-15 03:06:18 +00:00
|
|
|
# Other
|
2022-01-10 07:00:54 +00:00
|
|
|
* ) echo "Command not recognized: $1"; exit 1 ;;
|
|
|
|
esac
|