EmuDeck/functions/EmuScripts/emuDeckYuzu.sh
2023-11-02 19:43:11 +01:00

280 lines
8.3 KiB
Bash

#!/bin/bash
#variables
Yuzu_emuName="yuzu"
Yuzu_emuType="AppImage"
Yuzu_emuPath="$HOME/Applications/yuzu.AppImage"
YuzuEA_emuPath="$HOME/Applications/yuzu-ea.AppImage"
#cleanupOlderThings
Yuzu_cleanup() {
echo "Begin Yuzu Cleanup"
#Fixes repeated Symlink for older installations
if [ -f "$HOME/.var/app/org.yuzu_emu.yuzu/data/yuzu/keys/keys" ]; then
unlink "$HOME/.var/app/org.yuzu_emu.yuzu/data/yuzu/keys/keys"
fi
if [ -f "$HOME/.var/app/org.yuzu_emu.yuzu/data/yuzu/keys/keys" ]; then
unlink "$HOME/.var/app/org.yuzu_emu.yuzu/data/yuzu/nand/system/Contents/registered/registered"
fi
}
#Install
Yuzu_install() {
echo "Begin Yuzu Install"
local showProgress=$1
local lastVerFile="$HOME/emudeck/yuzu.ver"
local latestVer=$(curl -fSs "https://api.github.com/repos/yuzu-emu/yuzu-mainline/releases" | jq -r '[ .[].tag_name ][0]')
local success="false"
if installEmuAI "$Yuzu_emuName" "$(getReleaseURLGH "yuzu-emu/yuzu-mainline" "AppImage")" "" "$showProgress" "$lastVerFile" "$latestVer"; then # yuzu.AppImage - needs to be lowercase yuzu for EsDE to find it
success="true"
fi
if [ "$success" != "true" ]; then
return 1
fi
}
#ApplyInitialSettings
Yuzu_init() {
echo "Begin Yuzu Init"
Yuzu_migrate
configEmuAI "$Yuzu_emuName" "config" "$HOME/.config/yuzu" "$EMUDECKGIT/configs/org.yuzu_emu.yuzu/config/yuzu" "true"
configEmuAI "$Yuzu_emuName" "data" "$HOME/.local/share/yuzu" "$EMUDECKGIT/configs/org.yuzu_emu.yuzu/data/yuzu" "true"
Yuzu_setEmulationFolder
Yuzu_setupStorage
Yuzu_setupSaves
Yuzu_finalize
}
#update
Yuzu_update() {
echo "Begin Yuzu update"
Yuzu_migrate
configEmuAI "$Yuzu_emuName" "config" "$HOME/.config/yuzu" "$EMUDECKGIT/configs/org.yuzu_emu.yuzu/config/yuzu"
configEmuAI "$Yuzu_emuName" "data" "$HOME/.local/share/yuzu" "$EMUDECKGIT/configs/org.yuzu_emu.yuzu/data/yuzu"
Yuzu_setEmulationFolder
Yuzu_setupStorage
Yuzu_setupSaves
Yuzu_finalize
}
#ConfigurePaths
Yuzu_setEmulationFolder() {
echo "Begin Yuzu Path Config"
configFile="$HOME/.config/yuzu/qt-config.ini"
screenshotDirOpt='Screenshots\\screenshot_path='
gameDirOpt='Paths\\gamedirs\\4\\path='
dumpDirOpt='dump_directory='
loadDir='load_directory='
nandDirOpt='nand_directory='
sdmcDirOpt='sdmc_directory='
tasDirOpt='tas_directory='
newScreenshotDirOpt='Screenshots\\screenshot_path='"${storagePath}/yuzu/screenshots"
newGameDirOpt='Paths\\gamedirs\\4\\path='"${romsPath}/switch"
newDumpDirOpt='dump_directory='"${storagePath}/yuzu/dump"
newLoadDir='load_directory='"${storagePath}/yuzu/load"
newNandDirOpt='nand_directory='"${storagePath}/yuzu/nand"
newSdmcDirOpt='sdmc_directory='"${storagePath}/yuzu/sdmc"
newTasDirOpt='tas_directory='"${storagePath}/yuzu/tas"
sed -i "/${screenshotDirOpt}/c\\${newScreenshotDirOpt}" "$configFile"
sed -i "/${gameDirOpt}/c\\${newGameDirOpt}" "$configFile"
sed -i "/${dumpDirOpt}/c\\${newDumpDirOpt}" "$configFile"
sed -i "/${loadDir}/c\\${newLoadDir}" "$configFile"
sed -i "/${nandDirOpt}/c\\${newNandDirOpt}" "$configFile"
sed -i "/${sdmcDirOpt}/c\\${newSdmcDirOpt}" "$configFile"
sed -i "/${tasDirOpt}/c\\${newTasDirOpt}" "$configFile"
#Setup Bios symlinks
unlink "${biosPath}/yuzu/keys" 2>/dev/null
unlink "${biosPath}/yuzu/firmware" 2>/dev/null
mkdir -p "$HOME/.local/share/yuzu/keys/"
mkdir -p "${storagePath}/yuzu/nand/system/Contents/registered/"
ln -sn "$HOME/.local/share/yuzu/keys/" "${biosPath}/yuzu/keys"
ln -sn "${storagePath}/yuzu/nand/system/Contents/registered/" "${biosPath}/yuzu/firmware"
touch "${storagePath}/yuzu/nand/system/Contents/registered/putfirmwarehere.txt"
}
#SetupSaves
Yuzu_setupSaves() {
echo "Begin Yuzu save link"
unlink "${savesPath}/yuzu/saves" 2>/dev/null # Fix for previous bad symlink2>/dev/null
linkToSaveFolder yuzu saves "${storagePath}/yuzu/nand/user/save/"
linkToSaveFolder yuzu profiles "${storagePath}/yuzu/nand/system/save/8000000000000010/su/avators/"
}
#SetupStorage
Yuzu_setupStorage() {
echo "Begin Yuzu storage config"
mkdir -p "${storagePath}/yuzu/dump"
mkdir -p "${storagePath}/yuzu/load"
mkdir -p "${storagePath}/yuzu/sdmc"
mkdir -p "${storagePath}/yuzu/nand"
mkdir -p "${storagePath}/yuzu/screenshots"
mkdir -p "${storagePath}/yuzu/tas"
#Symlink to saves for CloudSync
ln -sn "${storagePath}/yuzu/nand/system/save/8000000000000010/su/avators/" "${savesPath}/yuzu/profiles"
}
#WipeSettings
Yuzu_wipe() {
echo "Begin Yuzu delete config directories"
rm -rf "$HOME/.config/yuzu"
rm -rf "$HOME/.local/share/yuzu"
}
#Uninstall
Yuzu_uninstall() {
echo "Begin Yuzu uninstall"
rm -rf "$Yuzu_emuPath"
YuzuEA_uninstall
}
#Migrate
Yuzu_migrate() {
echo "Begin Yuzu Migration"
migrationFlag="$HOME/.config/EmuDeck/.${Yuzu_emuName}MigrationCompleted"
#check if we have a nomigrateflag for $emu
if [ ! -f "$migrationFlag" ]; then
#yuzu flatpak to appimage
#From -- > to
migrationTable=()
migrationTable+=("$HOME/.var/app/org.yuzu_emu.yuzu/data/yuzu" "$HOME/.local/share/yuzu")
migrationTable+=("$HOME/.var/app/org.yuzu_emu.yuzu/config/yuzu" "$HOME/.config/yuzu")
# migrateAndLinkConfig "$emu" "$migrationTable"
touch "${migrationFlag}"
fi
#move data from hidden folders out to these folders in case the user already put stuff here.
origPath="$HOME/.local/share/"
Yuzu_setupStorage
rsync -av "${origPath}yuzu/dump" "${storagePath}/yuzu/" && rm -rf "${origPath}yuzu/dump"
rsync -av "${origPath}yuzu/load" "${storagePath}/yuzu/" && rm -rf "${origPath}yuzu/load"
rsync -av "${origPath}yuzu/sdmc" "${storagePath}/yuzu/" && rm -rf "${origPath}yuzu/sdmc"
rsync -av "${origPath}yuzu/nand" "${storagePath}/yuzu/" && rm -rf "${origPath}yuzu/nand"
rsync -av "${origPath}yuzu/screenshots" "${storagePath}/yuzu/" && rm -rf "${origPath}yuzu/screenshots"
rsync -av "${origPath}yuzu/tas" "${storagePath}/yuzu/" && rm -rf "${origPath}yuzu/tas"
}
#setABXYstyle
Yuzu_setABXYstyle() {
echo "NYI"
}
#WideScreenOn
Yuzu_wideScreenOn() {
echo "NYI"
}
#WideScreenOff
Yuzu_wideScreenOff() {
echo "NYI"
}
#BezelOn
Yuzu_bezelOn() {
echo "NYI"
}
#BezelOff
Yuzu_bezelOff() {
echo "NYI"
}
#finalExec - Extra stuff
Yuzu_finalize() {
echo "Begin Yuzu finalize"
Yuzu_cleanup
}
Yuzu_IsInstalled() {
if [ -e "$Yuzu_emuPath" ]; then
echo "true"
else
echo "false"
fi
}
Yuzu_resetConfig() {
Yuzu_init &>/dev/null && echo "true" || echo "false"
}
### Yuzu EA
YuzuEA_install() {
local jwtHost="https://api.yuzu-emu.org/jwt/installer/"
local yuzuEaHost="https://api.yuzu-emu.org/downloads/earlyaccess/"
local yuzuEaMetadata=$(curl -fSs ${yuzuEaHost})
local fileToDownload=$(echo "$yuzuEaMetadata" | jq -r '.files[] | select(.name|test(".*.AppImage")).url')
local currentVer=$(echo "$yuzuEaMetadata" | jq -r '.files[] | select(.name|test(".*.AppImage")).name')
local tokenValue="$1"
local showProgress="$2"
local user
local auth
read -r user auth <<<"$(echo "$tokenValue"==== | fold -w 4 | sed '$ d' | tr -d '\n' | base64 --decode| awk -F":" '{print $1" "$2}')" || echo "invalid"
#echo "get bearer token"
BEARERTOKEN=$(curl -X POST ${jwtHost} -H "X-Username: ${user}" -H "X-Token: ${auth}" -H "User-Agent: EmuDeck")
#echo "download ea appimage"
if safeDownload "yuzu-ea" "$fileToDownload" "${YuzuEA_emuPath}" "$showProgress" "Authorization: Bearer ${BEARERTOKEN}"; then
chmod +x "$YuzuEA_emuPath"
cp -v "${EMUDECKGIT}/tools/launchers/yuzu.sh" "${toolsPath}/launchers/" &>/dev/null
chmod +x "${toolsPath}/launchers/yuzu.sh"
echo "true"
return 0
else
echo "fail"
return 1
fi
}
YuzuEA_addToken(){
local tokenValue=$1
local user=""
local auth=""
read -r user auth <<<"$(echo "$tokenValue"==== | fold -w 4 | sed '$ d' | tr -d '\n' | base64 --decode| awk -F":" '{print $1" "$2}')" && YuzuEA_install "$tokenValue" || echo "invalid"
}
YuzuEA_IsInstalled() {
if [ -e "$YuzuEA_emuPath" ]; then
echo "true"
else
echo "false"
fi
}
YuzuEA_uninstall() {
echo "Begin Yuzu EA uninstall"
rm -rf "$YuzuEA_emuPath"
}