patchimage/script.d/wiimmfi_generic.sh

53 lines
1.1 KiB
Bash
Raw Normal View History

2014-05-13 18:29:22 +02:00
#!/bin/bash
2016-05-16 22:12:44 +02:00
DOWNLOAD_LINK="http://download.wiimm.de/wiimmfi/patcher/wiimmfi-patcher-v3.7z"
GAME_TYPE="WII_GENERIC"
2016-08-05 21:09:04 +02:00
GAMENAME="Mario Kart Wiimmfi"
2014-05-13 18:29:22 +02:00
show_notes () {
echo -e \
"************************************************
2016-08-05 21:09:04 +02:00
${GAMENAME}
2014-05-13 18:29:22 +02:00
Patches Mario Kart Wii to use Wiimm's custom server
Source: http://wiiki.wii-homebrew.com/Wiimmfi-Patcher
Base Image: Mario Kart Wii (RMC?01)
Supported Versions: EUR, JAP, USA
************************************************"
}
check_input_image_special () {
ask_input_image_wiimmfi
2014-05-13 18:29:22 +02:00
echo -e "type ??????.wbfs (or ??????.iso):\n"
read -r ID
2014-05-13 18:29:22 +02:00
if [[ -f ${PWD}/${ID} ]]; then
GAMEDIR="${PWD}"
elif [[ -f ${PATCHIMAGE_WBFS_DIR}/${ID} ]]; then
GAMEDIR="${PATCHIMAGE_WBFS_DIR}"
else echo "invalid user input."
exit 75
fi
2014-05-13 18:29:22 +02:00
}
pi_action () {
2014-05-13 18:29:22 +02:00
cp -v "${GAMEDIR}"/"${ID}" . 2>/dev/null
"${WIT}" cp -o "${ID}" --DEST "${PATCHIMAGE_GAME_DIR}"/"${ID}" \
2014-05-19 21:54:00 +02:00
--update --psel=data --wiimmfi >/dev/null || \
( echo "wiimmfi-ing the images failed." && exit 69 )
rm -f "${ID}"
2014-05-13 18:29:22 +02:00
if [[ ${PATCHIMAGE_COVER_DOWNLOAD} == TRUE ]]; then
2014-05-14 21:11:25 +02:00
echo -e "\n*** Z) download_covers"
download_covers "${ID/.*}"
2014-05-13 18:29:22 +02:00
fi
}