extras folder

This commit is contained in:
Nayla Hanegan 2024-01-29 23:15:47 -05:00
commit 371335d017
41 changed files with 388 additions and 61 deletions

View file

@ -1,10 +1,30 @@
@echo off
if [%1] == [] goto NoFile
echo Given "%~1"
xdelta3-3.0.11-i686 -d -s "%~1" data.xdelta3 "Mario Party 4 (USA) (v1.01).iso"
setlocal enabledelayedexpansion
REM Get a list of ISO files in the same directory as the script
for %%F in ("%~dp0*.iso") do (
set "iso_files=!iso_files! "%%F""
)
REM Check if there are no ISO files
if not defined iso_files (
echo.
echo No ISO files found in the same directory as the script.
echo Place the Mario Party 4 (USA) (v1.00) ISO in the script's directory and run it again.
echo.
pause
exit /b 0
)
REM Iterate over each ISO file and process it
for %%I in (%iso_files%) do (
echo.
echo Given "%%~I"
xdelta3.exe -d -s "%%~I" data.xdelta3 "Mario Party 4 (USA) (v1.01).iso"
echo Press Enter to exit.
set /p "=<" NUL
)
echo.
pause
exit
:NoFile
echo Please drag a valid Mario Party 4 (USA) (v1.00) ISO onto this batch file.
pause
exit
exit /b 0

View file

@ -0,0 +1,27 @@
#!/bin/bash
# Get a list of ISO files in the same directory as the script
iso_files=$(find "$(dirname "$0")" -maxdepth 1 -type f -iname "*.iso")
# Check if there are no ISO files
if [ -z "$iso_files" ]; then
echo ""
echo "No ISO files found in the same directory as the script."
echo "Place the Mario Party 4 (USA) (v1.00) ISO in the script's directory and run it again."
echo ""
read -p "Press Enter to exit..."
exit 0
fi
# Iterate over each ISO file and process it
for originalISO in $iso_files; do
echo ""
echo "Given \"$originalISO\""
xdelta3 -d -s "$originalISO" data.xdelta3 "Mario Party 4 (USA) (v1.01).iso"
echo "Press Enter to exit."
read -p ""
done
echo ""
read -p "Press Enter to exit..."
exit 0

View file

@ -0,0 +1 @@
Place the Mario Party 4 (USA) (v1.00) ISO in the script's directory and run the patch script to patch it.

Binary file not shown.

View file

@ -1,10 +1,30 @@
@echo off
if [%1] == [] goto NoFile
echo Given "%~1"
xdelta3-3.0.11-i686 -d -s "%~1" data.xdelta3 "Mario Party 4 (USA) [Widescreen].iso"
setlocal enabledelayedexpansion
REM Get a list of ISO files in the same directory as the script
for %%F in ("%~dp0*.iso") do (
set "iso_files=!iso_files! "%%F""
)
REM Check if there are no ISO files
if not defined iso_files (
echo.
echo No ISO files found in the same directory as the script.
echo Place the Mario Party 4 (USA) (v1.01) ISO in the script's directory and run it again.
echo.
pause
exit /b 0
)
REM Iterate over each ISO file and process it
for %%I in (%iso_files%) do (
echo.
echo Given "%%~I"
xdelta3.exe -d -s "%%~I" data.xdelta3 "Mario Party 4 (USA) [Widescreen].iso"
echo Press Enter to exit.
set /p "=<" NUL
)
echo.
pause
exit
:NoFile
echo Please drag a valid Mario Party 4 (USA) (v1.01) ISO onto this batch file.
pause
exit
exit /b 0

View file

@ -0,0 +1,27 @@
#!/bin/bash
# Get a list of ISO files in the same directory as the script
iso_files=$(find "$(dirname "$0")" -maxdepth 1 -type f -iname "*.iso")
# Check if there are no ISO files
if [ -z "$iso_files" ]; then
echo ""
echo "No ISO files found in the same directory as the script."
echo "Place the Mario Party 4 (USA) (v1.01) ISO in the script's directory and run it again."
echo ""
read -p "Press Enter to exit..."
exit 0
fi
# Iterate over each ISO file and process it
for originalISO in $iso_files; do
echo ""
echo "Given \"$originalISO\""
xdelta3 -d -s "$originalISO" data.xdelta3 "Mario Party 4 (USA) [Widescreen].iso"
echo "Press Enter to exit."
read -p ""
done
echo ""
read -p "Press Enter to exit..."
exit 0

View file

@ -1 +1 @@
Drag a Mario Party 4 (USA) (v1.01) ISO onto the .BAT file to patch it.
Place the Mario Party 4 (USA) (v1.01) ISO in the script's directory and run the patch script to patch it.

View file

@ -1,10 +1,30 @@
@echo off
if [%1] == [] goto NoFile
echo Given "%~1"
xdelta3-3.0.11-i686 -d -s "%~1" data.xdelta3 "Mario Party 5 With Shops.iso"
setlocal enabledelayedexpansion
REM Get a list of ISO files in the same directory as the script
for %%F in ("%~dp0*.iso") do (
set "iso_files=!iso_files! "%%F""
)
REM Check if there are no ISO files
if not defined iso_files (
echo.
echo No ISO files found in the same directory as the script.
echo Place the Mario Party 5 (USA) ISO in the script's directory and run it again.
echo.
pause
exit /b 0
)
REM Iterate over each ISO file and process it
for %%I in (%iso_files%) do (
echo.
echo Given "%%~I"
xdelta3.exe -d -s "%%~I" data.xdelta3 "Mario Party 5 with Shops.iso"
echo Press Enter to exit.
set /p "=<" NUL
)
echo.
pause
exit
:NoFile
echo Please drag a valid Mario Party 5 (USA) ISO onto this batch file.
pause
exit
exit /b 0

View file

@ -0,0 +1,27 @@
#!/bin/bash
# Get a list of ISO files in the same directory as the script
iso_files=$(find "$(dirname "$0")" -maxdepth 1 -type f -iname "*.iso")
# Check if there are no ISO files
if [ -z "$iso_files" ]; then
echo ""
echo "No ISO files found in the same directory as the script."
echo "Place the Mario Party 5 (USA) ISO in the script's directory and run it again."
echo ""
read -p "Press Enter to exit..."
exit 0
fi
# Iterate over each ISO file and process it
for originalISO in $iso_files; do
echo ""
echo "Given \"$originalISO\""
xdelta3 -d -s "$originalISO" data.xdelta3 "Mario Party 5 With Shops.iso"
echo "Press Enter to exit."
read -p ""
done
echo ""
read -p "Press Enter to exit..."
exit 0

View file

@ -1,4 +1,4 @@
Drag a Mario Party 5 (USA) ISO onto the .BAT file to patch it.
Place the Mario Party 5 (USA) ISO in the script's directory and run the patch script to patch it.
Refer to this list for descriptions of capsules:
https://www.mariowiki.com/Mario_Party_5#Capsules

Binary file not shown.

View file

@ -1,10 +1,30 @@
@echo off
if [%1] == [] goto NoFile
echo Given "%~1"
xdelta3-3.0.11-i686 -d -s "%~1" data.xdelta3 "Mario Party 5 (USA) [Widescreen].iso"
setlocal enabledelayedexpansion
REM Get a list of ISO files in the same directory as the script
for %%F in ("%~dp0*.iso") do (
set "iso_files=!iso_files! "%%F""
)
REM Check if there are no ISO files
if not defined iso_files (
echo.
echo No ISO files found in the same directory as the script.
echo Place the Mario Party 5 (USA) ISO in the script's directory and run it again.
echo.
pause
exit /b 0
)
REM Iterate over each ISO file and process it
for %%I in (%iso_files%) do (
echo.
echo Given "%%~I"
xdelta3.exe -d -s "%%~I" data.xdelta3 "Mario Party 5 [Widescreen].iso"
echo Press Enter to exit.
set /p "=<" NUL
)
echo.
pause
exit
:NoFile
echo Please drag a valid Mario Party 5 (USA) ISO onto this batch file.
pause
exit
exit /b 0

View file

@ -0,0 +1,27 @@
#!/bin/bash
# Get a list of ISO files in the same directory as the script
iso_files=$(find "$(dirname "$0")" -maxdepth 1 -type f -iname "*.iso")
# Check if there are no ISO files
if [ -z "$iso_files" ]; then
echo ""
echo "No ISO files found in the same directory as the script."
echo "Place the Mario Party 5 (USA) ISO in the script's directory and run it again."
echo ""
read -p "Press Enter to exit..."
exit 0
fi
# Iterate over each ISO file and process it
for originalISO in $iso_files; do
echo ""
echo "Given \"$originalISO\""
xdelta3 -d -s "$originalISO" data.xdelta3 "Mario Party 5 (USA) [Widescreen].iso"
echo "Press Enter to exit."
read -p ""
done
echo ""
read -p "Press Enter to exit..."
exit 0

View file

@ -1 +1 @@
Drag a Mario Party 5 (USA) ISO onto the .BAT file to patch it.
Place the Mario Party 5 (USA) ISO in the script's directory and run the patch script to patch it.

View file

@ -1,10 +1,30 @@
@echo off
if [%1] == [] goto NoFile
echo Given "%~1"
xdelta3-3.0.11-i686 -d -s "%~1" data.xdelta3 "Mario Party 6 (USA) [Widescreen].iso"
setlocal enabledelayedexpansion
REM Get a list of ISO files in the same directory as the script
for %%F in ("%~dp0*.iso") do (
set "iso_files=!iso_files! "%%F""
)
REM Check if there are no ISO files
if not defined iso_files (
echo.
echo No ISO files found in the same directory as the script.
echo Place the Mario Party 6 (USA) ISO in the script's directory and run it again.
echo.
pause
exit /b 0
)
REM Iterate over each ISO file and process it
for %%I in (%iso_files%) do (
echo.
echo Given "%%~I"
xdelta3.exe -d -s "%%~I" data.xdelta3 "Mario Party 6 [Widescreen].iso"
echo Press Enter to exit.
set /p "=<" NUL
)
echo.
pause
exit
:NoFile
echo Please drag a valid Mario Party 6 (USA) ISO onto this batch file.
pause
exit
exit /b 0

View file

@ -0,0 +1,27 @@
#!/bin/bash
# Get a list of ISO files in the same directory as the script
iso_files=$(find "$(dirname "$0")" -maxdepth 1 -type f -iname "*.iso")
# Check if there are no ISO files
if [ -z "$iso_files" ]; then
echo ""
echo "No ISO files found in the same directory as the script."
echo "Place the Mario Party 6 (USA) ISO in the script's directory and run it again."
echo ""
read -p "Press Enter to exit..."
exit 0
fi
# Iterate over each ISO file and process it
for originalISO in $iso_files; do
echo ""
echo "Given \"$originalISO\""
xdelta3 -d -s "$originalISO" data.xdelta3 "Mario Party 6 (USA) [Widescreen].iso"
echo "Press Enter to exit."
read -p ""
done
echo ""
read -p "Press Enter to exit..."
exit 0

View file

@ -1 +1 @@
Drag a Mario Party 6 (USA) ISO onto the .BAT file to patch it.
Place the Mario Party 6 (USA) ISO in the script's directory and run the patch script to patch it.

Binary file not shown.

View file

@ -1,10 +1,30 @@
@echo off
if [%1] == [] goto NoFile
echo Given "%~1"
xdelta3-3.0.11-i686 -d -s "%~1" data.xdelta3 "Mario Party 7 (USA) [Widescreen].iso"
setlocal enabledelayedexpansion
REM Get a list of ISO files in the same directory as the script
for %%F in ("%~dp0*.iso") do (
set "iso_files=!iso_files! "%%F""
)
REM Check if there are no ISO files
if not defined iso_files (
echo.
echo No ISO files found in the same directory as the script.
echo Place the Mario Party 7 (USA) ISO in the script's directory and run it again.
echo.
pause
exit /b 0
)
REM Iterate over each ISO file and process it
for %%I in (%iso_files%) do (
echo.
echo Given "%%~I"
xdelta3.exe -d -s "%%~I" data.xdelta3 "Mario Party 7 [Widescreen].iso"
echo Press Enter to exit.
set /p "=<" NUL
)
echo.
pause
exit
:NoFile
echo Please drag a valid Mario Party 7 (USA) (v1.02) ISO onto this batch file.
pause
exit
exit /b 0

View file

@ -0,0 +1,27 @@
#!/bin/bash
# Get a list of ISO files in the same directory as the script
iso_files=$(find "$(dirname "$0")" -maxdepth 1 -type f -iname "*.iso")
# Check if there are no ISO files
if [ -z "$iso_files" ]; then
echo ""
echo "No ISO files found in the same directory as the script."
echo "Place the Mario Party 7 (USA) (v1.02) ISO in the script's directory and run it again."
echo ""
read -p "Press Enter to exit..."
exit 0
fi
# Iterate over each ISO file and process it
for originalISO in $iso_files; do
echo ""
echo "Given \"$originalISO\""
xdelta3 -d -s "$originalISO" data.xdelta3 "Mario Party 7 (USA) [Widescreen].iso"
echo "Press Enter to exit."
read -p ""
done
echo ""
read -p "Press Enter to exit..."
exit 0

View file

@ -1 +1 @@
Drag a Mario Party 7 (USA) (v1.02) ISO onto the .BAT file to patch it.
Place the Mario Party 7 (USA) (v1.02) ISO in the script's directory and run the patch script to patch it.

View file

@ -1,6 +0,0 @@
Information
X=1
Y=2
IR on C Stick.
Taunts are activated by L.
Wiimotes are disabled.

View file

@ -0,0 +1,43 @@
#!/bin/bash
# Get a list of ISO and WBFS files in the same directory as the script
iso_files=$(find "$(dirname "$0")" -maxdepth 1 -type f \( -iname "*.iso" -o -iname "*.wbfs" \))
# Check if there are no ISO or WBFS files
if [ -z "$iso_files" ]; then
echo ""
echo "No ISO or WBFS files found in the same directory as the script."
echo "Place the Mario Party 8 (US) ISO or WBFS in the script's directory and run it again."
echo ""
read -p "Press Enter to exit..."
exit 0
fi
# Iterate over each ISO or WBFS file and process it
for originalISO in $iso_files; do
echo ""
echo "Constructing the Mario Party 8 GC Controller WBFS for \"$originalISO\". Please stand by...."
cd "$(dirname "$0")/tools"
# Ensure temp directory exists
mkdir -p temp
wit extract "$originalISO" --dest=temp
if [ -d "temp/DATA" ]; then
cp -r "../mp8motion" "temp/DATA"
else
cp -r "../mp8motion" "temp"
fi
wit copy "temp" "../Mario Party 8 GC Controller.wbfs"
rm -rf temp
echo ""
echo "Construction complete for \"$originalISO\"!"
done
echo ""
read -p "Press Enter to exit..."
exit 0

View file

@ -1 +1 @@
Drag and Drop a NTSC-U Mario Party 8 ISO or WBFS onto Mario Party 8 Widescreen Patcher.bat to produce an ISO
Place the Mario Party 8 ISO or WBFS in the script's directory and run the patch script to patch it.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

2
Externals/fmt/fmt vendored

@ -1 +1 @@
Subproject commit e69e5f977d458f2650bb346dadf2ad30c5320281
Subproject commit f5e54359df4c26b6230fc61d38aa294581393084

3
build_macos.sh Normal file
View file

@ -0,0 +1,3 @@
mkdir -p build
cd build
arch -arm64 python3 ../BuildMacOSUniversalBinary.py --distributor="Mario Party Netplay" --no-autoupdate --arm64_qt5_path="/opt/homebrew/opt/qt6" --x86_64_qt5_path="/usr/local/opt/qt6" --build_type="Debug"

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
</Workspace>