distribution/packages/emulators/standalone/scummvmsa/sources/start_scummvm.sh

69 lines
1.6 KiB
Bash
Raw Normal View History

2022-02-05 14:23:32 +00:00
#!/bin/bash
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2019-present Shanti Gilbert (https://github.com/shantigilbert)
# Source predefined functions and variables
. /etc/profile
2022-04-01 10:25:10 +00:00
CONFIG_DIR="/storage/.config/scummvm"
2022-02-05 14:23:32 +00:00
ROMSPATH="/storage/roms"
BIOSPATH="${ROMSPATH}/bios"
RATMPCONF="/storage/.config/retroarch/retroarch.cfg"
2022-04-01 12:39:48 +00:00
shopt -s extglob
if [[ "$1" =~ ?(add|create|libretro) ]]
then
GAME="$2"
else
GAME="$1"
fi
2022-02-05 14:23:32 +00:00
if [ ! -d "${CONFIG_DIR}/games" ]
then
mkdir -p "${CONFIG_DIR}/games"
fi
create_svm(){
/usr/bin/scummvm --list-targets | tail -n +4 | cut -d " " -f 1 | \
while read line
do
id=($line);
filename=$(grep -A7 "\[$id\]" ${CONFIG_DIR}/scummvm.ini | \
awk 'BEGIN {FS="="}; /description/ {printf $2}' | \
sed -e 's# (.*)# ('${id}')#g' -e "s#'##g" -e "s#: # - #g" \
)
SVMPATH="$(grep -A7 "\[$id\]" ${CONFIG_DIR}/scummvm.ini | awk 'BEGIN {FS="="}; /path/ {print $2}')"
echo '--path="'${SVMPATH}'" '${id} >"${CONFIG_DIR}/games/${filename}.scummvm"
done
}
2023-02-24 13:53:43 +00:00
if [ ! -d "${CONFIG_DIR}" ]; then
mkdir -p ${CONFIG_DIR}
cp -rf /usr/config/scummvm/* ${CONFIG_DIR}/
2022-02-05 14:23:32 +00:00
fi
case $1 in
"libretro")
GAME=$(cat "${GAME}" | awk 'BEGIN {FS="\""}; {print $2}')
cd "${GAME}"
/usr/bin/retroarch -L /tmp/cores/scummvm_libretro.so --config ${RATMPCONF} .
;;
"add")
/usr/bin/scummvm --add --path="${ROMSPATH}/scummvm" --recursive
mkdir -p ${BIOSPATH}
2023-02-24 13:53:43 +00:00
cp ${CONFIG_DIR}/scummvm.ini ${BIOSPATH}/scummvm.ini
2022-02-05 14:23:32 +00:00
;;
"create")
create_svm
;;
2022-04-01 10:25:10 +00:00
*)
GAME=$(cat "${GAME}")
2022-04-01 12:39:48 +00:00
eval /usr/bin/scummvm --fullscreen --joystick=0 --themepath=/usr/config/scummvm/themes "${GAME}"
2022-04-01 10:25:10 +00:00
;;
2022-02-05 14:23:32 +00:00
esac