mirror of
https://github.com/dragoonDorise/EmuDeck.git
synced 2025-05-05 16:02:48 +00:00
* Update import.sh Fixed path from 'bios' to 'downloaded_media' * shadps4 location * fix bigpemu * fix paths --------- Co-authored-by: Dragoon Dorise <rodrigosedano@me.com>
219 lines
6.5 KiB
Bash
219 lines
6.5 KiB
Bash
#!/bin/bash
|
|
clear
|
|
if [ ! -f "$HOME/.config/EmuDeck/backend/functions/all.sh" ]; then
|
|
|
|
text="$(printf "<b>EmuDeck installation not found</b>\nPlease Install EmuDeck before using this tool")"
|
|
zenity --error \
|
|
--title="EmuDeck Import tool" \
|
|
--width=250 \
|
|
--ok-label="Bye" \
|
|
--text="${text}" 2>/dev/null
|
|
exit
|
|
fi
|
|
|
|
. "$HOME/.config/EmuDeck/backend/functions/all.sh"
|
|
function customLocation(){
|
|
zenity --file-selection --directory --title="Select the root of the drive where you want to create your backup" 2>/dev/null
|
|
}
|
|
function checkSpace(){
|
|
local origin=$1
|
|
local destination=$2
|
|
local neededSpace=$(du -s "$origin" | awk '{print $1}')
|
|
local neededSpaceInHuman=$(du -sh "$origin" | awk '{print $1}')
|
|
#File Size on destination
|
|
local freeSpace=$(df -k "$destination" --output=avail | tail -1)
|
|
local freeSpaceInHuman=$(df -kh "$destination" --output=avail | tail -1)
|
|
local difference=$(($freeSpace - $neededSpace))
|
|
|
|
if [[ $difference -lt 0 ]]; then
|
|
text="$(printf "Make sure you have enought space in $destination. You need to have at least $neededSpaceInHuman available")"
|
|
zenity --question \
|
|
--title="EmuDeck Import tool" \
|
|
--width=450 \
|
|
--cancel-label="Exit" \
|
|
--ok-label="Continue" \
|
|
--text="${text}" 2>/dev/null
|
|
ans=$?
|
|
if [ $ans -eq 0 ]; then
|
|
echo "Continue..."
|
|
else
|
|
exit
|
|
fi
|
|
|
|
else
|
|
echo "Continue..."
|
|
fi
|
|
}
|
|
|
|
text="$(printf "Welcome to EmuDeck's <b>import</b> save tool.\nThis script will help you migrate your EmuDeck saved games from another Steam Deck")"
|
|
|
|
zenity --question \
|
|
--title="EmuDeck Import tool" \
|
|
--width=450 \
|
|
--cancel-label="Exit" \
|
|
--ok-label="Import my saved games" \
|
|
--text="${text}" 2>/dev/null
|
|
ans=$?
|
|
if [ $ans -eq 0 ]; then
|
|
echo "Waiting for the user to pick a destination...."
|
|
else
|
|
exit
|
|
fi
|
|
|
|
text="$(printf "Please select the drive where you have your <b>exported saves</b>")"
|
|
zenity --info \
|
|
--title="EmuDeck Import tool" \
|
|
--width="${width}" \
|
|
--text="${text}" 2>/dev/null
|
|
|
|
origin=$(customLocation)
|
|
|
|
if [ -d "$origin/EmuDeck/saves/" ]; then
|
|
echo "Continue..."
|
|
else
|
|
text="$(printf "<b>No saved games detected</b>\nPlease select the root of the drive, don't select any of its folders.")"
|
|
zenity --error \
|
|
--title="EmuDeck Import tool" \
|
|
--width=250 \
|
|
--ok-label="Try again" \
|
|
--text="${text}"
|
|
|
|
if [ -d "$origin/EmuDeck/saves/" ]; then
|
|
echo "Continue..."
|
|
else
|
|
text="$(printf "<b>No EmuDeck save folder found</b>\nMake sure you have an Emulation/saves folder in your drive")"
|
|
zenity --error \
|
|
--title="EmuDeck Import tool" \
|
|
--width=250 \
|
|
--ok-label="Bye" \
|
|
--text="${text}"
|
|
exit
|
|
fi
|
|
fi
|
|
|
|
checkSpace "$origin/EmuDeck/saves/" "$emulationPath"
|
|
|
|
for entry in "$origin/EmuDeck/saves/"*
|
|
do
|
|
rsync -rav --ignore-existing --progress "$entry" "$emulationPath/saves/" | awk -f $emudeckBackend/rsync.awk | zenity --progress --text="Importing $entry to $emulationPath/saves/" --title="Importing $entry..." --width=400 --percentage=0 --auto-close
|
|
done
|
|
|
|
|
|
size=0;
|
|
size=$((size + $(du -sb "$origin/EmuDeck/saves/" | cut -f1)))
|
|
if [ "$size" -gt 4096 ]; then
|
|
if [ -d "$origin/EmuDeck/storage" ]; then
|
|
text="$(printf "<b>Storage folder found in your drive!</b>\nLet's import that one too")"
|
|
zenity --question \
|
|
--title="EmuDeck Import tool" \
|
|
--width=450 \
|
|
--cancel-label="Exit" \
|
|
--ok-label="Import my storage" \
|
|
--text="${text}" 2>/dev/null
|
|
ans=$?
|
|
if [ $ans -eq 0 ]; then
|
|
|
|
checkSpace "$origin/EmuDeck/storage/" "$emulationPath"
|
|
|
|
for entry in "$origin/EmuDeck/storage/"*
|
|
do
|
|
rsync -ravL --ignore-existing --progress "$entry" "$emulationPath/storage/" | awk -f $emudeckBackend/rsync.awk | zenity --progress --text="Importing $entry to $emulationPath/storage/" --title="Importing $entry..." --width=400 --percentage=0 --auto-close
|
|
done
|
|
|
|
else
|
|
echo "User selected no import: Storage"
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ -d "$origin/EmuDeck/bios" ]; then
|
|
text="$(printf "<b>Bios folder found in your drive!</b>\nLet's import that one too")"
|
|
zenity --question \
|
|
--title="EmuDeck Import tool" \
|
|
--width=450 \
|
|
--cancel-label="No" \
|
|
--ok-label="Import my Bios" \
|
|
--text="${text}" 2>/dev/null
|
|
ans=$?
|
|
if [ $ans -eq 0 ]; then
|
|
|
|
checkSpace "$origin/EmuDeck/bios/" "$emulationPath"
|
|
|
|
for entry in "$origin/EmuDeck/bios/"*
|
|
do
|
|
rsync -ravL --ignore-existing --progress "$entry" "$emulationPath/bios/" | awk -f $emudeckBackend/rsync.awk | zenity --progress --text="Importing $entry to $emulationPath/bios/" --title="Importing $entry..." --width=400 --percentage=0 --auto-close
|
|
done
|
|
|
|
else
|
|
echo "User selected no import: bios"
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
if [ -d "$origin/EmuDeck/tools/downloaded_media" ]; then
|
|
text="$(printf "<b>ESDE Media folder found in your drive!</b>\nLet's import that one too")"
|
|
zenity --question \
|
|
--title="EmuDeck Import tool" \
|
|
--width=450 \
|
|
--cancel-label="No" \
|
|
--ok-label="Import my ESDE media" \
|
|
--text="${text}" 2>/dev/null
|
|
ans=$?
|
|
if [ $ans -eq 0 ]; then
|
|
|
|
checkSpace "$origin/EmuDeck/tools/downloaded_media/" "$toolsPath"
|
|
|
|
for entry in "$origin/EmuDeck/tools/downloaded_media/"*
|
|
do
|
|
rsync -ravL --ignore-existing --progress "$entry" "$emulationPath/tools/downloaded_media/" | awk -f $HOME/.config/EmuDeck/backend/rsync.awk | zenity --progress --text="Importing $entry to $emulationPath/tools/downloaded_media/" --title="Importing $entry..." --width=400 --percentage=0 --auto-close
|
|
done
|
|
|
|
else
|
|
echo "User selected no import: ESDE media"
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -d "$origin/EmuDeck/roms" ]; then
|
|
text="$(printf "<b>Roms folder found in your drive!</b>\nLet's import that one too")"
|
|
zenity --question \
|
|
--title="EmuDeck Import tool" \
|
|
--width=450 \
|
|
--cancel-label="No" \
|
|
--ok-label="Import my Roms" \
|
|
--text="${text}" 2>/dev/null
|
|
ans=$?
|
|
if [ $ans -eq 0 ]; then
|
|
|
|
checkSpace "$origin/EmuDeck/roms/" "$emulationPath"
|
|
|
|
for entry in "$origin/EmuDeck/roms/"*
|
|
do
|
|
rsync -ravL --ignore-existing --progress "$entry" "$emulationPath/roms/" | awk -f $emudeckBackend/rsync.awk | zenity --progress --text="Importing $entry to $emulationPath/roms/" --title="Importing $entry..." --width=400 --percentage=0 --auto-close
|
|
done
|
|
|
|
else
|
|
echo "User selected no import: Roms"
|
|
fi
|
|
|
|
fi
|
|
|
|
text="$(printf "<b>Success!</b>\nRemember that you need to Open EmuDeck and run Steam Rom Manager in this new device to add EmulationStation or any of your games to Steam")"
|
|
zenity --info \
|
|
--title="EmuDeck Import tool" \
|
|
--width=350 \
|
|
--text="${text}"
|
|
|
|
else
|
|
text="$(printf "<b>The operation failed</b>\nYour saved games might not have been exported.")"
|
|
zenity --error \
|
|
--title="EmuDeck Import tool" \
|
|
--width=250 \
|
|
--ok-label="Bye" \
|
|
--text="${text}"
|
|
|
|
fi
|