#!/usr/bin/env bash # This file is part of The RetroPie Project # # The RetroPie Project is the legal property of its developers, whose names are # too numerous to list here. Please refer to the COPYRIGHT.md file distributed with this source. # # See the LICENSE.md file at the top-level directory of this distribution and # at https://raw.githubusercontent.com/RetroPie/RetroPie-Setup/master/LICENSE.md # rp_module_id="skyscraper" rp_module_desc="Scraper for EmulationStation" rp_module_licence="GPL3 https://raw.githubusercontent.com/Gemba/skyscraper/master/LICENSE" rp_module_repo="git https://github.com/Gemba/skyscraper :_get_branch_skyscraper" rp_module_section="opt" function _get_branch_skyscraper() { download https://api.github.com/repos/Gemba/skyscraper/releases/latest - | grep -m 1 tag_name | cut -d\" -f4 } function depends_skyscraper() { getDepends qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools libqt5sql5-sqlite p7zip-full } function sources_skyscraper() { gitPullOrClone } function build_skyscraper() { rm --force .qmake.stash QT_SELECT=5 qmake make md_ret_require="$md_build/Skyscraper" } function install_skyscraper() { local config_files=($(_config_files_skyscraper)) md_ret_files=( 'docs' 'LICENSE' 'README.md' 'Skyscraper' 'supplementary/scraperdata/check_screenscraper_json_to_idmap.py' 'supplementary/scraperdata/convert_platforms_json.py' 'supplementary/scraperdata/deepdiff_peas_jsonfiles.py' 'supplementary/scraperdata/mdb2sqlite.sh' 'supplementary/scraperdata/peas_and_idmap_verify.py' ) md_ret_files+=("${config_files[@]}") } function _config_files_skyscraper() { local config_files=( 'aliasMap.csv' 'artwork.xml.example1' 'artwork.xml.example2' 'artwork.xml.example3' 'artwork.xml.example4' 'artwork.xml' 'cache/priorities.xml.example' 'config.ini.example' 'hints.xml' 'import' 'mameMap.csv' 'mobygames_platforms.json' 'peas.json' 'platforms_idmap.csv' 'resources' 'supplementary/bash-completion/Skyscraper.bash' 'screenscraper_platforms.json' 'tgdb_developers.json' 'tgdb_genres.json' 'tgdb_platforms.json' 'tgdb_publishers.json' ) echo "${config_files[@]}" } function remove_skyscraper() { md_ret_info+=("Skyscraper's cache in ~/.skyscraper/cache/ is not empty and is not removed.") # Remove possible per-user deployment introduced with v3.9.3 rm -f "$home/.bash_completion.d/Skyscraper.bash" rm -f "/etc/bash_completion.d/Skyscraper.bash" rm -f "/usr/local/bin/Skyscraper" } # Get the location of the cached resources folder. In v3+, this changed to 'cache'. # Note: the cache folder might be unavailable during first time installations function _cache_folder_skyscraper() { if [[ -d "$configdir/all/skyscraper/dbs" ]]; then echo "dbs" else echo "cache" fi } # Purge all Skyscraper caches function _purge_skyscraper() { local platform local cache_folder=$(_cache_folder_skyscraper) [[ ! -d "$configdir/all/skyscraper/$cache_folder" ]] && return while read platform; do # Find any sub-folders of the cache folder and clear them _clear_platform_skyscraper "$platform" done < <(find "$configdir/all/skyscraper/$cache_folder" -maxdepth 1 -mindepth 1 -type d -exec basename {} \;) } function _clear_platform_skyscraper() { local platform="$1" local mode="$2" local cache_folder=$(_cache_folder_skyscraper) [[ ! -d "$configdir/all/skyscraper/$cache_folder/$platform" ]] && return if [[ $mode == "vacuum" ]]; then sudo -u "$__user" stdbuf -o0 $md_inst/Skyscraper --flags unattend -p "$platform" --cache vacuum else sudo -u "$__user" stdbuf -o0 $md_inst/Skyscraper --flags unattend -p "$platform" --cache purge:all fi sleep 5 } function _purge_platform_skyscraper() { local options=() local cache_folder=$(_cache_folder_skyscraper) local system while read system; do # If there is no 'db.xml' file underneath the folder, skip it, it means folder is empty [[ ! -f "$configdir/all/skyscraper/$cache_folder/$system/db.xml" ]] && continue # Get the size on disk of the system and show it in the select list local size=$(du -sh "$configdir/all/skyscraper/$cache_folder/$system" | cut -f1) options+=("$system" "$size" OFF) done < <(find "$configdir/all/skyscraper/$cache_folder" -maxdepth 1 -mindepth 1 -type d -exec basename {} \;) # If not folders are found, show an info message instead of the selection list if [[ ${#options[@]} -eq 0 ]]; then printMsgs "dialog" "Nothing to delete ! No cached platforms found in \n$configdir/all/skyscraper/$cache_folder." return fi local mode="$1" [[ -z "$mode" ]] && mode="purge" local cmd=(dialog --backtitle "$__backtitle" --radiolist "Select platform to $mode" 20 60 12) local platform=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty) # Exit if no platform chosen [[ -z "$platform" ]] && return _clear_platform_skyscraper "$platform" "$@" } function _get_ver_skyscraper() { if [[ -f "$md_inst/Skyscraper" ]]; then echo $(sudo -u "$__user" "$md_inst/Skyscraper" -h | grep 'Running Skyscraper' | cut -d' ' -f 3 | tr -d v 2>/dev/null) fi } function _check_ver_skyscraper() { ver=$(_get_ver_skyscraper) if ! compareVersions "$ver" ge "3.5"; then printMsgs "dialog" "The version of Skyscraper you currently have installed is incompatible with options used by this script. Please update Skyscraper to the latest version to continue." return 1 fi return 0 } # List any non-empty systems found in the ROM folder function _list_systems_skyscraper() { find -L "$romdir/" -mindepth 1 -maxdepth 1 -type d -not -empty | sort -u } function configure_skyscraper() { if [[ "$md_mode" == "remove" ]]; then return fi # Check if this a first time install local local_config local_config=$(readlink -qn "$home/.skyscraper") # Handle the cases where the user has an existing Skyscraper installation. if [[ -d "$home/.skyscraper" && "$local_config" != "$configdir/all/skyscraper" ]]; then # We have an existing Skyscraper installation, but not handled by this scriptmodule. # Since the $HOME/.skyscraper folder will be moved, make sure the 'cache' and 'import' folders are moved separately local f_size local cache_folder="dbs" [[ -d "$home/.skyscraper/cache" ]] && cache_folder="cache" f_size=$(du --total -sm "$home/.skyscraper/$cache_folder" "$home/.skyscraper/import" 2>/dev/null | tail -n 1 | cut -f 1) printMsgs "console" "INFO: Moving the Cache and Import folders to new configuration folder (total: $f_size Mb)" local folder for folder in $cache_folder import; do mv "$home/.skyscraper/$folder" "$home/.skyscraper-$folder" && printMsgs "console" "INFO: Moved $home/.skyscraper/$folder to $home/.skyscraper-$folder" done # When having an existing installation, chances are the gamelist is generated in the ROMs folder # Create a GUI config file with this setting pre-set. iniConfig " = " '"' "$configdir/all/skyscraper.cfg" iniSet "use_rom_folder" 1 fi moveConfigDir "$home/.skyscraper" "$configdir/all/skyscraper" # Move the Cache and Import folders back the new conf folder for folder in $cache_folder import; do if [[ -d "$home/.skyscraper-$folder" ]]; then printMsgs "console" "INFO: Moving "$home/.skyscraper-$folder" back to configuration folder" mv "$home/.skyscraper-$folder" "$configdir/all/skyscraper/$folder" fi done _init_config_skyscraper chown -R "$__user":"$__group" "$configdir/all/skyscraper" chmod a+x "$md_inst"/*.py } function _init_config_skyscraper() { local config_files=($(_config_files_skyscraper)) mkdir -p .pristine_cfgs # assume new(er) install for cf in "${config_files[@]}"; do bn=${cf##*/} # cut off all folders if [[ -e "$md_inst/$bn" ]]; then cp -rf "$md_inst/$bn" ".pristine_cfgs/" rm -rf "$md_inst/$bn" fi done local scraper_conf_dir="$configdir/all/skyscraper" # Make sure the 'artwork.xml' and other conf file(s) are present, but don't overwrite them on upgrades local f_conf for f_conf in artwork.xml aliasMap.csv peas.json platforms_idmap.csv; do copyDefaultConfig "$md_inst/.pristine_cfgs/$f_conf" "$scraper_conf_dir/$f_conf" done # If we don't have a previous config.ini file, copy the example one if [[ ! -f "$scraper_conf_dir/config.ini" ]]; then cp "$md_inst/.pristine_cfgs/config.ini.example" "$scraper_conf_dir/config.ini" fi # Artwork example files, always overwrite cp -f "$md_inst/.pristine_cfgs/artwork.xml.example"* "$scraper_conf_dir" # Copy remaining resources, always overwrite local resource_files=( 'hints.xml' 'mameMap.csv' 'mobygames_platforms.json' 'screenscraper_platforms.json' 'tgdb_developers.json' 'tgdb_genres.json' 'tgdb_platforms.json' 'tgdb_publishers.json' ) local resource_file for resource_file in "${resource_files[@]}"; do cp -f "$md_inst/.pristine_cfgs/$resource_file" "$scraper_conf_dir" done # Copy the resource folder cp -rf "$md_inst/.pristine_cfgs/resources" "$scraper_conf_dir" # Create the import folders and add the definition template examples. local folder for folder in covers marquees screenshots textual videos wheels; do mkUserDir "$scraper_conf_dir/import/$folder" done cp -rf "$md_inst/.pristine_cfgs/import" "$scraper_conf_dir" # Create the cache folder and add the sample 'priorities.xml' file to it mkUserDir "$scraper_conf_dir/cache" cp -f "$md_inst/.pristine_cfgs/priorities.xml.example" "$scraper_conf_dir/cache" # Deploy programmable completion script cp -f "$md_inst/.pristine_cfgs/Skyscraper.bash" "/etc/bash_completion.d/" # Ease of use but also needed for proper completion ln -sf "$md_inst/Skyscraper" "/usr/local/bin/Skyscraper" # Remove possible per-user deployment introduced with v3.9.3 rm -f "$home/.bash_completion.d/Skyscraper.bash" } # read scriptmodule's skyscraper.cfg and prepare the command line parameters function _get_clioptions_skyscraper() { local system=$1 local scrape_module=$2 local params=() local flags iniConfig " = " '"' "$configdir/all/skyscraper.cfg" eval $(_load_config_skyscraper) [[ "$system" != "" ]] && system=\"$system\" params+=(-p "$system") flags="unattend,skipped," [[ "$download_videos" -eq 1 ]] && flags+="videos," [[ "$cache_marquees" -eq 0 ]] && flags+="nomarquees," [[ "$cache_covers" -eq 0 ]] && flags+="nocovers," [[ "$cache_screenshots" -eq 0 ]] && flags+="noscreenshots," [[ "$cache_wheels" -eq 0 ]] && flags+="nowheels," [[ "$only_missing" -eq 1 ]] && flags+="onlymissing," [[ "$rom_name" -eq 1 ]] && flags+="forcefilename," [[ "$remove_brackets" -eq 1 ]] && flags+="nobrackets," if [[ "$use_rom_folder" -eq 1 ]]; then params+=(-g "$romdir/$system") params+=(-o "$romdir/$system/media") # If we're saving to the ROM folder, then use relative paths in the gamelist flags+="relative," else params+=(-g "$home/.emulationstation/gamelists/$system") params+=(-o "$home/.emulationstation/downloaded_media/$system") fi # If 2nd parameter is unset, use the configured scraping source, otherwise scrape from cache. # Scraping from cache means we can omit '-s' from the parameter list. if [[ -z "$scrape_module" ]]; then params+=(-s "$scrape_source") fi [[ "$force_refresh" -eq 1 ]] && params+=(--refresh) # There will always be a ',' at the end of $flags, so let's remove it flags=${flags::-1} params+=(--flags "$flags") echo "${params[@]}" } # Scrape one system, passed as parameter function _scrape_skyscraper() { local system="$1" local scrape_module="$2" [[ -z "$system" ]] && return local params params=$(_get_clioptions_skyscraper "$system" "$scrape_module") declare -a "params_arr=($params)" # trap ctrl+c and return if pressed (rather than exiting retropie-setup etc) trap 'trap 2; return 1' INT sudo -u "$__user" stdbuf -o0 "$md_inst/Skyscraper" "${params_arr[@]}" echo -e "\nCOMMAND LINE USED:\n $md_inst/Skyscraper" "${params}" sleep 2 trap 2 } # Scrape a list of systems, chosen by the user function _scrape_chosen_skyscraper() { ! _check_ver_skyscraper && return 1 local options=() local system local i=1 while read system; do system=${system/$romdir\//} options+=($i "$system" OFF) ((i++)) done < <(_list_systems_skyscraper) if [[ ${#options[@]} -eq 0 ]] ; then printMsgs "dialog" "No populated ROM folders were found in $romdir." return fi local choices local cmd=(dialog --backtitle "$__backtitle" --ok-label "Start" --cancel-label "Back" --checklist " Select platforms for resource gathering\n\n" 22 60 16) choices=($("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)) # Exit if nothing was chosen or Cancel was used [[ ${#choices[@]} -eq 0 || $? -eq 1 ]] && return 1 # Confirm with the user that scraping can start local cli=("$md_inst/Skyscraper ") cli+=$(_get_clioptions_skyscraper "" "") local sky_cmd sky_cmd=$(echo "${cli[@]}" | sed 's/ -/ \\\\n -/g') local msg="This will start the gathering process, which can take a long time if you have a large game collection.\n\n" msg+="You can interrupt this process anytime by pressing \ZbCtrl+C\Zn.\n\n" msg+="For each selected Skyscraper is run with these commandline options:\n\n$sky_cmd" dialog --clear --colors --yes-label "Proceed" --no-label "Abort" --yesno "$msg" 20 70 2>&1 >/dev/tty [[ ! $? -eq 0 ]] && return 1 local choice for choice in "${choices[@]}"; do choice="${options[choice*3-2]}" _scrape_skyscraper "$choice" "" done } # Generate gamelists for a list of systems, chosen by the user function _generate_chosen_skyscraper() { ! _check_ver_skyscraper && return 1 local options=() local system local i=1 while read system; do system=${system/$romdir\//} options+=($i "$system" OFF) ((i++)) done < <(_list_systems_skyscraper) if [[ ${#options[@]} -eq 0 ]] ; then printMsgs "dialog" "No populated ROM folders were found in $romdir." return fi local choices local cmd=(dialog --backtitle "$__backtitle" --ok-label "Start" --cancel-label "Back" --checklist " Select platforms for gamelist(s) generation\n\n" 22 60 16) choices=($("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)) # Exit if nothing was chosen or Cancel was used [[ ${#choices[@]} -eq 0 || $? -eq 1 ]] && return 1 for choice in "${choices[@]}"; do choice="${options[choice*3-2]}" _scrape_skyscraper "$choice" "cache" done } function _load_config_skyscraper() { echo "$(loadModuleConfig \ 'rom_name=0' \ 'use_rom_folder=0' \ 'download_videos=0' \ 'cache_marquees=1' \ 'cache_covers=1' \ 'cache_wheels=1' \ 'cache_screenshots=1' \ 'scrape_source=screenscraper' \ 'remove_brackets=0' \ 'force_refresh=0' \ 'only_missing=0' )" } # Try to guess the most appropriate editor. On Debian derivatives, we have `sensible-editor` for that. function _open_editor_skyscraper() { local editor if [[ -n $(command -v sensible-editor) ]]; then sudo -u "$__user" sensible-editor "$1" > /dev/tty < /dev/tty else editor="${EDITOR:-nano}" sudo -u "$__user" $editor "$1" > /dev/tty < /dev/tty fi } function _gui_advanced_skyscraper() { declare -A help_strings_adv iniConfig " = " '"' "$configdir/all/skyscraper.cfg" eval $(_load_config_skyscraper) help_strings_adv=( [E]="Opens the configuration file \Zbconfig.ini\Zn in an editor." [F]="Opens the artwork definition file \Zbartwork.xml\Zn in an editor." [G]="Opens the game alias configuration file \ZbaliasMap.csv\Zn in an editor." ) while true; do local cmd=(dialog --backtitle "$__backtitle" --help-button --colors --no-collapse --default-item "$default" --ok-label "Ok" --cancel-label "Back" --title "Advanced options" --menu " EXPERT - edit configurations\n" 14 50 5) local options=() options+=(E "Edit 'config.ini'") options+=(F "Edit 'artwork.xml'") options+=(G "Edit 'aliasMap.csv'") local choice=$("${cmd[@]}" "${options[@]}" 2>&1 > /dev/tty) if [[ -n "$choice" ]]; then local default="$choice" case "$choice" in E) _open_editor_skyscraper "$configdir/all/skyscraper/config.ini" ;; F) _open_editor_skyscraper "$configdir/all/skyscraper/artwork.xml" ;; G) _open_editor_skyscraper "$configdir/all/skyscraper/aliasMap.csv" ;; HELP*) # Retain choice default="${choice/HELP /}" if [[ ! -z "${help_strings_adv[${default}]}" ]]; then dialog --colors --no-collapse --ok-label "Close" --msgbox "${help_strings_adv[${default}]}" 22 65 >&1 fi esac else break fi done } function gui_skyscraper() { if pgrep "emulationstatio" >/dev/null; then printMsgs "dialog" "This scraper must not be run while EmulationStation is running or the scraped data will be overwritten.\n\nPlease quit EmulationStation and run RetroPie-Setup from the terminal:\n\n sudo \$HOME/RetroPie-Setup/retropie_setup.sh" return fi iniConfig " = " '"' "$configdir/all/skyscraper.cfg" eval $(_load_config_skyscraper) chown "$__user":"$__group" "$configdir/all/skyscraper.cfg" local -a s_source local -a s_source_names declare -A help_strings s_source=( [1]=screenscraper [2]=arcadedb [3]=thegamesdb [4]=mobygames [5]=openretro [6]=igdb [7]=worldofspectrum ) s_source+=( [10]=esgamelist [11]=import ) s_source_names=( [1]=ScreenScraper [2]=ArcadeDB [3]=TheGamesDB [4]=MobyGames [5]=OpenRetro [6]="Internet Game Database" [7]="World of Spectrum" ) s_source_names+=( [10]="EmulationStation Gamelist" [11]="Import Folder" ) local ver local lastest_ver # Help strings for this GUI help_strings=( [1]="Gather resources and cache them for the platforms found in \Zb$romdir\Zn.\nRuns the scraper to download the information and media from the selected gathering source." [2]="Select the source for ROM scraping. Supported sources:\n\ZbONLINE\Zn\n * ScreenScraper (screenscraper.fr)\n * TheGamesDB (thegamesdb.net)\n * OpenRetro (openretro.org)\n * ArcadeDB (adb.arcadeitalia.net)\n * World of Spectrum (worldofspectrum.org)\n\ZbLOCAL\Zn\n * EmulationStation Gamelist (imports data from ES gamelist)\n * Import (imports resources in the local cache)\n\n\Zb\ZrNOTE\Zn: Some sources require a username and password for access. These can be set per source in the \Zbconfig.ini\Zn configuration file.\n\n Skyscraper parameter: \Zb-s \Zn" [3]="Options for resource gathering and caching sub-menu.\nClick to open it." [4]="Generate EmulationStation game lists.\nRuns the scraper to incorporate downloaded information and media from the local cache and write them to \Zbgamelist.xml\Zn files to be used by EmulationStation." [5]="Options for EmulationStation game list generation sub-menu.\nClick to open it and change the options." [V]="Toggle the download and caching of videos.\nThis also toggles whether the videos will be included in the resulting gamelist.\n\nSkyscraper option: \Zb--flags videos\Zn" [A]="Advanced options sub-menu." [U]="Check for an update to Skyscraper." ) ver=$(_get_ver_skyscraper) while true; do [[ -z "$ver" ]] && ver="v(Git)" local cmd=(dialog --backtitle "$__backtitle" --colors --cancel-label "Exit" --help-button --no-collapse --cr-wrap --default-item "$default" --menu " Skyscraper: game scraper for EmulationStation ($ver)\\n \\n" 22 60 12) local options=( "-" "GATHER and cache resources" ) local source_found=0 local online="Online" local i options+=( 1 "Gather resources" ) for i in "${!s_source[@]}"; do if [[ "$scrape_source" == "${s_source[$i]}" ]]; then [[ $i -ge 10 ]] && online="Local" options+=(2 "Gather source - ${s_source_names[$i]} ($online) -->") source_found=1 fi done if [[ $source_found -ne 1 ]]; then options+=(2 "Gather from - Screenscraper (Online) -->") scrape_source="screenscraper" # default scraping source if none found iniSet "scrape_source" "$scrape_source" fi options+=(3 "Cache options and commands -->") options+=("-" "GAME LIST generation") options+=(4 "Generate game list(s)") options+=(5 "Generate options -->") options+=("-" "OTHER options") if [[ "$download_videos" -eq 1 ]]; then options+=(V "Download videos (Enabled)") else options+=(V "Download videos (Disabled)") fi options+=(A "Advanced options -->") options+=(U "Check for Updates") # Run the GUI local choice=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty) if [[ -n "$choice" ]]; then local default="$choice" case "$choice" in 1) if _scrape_chosen_skyscraper; then printMsgs "dialog" "ROMs information gathered.\nDon't forget to use 'Generate Game list(s)' to add this information to EmulationStation." elif [[ $? -eq 2 ]]; then printMsgs "dialog" "Gathering was aborted" fi ;; 2) # Scrape source options have a separate dialog local s_options=() local i for i in "${!s_source[@]}"; do online="Online:" [[ i -ge 10 ]] && online="Local:" if [[ "$scrape_source" == "${s_source[$i]}" ]]; then s_default="$online ${s_source_names[$i]}" fi s_options+=("$online ${s_source_names[$i]}" "") done if [[ -z "$s_default" ]]; then s_default="Online: ${s_source_names[1]}" fi local s_cmd=(dialog --title "Select Scraping source" --default-item "$s_default" \ --menu "Choose one of the available scraping sources" 18 50 9) # Run the Scraper source selection dialog local scrape_source_name=$("${s_cmd[@]}" "${s_options[@]}" 2>&1 >/dev/tty) # If Cancel was chosen, don't do anything [[ -z "$scrape_source_name" ]] && continue # Strip the "XYZ:" prefix from the chosen scraper source, then compare to our list local src=$(echo "$scrape_source_name" | cut -d' ' -f2-) for i in "${!s_source_names[@]}"; do [[ "${s_source_names[$i]}" == "$src" ]] && scrape_source=${s_source[$i]} done iniSet "scrape_source" "$scrape_source" ;; 3) _gui_cache_skyscraper ;; 4) if _generate_chosen_skyscraper "cache"; then printMsgs "dialog" "Game list(s) generated." elif [[ $? -eq 2 ]]; then printMsgs "dialog" "Game list generation aborted" fi ;; 5) _gui_generate_skyscraper ;; V) download_videos="$((download_videos ^ 1))" iniSet "download_videos" "$download_videos" ;; A) _gui_advanced_skyscraper ;; U) local latest_ver="$(_get_branch_skyscraper)" # check for update if compareVersions "$latest_ver" gt "$ver" ; then printMsgs "dialog" "There is a new version available. Latest released version is $latest_ver (You are running $ver).\n\nYou can update the package from RetroPie-Setup -> Manage Packages" else printMsgs "dialog" "You are running the latest version ($ver)." fi ;; HELP*) # Retain choice when the Help button is selected default="${choice/HELP /}" if [[ ! -z "${help_strings[$default]}" ]]; then dialog --colors --no-collapse --ok-label "Close" --msgbox "${help_strings[$default]}" 22 65 >&1 fi ;; esac else break fi done } function _gui_cache_skyscraper() { local db_size local cache_folder=$(_cache_folder_skyscraper) declare -A help_strings_cache iniConfig " = " '"' "$configdir/all/skyscraper.cfg" eval $(_load_config_skyscraper) help_strings_cache=( [1]="Toggle whether screenshots are cached locally when scraping.\n\nSkyscraper option: \Zb--flags noscreenshots\Zn" [2]="Toggle whether covers are cached locally when scraping.\n\nSkyscraper option: \Zb--flags nocovers\Zn" [3]="Toggle whether wheels are cached locally when scraping.\n\nSkyscraper option: \Zb--flags nowheels\Zn" [4]="Toggle whether marquees are cached locally when scraping.\n\nSkyscraper option: \Zb--flags nomarquees\Zn" [5]="Enable this to only scrape files that do not already have data in the Skyscraper resource cache.\n\nSkyscraper option: \Zb--flags onlymissing\Zn" [6]="Force the refresh of resources in the local cache when scraping.\n\nSkyscraper option: \Zb--cache refresh\Zn" [P]="Purge \ZbALL\Zn all cached resources for all platforms." [S]="Purge all cached resources for a chosen platform.\n\nSkyscraper option: \Zb--cache purge:all\Zn" [V]="Removes all non-used cached resources for a chosen platform (vacuum).\n\nSkyscraper option: \Zb--cache vacuum\Zn" ) while true; do db_size=$(du -sh "$configdir/all/skyscraper/$cache_folder" 2>/dev/null | cut -f 1 || echo 0m) [[ -z "$db_size" ]] && db_size="0Mb" local cmd=(dialog --backtitle "$__backtitle" --help-button --colors --no-collapse --default-item "$default" --ok-label "Ok" --cancel-label "Back" --title "Cache options and commands" --menu "\n Current cache size: $db_size\n\n" 21 60 12) local options=("-" "OPTIONS for gathering and caching") if [[ "$cache_screenshots" -eq 1 ]]; then options+=(1 "Cache screenshots (Enabled)") else options+=(1 "Cache screenshots (Disabled)") fi if [[ "$cache_covers" -eq 1 ]]; then options+=(2 "Cache covers (Enabled)") else options+=(2 "Cache covers (Disabled)") fi if [[ "$cache_wheels" -eq 1 ]]; then options+=(3 "Cache wheels (Enabled)") else options+=(3 "Cache wheels (Disabled)") fi if [[ "$cache_marquees" -eq 1 ]]; then options+=(4 "Cache marquees (Enabled)") else options+=(4 "Cache marquees (Disabled)") fi if [[ "$only_missing" -eq 1 ]]; then options+=(5 "Scrape only missing (Enabled)") else options+=(5 "Scrape only missing (Disabled)") fi if [[ "$force_refresh" -eq 0 ]]; then options+=(6 "Force cache refresh (Disabled)") else options+=(6 "Force cache refresh (Enabled)") fi options+=("-" "PURGE cache commands") options+=(V "Vacuum chosen platform") options+=(S "Purge chosen platform") options+=(P "Purge all platforms(!)") local choice=$("${cmd[@]}" "${options[@]}" 2>&1 > /dev/tty) if [[ -n "$choice" ]]; then local default="$choice" case "$choice" in 1) cache_screenshots="$((cache_screenshots ^ 1))" iniSet "cache_screenshots" "$cache_screenshots" ;; 2) cache_covers="$((cache_covers ^ 1))" iniSet "cache_covers" "$cache_covers" ;; 3) cache_wheels="$((cache_wheels ^ 1))" iniSet "cache_wheels" "$cache_wheels" ;; 4) cache_marquees="$((cache_marquees ^ 1))" iniSet "cache_marquees" "$cache_marquees" ;; 5) only_missing="$((only_missing ^ 1))" iniSet "only_missing" "$only_missing" ;; 6) force_refresh="$((force_refresh ^ 1))" iniSet "force_refresh" "$force_refresh" ;; V) _purge_platform_skyscraper "vacuum" ;; S) _purge_platform_skyscraper ;; P) dialog --clear --defaultno --colors --yesno "\Z1\ZbAre you sure ?\Zn\nThis will \Zb\ZuERASE\Zn all locally cached scraped resources" 8 60 2>&1 >/dev/tty if [[ $? == 0 ]]; then _purge_skyscraper fi ;; HELP*) # Retain choice default="${choice/HELP /}" if [[ ! -z "${help_strings_cache[${default}]}" ]]; then dialog --colors --no-collapse --ok-label "Close" --msgbox "${help_strings_cache[${default}]}" 22 65 >&1 fi esac else break fi done } function _gui_generate_skyscraper() { declare -A help_strings_gen iniConfig " = " '"' "$configdir/all/skyscraper.cfg" eval $(_load_config_skyscraper) help_strings_gen=( [1]="Game name format used in the EmulationStation game list. Available options:\n\n\ZbSource name\Zn: use the name returned by the scraper\n\ZbFilename\Zn: use the filename of the ROM as game name\n\nSkyscraper option: \Zb--flags forcefilename\Z0" [2]="Game name option to remove/keep the text found between '()' and '[]' in the ROMs filename.\n\nSkyscraper option: \Zb--flags nobrackets\Zn" [3]="Choose to save the generated 'gamelist.xml' and media in the ROMs folder. Supported options:\n\n\ZbEnabled\Zn saves the 'gamelist.xml' in the ROMs folder and the media in the 'media' sub-folder.\n\n\ZbDisabled\Zn saves the 'gamelist.xml' in \Zu\$HOME/.emulationstation/gamelists/\Zn and the media in \Zu\$HOME/.emulationstation/downloaded_media\Zn.\n\n\Zb\ZrNOTE\Zn: changing this option will not automatically copy the 'gamelist.xml' file and the media to the new location or remove the ones in the old location. You must do this manually.\n\nSkyscraper parameters: \Zb-g \Zn / \Zb-o \Zn" ) while true; do local cmd=(dialog --backtitle "$__backtitle" --help-button --colors --no-collapse --default-item "$default" --ok-label "Ok" --cancel-label "Back" --title "Game list generation options" --menu "\n\n" 13 60 5) local -a options if [[ "$rom_name" -eq 0 ]]; then options=(1 "ROM Names (Source name)") else options=(1 "ROM Names (Filename)") fi if [[ "$remove_brackets" -eq 1 ]]; then options+=(2 "Remove bracket info (Enabled)") else options+=(2 "Remove bracket info (Disabled)") fi if [[ "$use_rom_folder" -eq 1 ]]; then options+=(3 "Use ROM folders for game list & media (Enabled)") else options+=(3 "Use ROM folders for game list & media (Disabled)") fi local choice=$("${cmd[@]}" "${options[@]}" 2>&1 > /dev/tty) if [[ -n "$choice" ]]; then local default="$choice" case "$choice" in 1) rom_name="$((rom_name ^ 1))" iniSet "rom_name" "$rom_name" ;; 2) remove_brackets="$((remove_brackets ^ 1))" iniSet "remove_brackets" "$remove_brackets" ;; 3) use_rom_folder="$((use_rom_folder ^ 1))" iniSet "use_rom_folder" "$use_rom_folder" ;; HELP*) # Retain choice default="${choice/HELP /}" if [[ ! -z "${help_strings_gen[${default}]}" ]]; then dialog --colors --no-collapse --ok-label "Close" --msgbox "${help_strings_gen[${default}]}" 22 65 >&1 fi esac else break fi done }