summaryrefslogtreecommitdiffstats
path: root/abs/extra/community/dolphin-emu/dolphin-emu_scan.sh
blob: 615cac8443d4f06a31106ad6dfd7208efb049f85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
#----------------------------------------------------------------------------
. /etc/osd_cat.cfg || {
        color=yellow
        outline=2
        outlinecolour=black
        shadow=0
        shadowcolour=black
        font="-adobe-helvetica-bold-*-*-*-34-*-*-*-*-*-*-*"
}
#----------------------------------------------------------------------------
EXTNS=('[eE][lL][fF]' '[dD][oO][lL]' '[gG][cC][mM]' '[iI][sS][oO]' '[cC][iI][sS][oO]' '[gG][cC][zZ]' '[wW][aA][dD]')
DIR=/myth/games/dolphin-emu/roms
rm -fr /tmp/dolphin*
echo -e "Scanning for games and creating menu." | osd_cat --pos=middle --align=center --delay=3 --color=$color --outline=$outline --outlinecolour=$outlinecolour --shadow=$shadow --shadowcolour=$shadowcolour --font=$font &
for EXT in ${EXTNS[@]}
do
	if [ -d "$DIR" ]; then
	cd $DIR
	ls *.$EXT >> /tmp/dolphin-emu.games
	fi
done
echo "<mythmenu name=\"DOLPHIN\">" > /tmp/dolphin-emu_games.xml

while read line
do
	echo "  <button>" >> /tmp/dolphin-emu_games.xml
	echo "    <type>MENU_DOLPHIN</type>" >> /tmp/dolphin-emu_games.xml
	echo "    <text>$(echo "$line"  | sed 's/.\{4\}$//')</text>" >> /tmp/dolphin-emu_games.xml
	echo "    <action>EXEC /usr/bin/dolphin-emu -b -e $DIR/"$line"</action>" >> /tmp/dolphin-emu_games.xml
	echo "  </button>" >> /tmp/dolphin-emu_games.xml
done < /tmp/dolphin-emu.games
echo "</mythmenu>" >> /tmp/dolphin-emu_games.xml
sudo mv /tmp/dolphin-emu_games.xml /usr/share/mythtv/themes/defaultmenu/