From 5000e13df7c6b98b2dc8fefa44cd438ca9ff0466 Mon Sep 17 00:00:00 2001 From: Christopher Roy Bratusek Date: Mon, 16 May 2016 17:50:28 +0200 Subject: [PATCH] add support for Remixed Super Mario Bros. Wii --- ChangeLog | 2 + README.GAMEIDS | 1 + patchimage.sh | 6 +- script.d/remixedsupermariobroswii.sh | 97 ++++++++++++++++++++++++++++ 4 files changed, 105 insertions(+), 1 deletion(-) create mode 100644 script.d/remixedsupermariobroswii.sh diff --git a/ChangeLog b/ChangeLog index 1221d2e..ebff222 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,6 @@ v6.1.0: - update szs to version 1.50a +- update title database - show "Enter ID (...)" message at the end of menu - show "ID Name" header/footer in menu - show proper version number in --help @@ -7,6 +8,7 @@ v6.1.0: - support for MKWiimm 2015-12 - support for MKWiimm 2016-02 - support for The Legend of Yoshi (SMN?66) +- support for Remixed Super Mario Bros. Wii () v6.0.0: - update szs to version 1.40a diff --git a/README.GAMEIDS b/README.GAMEIDS index c0db295..2b40f71 100644 --- a/README.GAMEIDS +++ b/README.GAMEIDS @@ -17,6 +17,7 @@ SMN?11 New Super Mario Bros. 4 SMN?12 Awesomer Super Luigi Mini SMN?31 New Super Mario Bros. Wii - Other World SMN?41 Devil Mario Winter Special +SMN?60 Remixed Super Mario Bros. Wii SMN?66 The Legend of Yoshi SMN?DU DarkUmbra Super Mario Bros: Anniversary Edition SMN?FL Newer: Falling Leaf diff --git a/patchimage.sh b/patchimage.sh index 759f00e..f7e7ea8 100755 --- a/patchimage.sh +++ b/patchimage.sh @@ -127,10 +127,14 @@ case ${GAME} in source ${PATCHIMAGE_SCRIPT_DIR}/newsmbwotherworld.sh ;; - NSMB33 | TheLegendOfYoshi ) + NSMB23 | TheLegendOfYoshi ) source ${PATCHIMAGE_SCRIPT_DIR}/thelegendofyoshi.sh ;; + NSMB24 | RemixedSuperMarioBrosWii ) + source ${PATCHIMAGE_SCRIPT_DIR}/remixedsupermariobroswii.sh + ;; + NSMB99 | NSMBWCharacters ) source ${PATCHIMAGE_SCRIPT_DIR}/nsmbw_characters.sh ;; diff --git a/script.d/remixedsupermariobroswii.sh b/script.d/remixedsupermariobroswii.sh new file mode 100644 index 0000000..2a9d3a2 --- /dev/null +++ b/script.d/remixedsupermariobroswii.sh @@ -0,0 +1,97 @@ +#!/bin/bash + +WORKDIR=nsmb.d +DOL=${WORKDIR}/sys/main.dol +DOWNLOAD_LINK="https://www.dropbox.com/s/nby77snj423imzx/Remixed%20v1.5.zip" +RIIVOLUTION_ZIP="Remixed v1.5.zip" +RIIVOLUTION_DIR="Remixed v1.5/remixed" +GAMENAME="Remixed Super Mario Bros. Wii" +XML_SOURCE="${RIIVOLUTION_DIR}" +XML_FILE="${RIIVOLUTION_DIR}/../riivolution/NSMBtemplate.xml" +GAME_TYPE=RIIVOLUTION +BANNER_LOCATION=${WORKDIR}/files/opening.bnr + +show_notes () { + +echo -e \ +"************************************************ +${GAMENAME} + +Source: http://rvlution.net/thread/3645-remixed-super-mario-bros-wii/ +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}60 + +} + +place_files () { + + NEW_DIRS=( ${WORKDIR}/files/EU/NedEU/{Message,Font,staffroll} ) + for dir in ${NEW_DIRS[@]}; do + mkdir -p ${dir} + done + + case ${VERSION} in + EUR* ) + LANGDIRS=( EngEU FraEU GerEU ItaEU SpaEU NedEU ) + for dir in ${LANGDIRS[@]}; do + cp "${RIIVOLUTION_DIR}"/US/EngUS/Message/* ${WORKDIR}/files/EU/${dir}/Message/ + cp "${RIIVOLUTION_DIR}"/US/EngUS/Font/* ${WORKDIR}/files/EU/${dir}/Font/ + cp "${RIIVOLUTION_DIR}"/US/EngUS/staffroll/* ${WORKDIR}/files/EU/${dir}/staffroll/ + done + cp "${RIIVOLUTION_DIR}"/US/Layout/openingTitle/* ${WORKDIR}/files/EU/Layout/openingTitle/ + ;; + + USAv* ) + LANGDIRS=( FraUS EngUS SpaUS ) + for dir in ${LANGDIRS[@]}; do + cp "${RIIVOLUTION_DIR}"/US/EngUS/Message/* ${WORKDIR}/files/US/${dir}/Message/ + cp "${RIIVOLUTION_DIR}"/US/EngUS/Font/* ${WORKDIR}/files/US/${dir}/Font/ + cp "${RIIVOLUTION_DIR}"/US/EngUS/staffroll/* ${WORKDIR}/files/US/${dir}/staffroll/ + done + cp "${RIIVOLUTION_DIR}"/US/Layout/openingTitle/* ${WORKDIR}/files/US/Layout/openingTitle/ + ;; + + JPNv1 ) + cp "${RIIVOLUTION_DIR}"/US/Layout/openingTitle/* ${WORKDIR}/files/JP/Layout/openingTitle/ + cp "${RIIVOLUTION_DIR}"/US/EngUS/Message/* ${WORKDIR}/files/JP/Message/ + cp "${RIIVOLUTION_DIR}"/US/EngUS/Font/* ${WORKDIR}/files/JP/Font/ + cp "${RIIVOLUTION_DIR}"/US/EngUS/staffroll/* ${WORKDIR}/files/JP/staffroll/ + ;; + esac + + cp -r "${RIIVOLUTION_DIR}"/Layout/ ${WORKDIR}/files/ + cp -r "${RIIVOLUTION_DIR}"/US/EngUS/Layout/ ${WORKDIR}/files/ + cp -r "${RIIVOLUTION_DIR}"/Object/ ${WORKDIR}/files/ + cp "${RIIVOLUTION_DIR}"/Sound/Stream/* ${WORKDIR}/files/Sound/stream/ + cp "${RIIVOLUTION_DIR}"/Sound/*.brsar ${WORKDIR}/files/Sound/ + cp "${RIIVOLUTION_DIR}"/Stage/Texture/* ${WORKDIR}/files/Stage/Texture/ + cp "${RIIVOLUTION_DIR}"/Stage/*.arc ${WORKDIR}/files/Stage/ + cp "${RIIVOLUTION_DIR}"/WorldMap/* ${WORKDIR}/files/WorldMap/ + +} + +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 + +}