2022-01-10 07:00:54 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-02-13 23:20:24 +00:00
|
|
|
# Copyright (C) 2022 GenZmeY
|
|
|
|
# mailto: genzmey@gmail.com
|
|
|
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
# Requirements: git-bash
|
|
|
|
# https://git-scm.com/download/win
|
|
|
|
|
|
|
|
set -Eeuo pipefail
|
|
|
|
|
|
|
|
trap cleanup SIGINT SIGTERM ERR EXIT
|
|
|
|
|
2022-02-13 23:57:53 +00:00
|
|
|
function reg_readkey () # $1: path, $2: key
|
|
|
|
{
|
2022-02-20 01:24:39 +00:00
|
|
|
if [[ "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" ]]; then
|
|
|
|
cygpath -u "$(
|
|
|
|
reg query "$1" //v "$2" | \
|
|
|
|
grep -F "$2" | \
|
|
|
|
awk '{ $1=$2=""; print $0 }' | \
|
|
|
|
sed -r 's|^\s*(.+)\s*|\1|g')"
|
|
|
|
fi
|
2022-02-13 23:57:53 +00:00
|
|
|
}
|
|
|
|
|
2022-02-13 17:15:24 +00:00
|
|
|
# Whoami
|
2022-03-20 03:29:28 +00:00
|
|
|
ScriptFullname="$(readlink -e "$0")"
|
|
|
|
ScriptName="$(basename "$0")"
|
|
|
|
ScriptDir="$(dirname "$ScriptFullname")"
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
# Common
|
2022-03-20 03:29:28 +00:00
|
|
|
SteamPath="$(reg_readkey "HKCU\Software\Valve\Steam" "SteamPath")"
|
|
|
|
DocumentsPath="$(reg_readkey "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" "Personal")"
|
2022-01-10 07:00:54 +00:00
|
|
|
ThirdPartyBin="$ScriptDir/3rd-party-bin"
|
2022-02-20 23:50:11 +00:00
|
|
|
DummyPreview="$ScriptDir/dummy_preview.png"
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
# Usefull KF2 executables / Paths / Configs
|
|
|
|
KFDoc="$DocumentsPath/My Games/KillingFloor2"
|
|
|
|
KFPath="$SteamPath/steamapps/common/killingfloor2"
|
2022-03-20 03:29:28 +00:00
|
|
|
KFDev="$KFPath/Development/Src"
|
2022-01-10 07:00:54 +00:00
|
|
|
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"
|
2022-03-20 00:39:31 +00:00
|
|
|
KFLogs="$KFDoc/KFGame/Logs"
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
# Source filesystem
|
2022-03-20 03:29:28 +00:00
|
|
|
MutSource="$(readlink -e "$ScriptDir/..")"
|
2022-01-10 07:00:54 +00:00
|
|
|
MutConfig="$MutSource/Config"
|
|
|
|
MutLocalization="$MutSource/Localization"
|
2022-02-20 23:50:11 +00:00
|
|
|
MutBuilderConfig="$MutSource/builder.cfg"
|
|
|
|
MutPubContent="$MutSource/PublicationContent"
|
|
|
|
MutPubContentDescription="$MutPubContent/description.txt"
|
|
|
|
MutPubContentTitle="$MutPubContent/title.txt"
|
|
|
|
MutPubContentPreview="$MutPubContent/preview.png"
|
|
|
|
MutPubContentTags="$MutPubContent/tags.txt"
|
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 23:11:02 +00:00
|
|
|
# Args
|
2022-02-20 23:50:11 +00:00
|
|
|
ArgInit="false"
|
2022-02-13 23:11:02 +00:00
|
|
|
ArgCompile="false"
|
|
|
|
ArgBrew="false"
|
|
|
|
ArgBrewManual="false"
|
|
|
|
ArgUpload="false"
|
|
|
|
ArgTest="false"
|
|
|
|
ArgVersion="false"
|
|
|
|
ArgHelp="false"
|
|
|
|
ArgDebug="false"
|
|
|
|
ArgQuiet="false"
|
2022-03-20 03:39:36 +00:00
|
|
|
ArgHoldEditor="false"
|
2022-02-13 23:11:02 +00:00
|
|
|
ArgNoColors="false"
|
2022-02-20 23:50:11 +00:00
|
|
|
ArgForce="false"
|
2022-02-13 23:11:02 +00:00
|
|
|
|
2022-02-14 00:47:44 +00:00
|
|
|
# Colors
|
|
|
|
RED=''
|
|
|
|
GRN=''
|
|
|
|
YLW=''
|
2022-02-14 01:11:24 +00:00
|
|
|
BLU=''
|
2022-02-14 00:47:44 +00:00
|
|
|
DEF=''
|
|
|
|
BLD=''
|
|
|
|
|
2022-02-13 17:15:24 +00:00
|
|
|
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"
|
2022-02-13 23:11:02 +00:00
|
|
|
local LatestTag=""
|
2022-03-20 03:52:08 +00:00
|
|
|
LatestTag="$(curl --silent "$ApiUrl" | grep -Po '"tag_name": "\K.*?(?=")')"
|
2022-02-13 17:15:24 +00:00
|
|
|
local DownloadUrl="https://github.com/$1/releases/download/$LatestTag/$2"
|
|
|
|
|
2022-02-14 01:11:24 +00:00
|
|
|
msg "download $2 ($LatestTag)"
|
2022-02-13 17:15:24 +00:00
|
|
|
mkdir -p "$(dirname "$3")/"
|
|
|
|
curl -LJs "$DownloadUrl" -o "$3"
|
2022-02-14 01:57:54 +00:00
|
|
|
msg "${GRN}successfully downloaded${DEF}"
|
2022-02-13 17:15:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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-02-20 23:50:11 +00:00
|
|
|
function repo_url () # $1: remote.origin.url
|
|
|
|
{
|
|
|
|
if echo "$1" | grep -qoP '^https?://'; then
|
|
|
|
echo "$1" | sed -r 's|\.git||'
|
|
|
|
else
|
|
|
|
echo "$1" | sed -r 's|^.+:(.+)\.git$|https://github.com/\1|'
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2022-02-13 23:11:02 +00:00
|
|
|
function setup_colors ()
|
|
|
|
{
|
|
|
|
if [[ -t 2 ]] && ! is_true "$ArgNoColors" && [[ "${TERM-}" != "dumb" ]]; then
|
|
|
|
RED='\e[31m'
|
|
|
|
GRN='\e[32m'
|
|
|
|
YLW='\e[33m'
|
2022-02-14 01:11:24 +00:00
|
|
|
BLU='\e[34m'
|
2022-02-13 23:11:02 +00:00
|
|
|
DEF='\e[0m'
|
|
|
|
BLD='\e[1m'
|
|
|
|
fi
|
2022-01-10 07:00:54 +00:00
|
|
|
}
|
|
|
|
|
2022-02-13 23:11:02 +00:00
|
|
|
function err () # $1: String
|
2022-01-12 22:04:34 +00:00
|
|
|
{
|
2022-02-13 23:11:02 +00:00
|
|
|
if ! is_true "$ArgQuiet"; then
|
|
|
|
echo -e "${RED}${1-}${DEF}" >&2
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function msg () # $1: String
|
|
|
|
{
|
|
|
|
if ! is_true "$ArgQuiet"; then
|
2022-02-14 01:11:24 +00:00
|
|
|
if is_true "$ArgDebug"; then
|
|
|
|
echo -e "${BLU}${1-}${DEF}" >&1
|
|
|
|
else
|
2022-02-14 01:57:54 +00:00
|
|
|
echo -e "${DEF}${1-}${DEF}" >&1
|
2022-02-14 01:11:24 +00:00
|
|
|
fi
|
2022-02-13 23:11:02 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function die () # $1: String, $2: Exit code
|
|
|
|
{
|
|
|
|
err "${1-}"
|
|
|
|
exit "${2-3}"
|
|
|
|
}
|
|
|
|
|
|
|
|
function usage ()
|
|
|
|
{
|
2022-02-14 00:08:18 +00:00
|
|
|
local HelpMessage=""
|
|
|
|
|
2022-03-20 03:52:08 +00:00
|
|
|
HelpMessage="$(cat <<EOF
|
2022-02-14 00:08:18 +00:00
|
|
|
${BLD}Usage:${DEF} $0 OPTIONS
|
|
|
|
|
2022-02-21 00:06:02 +00:00
|
|
|
Compile, brew, test and upload your kf2 packages to the Steam Workshop.
|
2022-02-14 00:08:18 +00:00
|
|
|
|
|
|
|
${BLD}Available options:${DEF}
|
2022-02-20 23:50:11 +00:00
|
|
|
-i, --init generate $(basename "$MutBuilderConfig") and $(basename "$MutPubContent")
|
2022-02-21 00:06:02 +00:00
|
|
|
-c, --compile compile package(s)
|
2022-02-14 00:08:18 +00:00
|
|
|
-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
|
2022-02-20 23:50:11 +00:00
|
|
|
-t, --test run local single player test
|
|
|
|
-f, --force overwrites existing files when used with --init
|
2022-02-14 00:08:18 +00:00
|
|
|
-q, --quiet run without output
|
2022-03-20 03:39:36 +00:00
|
|
|
-he, --hold-editor do not close kf2editor automatically
|
2022-02-14 00:08:18 +00:00
|
|
|
-nc, --no-colors do not use color output
|
|
|
|
-d, --debug print every executed command (script debug)
|
|
|
|
-v, --version show version
|
|
|
|
-h, --help show this help
|
|
|
|
|
|
|
|
${BLD}Short options can be combined, examples:${DEF}
|
|
|
|
-cbu compile, brew, upload
|
|
|
|
-cbmt compile, brew_manual, run_test
|
2022-03-21 16:11:14 +00:00
|
|
|
-cbhe compile and brew without closing kf2editor
|
2022-02-14 00:08:18 +00:00
|
|
|
etc...
|
|
|
|
EOF
|
2022-03-20 03:52:08 +00:00
|
|
|
)"
|
2022-02-14 00:08:18 +00:00
|
|
|
msg "$HelpMessage"
|
2022-02-13 23:11:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function version ()
|
|
|
|
{
|
|
|
|
msg "${BLD}$ScriptName $(git describe 2> /dev/null)${DEF}"
|
2022-01-12 22:04:34 +00:00
|
|
|
}
|
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
function cleanup()
|
|
|
|
{
|
|
|
|
trap - SIGINT SIGTERM ERR EXIT
|
|
|
|
restore_kfeditorconf
|
|
|
|
}
|
|
|
|
|
|
|
|
function backup_kfeditorconf ()
|
|
|
|
{
|
2022-02-14 01:57:54 +00:00
|
|
|
msg "backup $(basename "$KFEditorConf") to $(basename "$KFEditorConfBackup")"
|
2022-01-10 07:00:54 +00:00
|
|
|
cp -f "$KFEditorConf" "$KFEditorConfBackup"
|
|
|
|
}
|
|
|
|
|
|
|
|
function restore_kfeditorconf ()
|
|
|
|
{
|
|
|
|
if [[ -f "$KFEditorConfBackup" ]]; then
|
2022-02-14 01:57:54 +00:00
|
|
|
msg "restore $(basename "$KFEditorConf") from backup"
|
2022-01-10 07:00:54 +00:00
|
|
|
mv -f "$KFEditorConfBackup" "$KFEditorConf"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2022-02-20 23:50:11 +00:00
|
|
|
function init ()
|
2022-01-10 07:00:54 +00:00
|
|
|
{
|
|
|
|
local PackageList=""
|
2022-02-20 23:50:11 +00:00
|
|
|
local AviableMutators=""
|
|
|
|
local AviableGamemodes=""
|
|
|
|
local ConfigGamemodes=""
|
|
|
|
local ProjectName=""
|
|
|
|
local GitUsername=""
|
|
|
|
local GitRemoteUrl=""
|
|
|
|
local PublicationTags=""
|
|
|
|
|
|
|
|
if [[ -e "$MutBuilderConfig" ]]; then
|
|
|
|
if is_true "$ArgForce"; then
|
|
|
|
msg "rewriting $(basename "$MutBuilderConfig")"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
msg "creating new $(basename "$MutBuilderConfig")"
|
|
|
|
fi
|
|
|
|
|
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-02-14 01:57:54 +00:00
|
|
|
msg "packages found: $PackageList"
|
|
|
|
|
2022-02-20 23:50:11 +00:00
|
|
|
for Package in $PackageList
|
|
|
|
do
|
|
|
|
# find available mutators
|
|
|
|
while read -r MutClass
|
|
|
|
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
|
|
|
|
while read -r GamemodeClass
|
|
|
|
do
|
|
|
|
if [[ -z "$AviableGamemodes" ]]; then
|
|
|
|
AviableGamemodes="$Package.$GamemodeClass"
|
|
|
|
else
|
|
|
|
AviableGamemodes="$AviableGamemodes,$Package.$GamemodeClass"
|
|
|
|
fi
|
|
|
|
done < <(grep -rihPo '\s.+extends\sKFGameInfo_' "$MutSource/$Package" | awk '{ print $1 }')
|
|
|
|
done
|
|
|
|
|
|
|
|
if [[ -n "$AviableMutators" ]]; then
|
|
|
|
msg "mutators found: $AviableMutators"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -z "$AviableGamemodes" ]]; then
|
|
|
|
ConfigGamemodes="KFGameContent.KFGameInfo_Survival"
|
|
|
|
else
|
|
|
|
ConfigGamemodes="$AviableGamemodes"
|
|
|
|
msg "custom gamemodes found: $AviableGamemodes"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if is_true "$ArgForce" || ! [[ -e "$MutBuilderConfig" ]]; then
|
|
|
|
cat > "$MutBuilderConfig" <<EOF
|
|
|
|
### Build parameters ###
|
2022-01-16 02:07:46 +00:00
|
|
|
|
|
|
|
# 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"
|
|
|
|
|
2022-02-20 23:50:11 +00:00
|
|
|
|
|
|
|
### Steam Workshop upload parameters ###
|
|
|
|
|
2022-01-16 02:07:46 +00:00
|
|
|
# Mutators that will be uploaded to the workshop
|
|
|
|
# Specify them with a space as a separator,
|
|
|
|
# The order doesn't matter
|
|
|
|
PackageUpload="$PackageList"
|
2022-02-14 01:57:54 +00:00
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
|
2022-02-20 23:50:11 +00:00
|
|
|
### 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="$ConfigGamemodes"
|
|
|
|
|
|
|
|
# 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
|
|
|
|
msg "${GRN}$(basename "$MutBuilderConfig") created${DEF}"
|
|
|
|
fi
|
2022-01-10 07:00:54 +00:00
|
|
|
|
2022-02-20 23:50:11 +00:00
|
|
|
if ! [[ -d "$MutPubContent" ]]; then mkdir -p "$MutPubContent"; fi
|
|
|
|
|
2022-03-20 03:52:08 +00:00
|
|
|
ProjectName="$(basename "$(readlink -e "$MutSource")")"
|
2022-02-20 23:50:11 +00:00
|
|
|
|
|
|
|
if is_true "$ArgForce" || ! [[ -e "$MutPubContentTitle" ]]; then
|
|
|
|
echo "$ProjectName" > "$MutPubContentTitle"
|
|
|
|
msg "${GRN}$(basename "$MutPubContentTitle") created${DEF}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if is_true "$ArgForce" || ! [[ -e "$MutPubContentDescription" ]]; then
|
|
|
|
:> "$MutPubContentDescription"
|
|
|
|
echo "[h1]${ProjectName}[/h1]" >> "$MutPubContentDescription"
|
|
|
|
echo "" >> "$MutPubContentDescription"
|
|
|
|
if [[ -n "$AviableGamemodes" ]] || [[ -n "$AviableMutators" ]]; then
|
|
|
|
echo "[h1]Description[/h1]" >> "$MutPubContentDescription"
|
|
|
|
if [[ -n "$AviableGamemodes" ]]; then
|
|
|
|
echo "[b]Gamemode(s):[/b] $AviableGamemodes" >> "$MutPubContentDescription"
|
|
|
|
fi
|
|
|
|
if [[ -n "$AviableMutators" ]]; then
|
|
|
|
echo "[b]Mutator(s):[/b] $AviableMutators" >> "$MutPubContentDescription"
|
|
|
|
fi
|
|
|
|
echo "" >> "$MutPubContentDescription"
|
|
|
|
fi
|
|
|
|
|
2022-03-20 03:52:08 +00:00
|
|
|
GitRemoteUrl="$(repo_url "$(git config --get remote.origin.url)")"
|
2022-02-20 23:50:11 +00:00
|
|
|
if [[ -n "$GitRemoteUrl" ]]; then
|
|
|
|
{
|
|
|
|
echo "[h1]Sources[/h1]"
|
|
|
|
echo "[url=${GitRemoteUrl}]${GitRemoteUrl}[/url]"
|
|
|
|
echo ""
|
|
|
|
} >> "$MutPubContentDescription"
|
|
|
|
fi
|
|
|
|
|
2022-03-20 03:52:08 +00:00
|
|
|
GitUsername="$(git config --get user.name)"
|
2022-02-20 23:50:11 +00:00
|
|
|
if [[ -n "$GitUsername" ]]; then
|
|
|
|
{
|
|
|
|
echo "[h1]Author[/h1]"
|
|
|
|
echo "[url=https://github.com/${GitUsername}]${GitUsername}[/url]"
|
|
|
|
echo ""
|
|
|
|
} >> "$MutPubContentDescription"
|
|
|
|
fi
|
|
|
|
|
|
|
|
msg "${GRN}$(basename "$MutPubContentDescription") created${DEF}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if is_true "$ArgForce" || ! [[ -e "$MutPubContentPreview" ]]; then
|
|
|
|
cp -f "$DummyPreview" "$MutPubContentPreview"
|
|
|
|
msg "${GRN}$(basename "$MutPubContentPreview") created${DEF}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if is_true "$ArgForce" || ! [[ -e "$MutPubContentTags" ]]; then
|
|
|
|
:> "$MutPubContentTags"
|
|
|
|
if [[ -n "$AviableGamemodes" ]]; then
|
|
|
|
PublicationTags="Gamemodes"
|
|
|
|
fi
|
|
|
|
if [[ -n "$AviableMutators" ]]; then
|
|
|
|
if [[ -n "$PublicationTags" ]]; then
|
|
|
|
PublicationTags="$PublicationTags,Mutators"
|
|
|
|
else
|
|
|
|
PublicationTags="Mutators"
|
|
|
|
fi
|
|
|
|
echo "$PublicationTags" >> "$MutPubContentTags"
|
|
|
|
fi
|
|
|
|
msg "${GRN}$(basename "$MutPubContentTags") created${DEF}"
|
2022-01-10 07:00:54 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2022-02-20 23:50:11 +00:00
|
|
|
function read_settings ()
|
2022-01-10 07:00:54 +00:00
|
|
|
{
|
2022-02-20 23:50:11 +00:00
|
|
|
if ! [[ -f "$MutBuilderConfig" ]]; then init; fi
|
2022-01-10 07:00:54 +00:00
|
|
|
|
2022-02-20 23:50:11 +00:00
|
|
|
if bash -n "$MutBuilderConfig"; then
|
|
|
|
# shellcheck source=./.shellcheck/builder.cfg
|
|
|
|
source "$MutBuilderConfig"
|
2022-01-10 07:00:54 +00:00
|
|
|
else
|
2022-02-20 23:50:11 +00:00
|
|
|
die "$MutBuilderConfig broken! Check this file before continue or create new one using --force --init" 2
|
2022-01-10 07:00:54 +00:00
|
|
|
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-02-14 01:11:24 +00:00
|
|
|
msg "merge $1 into $2"
|
2022-02-13 23:11:02 +00:00
|
|
|
|
2022-03-20 03:39:36 +00:00
|
|
|
if is_true "$ArgHoldEditor"; then
|
2022-02-13 23:11:02 +00:00
|
|
|
CMD //C "cd /D $(cygpath -w "$KFWin64") && $(basename "$KFEditorMergePackages") make $1 $2"
|
|
|
|
else
|
2022-03-20 03:52:08 +00:00
|
|
|
ModificationTime="$(stat -c %y "$KFWin64/$2")"
|
2022-02-13 23:11:02 +00:00
|
|
|
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
|
|
|
|
fi
|
2022-01-24 00:20:41 +00:00
|
|
|
|
|
|
|
rm -f "$KFWin64/$1" # cleanup (manual)
|
|
|
|
}
|
|
|
|
|
|
|
|
function merge_packages () # $1: Mutator name
|
|
|
|
{
|
2022-02-13 23:11:02 +00:00
|
|
|
msg "merge packages for $1.u"
|
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
2022-03-20 03:29:28 +00:00
|
|
|
function parse_log () # $1: Logfile
|
|
|
|
{
|
|
|
|
local File=''
|
|
|
|
local FileUnix=''
|
|
|
|
local FileCompact=''
|
|
|
|
local Line=''
|
|
|
|
local Message=''
|
|
|
|
|
|
|
|
local IR=1
|
|
|
|
if grep -qP ' Error:.+: Error, ' "$1"; then # check to prevent a very strange crash
|
|
|
|
grep -P ' Error:.+: Error, ' "$1" | \
|
|
|
|
while read -r Error
|
|
|
|
do
|
|
|
|
if [[ -z "$Error" ]]; then break; fi
|
|
|
|
File="$(echo "$Error" | sed -r 's|^.+Error: (.+)\([0-9]+\) : Error,.+$|\1|')"
|
|
|
|
FileUnix="$(cygpath -u "$File")"
|
|
|
|
FileCompact="$(echo "$FileUnix" | sed -r "s|^$KFDev(.+)$|\1|")"
|
|
|
|
Line="$(echo "$Error" | sed -r 's|^.+Error: .+\(([0-9]+)\) : Error,.+$|\1|')"
|
|
|
|
Message="$(echo "$Error" | sed -r 's|^.+Error: .+\([0-9]+\) : Error, (.+)$|\1|')"
|
|
|
|
|
|
|
|
msg "${RED}[$IR] $FileCompact($Line): $Message"
|
|
|
|
((IR+=1))
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
local IW=1
|
|
|
|
if grep -qP ' Warning:.+: Warning, ' "$1"; then # and here too
|
|
|
|
grep -P ' Warning:.+: Warning, ' "$1" | \
|
|
|
|
while read -r Warning
|
|
|
|
do
|
|
|
|
if [[ -z "$Warning" ]]; then break; fi
|
|
|
|
File="$(echo "$Warning" | sed -r 's|^.+Warning: (.+)\([0-9]+\) : Warning,.+$|\1|')"
|
|
|
|
FileUnix="$(cygpath -u "$File")"
|
|
|
|
FileCompact="$(echo "$FileUnix" | sed -r "s|^$KFDev(.+)$|\1|")"
|
|
|
|
Line="$(echo "$Warning" | sed -r 's|^.+Warning: .+\(([0-9]+)\) : Warning,.+$|\1|')"
|
|
|
|
Message="$(echo "$Warning" | sed -r 's|^.+Warning: .+\([0-9]+\) : Warning, (.+)$|\1|')"
|
|
|
|
|
|
|
|
msg "${YLW}[$IW] $FileCompact($Line): $Message"
|
|
|
|
((IW+=1))
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
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-03-20 03:29:28 +00:00
|
|
|
local Logfile=""
|
2022-01-14 22:22:30 +00:00
|
|
|
|
2022-02-20 23:50:11 +00:00
|
|
|
read_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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2022-02-14 00:35:07 +00:00
|
|
|
msg "compilation"
|
|
|
|
|
2022-03-20 03:39:36 +00:00
|
|
|
if is_true "$ArgHoldEditor"; then
|
2022-02-13 23:11:02 +00:00
|
|
|
CMD //C "$(cygpath -w "$KFEditor") make $StripSourceArg -useunpublished"
|
2022-03-20 03:52:08 +00:00
|
|
|
Logfile="$(find "$KFLogs" -printf '%T+ %p\n' | sort -r | head -n1 | cut -f2- -d" ")"
|
2022-03-20 03:29:28 +00:00
|
|
|
parse_log "$Logfile"
|
2022-02-13 23:11:02 +00:00
|
|
|
if ! compiled; then
|
2022-02-14 00:47:44 +00:00
|
|
|
die "compilation failed"
|
2022-02-13 23:11:02 +00:00
|
|
|
fi
|
2022-02-14 01:57:54 +00:00
|
|
|
msg "${GRN}successfully compiled${DEF}"
|
2022-02-13 23:11:02 +00:00
|
|
|
else
|
|
|
|
CMD //C "$(cygpath -w "$KFEditor") make $StripSourceArg -useunpublished" &
|
|
|
|
PID="$!"
|
|
|
|
while ps -p "$PID" &> /dev/null
|
|
|
|
do
|
2022-03-20 03:29:28 +00:00
|
|
|
sleep 1
|
2022-03-20 03:52:08 +00:00
|
|
|
Logfile="$(find "$KFLogs" -printf '%T+ %p\n' | sort -r | head -n1 | cut -f2- -d" ")"
|
2022-02-14 00:35:07 +00:00
|
|
|
if compiled; then
|
2022-02-14 01:57:54 +00:00
|
|
|
msg "${GRN}successfully compiled${DEF}"
|
2022-03-20 03:29:28 +00:00
|
|
|
|
|
|
|
msg "wait for the log"
|
|
|
|
while ! grep -qF 'Log file closed' "$Logfile"
|
|
|
|
do
|
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
kill "$PID"
|
|
|
|
parse_log "$Logfile"
|
2022-02-14 00:35:07 +00:00
|
|
|
break
|
2022-03-20 03:29:28 +00:00
|
|
|
elif grep -qF 'Log file closed' "$Logfile"; then
|
|
|
|
kill "$PID"
|
|
|
|
parse_log "$Logfile"
|
|
|
|
die "compilation failed"
|
2022-02-14 00:35:07 +00:00
|
|
|
fi
|
2022-02-13 23:11:02 +00:00
|
|
|
done
|
|
|
|
fi
|
2022-01-24 04:17:19 +00:00
|
|
|
|
|
|
|
find "$KFUnpublish" -type d -empty -delete
|
2022-01-10 07:00:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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-02-14 00:35:07 +00:00
|
|
|
msg "brewing"
|
2022-02-13 23:11:02 +00:00
|
|
|
|
2022-02-20 23:50:11 +00:00
|
|
|
read_settings
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
if ! compiled ; then
|
2022-02-13 23:11:02 +00:00
|
|
|
die "You must compile packages before brewing. Use --compile option for this." 2
|
2022-01-10 07:00:54 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
rm -rf "$KFPublish"
|
|
|
|
|
|
|
|
mkdir -p "$KFPublishBrewedPC"
|
|
|
|
|
2022-03-20 03:39:36 +00:00
|
|
|
if is_true "$ArgHoldEditor"; then
|
2022-02-13 23:11:02 +00:00
|
|
|
CMD //C "cd /D $(cygpath -w "$KFWin64") && $(basename "$KFEditor") brewcontent -platform=PC $PackageUpload -useunpublished"
|
|
|
|
if ! brewed; then
|
|
|
|
brew_cleanup
|
2022-02-14 00:47:44 +00:00
|
|
|
die "brewing failed"
|
2022-02-13 23:11:02 +00:00
|
|
|
fi
|
2022-02-14 01:57:54 +00:00
|
|
|
msg "${GRN}successfully brewed${DEF}"
|
2022-02-13 23:11:02 +00:00
|
|
|
else
|
|
|
|
CMD //C "cd /D $(cygpath -w "$KFWin64") && $(basename "$KFEditor") brewcontent -platform=PC $PackageUpload -useunpublished" &
|
|
|
|
PID="$!"
|
|
|
|
while ps -p "$PID" &> /dev/null
|
|
|
|
do
|
2022-02-14 00:35:07 +00:00
|
|
|
if brewed; then
|
|
|
|
kill "$PID"
|
2022-02-14 01:57:54 +00:00
|
|
|
msg "${GRN}successfully brewed${DEF}"
|
2022-02-14 00:35:07 +00:00
|
|
|
break
|
|
|
|
fi
|
2022-02-13 23:11:02 +00:00
|
|
|
sleep 1
|
|
|
|
done
|
2022-03-19 23:29:27 +00:00
|
|
|
if ! brewed; then
|
|
|
|
brew_cleanup
|
|
|
|
die "brewing failed"
|
|
|
|
fi
|
2022-02-13 23:11:02 +00:00
|
|
|
fi
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
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 ()
|
|
|
|
{
|
2022-02-14 00:35:07 +00:00
|
|
|
msg "manual brewing"
|
2022-02-13 23:11:02 +00:00
|
|
|
|
2022-02-20 23:50:11 +00:00
|
|
|
read_settings
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
if ! compiled ; then
|
2022-02-13 23:11:02 +00:00
|
|
|
die "You must compile packages before brewing. Use --compile option for this." 2
|
2022-01-10 07:00:54 +00:00
|
|
|
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-02-14 01:57:54 +00:00
|
|
|
msg "patching $(basename "$KFEditor")"
|
2022-01-24 00:20:41 +00:00
|
|
|
CMD //C "cd /D $(cygpath -w "$KFWin64") && $(basename "$KFEditorPatcher")"
|
2022-02-14 01:57:54 +00:00
|
|
|
msg "${GRN}successfully patched${DEF}"
|
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
|
|
|
|
|
2022-02-14 01:57:54 +00:00
|
|
|
msg "${GRN}successfully brewed${DEF}"
|
2022-02-14 01:11:24 +00:00
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
function publish_unpublished ()
|
|
|
|
{
|
2022-02-14 01:57:54 +00:00
|
|
|
msg "${YLW}warn: uploading without brewing${DEF}"
|
|
|
|
|
2022-01-24 03:22:17 +00:00
|
|
|
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-02-20 23:50:11 +00:00
|
|
|
read_settings
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
if ! compiled ; then
|
2022-02-13 23:11:02 +00:00
|
|
|
die "You must compile packages before uploading. Use --compile option for this." 2
|
2022-01-10 07:00:54 +00:00
|
|
|
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-03-20 03:52:08 +00:00
|
|
|
PreparedWsDir="$(mktemp -d -u -p "$KFDoc")"
|
2022-01-24 03:22:17 +00:00
|
|
|
|
2022-01-10 07:00:54 +00:00
|
|
|
cat > "$MutWsInfo" <<EOF
|
2022-02-20 23:50:11 +00:00
|
|
|
\$Description "$(cat "$MutPubContentDescription")"
|
|
|
|
\$Title "$(cat "$MutPubContentTitle")"
|
|
|
|
\$PreviewFile "$(cygpath -w "$MutPubContentPreview")"
|
|
|
|
\$Tags "$(cat "$MutPubContentTags")"
|
2022-01-16 04:18:08 +00:00
|
|
|
\$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-02-14 01:57:54 +00:00
|
|
|
msg "upload to steam workshop"
|
|
|
|
if is_true "$ArgQuiet"; then
|
|
|
|
CMD //C "$(cygpath -w "$KFWorkshop") $(basename "$MutWsInfo")" &>/dev/null
|
|
|
|
else
|
|
|
|
CMD //C "$(cygpath -w "$KFWorkshop") $(basename "$MutWsInfo")"
|
|
|
|
fi
|
|
|
|
msg "${GRN}successfully uploaded to steam workshop${DEF}"
|
2022-01-10 07:00:54 +00:00
|
|
|
|
|
|
|
rm -rf "$PreparedWsDir"
|
|
|
|
rm -f "$MutWsInfo"
|
|
|
|
}
|
|
|
|
|
|
|
|
function run_test ()
|
|
|
|
{
|
|
|
|
local UseUnpublished=""
|
|
|
|
|
2022-02-20 23:50:11 +00:00
|
|
|
read_settings
|
2022-01-10 07:00:54 +00:00
|
|
|
|
2022-02-14 01:57:54 +00:00
|
|
|
if ! brewed; then
|
|
|
|
UseUnpublished="-useunpublished"
|
|
|
|
msg "run test (unpublished)"
|
|
|
|
else
|
|
|
|
msg "run test (brewed)"
|
|
|
|
fi
|
2022-01-10 07:00:54 +00:00
|
|
|
|
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-02-13 23:11:02 +00:00
|
|
|
function parse_combined_params () # $1: Combined short parameters
|
|
|
|
{
|
|
|
|
local Param="${1}"
|
|
|
|
local Length="${#Param}"
|
|
|
|
local Position=1
|
|
|
|
|
|
|
|
while true
|
|
|
|
do
|
2022-02-14 02:10:22 +00:00
|
|
|
if [[ "$Position" -ge "$Length" ]]; then break; fi
|
2022-02-13 23:11:02 +00:00
|
|
|
case "${Param:$Position:2}" in
|
|
|
|
bm ) ((Position+=2)); ArgBrewManual="true" ;;
|
2022-03-20 03:39:36 +00:00
|
|
|
he ) ((Position+=2)); ArgHoldEditor="true" ;;
|
2022-02-13 23:11:02 +00:00
|
|
|
nc ) ((Position+=2)); ArgNoColors="true" ;;
|
|
|
|
esac
|
|
|
|
|
2022-02-14 01:11:24 +00:00
|
|
|
if [[ "$Position" -ge "$Length" ]]; then break; fi
|
2022-02-13 23:11:02 +00:00
|
|
|
case "${Param:$Position:1}" in
|
|
|
|
h ) ((Position+=1)); ArgHelp="true" ;;
|
|
|
|
v ) ((Position+=1)); ArgVersion="true" ;;
|
2022-02-20 23:50:11 +00:00
|
|
|
i ) ((Position+=1)); ArgInit="true" ;;
|
2022-02-13 23:11:02 +00:00
|
|
|
c ) ((Position+=1)); ArgCompile="true" ;;
|
|
|
|
b ) ((Position+=1)); ArgBrew="true" ;;
|
|
|
|
u ) ((Position+=1)); ArgUpload="true" ;;
|
|
|
|
t ) ((Position+=1)); ArgTest="true" ;;
|
|
|
|
d ) ((Position+=1)); ArgDebug="true" ;;
|
|
|
|
q ) ((Position+=1)); ArgQuiet="true" ;;
|
2022-02-20 23:50:11 +00:00
|
|
|
f ) ((Position+=1)); ArgForce="true" ;;
|
2022-02-13 23:11:02 +00:00
|
|
|
* ) die "Unknown short option: -${Param:$Position:1}" 1 ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
function parse_params () # $@: Args
|
|
|
|
{
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
case "${1-}" in
|
|
|
|
-h | --help ) ArgHelp="true" ;;
|
|
|
|
-v | --version ) ArgVersion="true" ;;
|
2022-02-20 23:50:11 +00:00
|
|
|
-i | --init ) ArgInit="true" ;;
|
2022-02-13 23:11:02 +00:00
|
|
|
-c | --compile ) ArgCompile="true" ;;
|
|
|
|
-b | --brew ) ArgBrew="true" ;;
|
|
|
|
-bm | --brew-manual ) ArgBrewManual="true" ;;
|
|
|
|
-u | --upload ) ArgUpload="true" ;;
|
|
|
|
-t | --test ) ArgTest="true" ;;
|
|
|
|
-d | --debug ) ArgDebug="true" ;;
|
|
|
|
-q | --quiet ) ArgQuiet="true" ;;
|
2022-03-20 03:39:36 +00:00
|
|
|
-he | --hold-editor ) ArgHoldEditor="true" ;;
|
2022-02-13 23:11:02 +00:00
|
|
|
-nc | --no-color ) ArgNoColors="true" ;;
|
2022-02-20 23:50:11 +00:00
|
|
|
-f | --force ) ArgForce="true" ;;
|
2022-02-13 23:11:02 +00:00
|
|
|
--* ) die "Unknown option: ${1}" 1 ;;
|
|
|
|
-* ) parse_combined_params "${1}" ;;
|
|
|
|
* ) if [[ -n "${1-}" ]]; then die "Unknown option: ${1-}" 1; fi; break ;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
function main ()
|
|
|
|
{
|
|
|
|
if [[ $# -eq 0 ]]; then usage; die "" 0; fi
|
|
|
|
parse_params "$@"
|
|
|
|
setup_colors
|
|
|
|
export PATH="$PATH:$ThirdPartyBin"
|
|
|
|
|
|
|
|
# Modifiers
|
2022-03-20 00:39:31 +00:00
|
|
|
if is_true "$ArgDebug"; then set -o xtrace; fi
|
2022-02-13 23:11:02 +00:00
|
|
|
|
2022-03-20 00:39:31 +00:00
|
|
|
# Help
|
2022-02-21 00:06:02 +00:00
|
|
|
if is_true "$ArgVersion" && is_true "$ArgHelp"; then version; usage; die "" 0; fi
|
|
|
|
if is_true "$ArgVersion"; then version; die "" 0; fi
|
|
|
|
if is_true "$ArgHelp"; then usage; die "" 0; fi
|
2022-03-20 00:39:31 +00:00
|
|
|
|
|
|
|
# Backup
|
|
|
|
if is_true "$ArgCompile" || is_true "$ArgBrew"; then backup_kfeditorconf; fi
|
|
|
|
|
|
|
|
# Actions
|
2022-02-21 00:06:02 +00:00
|
|
|
if is_true "$ArgInit"; then init; fi
|
|
|
|
if is_true "$ArgCompile"; then compile; fi
|
|
|
|
if is_true "$ArgBrew"; then brew; fi
|
|
|
|
if is_true "$ArgBrewManual"; then brew_manual; fi
|
|
|
|
if is_true "$ArgUpload"; then upload; fi
|
|
|
|
if is_true "$ArgTest"; then run_test; fi
|
2022-03-20 00:39:31 +00:00
|
|
|
|
|
|
|
# Restore
|
|
|
|
if is_true "$ArgCompile" || is_true "$ArgBrew"; then restore_kfeditorconf; fi
|
2022-02-13 23:11:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|