blob: 38b48701ac3a9b0b79238417956c41c8a5c5460a (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#!/bin/sh
# Create a variable equal to $HOME that will be used later in the ini creation
home=('$HOME')
if [ "$1" != "" ] && [ "$1" = "--newini" ]; then
echo "Rebuilding the ini file at $HOME/.mame/sdlmame.ini"
echo "Modify this file for permanent changes to your SDLMAME"
echo "options and paths before running SDLMAME again."
cd $HOME/.mame
if [ -e sdlmame.ini ]; then
echo "Your old ini file has been renamed to sdlmameini.bak"
mv sdlmame.ini sdlmameini.bak
fi
/usr/share/sdlmame/sdlmame \
-artpath "$home/.mame/artwork;artwork" \
-ctrlrpath "$home/.mame/ctrlr;ctrlr" \
-inipath $home/.mame/ini \
-rompath $home/.mame/roms \
-samplepath $home/.mame/samples \
-cfg_directory $home/.mame/cfg \
-comment_directory $home/.mame/comments \
-diff_directory $home/.mame/diff \
-input_directory $home/.mame/inp \
-memcard_directory $home/.mame/memcard \
-nvram_directory $home/.mame/nvram \
-snapshot_directory $home/.mame/snap \
-state_directory $home/.mame/sta \
-video opengl \
-createconfig
elif [ ! -e $HOME/.mame ]; then
echo "Running SDLMAME for the first time..."
echo "Creating an ini file for SDLMAME at $HOME/.mame/sdlmame.ini"
echo "Modify this file for permanent changes to your SDLMAME"
echo "options and paths before running SDLMAME again."
mkdir $HOME/.mame
mkdir $HOME/.mame/{artwork,cfg,comments,ctrlr,diff,ini,inp,memcard,nvram,samples,snap,sta}
cd $HOME/.mame
/usr/share/sdlmame/sdlmame \
-artpath "$home/.mame/artwork;artwork" \
-ctrlrpath "$home/.mame/ctrlr;ctrlr" \
-inipath $home/.mame/ini \
-rompath $home/.mame/roms \
-samplepath $home/.mame/samples \
-cfg_directory $home/.mame/cfg \
-comment_directory $home/.mame/comments \
-diff_directory $home/.mame/diff \
-input_directory $home/.mame/inp \
-memcard_directory $home/.mame/memcard \
-nvram_directory $home/.mame/nvram \
-snapshot_directory $home/.mame/snap \
-state_directory $home/.mame/sta \
-video opengl \
-createconfig
else
cd /usr/share/sdlmame
./sdlmame "$@"
fi
|