2016-05-16 17:22:11 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
WORKDIR=nsmb.d
|
|
|
|
DOL=${WORKDIR}/sys/main.dol
|
2016-08-22 17:31:23 +02:00
|
|
|
DOWNLOAD_LINK="https://www.dropbox.com/s/tfypq5j3t85v6dv/The%20Legend%20Of%20Yoshi.zip"
|
|
|
|
RIIVOLUTION_ZIP="The Legend Of Yoshi.zip"
|
|
|
|
RIIVOLUTION_DIR="TLOY (Riivolution) [P] [J] [E] (05-28-2016) [no custom logo]/The Legend Of Yoshi/tloy"
|
2016-05-16 17:22:11 +02:00
|
|
|
GAMENAME="The Legend of Yoshi"
|
|
|
|
XML_SOURCE="${RIIVOLUTION_DIR}"
|
|
|
|
XML_FILE="${RIIVOLUTION_DIR}/../riivolution/TLOY ("
|
|
|
|
GAME_TYPE=RIIVOLUTION
|
|
|
|
BANNER_LOCATION=${WORKDIR}/files/opening.bnr
|
2016-08-19 21:30:56 +02:00
|
|
|
WBFS_MASK="SMN[PEJ]01"
|
2016-05-16 17:22:11 +02:00
|
|
|
|
|
|
|
show_notes () {
|
|
|
|
|
|
|
|
echo -e \
|
|
|
|
"************************************************
|
|
|
|
${GAMENAME}
|
|
|
|
|
2016-08-22 17:31:23 +02:00
|
|
|
Source: http://rvlution.net/thread/4349-the-legend-of-yoshi-05-28-16-dlc/
|
2016-05-16 17:22:11 +02:00
|
|
|
Base Image: New Super Mario Bros. Wii (SMN?01)
|
|
|
|
Supported Versions: EURv1, EURv2, USAv1, USAv2, JPNv1
|
|
|
|
************************************************"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
detect_game_version () {
|
|
|
|
|
|
|
|
nsmbw_version
|
|
|
|
GAMEID=SMN${REG_LETTER}66
|
|
|
|
XML_FILE="${XML_FILE}${REG_LETTER}).xml"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
place_files () {
|
|
|
|
|
|
|
|
case ${VERSION} in
|
|
|
|
EUR* )
|
2016-08-05 21:42:41 +02:00
|
|
|
cp "${RIIVOLUTION_DIR}"/OpeningP/* "${WORKDIR}"/files/EU/Layout/openingTitle/
|
2016-05-16 17:22:11 +02:00
|
|
|
;;
|
|
|
|
|
|
|
|
USAv* )
|
2016-08-05 21:42:41 +02:00
|
|
|
cp "${RIIVOLUTION_DIR}"/OpeningE/* "${WORKDIR}"/files/US/Layout/openingTitle/
|
2016-05-16 17:22:11 +02:00
|
|
|
;;
|
|
|
|
|
|
|
|
JPNv1 )
|
2016-08-05 21:42:41 +02:00
|
|
|
cp "${RIIVOLUTION_DIR}"/OpeningJ/* "${WORKDIR}"/files/JP/Layout/openingTitle/
|
2016-05-16 17:22:11 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2016-08-05 21:42:41 +02:00
|
|
|
cp "${RIIVOLUTION_DIR}"/Stage/Texture/* "${WORKDIR}"/files/Stage/Texture/
|
|
|
|
cp "${RIIVOLUTION_DIR}"/Stage/*.arc "${WORKDIR}"/files/Stage/
|
|
|
|
cp -r "${RIIVOLUTION_DIR}"/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}"/WorldMap/* "${WORKDIR}"/files/WorldMap/
|
2016-05-16 17:22:11 +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="${PATCHIMAGE_PATCH_DIR}/NSMBW_AP.xml" -q
|
|
|
|
|
|
|
|
}
|