2013-07-03 17:19:23 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
WORKDIR=nsmb.d
|
|
|
|
DOL=${WORKDIR}/sys/main.dol
|
2013-07-03 17:30:30 +02:00
|
|
|
DOWNLOAD_LINK="http://www.nanolx.org/riivolution/Koopa%20country.rar"
|
2013-07-03 17:19:23 +02:00
|
|
|
RIIVOLUTION_ZIP="Koopa country.rar"
|
2013-07-07 08:39:24 +02:00
|
|
|
RIIVOLUTION_DIR="Koopa"
|
2013-07-03 17:19:23 +02:00
|
|
|
GAMENAME="Koopa Country"
|
2013-07-07 08:39:24 +02:00
|
|
|
XML_SOURCE="${RIIVOLUTION_DIR}"
|
|
|
|
XML_FILE="${RIIVOLUTION_DIR}"/../riivolution/KoopaP.xml
|
2013-07-03 17:19:23 +02:00
|
|
|
GAME_TYPE=RIIVOLUTION
|
|
|
|
BANNER_LOCATION=${WORKDIR}/files/opening.bnr
|
|
|
|
|
|
|
|
show_notes () {
|
|
|
|
|
|
|
|
echo -e \
|
|
|
|
"************************************************
|
|
|
|
${GAMENAME}
|
|
|
|
|
|
|
|
Traverse through 13 new levels as you stop the evil king bowser
|
|
|
|
and his deadly invasion from taking over the mushroom kingdom,
|
|
|
|
sugar star forest and dear ol' Yoshi's island...
|
|
|
|
|
|
|
|
Take on the koopa kids and bowser himself in even more difficult
|
|
|
|
battles than before! And lastly, dont forget to save your power
|
|
|
|
ups because toad houses are something you wont see many of in
|
|
|
|
this adventure! oh...and wasn't there something on the top
|
|
|
|
floor of the castle?
|
|
|
|
|
|
|
|
Source: http://rvlution.net/forums/viewtopic.php?f=53&t=1352
|
|
|
|
Base Image: New Super Mario Bros. Wii (SMN?01)
|
|
|
|
Supported Versions: EURv1, EURv2, USAv1, USAv2, JPNv1
|
|
|
|
************************************************"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
check_input_image_special () {
|
|
|
|
|
2013-08-06 23:53:43 +02:00
|
|
|
check_input_image_nsmb
|
2013-07-03 17:19:23 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
detect_game_version () {
|
|
|
|
|
2013-07-07 08:49:52 +02:00
|
|
|
nsmbw_version
|
2013-07-03 17:19:23 +02:00
|
|
|
|
2013-07-06 08:48:42 +02:00
|
|
|
GAMEID=SMN${REG_LETTER}10
|
2013-07-03 17:19:23 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
place_files () {
|
|
|
|
|
|
|
|
NEW_DIRS=( ${WORKDIR}/files/NewerRes ${WORKDIR}/files/EU/NedEU )
|
|
|
|
for dir in ${NEW_DIRS[@]}; do
|
|
|
|
mkdir -p ${dir}
|
|
|
|
done
|
|
|
|
|
2013-07-07 08:39:24 +02:00
|
|
|
cp -r "${RIIVOLUTION_DIR}"/EU/EngEU/{m,M}essage
|
2013-07-03 17:19:23 +02:00
|
|
|
|
|
|
|
case ${VERSION} in
|
|
|
|
EUR* )
|
|
|
|
LANGDIRS=( EngEU FraEU GerEU ItaEU SpaEU NedEU )
|
|
|
|
for dir in ${LANGDIRS[@]}; do
|
2013-07-07 08:39:24 +02:00
|
|
|
cp -r "${RIIVOLUTION_DIR}"/EU/EngEU/Message/ ${WORKDIR}/files/EU/${dir}/
|
2013-07-03 17:19:23 +02:00
|
|
|
done
|
2013-07-07 08:39:24 +02:00
|
|
|
cp "${RIIVOLUTION_DIR}"/OpeningP/* ${WORKDIR}/files/EU/Layout/openingTitle/
|
2013-07-03 17:19:23 +02:00
|
|
|
;;
|
|
|
|
|
|
|
|
USAv* )
|
|
|
|
LANGDIRS=( FraUS EngUS SpaUS )
|
|
|
|
for dir in ${LANGDIRS[@]}; do
|
2013-07-07 08:39:24 +02:00
|
|
|
cp -r "${RIIVOLUTION_DIR}"/EU/EngEU/Message/ ${WORKDIR}/files/US/${dir}/
|
2013-07-03 17:19:23 +02:00
|
|
|
done
|
2013-07-07 08:39:24 +02:00
|
|
|
cp "${RIIVOLUTION_DIR}"/OpeningE/* ${WORKDIR}/files/US/Layout/openingTitle/
|
2013-07-03 17:19:23 +02:00
|
|
|
;;
|
|
|
|
|
|
|
|
JPNv1 )
|
2013-07-07 08:39:24 +02:00
|
|
|
cp -r "${RIIVOLUTION_DIR}"/EU/EngEU/Message/ ${WORKDIR}/files/JP/
|
|
|
|
cp "${RIIVOLUTION_DIR}"/OpeningJ/* ${WORKDIR}/files/JP/Layout/openingTitle/
|
2013-07-03 17:19:23 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2013-07-07 08:39:24 +02:00
|
|
|
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}"/sound/stream/* ${WORKDIR}/files/Sound/stream/
|
|
|
|
cp "${RIIVOLUTION_DIR}"/sound/*.brsar ${WORKDIR}/files/Sound/
|
|
|
|
cp "${RIIVOLUTION_DIR}"/WorldMap/* ${WORKDIR}/files/WorldMap/
|
|
|
|
cp "${RIIVOLUTION_DIR}"/Object/* ${WORKDIR}/files/Object/
|
|
|
|
cp -r "${RIIVOLUTION_DIR}"/Layout/preGame.arc ${WORKDIR}/files/Layout/preGame/
|
2013-07-03 17:19:23 +02:00
|
|
|
# fixes
|
2013-08-06 23:53:43 +02:00
|
|
|
cp ${PATCHIMAGE_PATCH_DIR}/01-03.arc ${WORKDIR}/files/Stage/
|
|
|
|
cp ${PATCHIMAGE_PATCH_DIR}/08-01.arc ${WORKDIR}/files/Stage/
|
2013-07-03 17:19:23 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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}" \
|
|
|
|
"802F148C=53756D6D53756E#7769696D6A3264" \
|
|
|
|
"802F118C=53756D6D53756E#7769696D6A3264" \
|
|
|
|
"802F0F8C=53756D6D53756E#7769696D6A3264" \
|
2013-08-06 23:53:43 +02:00
|
|
|
xml="${PATCHIMAGE_PATCH_DIR}/KoopaCountry-Loader.xml" -q
|
2013-07-03 17:19:23 +02:00
|
|
|
|
2013-08-06 23:53:43 +02:00
|
|
|
${WIT} dolpatch ${DOL} xml="${PATCHIMAGE_PATCH_DIR}/NSMBW_AP.xml" -q
|
2013-07-03 17:19:23 +02:00
|
|
|
|
|
|
|
}
|