From a3fecb25a4c76e4b1a1edc5ca69b0711b38dc6fa Mon Sep 17 00:00:00 2001 From: Christopher Roy Bratusek Date: Sat, 11 Apr 2015 14:02:32 +0200 Subject: [PATCH] add support for New Super Mario Bros. Wii - Other World --- patchimage.sh | 4 ++ script.d/common.sh | 1 + script.d/newsmbwotherworld.sh | 97 +++++++++++++++++++++++++++++++++++ 3 files changed, 102 insertions(+) create mode 100644 script.d/newsmbwotherworld.sh diff --git a/patchimage.sh b/patchimage.sh index 9393e6d..240fce1 100755 --- a/patchimage.sh +++ b/patchimage.sh @@ -123,6 +123,10 @@ case ${GAME} in source ${PATCHIMAGE_SCRIPT_DIR}/devilmariowinterspecial.sh ;; + NSMB22 | NewSMBWOtherWorld ) + source ${PATCHIMAGE_SCRIPT_DIR}/newsmbwotherworld.sh + ;; + MKW1 | Wiimmfi ) source ${PATCHIMAGE_SCRIPT_DIR}/wiimmfi.sh ;; diff --git a/script.d/common.sh b/script.d/common.sh index f0998d0..5dc899f 100644 --- a/script.d/common.sh +++ b/script.d/common.sh @@ -47,6 +47,7 @@ NSMB18 Newer Apocalypse NSMB19 Luigi's Super Yoshi Bros. NSMB20 Newer: Falling Leaf NSMB21 Devil Mario Winter Special +NSMB22 New Super Mario Bros. Wii - Other World <<<<<< Mario Kart Wii >>>>>> MKW1 Wiimfi Patcher. Patch Mario Kart to use Wiimm's server diff --git a/script.d/newsmbwotherworld.sh b/script.d/newsmbwotherworld.sh new file mode 100644 index 0000000..feb4c7c --- /dev/null +++ b/script.d/newsmbwotherworld.sh @@ -0,0 +1,97 @@ +#!/bin/bash + +WORKDIR=nsmb.d +DOL=${WORKDIR}/sys/main.dol +DOWNLOAD_LINK="http://riivolution.nanolx.org/Riivolution%20Other%20WorldR%20v1.01.zip" +RIIVOLUTION_ZIP="Riivolution Other WorldR v1.01.zip" +RIIVOLUTION_DIR="Riivolution Other WorldR/Other World/" +GAMENAME="New Super Mario Bros. Wii - Other World" +XML_SOURCE="${RIIVOLUTION_DIR}" +XML_FILE="${RIIVOLUTION_DIR}/../riivolution/OtherWorld" +GAME_TYPE=RIIVOLUTION +BANNER_LOCATION=${WORKDIR}/files/opening.bnr + +show_notes () { + +echo -e \ +"************************************************ +${GAMENAME} + +- Some Custom Tilesets of file depot +- Custom level 1-1 to 7 tower +- Custom tilesets + +Source: http://rvlution.net/thread/3019-new-super-mario-bros-wii-other-world/ +Base Image: New Super Mario Bros. Wii (SMN?01) +Supported Versions: EURv1, EURv2, USAv1, USAv2, JPNv1 +************************************************" + +} + +check_input_image_special () { + + check_input_image_nsmb + +} + +detect_game_version () { + + nsmbw_version + GAMEID=SMN${REG_LETTER}31 + XML_FILE="${XML_FILE}${REG_LETTER}.xml" + +} + +place_files () { + + + NEW_DIRS=( ${WORKDIR}/files/NewerRes ${WORKDIR}/files/EU/NedEU/Message ) + for dir in ${NEW_DIRS[@]}; do + mkdir -p ${dir} + done + + case ${VERSION} in + EURv* ) + + LANGDIRS=( EngEU FraEU GerEU ItaEU SpaEU NedEU ) + for dir in ${LANGDIRS[@]}; do + cp "${RIIVOLUTION_DIR}"/MessageEN/* ${WORKDIR}/files/EU/${dir}/Message/ + done + cp "${RIIVOLUTION_DIR}"/OpeningP/* ${WORKDIR}/files/EU/Layout/openingTitle/ + + ;; + + USAv* ) + + LANGDIRS=( FraUS EngUS SpaUS ) + for dir in ${LANGDIRS[@]}; do + cp "${RIIVOLUTION_DIR}"/MessageEN/* ${WORKDIR}/files/US/${dir}/Message/ + done + cp "${RIIVOLUTION_DIR}"/OpeningE/* ${WORKDIR}/files/US/Layout/openingTitle/ + ;; + + JPNv* ) + cp "${RIIVOLUTION_DIR}"/MessageEN/* ${WORKDIR}/files/JP/Message/ + cp "${RIIVOLUTION_DIR}"/OpeningJ/* ${WORKDIR}/files/JP/Layout/openingTitle/ + ;; + esac + + cp "${RIIVOLUTION_DIR}"/Stage/Texture/* ${WORKDIR}/files/Stage/Texture/ + cp "${RIIVOLUTION_DIR}"/NewerRes/* ${WORKDIR}/files/NewerRes/ + cp "${RIIVOLUTION_DIR}"/Stage/*.arc ${WORKDIR}/files/Stage/ + cp "${RIIVOLUTION_DIR}"/Env/* ${WORKDIR}/files/Env/ + cp "${RIIVOLUTION_DIR}"/MovieDemo/* ${WORKDIR}/files/MovieDemo/ + cp -r "${RIIVOLUTION_DIR}"/Layout/* ${WORKDIR}/files/Layout/ + +} + +dolpatch () { + + cp "${XML_FILE}" "${XML_FILE}".new + sed -e 's/80001800/803482C0/g' -i "${XML_FILE}".new + XML_FILE="${XML_FILE}".new + + ${WIT} dolpatch ${DOL} xml="${XML_FILE}" -s "${XML_SOURCE}" xml="${PATCHIMAGE_PATCH_DIR}/NewerSMBW-Loader.xml" -q + ${WIT} dolpatch ${DOL} xml="${PATCHIMAGE_PATCH_DIR}/NSMBW_AP.xml" -q + +}