2022-10-04 16:21:46 +00:00
#!/bin/bash
2022-10-07 17:46:48 +00:00
# VARIABLES SECTION
2023-03-08 18:35:24 +00:00
source /app/libexec/global.sh
source /app/libexec/functions.sh
2022-10-07 17:46:48 +00:00
# DIALOG SECTION
2022-10-04 16:21:46 +00:00
# Configurator Option Tree
# Welcome
2023-03-08 19:58:19 +00:00
# - Move RetroDECK
2023-03-08 18:35:24 +00:00
# - Change RetroArch Options
# - Enable/Disable Rewind Setting
# - RetroAchivement Login
# - Login prompt
# - Change Standalone Emulator Options (Behind one-time power user warning dialog)
# - Launch RetroArch
# - Launch Citra
# - Launch Dolphin
# - Launch Duckstation
# - Launch MelonDS
# - Launch PCSX2
# - Launch PPSSPP
# - Launch Primehack
# - Launch RPCS3
# - Launch XEMU
# - Launch Yuzu
2023-03-07 15:06:08 +00:00
# - Compress Games
2023-03-08 18:35:24 +00:00
# - Manual single-game selection
2023-03-07 15:06:08 +00:00
# - Troubleshooting Tools
# - Multi-file game check
# - Reset
2023-03-08 18:35:24 +00:00
# - Reset Specific Emulator
# - Reset RetroArch
2022-12-31 16:37:12 +00:00
# - Reset Citra
2022-10-12 20:06:17 +00:00
# - Reset Dolphin
2022-12-31 16:37:12 +00:00
# - Reset Duckstation
2022-10-12 20:06:17 +00:00
# - Reset MelonDS
2022-12-31 16:37:12 +00:00
# - Reset PCSX2
# - Reset PPSSPP
# - Reset Primehack
2022-10-12 20:06:17 +00:00
# - Reset RPCS3
2022-12-09 18:37:02 +00:00
# - Reset Ryujinx
2022-10-12 20:06:17 +00:00
# - Reset XEMU
2022-12-31 16:37:12 +00:00
# - Reset Yuzu
2023-03-08 18:35:24 +00:00
# - Reset All Emulators
2022-10-07 17:46:48 +00:00
# - Reset Tools
# - Reset All
2022-10-04 16:21:46 +00:00
2022-10-07 17:46:48 +00:00
# Code for the menus should be put in reverse order, so functions for sub-menus exists before it is called by the parent menu
2022-10-04 16:21:46 +00:00
2022-10-12 20:06:17 +00:00
# DIALOG TREE FUNCTIONS
2022-10-04 16:21:46 +00:00
2022-10-07 17:46:48 +00:00
configurator_reset_dialog( ) {
2022-10-26 16:51:46 +00:00
choice = $( zenity --list --title= "RetroDECK Configurator Utility - Reset Options" --cancel-label= "Back" \
2023-01-05 16:56:40 +00:00
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width= 1200 --height= 720 \
2022-10-26 16:51:46 +00:00
--column= "Choice" --column= "Action" \
2023-03-08 18:35:24 +00:00
"Reset Specific Emulator" "Reset only one specific emulator to default settings" \
"Reset All Emulators" "Reset all emulators to default settings" \
2022-10-26 16:51:46 +00:00
"Reset Tools" "Reset Tools menu entries" \
"Reset All" "Reset RetroDECK to default settings" )
case $choice in
2023-03-08 18:35:24 +00:00
"Reset Specific Emulator" )
2022-10-26 16:51:46 +00:00
emulator_to_reset = $( zenity --list \
--title "RetroDECK Configurator Utility - Reset Specific Standalone Emulator" --cancel-label= "Back" \
2023-01-05 16:56:40 +00:00
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width= 1200 --height= 720 \
2022-10-26 16:51:46 +00:00
--text= "Which emulator do you want to reset to default?" \
2023-03-08 18:35:24 +00:00
--column= "Emulator" --column= "Action" \
"RetroArch" "Reset RetroArch to default settings" \
"Citra" "Reset Citra to default settings" \
"Dolphin" "Reset Dolphin to default settings" \
"Duckstation" "Reset Duckstation to default settings" \
"MelonDS" "Reset MelonDS to default settings" \
"PCSX2" "Reset PCSX2 to default settings" \
"PPSSPP" "Reset PPSSPP to default settings" \
"Primehack" "Reset Primehack to default settings" \
"RPCS3" "Reset RPCS3 to default settings" \
"XEMU" "Reset XEMU to default settings" \
"Yuzu" "Reset Yuzu to default settings" )
2022-10-07 17:46:48 +00:00
2022-10-26 16:51:46 +00:00
case $emulator_to_reset in
2022-10-07 17:46:48 +00:00
2023-03-08 18:35:24 +00:00
"RetroArch" )
ra_init
configurator_process_complete_dialog " resetting $emulator_to_reset "
; ;
2022-10-07 17:46:48 +00:00
"Citra" )
2022-11-19 20:47:49 +00:00
citra_init
2022-10-26 16:51:46 +00:00
configurator_process_complete_dialog " resetting $emulator_to_reset "
; ;
2022-10-12 20:06:17 +00:00
2022-10-07 17:46:48 +00:00
"Dolphin" )
2022-11-19 20:47:49 +00:00
dolphin_init
2022-10-26 16:51:46 +00:00
configurator_process_complete_dialog " resetting $emulator_to_reset "
; ;
2022-10-12 20:06:17 +00:00
2022-10-07 17:46:48 +00:00
"Duckstation" )
2022-11-19 20:47:49 +00:00
duckstation_init
2022-10-26 16:51:46 +00:00
configurator_process_complete_dialog " resetting $emulator_to_reset "
; ;
2022-10-12 20:06:17 +00:00
2022-10-07 17:46:48 +00:00
"MelonDS" )
2022-11-19 20:47:49 +00:00
melonds_init
2022-10-26 16:51:46 +00:00
configurator_process_complete_dialog " resetting $emulator_to_reset "
; ;
2022-10-12 20:06:17 +00:00
2022-10-26 16:51:46 +00:00
"PCSX2" )
2022-11-19 20:47:49 +00:00
pcsx2_init
2022-10-26 16:51:46 +00:00
configurator_process_complete_dialog " resetting $emulator_to_reset "
; ;
2022-10-12 20:06:17 +00:00
2022-10-07 17:46:48 +00:00
"PPSSPP" )
2022-11-19 20:47:49 +00:00
ppssppsdl_init
2022-10-26 16:51:46 +00:00
configurator_process_complete_dialog " resetting $emulator_to_reset "
; ;
2022-10-12 20:06:17 +00:00
2022-12-31 16:37:12 +00:00
"Primehack" )
primehack_init
configurator_process_complete_dialog " resetting $emulator_to_reset "
; ;
2022-12-09 18:37:02 +00:00
"RPCS3" )
rpcs3_init
2022-12-09 09:10:56 +00:00
configurator_process_complete_dialog " resetting $emulator_to_reset "
; ;
2022-10-07 17:46:48 +00:00
"XEMU" )
2022-11-19 20:47:49 +00:00
xemu_init
2022-10-26 16:51:46 +00:00
configurator_process_complete_dialog " resetting $emulator_to_reset "
; ;
2022-10-12 20:06:17 +00:00
2022-10-07 17:46:48 +00:00
"Yuzu" )
2022-11-19 20:47:49 +00:00
yuzu_init
2022-10-26 16:51:46 +00:00
configurator_process_complete_dialog " resetting $emulator_to_reset "
; ;
2022-10-12 20:06:17 +00:00
2022-10-07 17:46:48 +00:00
"" ) # No selection made or Back button clicked
2022-10-26 16:51:46 +00:00
configurator_reset_dialog
; ;
2022-10-04 16:21:46 +00:00
2022-10-07 17:46:48 +00:00
esac
2022-10-26 16:51:46 +00:00
; ;
2023-03-08 18:35:24 +00:00
"Reset All Emulators" )
ra_init
2022-11-19 20:47:49 +00:00
standalones_init
2023-03-08 18:35:24 +00:00
configurator_process_complete_dialog "resetting all emulators"
2022-10-26 16:51:46 +00:00
; ;
"Reset Tools" )
2022-11-19 20:47:49 +00:00
tools_init
2022-10-26 16:51:46 +00:00
configurator_process_complete_dialog "resetting the tools menu"
; ;
"Reset All" )
zenity --icon-name= net.retrodeck.retrodeck --info --no-wrap \
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator Utility - Reset RetroDECK" \
2023-03-08 18:35:24 +00:00
--text= "You are resetting RetroDECK to its default state.\n\nAfter the process is complete you will need to exit RetroDECK and run it again, where you will go through the initial setup process again."
2022-11-19 20:47:49 +00:00
rm -f " $lockfile "
2022-10-26 16:51:46 +00:00
configurator_process_complete_dialog "resetting RetroDECK"
; ;
"" ) # No selection made or Back button clicked
configurator_welcome_dialog
; ;
esac
}
configurator_retroachivement_dialog( ) {
2022-11-19 20:47:49 +00:00
login = $( zenity --forms --title= "RetroDECK Configurator Utility - RetroArch RetroAchievements Login" --cancel-label= "Back" \
2023-01-05 16:56:40 +00:00
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width= 1200 --height= 720 \
2022-11-19 20:47:49 +00:00
--text= "Enter your RetroAchievements Account details.\n\nBe aware that this tool cannot verify your login details and currently only supports logging in with RetroArch.\nFor registration and more info visit\nhttps://retroachievements.org/\n" \
2022-10-26 16:51:46 +00:00
--separator= "=SEP=" \
--add-entry= "Username" \
--add-password= "Password" )
2022-11-22 03:07:53 +00:00
if [ $? = = 0 ] ; then # OK button clicked
arrIN = ( ${ login //=SEP=/ } )
user = ${ arrIN [0] }
pass = ${ arrIN [1] }
2022-10-26 16:51:46 +00:00
2022-11-22 03:07:53 +00:00
set_setting_value $raconf cheevos_enable true retroarch
set_setting_value $raconf cheevos_username $user retroarch
set_setting_value $raconf cheevos_password $pass retroarch
2022-10-26 16:51:46 +00:00
2022-11-22 03:07:53 +00:00
configurator_process_complete_dialog "logging in to RetroArch RetroAchievements"
else
configurator_welcome_dialog
fi
2022-10-26 16:51:46 +00:00
}
2023-03-08 18:35:24 +00:00
configurator_power_user_warning_dialog( ) {
zenity --title "RetroDECK Configurator Utility - Power User Options" --question --no-wrap --cancel-label= "Back" \
2022-10-26 16:51:46 +00:00
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
2023-03-08 18:35:24 +00:00
--text= "Making manual changes to an emulators configuration may create serious issues,\nand some settings may be overwitten during RetroDECK updates.\n\nSome standalone emulator functions may not work properly outside of Desktop mode.\n\nPlease continue only if you know what you're doing.\n\nDo you want to continue?\n\nClicking Yes will set you as a Power User and you will not see this dialog again."
2022-10-26 16:51:46 +00:00
2022-11-22 03:07:53 +00:00
if [ $? = = 0 ] ; then # OK button clicked
2023-03-08 18:35:24 +00:00
power_user = "true"
set_setting_value $rd_conf "power_user" " $power_user " retrodeck # Store power user variable for future checks
fi
}
configurator_power_user_changes_dialog( ) {
if [ [ $power_user = = "true" ] ] ; then
2022-11-22 03:07:53 +00:00
emulator = $( zenity --list \
--title "RetroDECK Configurator Utility - Power User Options" --cancel-label= "Back" \
2023-01-05 16:56:40 +00:00
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width= 1200 --height= 720 \
2022-11-22 03:07:53 +00:00
--text= "Which emulator do you want to configure?" \
--hide-header \
--column= emulator \
"RetroArch" \
"Citra" \
"Dolphin" \
"Duckstation" \
"MelonDS" \
2023-01-18 19:54:24 +00:00
"PCSX2" \
2022-11-22 03:07:53 +00:00
"PPSSPP" \
2022-12-31 16:37:12 +00:00
"Primehack" \
2022-11-22 03:07:53 +00:00
"RPCS3" \
"XEMU" \
"Yuzu" )
2022-10-26 16:51:46 +00:00
2022-11-22 03:07:53 +00:00
case $emulator in
2022-10-26 16:51:46 +00:00
2022-11-22 03:07:53 +00:00
"RetroArch" )
retroarch
; ;
2022-10-26 16:51:46 +00:00
2022-11-22 03:07:53 +00:00
"Citra" )
citra-qt
; ;
2022-10-26 16:51:46 +00:00
2022-11-22 03:07:53 +00:00
"Dolphin" )
dolphin-emu
; ;
2022-10-26 16:51:46 +00:00
2022-11-22 03:07:53 +00:00
"Duckstation" )
duckstation-qt
; ;
2022-10-26 16:51:46 +00:00
2022-11-22 03:07:53 +00:00
"MelonDS" )
melonDS
; ;
2022-10-26 16:51:46 +00:00
2023-01-18 19:54:24 +00:00
"PCSX2" )
2022-11-22 03:07:53 +00:00
pcsx2-qt
; ;
2022-10-26 16:51:46 +00:00
2022-11-22 03:07:53 +00:00
"PPSSPP" )
PPSSPPSDL
; ;
2022-10-26 16:51:46 +00:00
2022-12-31 16:37:12 +00:00
"Primehack" )
primehack-wrapper
; ;
2022-11-22 03:07:53 +00:00
"RPCS3" )
rpcs3
; ;
2022-10-26 16:51:46 +00:00
2022-11-22 03:07:53 +00:00
"XEMU" )
xemu
2022-10-26 16:51:46 +00:00
; ;
2022-11-22 03:07:53 +00:00
"Yuzu" )
yuzu
; ;
2022-10-26 16:51:46 +00:00
2022-11-22 03:07:53 +00:00
"" ) # No selection made or Back button clicked
2023-03-08 18:35:24 +00:00
configurator_welcome_dialog
2022-11-22 03:07:53 +00:00
; ;
esac
else
2023-03-08 18:35:24 +00:00
configurator_power_user_warning_dialog
if [ [ $power_user = = "true" ] ] ; then
configurator_power_user_changes_dialog
else
configurator_welcome_dialog
fi
2022-11-22 03:07:53 +00:00
fi
2022-10-04 16:21:46 +00:00
}
2022-10-07 20:28:36 +00:00
configurator_retroarch_rewind_dialog( ) {
2022-10-26 16:51:46 +00:00
if [ [ $( get_setting_value $raconf rewind_enable retroarch) = = "true" ] ] ; then
zenity --question \
--no-wrap --window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator - Rewind" \
--text= "Rewind is currently enabled. Do you want to disable it?."
if [ $? = = 0 ]
then
2022-11-22 03:07:53 +00:00
set_setting_value $raconf "rewind_enable" "false" retroarch
configurator_process_complete_dialog "disabling Rewind"
2022-10-07 20:28:36 +00:00
else
2023-03-08 18:35:24 +00:00
configurator_retroarch_options_dialog
2022-10-07 17:46:48 +00:00
fi
2022-10-26 16:51:46 +00:00
else
zenity --question \
--no-wrap --window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator - Rewind" \
--text= "Rewind is currently disabled, do you want to enable it?\n\nNOTE:\nThis may impact performance expecially on the latest systems."
if [ $? = = 0 ]
then
2022-11-22 03:07:53 +00:00
set_setting_value $raconf "rewind_enable" "true" retroarch
configurator_process_complete_dialog "enabling Rewind"
2022-10-26 16:51:46 +00:00
else
2023-03-08 18:35:24 +00:00
configurator_retroarch_options_dialog
2022-10-26 16:51:46 +00:00
fi
fi
2022-10-07 17:46:48 +00:00
}
2022-10-07 20:28:36 +00:00
configurator_retroarch_options_dialog( ) {
2022-10-26 16:51:46 +00:00
choice = $( zenity --list --title= "RetroDECK Configurator Utility - RetroArch Options" --cancel-label= "Back" \
2023-01-05 16:56:40 +00:00
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width= 1200 --height= 720 \
2022-10-26 16:51:46 +00:00
--column= "Choice" --column= "Action" \
2023-03-08 18:35:24 +00:00
"Change Rewind Setting" "Enable or disable the Rewind function in RetroArch." \
"Log in to RetroAchivements" "Log into the RetroAchievements service in RetroArch." )
2022-10-07 20:28:36 +00:00
2022-10-26 16:51:46 +00:00
case $choice in
2022-10-07 20:28:36 +00:00
2022-10-26 16:51:46 +00:00
"Change Rewind Setting" )
configurator_retroarch_rewind_dialog
; ;
2022-10-07 20:28:36 +00:00
2023-03-08 18:35:24 +00:00
"Log in to RetroAchivements" )
configurator_retroachivement_dialog
2022-10-26 16:51:46 +00:00
; ;
2022-10-07 17:46:48 +00:00
2022-10-26 16:51:46 +00:00
"" ) # No selection made or Back button clicked
2023-03-08 18:35:24 +00:00
configurator_options_dialog
2022-10-26 16:51:46 +00:00
; ;
2022-10-12 20:06:17 +00:00
2022-10-26 16:51:46 +00:00
esac
2022-10-07 17:46:48 +00:00
}
2023-03-07 15:06:08 +00:00
configurator_compress_single_game_dialog( ) {
file_to_compress = $( file_browse "Game to compress" )
if [ [ ! -z $file_to_compress ] ] ; then
2023-03-08 15:33:38 +00:00
if [ [ $( validate_for_chd $file_to_compress ) = = "true" ] ] ; then
(
filename_no_path = $( basename $file_to_compress )
filename_no_extension = ${ filename_no_path %.* }
compress_to_chd $( dirname $( realpath $file_to_compress ) ) /$( basename $file_to_compress ) $( dirname $( realpath $file_to_compress ) ) /$filename_no_extension
) |
zenity --icon-name= net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator Utility - Compression in Progress" \
--text= " Compressing game $filename_no_path , please wait. "
2023-03-07 15:06:08 +00:00
else
configurator_generic_dialog "File type not recognized. Supported file types are .cue, .gdi and .iso"
configurator_compress_single_game_dialog
fi
else
configurator_generic_dialog "No file selected, returning to main menu"
configurator_welcome_dialog
fi
}
configurator_compress_games_dialog( ) {
# This is currently a placeholder for a dialog where you can compress a single game or multiple at once. Currently only the single game option is available, so is launched by default.
2023-03-07 17:15:24 +00:00
configurator_generic_dialog "This utility will compress a single game into .CHD format.\n\nPlease select the game to be compressed in the next dialog: supported file types are .cue, .iso and .gdi\n\nThe original game files will be untouched and will need to be removed manually."
2023-03-07 15:06:08 +00:00
configurator_compress_single_game_dialog
}
2023-03-07 19:55:24 +00:00
configurator_check_multifile_game_structure( ) {
local folder_games = ( $( find $roms_folder -maxdepth 2 -mindepth 2 -type d ! -name "*.m3u" ! -name "*.ps3" ) )
if [ [ ${# folder_games [@] } -gt 1 ] ] ; then
echo " $( find $roms_folder -maxdepth 2 -mindepth 2 -type d ! -name "*.m3u" ! -name "*.ps3" ) " > $logs_folder /multi_file_games_" $( date +"%Y_%m_%d_%I_%M_%p" ) .log "
zenity --icon-name= net.retrodeck.retrodeck --info --no-wrap \
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK" \
--text= " The following games were found to have the incorrect folder structure:\n\n $( find $roms_folder -maxdepth 2 -mindepth 2 -type d ! -name "*.m3u" ! -name "*.ps3" ) \n\nIncorrect folder structure can result in failure to launch games or saves being in the incorrect location.\n\nPlease see the RetroDECK wiki for more details!\n\nYou can find this list of games in ~/retrodeck/.logs "
else
configurator_generic_dialog "No incorrect multi-file game folder structures found."
fi
configurator_troubleshooting_tools_dialog
}
2023-03-08 22:15:45 +00:00
configurator_check_bios_files( ) {
bios_checked_list = ( )
while IFS = "^" read -r bios_file bios_hash bios_system bios_desc
do
bios_file_found = "No"
bios_hash_matched = "No"
if [ [ -f " $bios_folder / $bios_file " ] ] ; then
bios_file_found = "Yes"
if [ [ $( md5sum " $bios_folder / $bios_file " | awk '{ print $1 }' ) = = " $bios_hash " ] ] ; then
bios_hash_matched = "Yes"
fi
fi
bios_checked_list = ( " ${ bios_checked_list [@] } " " $bios_file " " $bios_system " " $bios_file_found " " $bios_hash_matched " " $bios_desc " )
done < $bios_checklist
zenity --list --title= "RetroDECK Configurator Utility - Verify BIOS Files" --cancel-label= "Back" \
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width= 1200 --height= 720 \
--column "BIOS File Name" \
--column "System" \
--column "BIOS File Found" \
--column "BIOS Hash Match" \
--column "BIOS File Description" \
" ${ bios_checked_list [@] } "
configurator_troubleshooting_tools_dialog
}
2023-03-07 15:06:08 +00:00
configurator_troubleshooting_tools_dialog( ) {
2023-03-07 19:55:24 +00:00
choice = $( zenity --list --title= "RetroDECK Configurator Utility - Change Options" --cancel-label= "Back" \
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width= 1200 --height= 720 \
--column= "Choice" --column= "Action" \
2023-03-08 22:15:45 +00:00
"Multi-file game structure check" "Verify the proper structure of multi-file or multi-disc games" \
"BIOS file check" "Verify the existence and file integrity of common BIOS files" )
2023-03-07 15:06:08 +00:00
2023-03-07 19:55:24 +00:00
case $choice in
2023-03-07 15:06:08 +00:00
2023-03-07 19:55:24 +00:00
"Multi-file game structure check" )
configurator_check_multifile_game_structure
; ;
2023-03-08 22:15:45 +00:00
"BIOS file check" )
configurator_check_bios_files
; ;
2023-03-07 19:55:24 +00:00
"" ) # No selection made or Back button clicked
configurator_welcome_dialog
; ;
esac
2023-03-07 15:06:08 +00:00
}
2022-10-10 21:01:19 +00:00
configurator_move_dialog( ) {
2022-10-26 16:59:36 +00:00
if [ [ -d $rdhome ] ] ; then
destination = $( configurator_destination_choice_dialog "RetroDECK Data" "Please choose a destination for the RetroDECK data folder." )
case $destination in
2022-11-20 21:09:13 +00:00
2022-10-26 16:59:36 +00:00
"Back" )
2022-10-26 16:51:46 +00:00
configurator_move_dialog
2022-10-26 16:59:36 +00:00
; ;
2022-11-20 21:09:13 +00:00
2022-10-26 16:59:36 +00:00
"Internal Storage" )
2022-11-20 21:09:13 +00:00
if [ [ ! -L " $HOME /retrodeck " && -d " $HOME /retrodeck " ] ] ; then
2022-10-26 16:59:36 +00:00
configurator_generic_dialog "The RetroDECK data folder is already at that location, please pick a new one."
2022-10-26 16:51:46 +00:00
configurator_move_dialog
2022-10-26 16:59:36 +00:00
else
configurator_generic_dialog " Moving RetroDECK data folder to $destination "
2022-11-20 21:09:13 +00:00
unlink $HOME /retrodeck # Remove symlink for $rdhome
move $rdhome " $HOME "
if [ [ ! -d $rdhome && -d $HOME /retrodeck ] ] ; then # If the move succeeded
rdhome = " $HOME /retrodeck "
roms_folder = " $rdhome /roms "
saves_folder = " $rdhome /saves "
states_folder = " $rdhome /states "
bios_folder = " $rdhome /bios "
media_folder = " $rdhome /downloaded_media "
themes_folder = " $rdhome /themes "
2022-11-21 01:05:11 +00:00
emulators_post_move
2022-11-20 21:09:13 +00:00
conf_write
configurator_process_complete_dialog "moving the RetroDECK data directory to internal storage"
else
configurator_generic_dialog "The moving process was not completed, please try again."
fi
2022-10-26 16:59:36 +00:00
fi
; ;
2022-11-20 21:09:13 +00:00
2022-10-26 16:59:36 +00:00
"SD Card" )
2022-11-21 19:02:19 +00:00
if [ [ -L " $HOME /retrodeck " && -d " $sdcard /retrodeck " && " $rdhome " = = " $sdcard /retrodeck " ] ] ; then
2022-11-21 01:05:11 +00:00
configurator_generic_dialog "The RetroDECK data folder is already configured to that location, please pick a new one."
2022-10-26 16:51:46 +00:00
configurator_move_dialog
2022-10-26 16:59:36 +00:00
else
if [ [ ! -w $sdcard ] ] ; then
configurator_generic_dialog "The SD card was found but is not writable\nThis can happen with cards formatted on PC or for other reasons.\nPlease format the SD card through the Steam Deck's Game Mode and try the moving process again."
configurator_welcome_dialog
2022-10-26 16:51:46 +00:00
else
2023-01-19 16:50:23 +00:00
if [ [ $( verify_space $rdhome $sdcard ) = = "true" ] ] ; then
2022-11-20 21:09:13 +00:00
configurator_generic_dialog " Moving RetroDECK data folder to $destination "
2022-11-21 01:05:11 +00:00
if [ [ -L " $HOME /retrodeck/roms " ] ] ; then # Check for ROMs symlink user may have created
unlink " $HOME /retrodeck/roms "
2022-11-20 21:09:13 +00:00
fi
2023-01-05 16:56:40 +00:00
unlink $HOME /retrodeck # Remove symlink for $rdhome
2022-11-20 21:09:13 +00:00
(
2022-11-21 01:05:11 +00:00
dir_prep " $sdcard /retrodeck " " $rdhome "
2022-11-20 21:09:13 +00:00
) |
zenity --icon-name= net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator Utility - Move in Progress" \
--text= " Moving directory $rdhome to new location of $sdcard /retrodeck, please wait. "
2022-11-21 19:02:19 +00:00
if [ [ -L $rdhome && ! $rdhome = = " $HOME /retrodeck " ] ] ; then # Clean up extraneus symlinks from previous moves
unlink $rdhome
fi
if [ [ ! -L " $HOME /retrodeck " ] ] ; then # Always link back to original directory
2022-12-31 15:29:13 +00:00
ln -svf " $sdcard /retrodeck " " $HOME "
2022-11-21 19:02:19 +00:00
fi
2022-11-20 21:09:13 +00:00
rdhome = " $sdcard /retrodeck "
roms_folder = " $rdhome /roms "
saves_folder = " $rdhome /saves "
states_folder = " $rdhome /states "
bios_folder = " $rdhome /bios "
media_folder = " $rdhome /downloaded_media "
themes_folder = " $rdhome /themes "
2022-11-21 01:05:11 +00:00
emulators_post_move
2022-11-20 21:09:13 +00:00
conf_write
configurator_process_complete_dialog "moving the RetroDECK data directory to SD card"
else
zenity --icon-name= net.retrodeck.retrodeck --error --no-wrap \
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator Utility - Move Directories" \
--text= "The destination directory you have selected does not have enough free space for the files you are trying to move.\n\nPlease select a new destination or free up some space."
fi
fi
fi
; ;
"Custom Location" )
configurator_generic_dialog "Select the root folder you would like to store the RetroDECK data folder in.\n\nA new folder \"retrodeck\" will be created in the destination chosen."
2023-03-07 15:06:08 +00:00
custom_dest = $( directory_browse "RetroDECK directory location" )
2022-11-20 21:09:13 +00:00
if [ [ ! -w $custom_dest ] ] ; then
2023-01-10 16:42:55 +00:00
configurator_generic_dialog "The destination was found but is not writable\n\nThis can happen if RetroDECK does not have permission to write to this location.\n\nThis can typically be solved through the utility Flatseal, please make the needed changes and try the moving process again."
2022-11-20 21:09:13 +00:00
configurator_welcome_dialog
else
if [ [ $( verify_space $rdhome $custom_dest ) ] ] ; then
configurator_generic_dialog " Moving RetroDECK data folder to $custom_dest /retrodeck "
2022-10-26 16:59:36 +00:00
if [ [ -L $rdhome /roms ] ] ; then # Check for ROMs symlink user may have created
2022-11-20 21:09:13 +00:00
unlink $rdhome /roms
2022-10-26 16:59:36 +00:00
fi
2023-01-10 16:41:09 +00:00
2023-01-05 16:56:40 +00:00
unlink $HOME /retrodeck # Remove symlink for $rdhome if the previous location was not internal
2022-11-20 21:09:13 +00:00
(
2022-11-21 01:05:11 +00:00
dir_prep " $custom_dest /retrodeck " " $rdhome "
2022-11-20 21:09:13 +00:00
) |
zenity --icon-name= net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator Utility - Move in Progress" \
--text= " Moving directory $rdhome to new location of $custom_dest /retrodeck, please wait. "
2022-11-21 19:02:19 +00:00
if [ [ ! -L " $HOME /retrodeck " ] ] ; then
2022-12-31 15:29:13 +00:00
ln -svf " $custom_dest /retrodeck " " $HOME "
2022-11-21 19:02:19 +00:00
fi
2023-01-10 16:41:09 +00:00
if [ [ -L $rdhome && ! $rdhome = = " $HOME /retrodeck " ] ] ; then # Clean up extraneus symlinks from previous moves
unlink $rdhome
fi
2022-11-20 21:09:13 +00:00
rdhome = " $custom_dest /retrodeck "
roms_folder = " $rdhome /roms "
saves_folder = " $rdhome /saves "
states_folder = " $rdhome /states "
bios_folder = " $rdhome /bios "
media_folder = " $rdhome /downloaded_media "
themes_folder = " $rdhome /themes "
2022-11-21 01:05:11 +00:00
emulators_post_move
2022-11-19 20:47:49 +00:00
conf_write
2022-10-26 16:59:36 +00:00
configurator_process_complete_dialog "moving the RetroDECK data directory to SD card"
2022-11-20 21:09:13 +00:00
else
zenity --icon-name= net.retrodeck.retrodeck --error --no-wrap \
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator Utility - Move Directories" \
--text= "The destination directory you have selected does not have enough free space for the files you are trying to move.\n\nPlease select a new destination or free up some space."
2022-10-26 16:51:46 +00:00
fi
2022-10-26 16:59:36 +00:00
fi
; ;
2022-10-10 21:01:19 +00:00
2022-10-26 16:59:36 +00:00
esac
else
configurator_generic_dialog "The RetroDECK data folder was not found at the expected location.\n\nThis may have happened if the folder was moved manually.\n\nPlease select the current location of the RetroDECK data folder."
2023-03-07 15:06:08 +00:00
rdhome = $( directory_browse "RetroDECK directory location" )
2022-11-20 21:09:13 +00:00
roms_folder = " $rdhome /roms "
saves_folder = " $rdhome /saves "
states_folder = " $rdhome /states "
bios_folder = " $rdhome /bios "
media_folder = " $rdhome /downloaded_media "
themes_folder = " $rdhome /themes "
emulator_post_move
2022-11-19 20:47:49 +00:00
conf_write
2022-10-26 16:59:36 +00:00
configurator_generic_dialog " RetroDECK data folder now configured at $rdhome . Please start the moving process again. "
configurator_move_dialog
fi
2022-10-07 17:46:48 +00:00
}
configurator_welcome_dialog( ) {
2022-10-26 16:51:46 +00:00
# Clear the variables
source =
destination =
action =
setting =
setting_value =
choice = $( zenity --list --title= "RetroDECK Configurator Utility" --cancel-label= "Quit" \
2023-01-05 16:56:40 +00:00
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width= 1200 --height= 720 \
2022-10-26 16:51:46 +00:00
--column= "Choice" --column= "Action" \
2023-03-08 18:35:24 +00:00
"Move Files" "Move files between internal/SD card or to custom locations." \
"Change RetroArch Options" "Change RetroArch presets, log into RetroAchievements etc." \
"Change Standalone Emulator Options" "Run emulators standalone to make advanced config changes." \
"Compress Games" "Compress games to CHD format for systems that support it." \
"Troubleshooting Tools" "Run RetroDECK troubleshooting tools for common issues." \
"Reset" "Reset specific parts or all of RetroDECK." )
2022-10-26 16:51:46 +00:00
case $choice in
"Move Files" )
2022-11-21 01:05:11 +00:00
configurator_generic_dialog "This option will move the RetroDECK data folder (ROMs, saves, BIOS etc.) to a new location.\n\nPlease choose where to move the RetroDECK data folder."
2022-10-26 16:51:46 +00:00
configurator_move_dialog
; ;
2023-03-08 18:35:24 +00:00
"Change RetroArch Options" )
configurator_retroarch_options_dialog
2022-10-26 16:51:46 +00:00
; ;
2023-03-08 18:35:24 +00:00
"Change Standalone Emulator Options" )
configurator_power_user_changes_dialog
2022-10-26 16:51:46 +00:00
; ;
2023-03-07 15:06:08 +00:00
"Compress Games" )
configurator_compress_games_dialog
; ;
"Troubleshooting Tools" )
configurator_troubleshooting_tools_dialog
; ;
2022-10-26 16:51:46 +00:00
"Reset" )
configurator_reset_dialog
; ;
esac
2022-10-07 17:46:48 +00:00
}
# START THE CONFIGURATOR
2022-10-04 16:21:46 +00:00
2022-10-07 17:46:48 +00:00
configurator_welcome_dialog