mirror of
https://gitlab.com/Nanolx/patchimage.git
synced 2024-11-01 15:25:05 +01:00
173 lines
3.0 KiB
Bash
173 lines
3.0 KiB
Bash
#!/bin/bash
|
|
|
|
TMD_OPTS="--ticket-id=K --tmd-id=K"
|
|
|
|
setup_tools () {
|
|
|
|
if [[ $(uname -m) == "x86_64" ]]; then
|
|
WIT=./tools/wit.64
|
|
PPF=./tools/applyppf3.64
|
|
else
|
|
WIT=./tools/wit.32
|
|
PPF=./tools/applyppf3.32
|
|
fi
|
|
|
|
}
|
|
|
|
cleanup_prebuild () {
|
|
|
|
rm -rf ${WORKDIR}
|
|
rm -f ./*.wbfs
|
|
|
|
}
|
|
|
|
cleanup () {
|
|
|
|
rm -f *.{iso,wbfs} NewerSMB.zip
|
|
rm -rf NewerFiles nsmb.d
|
|
|
|
}
|
|
|
|
ask_game () {
|
|
|
|
echo -e "************************************************
|
|
mknewersmb.sh
|
|
|
|
Enter Letter for the Game you want to create:
|
|
A NewerSMB
|
|
B Newer Summer Sun"
|
|
|
|
read GAME
|
|
|
|
}
|
|
|
|
check_input_image () {
|
|
|
|
if [[ ! ${IMAGE} ]]; then
|
|
if [[ -f ./BASE.wbfs ]]; then
|
|
IMAGE=./BASE.wbfs
|
|
elif [[ -f ./BASE.iso ]]; then
|
|
IMAGE=./BASE.iso
|
|
else
|
|
echo -e "please specify image to use with --iso=<path>"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
}
|
|
|
|
check_riivolution_patch () {
|
|
|
|
if [[ ! ${RIIVOLUTION}} ]]; then
|
|
if [[ -e ./${RIIVOLUTION_ZIP} ]]; then
|
|
unzip ./${RIIVOLUTION_ZIP} >/dev/null
|
|
elif [[ ! -d ./${RIIVOLUTION_DIR} ]]; then
|
|
echo -e "please specify zip to use with --riivolution=<path>"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
}
|
|
|
|
optparse () {
|
|
|
|
xcount=0
|
|
pcount=$#
|
|
|
|
while [[ $xcount -lt $pcount ]]; do
|
|
case $1 in
|
|
|
|
--iso* )
|
|
ISO_PATH=${1/*=}
|
|
ISO_EXT=${ISO_PATH//*./}
|
|
|
|
if [[ -e "${ISO_PATH}" ]]; then
|
|
ln -sf "${ISO_PATH}" ./BASE.${ISO_EXT}
|
|
IMAGE=./BASE.${ISO_EXT}
|
|
else
|
|
echo -e "ISO not found"
|
|
exit1
|
|
fi
|
|
;;
|
|
|
|
--patch* )
|
|
RIIVOLUTION=${1/*=}
|
|
if [[ -e "${RIIVOLUTION}" ]]; then
|
|
unzip "${RIIVOLUTION}" >/dev/null
|
|
else
|
|
echo -e "Riivolution patch ${RIIVOLUTION} not found."
|
|
exit1
|
|
fi
|
|
;;
|
|
|
|
--customid* )
|
|
CUSTOMID=${1/*=}
|
|
if [[ ${#CUSTOMID} != 6 ]]; then
|
|
echo -e "CustomID ${CUSTOMID} needs to have 6 digits"
|
|
exit 1
|
|
fi
|
|
;;
|
|
|
|
--version=* )
|
|
VERSION=${1/*=}
|
|
case ${VERSION} in
|
|
EURv1 )
|
|
PATCH=./patches/EURv1.ppf
|
|
REG_LETTER=P
|
|
;;
|
|
|
|
EURv2 )
|
|
PATCH=./patches/EURv2.ppf
|
|
REG_LETTER=P
|
|
;;
|
|
|
|
USAv1 )
|
|
PATCH=./patches/USAv1.ppf
|
|
REG_LETTER=E
|
|
;;
|
|
|
|
USAv2 )
|
|
PATCH=./patches/USAv2.ppf
|
|
REG_LETTER=E
|
|
;;
|
|
|
|
JPNv1 )
|
|
PATCH=./patches/JPNv1.ppf
|
|
REG_LETTER=J
|
|
;;
|
|
|
|
* )
|
|
echo -e "unrecognized game version: ${VERSION}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
;;
|
|
|
|
--sharesave )
|
|
TMD_OPTS=""
|
|
;;
|
|
|
|
--game* )
|
|
GAME=${1/*=}
|
|
;;
|
|
|
|
"" | --help )
|
|
echo -e "create wbfs images from riivolution patches.\n
|
|
***** using this script is only allowed, if you own an original copy of the game.
|
|
***** if you don't, no one can be blamed but you. Shame on you.\n
|
|
--game={NewerSMB;NewerSummerSun} | specify game you want to create
|
|
--iso=/home/test/<Image>.wbfs | specify which ISO to use for building
|
|
--riivolution=/home/test/<Patch>.zip | specify path to Riivolution files
|
|
--version=EURv1,EURv2,USAv1,USAv2,JPNv1 | specify your game version
|
|
--customdid=SMNP02 | specify a custom ID to use for the game
|
|
--sharesave | let modified game share savegame with original game
|
|
--clean | cleanup the build-directory"
|
|
exit 0
|
|
;;
|
|
esac
|
|
shift
|
|
xcount=$(($xcount+1))
|
|
done
|
|
|
|
}
|