Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > 13f5dcef5358e9d5a2a5a1ae6baf28fc > files > 115

gtkdialog-0.8.3-1.mga5.x86_64.rpm

#!/bin/sh

## Includes.
. funcrcGet
. funcxPlayedMerge

## Create the game list using the selected profile.
## On entry: $1 = 0 to create a new list
##                1 to reuse a previous session's list if one exists

funcGameListCreate() {
	if [ -z "$BASH" ]; then local FUNCNAME=funcGameListCreate; fi
	if [ $DEBUG_TRANSITS -ne 0 ]; then echo "$FUNCNAME(): IN"; fi

	## Local variables.
	local ProfileSelected="`funcrcGet ProfileSelected`"
	local ProfileROMsPath0="`funcrcGet Profile${ProfileSelected}ROMsPath0`"
	local ProfileROMsPattern0="`funcrcGet Profile${ProfileSelected}ROMsPattern0`"
	local ProfileROMsPath1="`funcrcGet Profile${ProfileSelected}ROMsPath1`"
	local ProfileROMsPattern1="`funcrcGet Profile${ProfileSelected}ROMsPattern1`"
	local ProfileROMsPath2="`funcrcGet Profile${ProfileSelected}ROMsPath2`"
	local ProfileROMsPattern2="`funcrcGet Profile${ProfileSelected}ROMsPattern2`"
	local count create ext f gamelist ifs item name path pattern
	local arg1=0

	## Get argument.
	if [ -n "$1" ]; then arg1=$1; fi

	if [ $arg1 -eq 1 ] && [ -f $LOCAL_DATA_DIR/GameList ]; then
		create=0
	else
		create=1
	fi

	if [ $DEBUG_CONTENT -ne 0 ]; then
		if [ $create -eq 0 ]; then
			echo "$FUNCNAME(): Reusing an existing game list"
		else
			echo "$FUNCNAME(): Creating a new game list"
		fi
	fi

	## Create the game list?
	if [ $create -eq 1 ]; then
		printf "" > $LOCAL_DATA_DIR/GameList
		for f in 0 1 2; do
			eval path="\$ProfileROMsPath$f"
			eval pattern="\$ProfileROMsPattern$f"

			if [ $DEBUG_CONTENT -ne 0 ]; then
				echo "$FUNCNAME(): Searching \"$path\" for \"$pattern\""
			fi

			if [ -n "$path" -a -n "$pattern" ]; then
				gamelist=`find "$path" -maxdepth 1 -type f -iname "$pattern" 2> /dev/null`
				ifs=$IFS
				IFS='
'
				for item in $gamelist; do
					## Get everything after the last slash.
					name="${item##*/}"
					## Get everything before the last period or the end.
					name="${name%.*}"
					## Get everything after the last period if one exists.
					case "$item" in
						*.*) ext="${item##*.}" ;;
						*) ext="" ;;
					esac

					echo "$item|$name|$ext|0" >> $LOCAL_DATA_DIR/GameList
				done
				IFS=$ifs
			fi
		done
	fi

	## Merge the xplayed data.
	funcxPlayedMerge

	## Count the games.
	count=`wc -l < $LOCAL_DATA_DIR/GameList`
	echo "Found $count" > $TEMP_DIR/GameCount

	if [ $DEBUG_TRANSITS -ne 0 ]; then echo "$FUNCNAME(): OUT"; fi
}