Skip to content

Commit 2fb2da0

Browse files
committed
scripts: update-arcade-rom-db.sh should also import mame softwarelists too
1 parent cdbd9e0 commit 2fb2da0

File tree

1 file changed

+35
-7
lines changed

1 file changed

+35
-7
lines changed

scripts/update-arcade-rom-db.sh

+35-7
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
# This script requires MAME to be in your PATH, or you can pass the path to MAME as an argument.
55
# mame2bml is also required to be present and up-to-date.
66

7-
# Specify the mame drivers to include in the database
8-
export CORES="sega/sg1000a.cpp nintendo/aleck64.cpp"
7+
CORES="sega/sg1000a.cpp nintendo/aleck64.cpp" # Mame arcade systems to include
8+
SOFTWARE="neogeo:neogeo:Neo Geo" # Mame software list to include (format: "mame_name:ares_name:database_name") comma separated
9+
10+
PATH=$PATH:$(pwd)/tools/mame2bml/out
11+
SCRIPT_CWD=$(pwd)
912

10-
export PATH=$PATH:$(pwd)/tools/mame2bml/out
1113
if ! command -v mame2bml &> /dev/null
1214
then
1315
echo "mame2bml could not be found. Please build it first."
@@ -18,16 +20,42 @@ if [ -z "$1" ]
1820
then
1921
if ! command -v mame &> /dev/null
2022
then
21-
echo "MAME could not be found. Please install it first."
23+
echo "MAME could not be found. Please install it first, or pass the path to MAME as an argument."
2224
exit 1
2325
fi
2426
else
25-
export PATH=$PATH:$1
27+
PATH=$PATH:$1
28+
fi
29+
30+
MAME_CMD=$(command -v mame)
31+
MAME_DIR=$(dirname $MAME_CMD)
32+
33+
# Determine MAME hash directory
34+
if [ -z "$HASH_PATH" ]; then
35+
if [ -d "$MAME_DIR/hash" ]; then
36+
HASH_PATH="$MAME_DIR/hash"
37+
elif [ -d "/usr/share/games/mame/hash" ]; then
38+
HASH_PATH="/usr/share/games/mame/hash"
39+
else
40+
echo "Could not determine the MAME hash directory. Please set HASH_PATH manually and re-run the script."
41+
exit 1
42+
fi
2643
fi
2744

2845
# Extract mame.xml
46+
echo "Extracting MAME XML..."
2947
mame -listxml > mame.xml
3048

31-
# Convert MAME XML to BML
49+
echo "Converting mame.xml to BML..."
3250
mame2bml mame.xml mia/Database/Arcade.bml $CORES
33-
rm mame.xml
51+
rm mame.xml
52+
53+
IFS=',' read -r -a software_array <<< "$SOFTWARE"
54+
for i in "${software_array[@]}"
55+
do
56+
IFS=':' read -r -a pair <<< "$i"
57+
echo "Converting ${pair[0]}.xml to BML..."
58+
mame2bml "$HASH_PATH/${pair[0]}.xml" "mia/Database/${pair[2]}.bml" ${pair[1]}
59+
done
60+
61+
echo "Done."

0 commit comments

Comments
 (0)