diff options
Diffstat (limited to 'recipes/opie-sh-snes/files')
-rw-r--r-- | recipes/opie-sh-snes/files/opie-sh-snes.sh | 50 | ||||
-rw-r--r-- | recipes/opie-sh-snes/files/snes.desktop | 6 | ||||
-rw-r--r-- | recipes/opie-sh-snes/files/snes.png | bin | 0 -> 2308 bytes |
3 files changed, 56 insertions, 0 deletions
diff --git a/recipes/opie-sh-snes/files/opie-sh-snes.sh b/recipes/opie-sh-snes/files/opie-sh-snes.sh new file mode 100644 index 0000000000..0d5c3e0360 --- /dev/null +++ b/recipes/opie-sh-snes/files/opie-sh-snes.sh @@ -0,0 +1,50 @@ +#!/bin/sh +#Path to your Roms if you want to disable the menu +#LOCATION=/mnt/card/games/snes + +# Give a default +if test -e /root/Settings/opie-sh-snes.conf +then + LOCATION="`cat /root/Settings/opie-sh-snes.conf`" +else + echo "/mnt/card/games/snes" > /root/Settings/opie-sh-snes.conf + #Enable Menu Rom Finder + LOCATION="` opie-sh -i -t "Path to Roms" -g -E -l -F /root/Settings/opie-sh-snes.conf `" + ! test -z "$LOCATION" && echo $LOCATION > /root/Settings/opie-sh-snes.conf +fi + +echo "LOCATION = [$LOCATION]" +if [ "$LOCATION" = "" ]; then exit; fi + + +#Load a game from your list +ROM=` cd "$LOCATION" ; ls -1 *.zip \ + | opie-sh -i -l -t "Snes9x" -F -g ` +if [ "$ROM" = "" ]; then exit; fi + +echo "ROM = [$ROM]" + +#Enable Sound Button +setsound () { + opie-sh -m -t "Sound" \ + -M "Do you want sound?" \ + -g -0 Yes -1 No +RETURNCODE=$? + +case $RETURNCODE in + 0) SOUND="-sound" ;; + 1) SOUND="-nosound" ;; +esac + +echo "SOUND = [$SOUND] / RC = [$?]" +} + + +setsound + + + +if [ "$SOUND" = "" ]; then exit; fi + + +snes9x $SOUND "$LOCATION/$ROM" diff --git a/recipes/opie-sh-snes/files/snes.desktop b/recipes/opie-sh-snes/files/snes.desktop new file mode 100644 index 0000000000..31394980b5 --- /dev/null +++ b/recipes/opie-sh-snes/files/snes.desktop @@ -0,0 +1,6 @@ +[Desktop Entry] +Name=Snes9x +Icon=snes +Exec=opie-sh-snes.sh +Comment=Displays a list of games for use with snes9x +Type=Application diff --git a/recipes/opie-sh-snes/files/snes.png b/recipes/opie-sh-snes/files/snes.png Binary files differnew file mode 100644 index 0000000000..2c0abfe7e6 --- /dev/null +++ b/recipes/opie-sh-snes/files/snes.png |