patchimage/patchimage.sh

68 lines
1.2 KiB
Bash
Raw Normal View History

2013-06-13 20:12:19 +02:00
#!/bin/bash
#
2013-06-15 19:25:15 +02:00
# create wbfs image from riivolution patch
2013-06-13 20:12:19 +02:00
#
# Christopher Roy Bratusek <nano@tuxfamily.org>
#
# License: GPL v3
2013-06-20 20:34:57 +02:00
source script.d/common.sh
setup_tools
2013-06-13 20:12:19 +02:00
2013-06-15 19:25:15 +02:00
optparse "${@}"
2013-06-13 20:12:19 +02:00
2013-06-15 19:25:15 +02:00
if [[ ! ${GAME} ]]; then
ask_game
2013-06-13 20:12:19 +02:00
fi
2013-06-15 19:25:15 +02:00
case ${GAME} in
2013-06-13 20:12:19 +02:00
a | A | NewerSMB | NewerSMBW )
2013-06-20 20:34:57 +02:00
source script.d/newersmb.sh
2013-06-15 19:25:15 +02:00
;;
2013-06-13 20:12:19 +02:00
b | B | NewerSummerSun )
2013-06-20 20:34:57 +02:00
source script.d/newersummersun.sh
;;
c | C | ASMBW | AnotherSMBW )
2013-06-20 21:03:40 +02:00
source script.d/anothersmb.sh
;;
d | D | HolidaySpecial | "Newer: Holiday Special" )
source script.d/newerholiday.sh
;;
2013-06-15 19:25:15 +02:00
* )
echo -e "specified Game ${GAME} not recognized"
exit 1
;;
2013-06-13 20:12:19 +02:00
2013-06-15 19:25:15 +02:00
esac
2013-06-13 20:12:19 +02:00
case ${GAME_TYPE} in
"RIIVOLUTION" )
show_notes
download_soundtrack
cleanup_prebuild
check_input_image
check_input_image_special
check_riivolution_patch
${WIT} extract "${IMAGE}" ${WORKDIR} --psel=DATA -vv || exit 1
detect_game_version
place_files
prepare_xml
${WIT} dolpatch ${DOL} xml="${XML_FILE}" --source "${XML_SOURCE}"
dolpatch_extra
if [[ ${CUSTOMID} ]]; then
${WIT} cp -v -B ${WORKDIR} ${CUSTOMID}.wbfs -vv --disc-id=${CUSTOMID} ${TMD_OPTS} --name "${GAMENAME}"
else
${WIT} cp -v -B ${WORKDIR} ${GAMEID}.wbfs -vv --disc-id=${GAMEID} ${TMD_OPTS} --name "${GAMENAME}"
fi
;;
esac