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-16 20:56:24 +00:00
# - RetroArch Presets
# - Change Rewind Setting
# - Enable/Disable Rewind
2023-03-08 18:35:24 +00:00
# - RetroAchivement Login
# - Login prompt
2023-03-16 20:56:24 +00:00
# - Emulator Options (Behind one-time power user warning dialog)
2023-03-08 18:35:24 +00:00
# - Launch RetroArch
# - Launch Citra
# - Launch Dolphin
# - Launch Duckstation
# - Launch MelonDS
# - Launch PCSX2
# - Launch PPSSPP
# - Launch Primehack
# - Launch RPCS3
# - Launch XEMU
# - Launch Yuzu
2023-03-16 20:56:24 +00:00
# - Tools and Troubleshooting
2023-03-24 15:24:28 +00:00
# - Move RetroDECK
2023-03-07 15:06:08 +00:00
# - Multi-file game check
2023-03-16 20:56:24 +00:00
# - Basic BIOS file check
# - Advanced BIOS file check
# - Compress Games
# - Manual single-game selection
# - Multi-file compression (CHD)
2023-03-07 15:06:08 +00:00
# - 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
# - Reset XEMU
2022-12-31 16:37:12 +00:00
# - Reset Yuzu
2023-03-08 18:35:24 +00:00
# - Reset All Emulators
2023-03-17 14:48:48 +00:00
# - Reset RetroDECK
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" \
2023-03-17 14:48:48 +00:00
"Reset RetroDECK" "Reset RetroDECK to default settings" )
2022-10-26 16:51:46 +00:00
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" )
2023-03-23 16:38:19 +00:00
if [ [ $( configurator_reset_confirmation_dialog "RetroArch" "Are you sure you want to reset the RetroArch emulator to default settings?\n\nThis process cannot be undone." ) = = "true" ] ] ; then
2023-03-23 18:19:18 +00:00
if [ [ check_network_connectivity = = "true" ] ] ; then
ra_init
configurator_process_complete_dialog " resetting $emulator_to_reset "
else
configurator_generic_dialog "You do not appear to be connected to a network with internet access.\n\nThe RetroArch reset process requires some files from the internet to function properly.\n\nPlease retry this process once a network connection is available."
configurator_reset_dialog
fi
2023-03-12 18:21:30 +00:00
else
2023-03-23 16:38:19 +00:00
configurator_generic_dialog "Reset process cancelled."
2023-03-12 18:21:30 +00:00
configurator_reset_dialog
fi
2023-03-08 18:35:24 +00:00
; ;
2022-10-07 17:46:48 +00:00
"Citra" )
2023-03-23 16:38:19 +00:00
if [ [ $( configurator_reset_confirmation_dialog "Citra" "Are you sure you want to reset the Citra emulator to default settings?\n\nThis process cannot be undone." ) = = "true" ] ] ; then
citra_init
configurator_process_complete_dialog " resetting $emulator_to_reset "
else
configurator_generic_dialog "Reset process cancelled."
configurator_reset_dialog
fi
2022-10-26 16:51:46 +00:00
; ;
2022-10-12 20:06:17 +00:00
2022-10-07 17:46:48 +00:00
"Dolphin" )
2023-03-23 16:38:19 +00:00
if [ [ $( configurator_reset_confirmation_dialog "Dolphin" "Are you sure you want to reset the Dolphin emulator to default settings?\n\nThis process cannot be undone." ) = = "true" ] ] ; then
dolphin_init
configurator_process_complete_dialog " resetting $emulator_to_reset "
else
configurator_generic_dialog "Reset process cancelled."
configurator_reset_dialog
fi
2022-10-26 16:51:46 +00:00
; ;
2022-10-12 20:06:17 +00:00
2022-10-07 17:46:48 +00:00
"Duckstation" )
2023-03-23 16:38:19 +00:00
if [ [ $( configurator_reset_confirmation_dialog "Duckstation" "Are you sure you want to reset the Duckstation emulator to default settings?\n\nThis process cannot be undone." ) = = "true" ] ] ; then
duckstation_init
configurator_process_complete_dialog " resetting $emulator_to_reset "
else
configurator_generic_dialog "Reset process cancelled."
configurator_reset_dialog
fi
2022-10-26 16:51:46 +00:00
; ;
2022-10-12 20:06:17 +00:00
2022-10-07 17:46:48 +00:00
"MelonDS" )
2023-03-23 16:38:19 +00:00
if [ [ $( configurator_reset_confirmation_dialog "MelonDS" "Are you sure you want to reset the MelonDS emulator to default settings?\n\nThis process cannot be undone." ) = = "true" ] ] ; then
melonds_init
configurator_process_complete_dialog " resetting $emulator_to_reset "
else
configurator_generic_dialog "Reset process cancelled."
configurator_reset_dialog
fi
2022-10-26 16:51:46 +00:00
; ;
2022-10-12 20:06:17 +00:00
2022-10-26 16:51:46 +00:00
"PCSX2" )
2023-03-23 16:38:19 +00:00
if [ [ $( configurator_reset_confirmation_dialog "PCSX2" "Are you sure you want to reset the PCSX2 emulator to default settings?\n\nThis process cannot be undone." ) = = "true" ] ] ; then
pcsx2_init
configurator_process_complete_dialog " resetting $emulator_to_reset "
else
configurator_generic_dialog "Reset process cancelled."
configurator_reset_dialog
fi
2022-10-26 16:51:46 +00:00
; ;
2022-10-12 20:06:17 +00:00
2022-10-07 17:46:48 +00:00
"PPSSPP" )
2023-03-23 16:38:19 +00:00
if [ [ $( configurator_reset_confirmation_dialog "PPSSPP" "Are you sure you want to reset the PPSSPP emulator to default settings?\n\nThis process cannot be undone." ) = = "true" ] ] ; then
ppssppsdl_init
configurator_process_complete_dialog " resetting $emulator_to_reset "
else
configurator_generic_dialog "Reset process cancelled."
configurator_reset_dialog
fi
2022-10-26 16:51:46 +00:00
; ;
2022-10-12 20:06:17 +00:00
2022-12-31 16:37:12 +00:00
"Primehack" )
2023-03-23 16:38:19 +00:00
if [ [ $( configurator_reset_confirmation_dialog "Primehack" "Are you sure you want to reset the Primehack emulator to default settings?\n\nThis process cannot be undone." ) = = "true" ] ] ; then
primehack_init
configurator_process_complete_dialog " resetting $emulator_to_reset "
else
configurator_generic_dialog "Reset process cancelled."
configurator_reset_dialog
fi
2022-12-31 16:37:12 +00:00
; ;
2022-12-09 18:37:02 +00:00
"RPCS3" )
2023-03-23 16:38:19 +00:00
if [ [ $( configurator_reset_confirmation_dialog "RPCS3" "Are you sure you want to reset the RPCS3 emulator to default settings?\n\nThis process cannot be undone." ) = = "true" ] ] ; then
rpcs3_init
configurator_process_complete_dialog " resetting $emulator_to_reset "
else
configurator_generic_dialog "Reset process cancelled."
configurator_reset_dialog
fi
2022-12-09 09:10:56 +00:00
; ;
2022-10-07 17:46:48 +00:00
"XEMU" )
2023-03-23 16:38:19 +00:00
if [ [ $( configurator_reset_confirmation_dialog "XEMU" "Are you sure you want to reset the XEMU emulator to default settings?\n\nThis process cannot be undone." ) = = "true" ] ] ; then
2023-03-23 18:19:18 +00:00
if [ [ check_network_connectivity = = "true" ] ] ; then
xemu_init
configurator_process_complete_dialog " resetting $emulator_to_reset "
else
configurator_generic_dialog "You do not appear to be connected to a network with internet access.\n\nThe Xemu reset process requires some files from the internet to function properly.\n\nPlease retry this process once a network connection is available."
configurator_reset_dialog
fi
2023-03-12 18:21:30 +00:00
else
2023-03-23 16:38:19 +00:00
configurator_generic_dialog "Reset process cancelled."
2023-03-12 18:21:30 +00:00
configurator_reset_dialog
fi
2022-10-26 16:51:46 +00:00
; ;
2022-10-12 20:06:17 +00:00
2022-10-07 17:46:48 +00:00
"Yuzu" )
2023-03-23 16:38:19 +00:00
if [ [ $( configurator_reset_confirmation_dialog "Yuzu" "Are you sure you want to reset the Yuzu emulator to default settings?\n\nThis process cannot be undone." ) = = "true" ] ] ; then
yuzu_init
configurator_process_complete_dialog " resetting $emulator_to_reset "
else
configurator_generic_dialog "Reset process cancelled."
configurator_reset_dialog
fi
2022-10-26 16:51:46 +00:00
; ;
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" )
2023-03-23 16:38:19 +00:00
if [ [ $( configurator_reset_confirmation_dialog "all emulators" "Are you sure you want to reset all emulators to default settings?\n\nThis process cannot be undone." ) = = "true" ] ] ; then
2023-03-23 18:19:18 +00:00
if [ [ check_network_connectivity = = "true" ] ] ; then
ra_init
standalones_init
configurator_process_complete_dialog "resetting all emulators"
else
configurator_generic_dialog "You do not appear to be connected to a network with internet access.\n\nThe all-emulator reset process requires some files from the internet to function properly.\n\nPlease retry this process once a network connection is available."
configurator_reset_dialog
fi
2023-03-12 18:21:30 +00:00
else
2023-03-23 16:38:19 +00:00
configurator_generic_dialog "Reset process cancelled."
2023-03-12 18:21:30 +00:00
configurator_reset_dialog
fi
2022-10-26 16:51:46 +00:00
; ;
2023-03-17 14:48:48 +00:00
"Reset RetroDECK" )
2023-03-23 16:38:19 +00:00
if [ [ $( configurator_reset_confirmation_dialog "RetroDECK" "Are you sure you want to reset RetroDECK entirely?\n\nThis process cannot be undone." ) = = "true" ] ] ; then
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" \
--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."
rm -f " $lockfile "
rm -f " $rd_conf "
configurator_process_complete_dialog "resetting RetroDECK"
else
configurator_generic_dialog "Reset process cancelled."
configurator_reset_dialog
fi
2022-10-26 16:51:46 +00:00
; ;
"" ) # 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( ) {
2023-03-13 14:09:01 +00:00
if [ [ $power_user_warning = = "true" ] ] ; then
choice = $( zenity --icon-name= net.retrodeck.retrodeck --info --no-wrap --ok-label= "Yes" --extra-button= "No" --extra-button= "Never show this again" \
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Desktop Mode Warning" \
--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?" )
fi
rc = $? # Capture return code, as "Yes" button has no text value
if [ [ $rc = = "0" ] ] ; then # If user clicked "Yes"
configurator_power_user_changes_dialog
else # If any button other than "Yes" was clicked
if [ [ $choice = = "No" ] ] ; then
configurator_welcome_dialog
elif [ [ $choice = = "Never show this again" ] ] ; then
set_setting_value $rd_conf "power_user_warning" "false" retrodeck # Store desktop mode warning variable for future checks
2023-03-27 19:52:58 +00:00
source $rd_conf
2023-03-13 14:09:01 +00:00
configurator_power_user_changes_dialog
fi
2023-03-08 18:35:24 +00:00
fi
}
configurator_power_user_changes_dialog( ) {
2023-03-13 14:09:01 +00:00
emulator = $( zenity --list \
2023-03-16 20:56:24 +00:00
--title "RetroDECK Configurator Utility - Emulator Options" --cancel-label= "Back" \
2023-03-13 14:09:01 +00:00
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width= 1200 --height= 720 \
2023-03-16 20:56:24 +00:00
--text= "Which emulator do you want to launch?" \
2023-03-13 14:09:01 +00:00
--hide-header \
--column= emulator \
"RetroArch" \
"Citra" \
"Dolphin" \
"Duckstation" \
"MelonDS" \
"PCSX2" \
"PPSSPP" \
"Primehack" \
"RPCS3" \
"XEMU" \
"Yuzu" )
case $emulator in
"RetroArch" )
retroarch
; ;
2022-10-26 16:51:46 +00:00
2023-03-13 14:09:01 +00:00
"Citra" )
citra-qt
; ;
2022-10-26 16:51:46 +00:00
2023-03-13 14:09:01 +00:00
"Dolphin" )
dolphin-emu
; ;
2022-10-26 16:51:46 +00:00
2023-03-13 14:09:01 +00:00
"Duckstation" )
duckstation-qt
; ;
2022-10-26 16:51:46 +00:00
2023-03-13 14:09:01 +00:00
"MelonDS" )
melonDS
; ;
2022-10-26 16:51:46 +00:00
2023-03-13 14:09:01 +00:00
"PCSX2" )
pcsx2-qt
; ;
2022-10-26 16:51:46 +00:00
2023-03-13 14:09:01 +00:00
"PPSSPP" )
PPSSPPSDL
; ;
2022-10-26 16:51:46 +00:00
2023-03-13 14:09:01 +00:00
"Primehack" )
primehack-wrapper
; ;
2022-12-31 16:37:12 +00:00
2023-03-13 14:09:01 +00:00
"RPCS3" )
rpcs3
; ;
2022-10-26 16:51:46 +00:00
2023-03-13 14:09:01 +00:00
"XEMU" )
xemu
; ;
2022-10-26 16:51:46 +00:00
2023-03-13 14:09:01 +00:00
"Yuzu" )
yuzu
; ;
2022-10-26 16:51:46 +00:00
2023-03-13 14:09:01 +00:00
"" ) # No selection made or Back button clicked
configurator_welcome_dialog
; ;
2022-11-22 03:07:53 +00:00
2023-03-13 14:09:01 +00:00
esac
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" \
2023-03-17 13:13:08 +00:00
--title "RetroDECK Configurator - RetroArch Rewind" \
2022-10-26 16:51:46 +00:00
--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" \
2023-03-17 13:13:08 +00:00
--title "RetroDECK Configurator - RetroArch Rewind" \
2023-03-16 15:25:34 +00:00
--text= "Rewind is currently disabled, do you want to enable it?\n\nNOTE:\nThis may impact performance on some more demanding systems."
2022-10-26 16:51:46 +00:00
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." \
2023-03-16 15:25:34 +00:00
"RetroAchievements Login" "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-16 15:25:34 +00:00
"RetroAchievements Login" )
2023-03-08 18:35:24 +00:00
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-20 18:55:00 +00:00
configurator_welcome_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( ) {
2023-03-15 21:19:04 +00:00
local file = $( file_browse "Game to compress" )
if [ [ ! -z " $file " ] ] ; then
2023-03-29 19:51:27 +00:00
local compatible_compression_format = $( find_compatible_compression_format " $file " )
if [ [ ! $compatible_compression_format = = "none" ] ] ; then
2023-03-15 21:19:04 +00:00
local post_compression_cleanup = $( configurator_compression_cleanup_dialog)
2023-03-08 15:33:38 +00:00
(
2023-03-29 19:51:27 +00:00
if [ [ $compatible_compression_format = = "chd" ] ] ; then
if [ [ $( validate_for_chd " $file " ) = = "true" ] ] ; then
echo " # Compressing $( basename " $file " ) to $compatible_compression_format format "
compress_game "chd" " $file "
if [ [ $post_compression_cleanup = = "true" ] ] ; then # Remove file(s) if requested
if [ [ " $file " = = *".cue" ] ] ; then
local cue_bin_files = $( grep -o -P " (?<=FILE \").*(?=\".* $) " " $file " )
local file_path = $( dirname " $( realpath " $file " ) " )
while IFS = read -r line
do
rm -f " $file_path / $line "
done < <( printf '%s\n' " $cue_bin_files " )
rm -f " $file "
else
rm -f " $file "
fi
fi
fi
else
echo " # Compressing $( basename " $file " ) to $compatible_compression_format format "
compress_game " $compatible_compression_format " " $file "
if [ [ $post_compression_cleanup = = "true" ] ] ; then # Remove file(s) if requested
2023-03-15 21:19:04 +00:00
rm -f " $file "
fi
fi
2023-03-08 15:33:38 +00:00
) |
zenity --icon-name= net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \
2023-03-15 21:19:04 +00:00
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator Utility - Compression in Progress"
configurator_generic_dialog "The compression process is complete!"
configurator_compress_games_dialog
2023-03-29 19:51:27 +00:00
2023-03-07 15:06:08 +00:00
else
2023-03-29 19:51:27 +00:00
configurator_generic_dialog "The selected file does not have any compatible compressed format."
2023-03-15 21:19:04 +00:00
configurator_compress_games_dialog
2023-03-07 15:06:08 +00:00
fi
else
configurator_generic_dialog "No file selected, returning to main menu"
configurator_welcome_dialog
fi
}
2023-03-29 19:51:27 +00:00
configurator_compress_some_games_dialog( ) {
# This dialog will display any games it finds to be compressable, from the systems listed under each compression type in compression_targets.cfg
2023-03-15 21:19:04 +00:00
local compressable_games_list = ( )
2023-03-14 19:43:28 +00:00
local all_compressable_games = ( )
2023-03-29 19:51:27 +00:00
local games_to_compress = ( )
if [ [ ! -z " $1 " ] ] ; then
local compression_format = " $1 "
else
local compression_format = "all"
fi
if [ [ $compression_format = = "all" ] ] ; then
local compressable_systems_list = $( cat $compression_targets | sed '/^$/d' | sed '/^\[/d' )
else
local compressable_systems_list = $( sed -n '/\[' " $compression_format " '\]/, /\[/{ /\[' " $compression_format " '\]/! { /\[/! p } }' $compression_targets | sed '/^$/d' )
fi
2023-03-14 19:43:28 +00:00
while IFS = read -r system # Find and validate all games that are able to be compressed with this compression type
do
2023-03-29 19:51:27 +00:00
compression_candidates = $( find " $roms_folder / $system " -type f -not -iname "*.txt" )
if [ [ ! -z $compression_candidates ] ] ; then
while IFS = read -r game
do
local compatible_compression_format = $( find_compatible_compression_format " $game " )
if [ [ $compression_format = = "chd" ] ] ; then
if [ [ $compatible_compression_format = = "chd" ] ] ; then
all_compressable_games = ( " ${ all_compressable_games [@] } " " $game " )
compressable_games_list = ( " ${ compressable_games_list [@] } " "false" " ${ game # $roms_folder } " " $game " )
fi
elif [ [ $compression_format = = "zip" ] ] ; then
if [ [ $compatible_compression_format = = "zip" ] ] ; then
all_compressable_games = ( " ${ all_compressable_games [@] } " " $game " )
compressable_games_list = ( " ${ compressable_games_list [@] } " "false" " ${ game # $roms_folder } " " $game " )
fi
elif [ [ $compression_format = = "rvz" ] ] ; then
if [ [ $compatible_compression_format = = "rvz" ] ] ; then
all_compressable_games = ( " ${ all_compressable_games [@] } " " $game " )
compressable_games_list = ( " ${ compressable_games_list [@] } " "false" " ${ game # $roms_folder } " " $game " )
fi
elif [ [ $compression_format = = "all" ] ] ; then
if [ [ ! $compatible_compression_format = = "none" ] ] ; then
all_compressable_games = ( " ${ all_compressable_games [@] } " " $game " )
compressable_games_list = ( " ${ compressable_games_list [@] } " "false" " ${ game # $roms_folder } " " $game " )
fi
fi
done < <( printf '%s\n' " $compression_candidates " )
2023-03-14 19:43:28 +00:00
fi
done < <( printf '%s\n' " $compressable_systems_list " )
choice = $( zenity \
--list --width= 1200 --height= 720 \
--checklist --hide-column= 3 --ok-label= "Compress Selected" --extra-button= "Compress All" \
--separator= "," --print-column= 3 \
--text= "Choose which games to compress:" \
--column "Compress?" \
--column "Game" \
--column "Game Full Path" \
2023-03-15 21:19:04 +00:00
" ${ compressable_games_list [@] } " )
2023-03-14 19:43:28 +00:00
local rc = $?
if [ [ $rc = = "0" && ! -z $choice ] ] ; then # User clicked "Compress Selected" with at least one game selected
IFS = "," read -ra games_to_compress <<< " $choice "
2023-03-29 19:51:27 +00:00
local total_games_to_compress = ${# games_to_compress [@] }
local games_left_to_compress = $total_games_to_compress
elif [ [ ! -z $choice ] ] ; then # User clicked "Compress All"
games_to_compress = ( " ${ all_compressable_games [@] } " )
local total_games_to_compress = ${# all_compressable_games [@] }
local games_left_to_compress = $total_games_to_compress
fi
if [ [ ! $( echo " ${# games_to_compress [@] } " ) = = "0" ] ] ; then
local post_compression_cleanup = $( configurator_compression_cleanup_dialog)
2023-03-15 21:19:04 +00:00
(
for file in " ${ games_to_compress [@] } " ; do
2023-03-29 19:51:27 +00:00
local compression_format = $( find_compatible_compression_format " $file " )
echo " # Compressing $( basename " $file " ) into $compression_format format " # Update Zenity dialog text
progress = $(( 100 - ( ( 100 / " $total_games_to_compress " ) * " $games_left_to_compress " )) )
echo $progress
games_left_to_compress = $(( games_left_to_compress-1))
compress_game " $compression_format " " $file "
2023-03-15 21:19:04 +00:00
if [ [ $post_compression_cleanup = = "true" ] ] ; then # Remove file(s) if requested
if [ [ " $file " = = *".cue" ] ] ; then
local cue_bin_files = $( grep -o -P " (?<=FILE \").*(?=\".* $) " " $file " )
local file_path = $( dirname " $( realpath " $file " ) " )
while IFS = read -r line
do
rm -f " $file_path / $line "
done < <( printf '%s\n' " $cue_bin_files " )
rm -f $( realpath " $file " )
else
rm -f " $( realpath " $file " ) "
fi
fi
2023-03-14 19:43:28 +00:00
done
2023-03-15 21:19:04 +00:00
) |
2023-03-29 19:51:27 +00:00
zenity --icon-name= net.retrodeck.retrodeck --progress --no-cancel --auto-close \
2023-03-15 21:19:04 +00:00
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator Utility - Compression in Progress"
2023-03-23 19:59:06 +00:00
configurator_generic_dialog "The compression process is complete!"
configurator_compress_games_dialog
2023-03-14 19:43:28 +00:00
else
2023-03-29 19:51:27 +00:00
configurator_compress_games_dialog
fi
}
configurator_compress_all_games_dialog( ) {
# This dialog compress all games found in all compatible roms folders into compatible formats
local all_compressable_games = ( )
local compressable_systems_list = $( cat $compression_targets | sed '/^$/d' | sed '/^\[/d' )
while IFS = read -r system # Find and validate all games that are able to be compressed with this compression type
do
compression_candidates = $( find " $roms_folder / $system " -type f -not -iname "*.txt" )
if [ [ ! -z $compression_candidates ] ] ; then
while IFS = read -r game
do
local compatible_compression_format = $( find_compatible_compression_format " $game " )
if [ [ ! $compatible_compression_format = = "none" ] ] ; then
all_compressable_games = ( " ${ all_compressable_games [@] } " " $game " )
fi
done < <( printf '%s\n' " $compression_candidates " )
fi
done < <( printf '%s\n' " $compressable_systems_list " )
if [ [ ! $( echo ${ all_compressable_games [@] } ) = = "0" ] ] ; then
local post_compression_cleanup = $( configurator_compression_cleanup_dialog)
total_games_to_compress = ${# all_compressable_games [@] }
games_left_to_compress = $total_games_to_compress
(
for file in " ${ all_compressable_games [@] } " ; do
local compression_format = $( find_compatible_compression_format " $file " )
echo " # Compressing $( basename " $file " ) into $compression_format format " # Update Zenity dialog text
progress = $(( 100 - ( ( 100 / " $total_games_to_compress " ) * " $games_left_to_compress " )) )
echo $progress
games_left_to_compress = $(( games_left_to_compress-1))
compress_game " $compression_format " " $file "
if [ [ $post_compression_cleanup = = "true" ] ] ; then # Remove file(s) if requested
if [ [ " $file " = = *".cue" ] ] ; then
local cue_bin_files = $( grep -o -P " (?<=FILE \").*(?=\".* $) " " $file " )
local file_path = $( dirname " $( realpath " $file " ) " )
while IFS = read -r line
do
rm -f " $file_path / $line "
done < <( printf '%s\n' " $cue_bin_files " )
rm -f $( realpath " $file " )
else
rm -f $( realpath " $file " )
2023-03-15 21:19:04 +00:00
fi
2023-03-29 19:51:27 +00:00
fi
done
2023-03-15 21:19:04 +00:00
) |
2023-03-29 19:51:27 +00:00
zenity --icon-name= net.retrodeck.retrodeck --progress --no-cancel --auto-close \
2023-03-15 21:19:04 +00:00
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator Utility - Compression in Progress"
configurator_generic_dialog "The compression process is complete!"
configurator_compress_games_dialog
2023-03-29 19:51:27 +00:00
else
configurator_generic_dialog "There were no games found that could be compressed."
2023-03-14 19:43:28 +00:00
fi
}
2023-03-15 21:19:04 +00:00
configurator_compression_cleanup_dialog( ) {
zenity --icon-name= net.retrodeck.retrodeck --question --no-wrap --cancel-label= "No" --ok-label= "Yes" \
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Compression Cleanup" \
--text= "Do you want to remove old files after they are compressed?\n\nClicking \"No\" will leave all files behind which will need to be cleaned up manually and may result in game duplicates showing in the RetroDECK library."
local rc = $? # Capture return code, as "Yes" button has no text value
if [ [ $rc = = "0" ] ] ; then # If user clicked "Yes"
echo "true"
else # If "No" was clicked
echo "false"
fi
}
2023-03-07 15:06:08 +00:00
configurator_compress_games_dialog( ) {
2023-03-15 21:19:04 +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" \
"Compress Single Game" "Compress a single game into a compatible format" \
2023-03-29 19:51:27 +00:00
"Compress Multiple Games - CHD" "Compress one or more games compatible with the CHD format" \
"Compress Multiple Games - ZIP" "Compress one or more games compatible with the ZIP format" \
"Compress Multiple Games - RVZ" "Compress one or more games compatible with the RVZ format" \
"Compress Multiple Games - All Formats" "Compress one or more games compatible with any format" \
"Compress All Games" "Compress all games into compatible formats" )
2023-03-15 21:19:04 +00:00
case $choice in
"Compress Single Game" )
configurator_compress_single_game_dialog
; ;
"Compress Multiple Games - CHD" )
2023-03-29 19:51:27 +00:00
configurator_compress_some_games_dialog "chd"
2023-03-15 21:19:04 +00:00
; ;
2023-03-29 19:51:27 +00:00
"Compress Multiple Games - ZIP" )
configurator_compress_some_games_dialog "zip"
; ;
"Compress Multiple Games - RVZ" )
configurator_compress_some_games_dialog "rvz"
; ;
"Compress Multiple Games - All Formats" )
configurator_compress_some_games_dialog "all"
; ;
"Compress All Games" )
configurator_compress_all_games_dialog
; ;
2023-03-12 18:21:30 +00:00
2023-03-15 21:19:04 +00:00
"" ) # No selection made or Back button clicked
configurator_welcome_dialog
; ;
esac
2023-03-07 15:06:08 +00:00
}
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
2023-03-29 19:51:27 +00:00
configurator_tools_and_troubleshooting_dialog
2023-03-07 19:55:24 +00:00
}
2023-03-13 01:40:01 +00:00
configurator_check_bios_files_basic( ) {
2023-03-13 15:12:10 +00:00
configurator_generic_dialog "This check will look for BIOS files that RetroDECK has identified as working.\n\nThere may be additional BIOS files that will function with the emulators that are not checked.\n\nSome more advanced emulators such as Yuzu will have additional methods for verifiying the BIOS files are in working order."
2023-03-13 01:40:01 +00:00
bios_checked_list = ( )
2023-03-13 15:12:10 +00:00
while IFS = "^" read -r bios_file bios_subdir bios_hash bios_system bios_desc
2023-03-13 01:40:01 +00:00
do
bios_file_found = "No"
bios_hash_matched = "No"
2023-03-22 16:41:26 +00:00
if [ [ -f " $bios_folder / $bios_subdir $bios_file " ] ] ; then
2023-03-13 01:40:01 +00:00
bios_file_found = "Yes"
2023-03-13 15:12:10 +00:00
if [ [ $bios_hash = = "Unknown" ] ] ; then
bios_hash_matched = "Unknown"
2023-03-22 16:41:26 +00:00
elif [ [ $( md5sum " $bios_folder / $bios_subdir $bios_file " | awk '{ print $1 }' ) = = " $bios_hash " ] ] ; then
2023-03-13 01:40:01 +00:00
bios_hash_matched = "Yes"
fi
fi
2023-03-13 15:12:10 +00:00
if [ [ $bios_file_found = = "Yes" && ( $bios_hash_matched = = "Yes" || $bios_hash_matched = = "Unknown" ) && ! " ${ bios_checked_list [*] } " = ~ " ${ bios_system } " ] ] ; then
2023-03-13 01:40:01 +00:00
bios_checked_list = ( " ${ bios_checked_list [@] } " " $bios_system " )
fi
done < $bios_checklist
systems_with_bios = ${ bios_checked_list [@] }
configurator_generic_dialog " The following systems have been found to have at least one valid BIOS file.\n\n $systems_with_bios \n\nFor more information on the BIOS files found please use the Advanced check tool. "
2023-03-29 19:51:27 +00:00
configurator_tools_and_troubleshooting_dialog
2023-03-13 01:40:01 +00:00
}
configurator_check_bios_files_advanced( ) {
2023-03-13 15:12:10 +00:00
configurator_generic_dialog "This check will look for BIOS files that RetroDECK has identified as working.\n\nThere may be additional BIOS files that will function with the emulators that are not checked.\n\nSome more advanced emulators such as Yuzu will have additional methods for verifiying the BIOS files are in working order."
2023-03-08 22:08:57 +00:00
bios_checked_list = ( )
2023-03-13 15:12:10 +00:00
while IFS = "^" read -r bios_file bios_subdir bios_hash bios_system bios_desc
2023-03-08 22:08:57 +00:00
do
bios_file_found = "No"
bios_hash_matched = "No"
2023-03-22 16:41:26 +00:00
if [ [ -f " $bios_folder / $bios_subdir $bios_file " ] ] ; then
2023-03-08 22:08:57 +00:00
bios_file_found = "Yes"
2023-03-13 15:12:10 +00:00
if [ [ $bios_hash = = "Unknown" ] ] ; then
bios_hash_matched = "Unknown"
2023-03-22 16:41:26 +00:00
elif [ [ $( md5sum " $bios_folder / $bios_subdir $bios_file " | awk '{ print $1 }' ) = = " $bios_hash " ] ] ; then
2023-03-08 22:08:57 +00:00
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 [@] } "
2023-03-29 19:51:27 +00:00
configurator_tools_and_troubleshooting_dialog
2023-03-08 22:08:57 +00:00
}
2023-03-29 19:51:27 +00:00
configurator_tools_and_troubleshooting_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-23 16:38:19 +00:00
"Move RetroDECK" "Move RetroDECK files between internal/SD card or to a custom location" \
2023-03-08 22:08:57 +00:00
"Multi-file game structure check" "Verify the proper structure of multi-file or multi-disc games" \
2023-03-13 01:40:01 +00:00
"Basic BIOS file check" "Show a list of systems that BIOS files are found for" \
2023-03-16 20:56:24 +00:00
"Advanced BIOS file check" "Show advanced information about common BIOS files" \
"Compress Games" "Compress games to CHD format for systems that support it" )
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-23 16:38:19 +00:00
"Move RetroDECK" )
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."
configurator_move_dialog
; ;
2023-03-07 19:55:24 +00:00
"Multi-file game structure check" )
configurator_check_multifile_game_structure
; ;
2023-03-13 01:40:01 +00:00
"Basic BIOS file check" )
configurator_check_bios_files_basic
; ;
"Advanced BIOS file check" )
configurator_check_bios_files_advanced
2023-03-08 22:08:57 +00:00
; ;
2023-03-16 20:56:24 +00:00
"Compress Games" )
configurator_compress_games_dialog
; ;
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
}
2023-03-27 19:52:58 +00:00
configurator_online_update_setting_dialog( ) {
if [ [ $( get_setting_value $rd_conf "update_check" retrodeck) = = "true" ] ] ; then
zenity --question \
--no-wrap --window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator - RetroDECK Online Update Check" \
--text= "Online update checks for RetroDECK are currently enabled.\n\nDo you want to disable them?"
if [ $? = = 0 ] # User clicked "Yes"
then
set_setting_value $rd_conf "update_check" "false" retrodeck
else # User clicked "Cancel"
configurator_developer_dialog
fi
else
zenity --question \
--no-wrap --window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator - RetroDECK Online Update Check" \
--text= "Online update checks for RetroDECK are currently disabled.\n\nDo you want to enable them?"
if [ $? = = 0 ] # User clicked "Yes"
then
set_setting_value $rd_conf "update_check" "true" retrodeck
else # User clicked "Cancel"
configurator_developer_dialog
fi
fi
}
configurator_online_update_setting_dialog( ) {
if [ [ $( get_setting_value $rd_conf "update_repo" retrodeck) = = "RetroDECK" ] ] ; then
zenity --question \
--no-wrap --window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator - RetroDECK Change Update Branch" \
--text= "You are currently on the production branch of RetroDECK updates. Would you like to switch to the cooker branch?\n\nAfter installing a cooker build, you may need to remove the \"stable\" branch install of RetroDECK to avoid overlap."
if [ $? = = 0 ] # User clicked "Yes"
then
set_setting_value $rd_conf "update_repo" "RetroDECK-cooker" retrodeck
else # User clicked "Cancel"
configurator_developer_dialog
fi
else
zenity --question \
--no-wrap --window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator - RetroDECK Change Update Branch" \
--text= "You are currently on the cooker branch of RetroDECK updates. Would you like to switch to the production branch?\n\n"
if [ $? = = 0 ] # User clicked "Yes"
then
set_setting_value $rd_conf "update_repo" "RetroDECK" retrodeck
else # User clicked "Cancel"
configurator_developer_dialog
fi
fi
}
2023-03-17 20:39:51 +00:00
configurator_retrodeck_multiuser_dialog( ) {
2023-03-24 15:24:28 +00:00
if [ [ $( get_setting_value $rd_conf "multi_user_mode" retrodeck) = = "true" ] ] ; then
2023-03-17 20:39:51 +00:00
zenity --question \
--no-wrap --window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator - RetroDECK Multi-user Support" \
2023-03-24 15:24:28 +00:00
--text= "Multi-user support is current enabled. Do you want to disable it?\n\nIf there are more than one user configured,\nyou will be given a choice of which to use as the single RetroDECK user.\n\nThis users files will be moved to the default locations.\n\nOther users files will remain in the mutli-user-data folder.\n"
2023-03-17 20:39:51 +00:00
if [ $? = = 0 ] # User clicked "Yes"
2023-03-24 15:24:28 +00:00
then
multi_user_disable_multi_user_mode
else # User clicked "Cancel"
2023-03-17 20:39:51 +00:00
configurator_developer_dialog
fi
else
zenity --question \
--no-wrap --window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator - RetroDECK Multi-user support" \
--text= "Multi-user support is current disabled. Do you want to enable it?\n\nThe current users saves and states will be backed up and then moved to the \"retrodeck/multi-user-data\" folder.\nAdditional users will automatically be stored in their own folder here as they are added."
2023-03-24 15:24:28 +00:00
if [ $? = = 0 ] # User clicked "Yes"
2023-03-17 20:39:51 +00:00
then
2023-03-24 15:24:28 +00:00
multi_user_enable_multi_user_mode
else # User clicked "Cancel"
configurator_developer_dialog
2023-03-17 20:39:51 +00:00
fi
fi
}
2023-03-17 13:13:08 +00:00
configurator_developer_dialog( ) {
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-27 19:52:58 +00:00
"Change Multi-user mode" "Enable or disable multi-user support" \
"Change Update Channel" "Change between normal and cooker builds" \
"Change Update Check Setting" "Enable or disable online checks for new versions of RetroDECK" )
2023-03-17 13:13:08 +00:00
case $choice in
"Change Multi-user mode" )
2023-03-17 20:39:51 +00:00
configurator_retrodeck_multiuser_dialog
2023-03-27 19:52:58 +00:00
; ;
"Change Update Channel" )
configurator_retrodeck_multiuser_dialog
; ;
"Change Update Check Setting" )
configurator_retrodeck_multiuser_dialog
2023-03-17 13:13:08 +00:00
; ;
"" ) # No selection made or Back button clicked
configurator_welcome_dialog
; ;
esac
}
2022-10-07 17:46:48 +00:00
configurator_welcome_dialog( ) {
2023-03-17 13:13:08 +00:00
if [ [ $developer_options = = "true" ] ] ; then
2023-03-23 18:19:18 +00:00
welcome_menu_options = ( "RetroArch Presets" "Change RetroArch presets, log into RetroAchievements etc." \
2023-03-17 13:13:08 +00:00
"Emulator Options" "Launch and configure each emulators settings (for advanced users)" \
2023-03-23 18:19:18 +00:00
"Tools and Troubleshooting" "Move RetroDECK to a new location, compress games and perform basic troubleshooting" \
2023-03-17 13:13:08 +00:00
"Reset" "Reset specific parts or all of RetroDECK" \
"Developer Options" "Welcome to the DANGER ZONE" )
else
2023-03-23 18:19:18 +00:00
welcome_menu_options = ( "RetroArch Presets" "Change RetroArch presets, log into RetroAchievements etc." \
2023-03-17 13:13:08 +00:00
"Emulator Options" "Launch and configure each emulators settings (for advanced users)" \
2023-03-23 18:19:18 +00:00
"Tools and Troubleshooting" "Move RetroDECK to a new location, compress games and perform basic troubleshooting" \
2023-03-17 13:13:08 +00:00
"Reset" "Reset specific parts or all of RetroDECK" )
fi
2022-10-26 16:51:46 +00:00
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-17 13:13:08 +00:00
" ${ welcome_menu_options [@] } " )
2022-10-26 16:51:46 +00:00
case $choice in
2023-03-16 15:25:34 +00:00
"RetroArch Presets" )
2023-03-08 18:35:24 +00:00
configurator_retroarch_options_dialog
2022-10-26 16:51:46 +00:00
; ;
2023-03-16 15:25:34 +00:00
"Emulator Options" )
2023-03-13 14:09:01 +00:00
configurator_power_user_warning_dialog
2022-10-26 16:51:46 +00:00
; ;
2023-03-16 20:56:24 +00:00
"Tools and Troubleshooting" )
2023-03-29 19:51:27 +00:00
configurator_tools_and_troubleshooting_dialog
2023-03-07 15:06:08 +00:00
; ;
2022-10-26 16:51:46 +00:00
"Reset" )
configurator_reset_dialog
; ;
2023-03-17 13:13:08 +00:00
"Developer Options" )
2023-03-24 15:24:28 +00:00
configurator_generic_dialog "The following features and options are potentially VERY DANGEROUS for your RetroDECK install!\n\nThey should be considered the bleeding-edge of upcoming RetroDECK features, and never used when you have important saves/states/roms that are not backed up!\n\nYOU HAVE BEEN WARNED!"
2023-03-17 13:13:08 +00:00
configurator_developer_dialog
; ;
2022-10-26 16:51:46 +00:00
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