4
4
# This script requires MAME to be in your PATH, or you can pass the path to MAME as an argument.
5
5
# mame2bml is also required to be present and up-to-date.
6
6
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)
9
12
10
- export PATH=$PATH :$( pwd) /tools/mame2bml/out
11
13
if ! command -v mame2bml & > /dev/null
12
14
then
13
15
echo " mame2bml could not be found. Please build it first."
@@ -18,16 +20,42 @@ if [ -z "$1" ]
18
20
then
19
21
if ! command -v mame & > /dev/null
20
22
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 ."
22
24
exit 1
23
25
fi
24
26
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
26
43
fi
27
44
28
45
# Extract mame.xml
46
+ echo " Extracting MAME XML..."
29
47
mame -listxml > mame.xml
30
48
31
- # Convert MAME XML to BML
49
+ echo " Converting mame.xml to BML... "
32
50
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